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
.logoWrapper { width: 100px; height: 100px; display: block; position: absolute; top: var(--baseline); right: var(--baseline); overflow: visible; } .logoWrapper.preloading { top: 50%; margin-top: -50px; left: 50%; margin-left: -50px; } .logo { animation-name: rotate; animation-duration: 10s; animation-timing-function: linear; animation-iteration-count: infinite; overflow: visible; } .logo text { text-align: center; fill: var(--secondaryColor); letter-spacing: 6px; font-size: 1rem; } .bottle { position: absolute; width: 60px; height: 40px; left: 20px; top: 30px; overflow: visible; opacity: 0; transition: opacity 300ms ease-in-out; } .logoWrapper.preloading .bottle { opacity: 1; } .bottle .bottlePath { position: absolute; fill: var(--secondaryColor); transform-origin: bottom center; } .bottle.isAnimated .bottlePath { animation-timing-function: ease-in-out; animation-iteration-count: infinite; animation-duration: 1s; } .bottle .bottleOne { animation-name: rotateRight; } .bottle .bottleTwo { animation-name: rotateLeft; } .bottle .tada { transform: rotate(-25deg); animation-timing-function: ease-in-out; animation-iteration-count: infinite; animation-duration: 1s; animation-name: tada; opacity: 0; } @keyframes rotate { from { transform: rotate(0deg) } to { transform: rotate(360deg); } } @keyframes rotateRight { 0% { transform: rotate(0) translateY(0px) } 15% { transform: rotate(10deg) translateY(-3px); } 30% { transform: rotate(8deg) translateY(-2px); } 60% { transform: rotate(0) translateY(0); } } @keyframes rotateLeft { 0% { transform: rotate(0) translateY(0px); } 15% { transform: rotate(-4deg) translateY(-10px); } 30% { transform: rotate(-5deg) translateY(-9px); } 60% { transform: rotate(0) translateY(0); } } @keyframes tada { 8% { opacity: 0; } 15% { opacity: 1; } 30% { opacity: 0; } } :root { --fontSize: 1.8rem; --fontSizeMin: .8rem; --mainColor: #F5DE4D; --secondaryColor: #081929; --baseline: 30px; --rotateItem: 90; --topItem: 200; --leftItem: 200; } * { box-sizing: border-box; } html { overflow-x: hidden; overflow-y: auto; overflow: hidden auto; font-size: 18px; } body { font-family: 'HK Grotesk Wide'; font-size:5vmin; font-weight: 300; color: var(--secondaryColor); background-color: var(--mainColor); line-height: calc(var(--fontSize) * 1.5); overflow-wrap: break-word; margin: 0; overflow: hidden; width: 100vw; height: 100vh; } #root { display: flex; flex-direction: column; justify-content: center; height: 100vh; width: 100vw; overflow: hidden; } h1 { font-size: 13vw; } @media(min-width:40.063em) { h1 { font-size: 9vw; } } h1 { -webkit-hyphens: auto; hyphens: auto; font-weight: 900; line-height: 1; margin:0 var(--baseline); position: relative; z-index: 1000; opacity: 0; transition: opacity 300ms ease-in-out; } h1.loaded { opacity: 1; } h4 { font-weight: 300; } .marquee { position: fixed; top: -150px; bottom: 0; left: 0; right: 0; z-index: 0; -webkit-user-select: none; user-select: none; opacity: 0; transition: opacity 300ms ease-in-out; } .marquee.loaded { opacity: 1; } .toRepeat { font-weight: 900; line-height: 1; -webkit-text-stroke: 1px var(--secondaryColor); -webkit-text-fill-color: transparent; transform-origin: left top; margin: 0; width: auto; white-space: nowrap; text-align: left; position: absolute; display: block; font-size: 35vw } @media(min-width:40.063em) { .toRepeat { font-size: 10rem } } .toRepeat-1 { left: -30px; transform: rotateZ(-15deg); top: 35vw; text-indent: -2rem } @media(min-width:40.063em) { .toRepeat-1 { top: 10rem; text-indent: -4rem } } .toRepeat-2 { left: -30px; transform: rotateZ(-15deg); top: 70vw; text-indent: -10rem } @media(min-width:40.063em) { .toRepeat-2 { top: 20rem; text-indent: -10rem } } .toRepeat-3 { left: -30px; transform: rotateZ(-15deg); top: 105vw; text-indent: -24rem } @media(min-width:40.063em) { .toRepeat-3 { top: 30rem; text-indent: -0rem } } .toRepeat-4 { left: -30px; transform: rotateZ(-15deg); top: 140vw; text-indent: -12rem } @media(min-width:40.063em) { .toRepeat-4 { top: 40rem; text-indent: -20rem } } .toRepeat-5 { left: -30px; transform: rotateZ(-15deg); top: 175vw; text-indent: -45rem } @media(min-width:40.063em) { .toRepeat-5 { top: 50rem; text-indent: -15rem } } .toRepeat-6 { left: -30px; transform: rotateZ(-15deg); top: 210vw; text-indent: -6rem } @media(min-width:40.063em) { .toRepeat-6 { top: 60rem; text-indent: -24rem } } .toRepeat-7 { left: -30px; transform: rotateZ(-15deg); top: 245vw; text-indent: -42rem } @media(min-width:40.063em) { .toRepeat-7 { top: 70rem; text-indent: -14rem } } .toRepeat-8 { left: -30px; transform: rotateZ(-15deg); top: 280vw; text-indent: -40rem } @media(min-width:40.063em) { .toRepeat-8 { top: 80rem; text-indent: -0rem } } a { color: var(--white) } a:hover { color: rebeccapurple; } footer { position: absolute; bottom: var(--baseline); left: var(--baseline); } footer p { font-size: var(--fontSizeMin); line-height: 1; margin: 0; }
src/index.css
.logoWrapper { width: 100px; height: 100px; display: block; position: absolute; top: var(--baseline); right: var(--baseline); overflow: visible; } .logoWrapper.preloading { top: 50%; margin-top: -50px; left: 50%; margin-left: -50px; } .logo { animation-name: rotate; animation-duration: 10s; animation-timing-function: linear; animation-iteration-count: infinite; overflow: visible; } .logo text { text-align: center; fill: var(--secondaryColor); letter-spacing: 6px; font-size: 1rem; } .bottle { position: absolute; width: 60px; height: 40px; left: 20px; top: 30px; overflow: visible; opacity: 0; transition: opacity 300ms ease-in-out; } .logoWrapper.preloading .bottle { opacity: 1; } .bottle .bottlePath { position: absolute; fill: var(--secondaryColor); transform-origin: bottom center; } .bottle.isAnimated .bottlePath { animation-timing-function: ease-in-out; animation-iteration-count: infinite; animation-duration: 1s; } .bottle .bottleOne { animation-name: rotateRight; } .bottle .bottleTwo { animation-name: rotateLeft; } .bottle .tada { transform: rotate(-25deg); animation-timing-function: ease-in-out; animation-iteration-count: infinite; animation-duration: 1s; animation-name: tada; opacity: 0; } @keyframes rotate { from { transform: rotate(0deg) } to { transform: rotate(360deg); } } @keyframes rotateRight { 0% { transform: rotate(0) translateY(0px) } 15% { transform: rotate(10deg) translateY(-3px); } 30% { transform: rotate(8deg) translateY(-2px); } 60% { transform: rotate(0) translateY(0); } } @keyframes rotateLeft { 0% { transform: rotate(0) translateY(0px); } 15% { transform: rotate(-4deg) translateY(-10px); } 30% { transform: rotate(-5deg) translateY(-9px); } 60% { transform: rotate(0) translateY(0); } } @keyframes tada { 8% { opacity: 0; } 15% { opacity: 1; } 30% { opacity: 0; } } :root { --fontSize: 1.8rem; --fontSizeMin: .8rem; --mainColor: #F5DE4D; --secondaryColor: #081929; --baseline: 30px; --rotateItem: 90; --topItem: 200; --leftItem: 200; } * { box-sizing: border-box; } html { overflow-x: hidden; overflow-y: auto; overflow: hidden auto; font-size: 18px; } body { font-family: 'HK Grotesk Wide'; font-size:5vmin; font-weight: 300; color: var(--secondaryColor); background-color: var(--mainColor); line-height: calc(var(--fontSize) * 1.5); overflow-wrap: break-word; margin: 0; overflow: hidden; width: 100vw; height: 100vh; } #root { display: flex; flex-direction: column; justify-content: center; height: 100vh; width: 100vw; overflow: hidden; } h1 { font-size: 13vw; } @media(min-width:40.063em) { h1 { font-size: 9vw; } } h1 { -webkit-hyphens: auto; hyphens: auto; font-weight: 900; line-height: 1; margin:0 var(--baseline); position: relative; z-index: 1000; opacity: 0; transition: opacity 300ms ease-in-out; } h1.loaded { opacity: 1; } h4 { font-weight: 300; } .marquee { position: fixed; top: -150px; bottom: 0; left: 0; right: 0; z-index: 0; -webkit-user-select: none; user-select: none; opacity: 0; transition: opacity 300ms ease-in-out; } .marquee.loaded { opacity: 1; } .toRepeat { font-weight: 900; line-height: 1; -webkit-text-stroke: 1px var(--secondaryColor); -webkit-text-fill-color: transparent; transform-origin: left top; margin: 0; width: auto; white-space: nowrap; text-align: left; position: absolute; display: block; font-size: 35vw } @media(min-width:40.063em) { .toRepeat { font-size: 10rem } } .toRepeat-1 { left: -30px; transform: rotateZ(-15deg); top: 35vw; text-indent: -2rem } @media(min-width:40.063em) { .toRepeat-1 { top: 10rem; text-indent: -4rem } } .toRepeat-2 { left: -30px; transform: rotateZ(-15deg); top: 70vw; text-indent: -10rem } @media(min-width:40.063em) { .toRepeat-2 { top: 20rem; text-indent: -10rem } } .toRepeat-3 { left: -30px; transform: rotateZ(-15deg); top: 105vw; text-indent: -24rem } @media(min-width:40.063em) { .toRepeat-3 { top: 30rem; text-indent: -0rem } } .toRepeat-4 { left: -30px; transform: rotateZ(-15deg); top: 140vw; text-indent: -12rem } @media(min-width:40.063em) { .toRepeat-4 { top: 40rem; text-indent: -20rem } } .toRepeat-5 { left: -30px; transform: rotateZ(-15deg); top: 175vw; text-indent: -45rem } @media(min-width:40.063em) { .toRepeat-5 { top: 50rem; text-indent: -15rem } } .toRepeat-6 { left: -30px; transform: rotateZ(-15deg); top: 210vw; text-indent: -6rem } @media(min-width:40.063em) { .toRepeat-6 { top: 60rem; text-indent: -24rem } } .toRepeat-7 { left: -30px; transform: rotateZ(-15deg); top: 245vw; text-indent: -42rem } @media(min-width:40.063em) { .toRepeat-7 { top: 70rem; text-indent: -14rem } } .toRepeat-8 { left: -30px; transform: rotateZ(-15deg); top: 280vw; text-indent: -40rem } @media(min-width:40.063em) { .toRepeat-8 { top: 80rem; text-indent: -0rem } } a { color: var(--white) } a:hover { color: rebeccapurple; } footer { position: absolute; bottom: var(--baseline); left: var(--baseline); } footer p { font-size: var(--fontSizeMin); line-height: 1; margin: 0; }
0.732113
0.200597
@import url(https://cdn.rawgit.com/theeluwin/NotoSansKR-Hestia/master/stylesheets/NotoSansKR-Hestia.css); body{ margin:none; font-family:'Noto Sans Korean'; } *{ -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */ -moz-box-sizing: border-box; /* Firefox, other Gecko */ box-sizing: border-box; } @media screen and (max-width:480px){ body{ font-size:10px; } } @media screen and (min-width:481px) and (max-width:720px){ body{ font-size:11px; } } @media screen and (min-width:721px) and (max-width:1180px){ body{ font-size:15px; } } @media screen and (min-width:1181px){ body{ font-size:16px; } } .login-wrapper{ background-image:url('../images/2.jpg'); background-repeat:no-repeat; background-size:cover; height:100vh; background-position:center center; } .login-form-wrapper{ width:250px; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); -o-transform:translate(-50%,-50%); -moz-transform:translate(-50%,-50%); -webkit-transform:translate(-50%,-50%); } .login-title{ padding-bottom:1em; text-shadow:2px 1px 45px #fff; font-weight:100; color:rgb(80,90,110); /*position:absolute;*/ top:10%; text-align:center; /*font-size:5em;*/ left:50%; font-size:80px; } input,textarea{ position:relative; display:inline-block; outline:none; margin-bottom:7px; border-radius:3px; border:1px solid rgb(160,180,200); -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */ -moz-box-sizing: border-box; /* Firefox, other Gecko */ box-sizing: border-box; -webkit-appearance: none; } input:focus{ border:1px solid rgb(120,130,150); } input[type=checkbox]{ margin:0; } input[type=text], input[type=password]{ width:100%; height:44px; font-size:15px; padding:6px 5%; } .check-label{ font-size:14px; display:inline-block; color:#fff; margin:0px 0px 7px 0px; } input[type=submit]{ } .input-button{ width:100%; height:44px; font-size:15px; padding:6px 15px; margin-bottom:5px; border-radius:2px; background-color:rgb(70,80,100); border-color:rgb(70,80,100); color:#fff; position:relative; display:inline-block; cursor:pointer; text-align:center; -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */ -moz-box-sizing: border-box; /* Firefox, other Gecko */ box-sizing: border-box; } div.input-button{ line-height:32px; } .login-join{ background-color:#fff; border:1px solid rgb(70,80,100); color:rgb(70,80,100); } .login-join:hover{ background-color:#eee !important; } .input-button:hover{ background-color:rgb(80,90,110); } .login-wrapper .detail-wrapper{ font-size:11px; color:#fff; font-family:inherit; } .login-wrapper .detail-wrapper .item{ padding:2px; display:inline-block; text-decoration:none; cursor:pointer; border-bottom:1px solid rgba(255,255,255,0); } .login-wrapper .detail-wrapper .item:hover{ border-bottom:1px solid #fff; } .login-wrapper .detail-wrapper .item:last-child{ float:right; } .each-content{ width:23%; margin:1%; float:left; cursor:pointer; background-color:rgb(39,49,66); border:1px solid rgb(49,61,79); border-radius:3px; display:inline-block; } .each-content .image-wrapper{ text-align:center; position: relative; margin-top:10px; } .each-content .image-wrapper .inner-wrapper{ padding-top:60%; } .each-content .image-wrapper img{ width:90%; height:100%; position:absolute; top:0; left:5%; border-radius:2px; vertical-align: middle; } .each-content .detail-wrapper{ padding:14px; } .each-content .detail-wrapper .title{ color:#fff; font-size:12px; margin:0; font-weight:200; overflow:hidden; -ms-text-overflow: ellipsis; text-overflow: ellipsis; } .each-content .detail-wrapper .price{ font-size:12px; margin:5px 0 0 0; font-weight:400; color:rgb(87,99,118); } .each-content .detail-wrapper .buy{ background-color:rgb(54,174,70); color:#fff; padding:2px 5px; margin-top:8px; display:inline-block; border-radius:2px; font-size:11px; } .each-content .detail-wrapper .sell{ background-color:rgb(34,153,241); color:#fff; padding:2px 5px; margin-top:8px; display:inline-block; border-radius:2px; font-size:11px; } .main-wrapper{ background-color:rgb(27,36,49); margin:140px 0 0 0; float:left; width:100%; } .main-top-nav{ z-index:999; position:fixed; height:70px; background-color:rgb(29,148,238); left:0; top:0; right:0; } .main-top-nav .content{ display:inline-block; color:#fff; height:20px; margin:14px 2px 0 2px; padding:12px; font-size:16px; -webkit-box-sizing:initial; -moz-box-sizing:initial; box-sizing:initial; line-height:1; text-decoration:none; cursor:pointer; } .main-top-nav .content:hover{ background-color:rgb(17,102,165); border-radius:2px; cursor:pointer; } .main-top-nav .right-menu{ position:absolute; top:0; right:0; } .main-sub-nav{ position:fixed; height:70px; background-color:rgb(39,49,66); border:1px solid rgb(49,61,79); left:0; top:70px; right:0; z-index:9999; } .main-sub-nav .content{ float:left; display:inline-block; color:rgb(124,140,165); margin-top:14px; padding:13px 28px; font-size:14px; -webkit-box-sizing:initial; -moz-box-sizing:initial; box-sizing:initial; line-height:1; text-decoration:none; cursor:pointer; background-color:rgb(34,44,60); border:1px solid rgb(49,61,79); } .main-sub-nav .content:active{ color:#fff; background-color:rgb(34,87,132); border:1px solid rgb(40,157,240); } .main-sub-nav .content.active{ color:#fff; background-color:rgb(34,87,132); border:1px solid rgb(40,157,240); } .main-sub-nav .content:first-child{ border-top-left-radius:3px; border-bottom-left-radius:3px; } .main-sub-nav .content:last-child{ border-top-right-radius:3px; border-bottom-right-radius:3px; } .main-sub-nav .center-menu{ position:absolute; left:50%; top:0; transform:translateX(-50%); -o-transform:translateX(-50%); -moz-transform:translateX(-50%); -webkit-transform:translateX(-50%); } .main-content-wrapper{ width:78%; display:inline-block; float:left; padding:20px; } .main-content-wrapper .added-content:after{ clear:both; display: block; content: " "; } .main-content-wrapper .more-button{ width:98%; padding:10px; background-color:rgb(39,49,66); border:1px solid rgb(49,61,79); color:rgb(69,81,98); text-align:center; border-radius:3px; margin:1%; cursor:pointer; } .main-content-wrapper .more-button.disabled{ background-color:rgb(49,59,76); cursor:default; } .main-content-wrapper .more-button:hover{ background-color:rgb(49,59,76); } .main-menu-wrapper{ float:left; position:fixed; width:22%; height:100%; right:0; background-color:rgb(39,49,66); border-left:1px solid rgb(49,61,79); padding:15px; } .main-menu-wrapper .menu-title{ font-size:14px; color:rgb(91,103,121); margin:15px 0; font-weight:600; } .main-search{ border:1px solid rgb(49,61,79); background-color:rgb(39,49,66); color:#fff; } .main-search::-webkit-input-placeholder{ color:rgb(69,81,98); } .main-search::-moz-placeholder{ color:rgb(69,81,98); } .main-menu-wrapper .menu-info{ font-size:0.8em; color:rgb(91,103,121); font-weight:400; } .main-menu-wrapper .menu-info strong{ font-size:1em; color:#fff; font-weight:500; } @media screen and (max-width:480px){ .main-menu-wrapper{ display:none; } .each-content{ width:98%; } .main-content-wrapper{ width:100%; } .main-sub-nav .content{ float:left; display:inline-block; color:rgb(124,140,165); margin-top:14px; padding:13px 28px; font-size:14px; -webkit-box-sizing:initial; -moz-box-sizing:initial; box-sizing:initial; line-height:1; text-decoration:none; cursor:pointer; background-color:rgb(34,44,60); border:1px solid rgb(49,61,79); } } @media screen and (min-width:481px) and (max-width:720px){ .main-menu-wrapper{ display:none; } .each-content{ width:48%; } .main-content-wrapper{ width:100%; } .main-sub-nav .content{ float:left; display:inline-block; color:rgb(124,140,165); margin-top:19px; padding:8px 10px; font-size:12px; -webkit-box-sizing:initial; -moz-box-sizing:initial; box-sizing:initial; line-height:1; text-decoration:none; cursor:pointer; background-color:rgb(34,44,60); border:1px solid rgb(49,61,79); } } @media screen and (min-width:721px) and (max-width:1180px){ .each-content{ width:31.33333%; } } @media screen and (min-width:1181px){ } .upload-wrapper{ background-color:rgb(27,36,49); margin:70px 0 0 0; float:left; width:100%; } .upload-menu-wrapper{ width:20%; background-color:rgb(39,49,66); border:1px solid rgb(49,61,79); position:fixed; height:100%; left:0; padding:20px; } .upload-menu-wrapper .inner-wrapper{ max-width:300px; margin:auto; text-align:center; } .upload-menu-wrapper .button-wrapper{ width:90%; display:block; margin:auto; } .upload-menu-wrapper .button-wrapper:after{ clear:both; display: block; content: " "; } .upload-menu-wrapper .button-wrapper .button{ text-decoration: none; display:inline-block; float:left; border:1px solid rgb(49,61,79); background-color:rgb(41,51,69); color:#fff; font-weight:300; margin:1%; width:49%; height:60px; text-align:center; line-height:60px; } .upload-menu-wrapper .button-wrapper .button:first-child{ margin-left:0; } .upload-menu-wrapper .button-wrapper .button:last-child{ margin-right:0; } .upload-menu-wrapper .button-wrapper .button.active{ background-color:rgb(38,91,136); border:1px solid rgb(36,154,242); } .upload-main-wrapper{ width:80%; margin-left:20%; position:absolute; } .content-input-wrapper{ margin:20px 5%; background-color:#fff; border-radius:2px; } .right-stick-input{ width:90%; margin:auto; } .right-stick-input input{ width:80%; float:left; border:1px solid rgb(49,61,79); background-color:rgb(41,51,69); border-right:none; border-top-right-radius:0px; border-bottom-right-radius:0px; color:#fff; } .right-stick-input div{ float:left; width:20%; border:1px solid rgb(49,61,79); background-color:rgb(49,60,89); height:44px; line-height:44px; font-size:11px; text-align: center; color:#fff; } .upload-submit{ background-color:rgb(34,44,60); border:1px solid rgb(49,61,79); color:rgb(124,140,165); width:90%; text-align:center; border-radius:2px; display:inline-block; height:44px; line-height:44px; text-decoration: none; } .upload-submit:hover{ background-color:rgb(55,67,85); } .file-uploader{ width:90%; margin:15px 5%; position:relative; display:inline-block; min-height:400px; background-color:rgb(247,248,250); border:3px dashed rgb(60,75,110); cursor:pointer; padding:15px; } .file-uploader .inner{ width:100%; text-align:center; left:0; text-align:center; position:absolute; top:50%; transform:translateY(-50%); -o-transform:translateY(-50%); -moz-transform:translateY(-50%); -webkit-transform:translateY(-50%); } .file-uploader .inner .filename{ font-weight:500; font-size:19px; margin-top:5px; } .file-uploader .inner .size{ font-weight:400; font-size:16px; color:#ddd; } .file-uploader .inner i{ color:rgb(60,75,110); } .file-uploader .inner .intro{ font-weight:400; font-size:20px; margin-top:5px; color:rgb(60,75,110); } .upload-content{ width:90%; margin-left:5%; margin-bottom:5%; font-size:16px; padding:20px; } .upload-content:focus{ border:1px solid #999; outline:none; } @media screen and (max-width:480px){ .upload-menu-wrapper{ width:100%; background-color:rgb(39,49,66); border:1px solid rgb(49,61,79); position:absolute; height:initial; left:0; right:0; padding:20px; z-index:1; } .upload-menu-wrapper .button{ font-size:20px; } .upload-main-wrapper{ margin-top:260px; width:98%; margin-left:1%; } } @media screen and (min-width:481px) and (max-width:720px){ .upload-menu-wrapper{ width:100%; background-color:rgb(39,49,66); border:1px solid rgb(49,61,79); position:fixed; height:initial; left:0; right:0; padding:20px; z-index:999; } .upload-menu-wrapper .button{ font-size:20px; } .upload-main-wrapper{ margin-top:260px; width:95%; margin-left:2.5%; } .content-input-wrapper{ margin:20px 0%; background-color:#fff; border-radius:2px; } } @media screen and (min-width:721px) and (max-width:1180px){ .upload-menu-wrapper{ width:30%; background-color:rgb(39,49,66); border:1px solid rgb(49,61,79); position:fixed; left:0; right:0; padding:20px; z-index:999; } .upload-main-wrapper{ width:70%; margin-left:30%; } } @media screen and (min-width:1181px){ } .mypage-wrapper{ background-color:rgb(27,36,49); margin:70px 0 0 0; float:left; width:100%; } .mypage-wrapper .mypage-details{ width:100%; text-align: center; margin:auto; position:fixed; top:70px; border-bottom:1px solid rgb(49,61,79); background-color:rgb(41,51,69); } .mypage-details > *{ display:inline-block; padding:10px; font-size:1em; color:rgb(91,103,121); font-weight:400; } .mypage-wrapper .mypage-details .name{ font-weight:400; } .mypage-wrapper .mypage-details .remain{ font-weight:400; } .mypage-wrapper .mypage-details .in-process{ font-weight:400; } .mypage-wrapper .mypage-details .done{ font-weight:400; } .mypage-wrapper .mypage-details div strong{ color:#fff; font-size:1.2em; font-weight:500; } .mypage-content-wrapper{ width:90%; margin-left:5%; margin-top:150px; } .mypage-content-wrapper .content{ padding:15px; margin-bottom:15px; cursor:pointer; border-bottom:1px solid rgb(49,61,79); background-color:rgb(41,51,69); } .mypage-content-wrapper .content .title{ color:#fff; font-weight:400; font-size:1.1em; } .mypage-content-wrapper .content .box-wrapper:after{ clear:both; display: block; content: " "; } .mypage-content-wrapper .content .box-wrapper .box{ text-align:center; padding:10px 20px; display:inline-block; background-color:rgb(34,44,60); border:1px solid rgb(49,61,79); color:rgb(124,140,165); width:18%; margin:1%; float:left; } .mypage-content-wrapper .content .box-wrapper .box.active{ background-color:rgb(44,54,70); } .ba-modal-wrapper{ background-color:rgba(0,0,0,.4); position:fixed; width:100%; height:100%; z-index:9999; top:0; } .ba-modal{ max-width:700px; width:90%; border-bottom:1px solid rgb(49,61,79); background-color:rgb(27,36,49); position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); -o-transform:translate(-50%,-50%); -moz-transform:translate(-50%,-50%); -webkit-transform:translate(-50%,-50%); padding:30px; overflow-y: auto; max-height:100%; } .ba-modal .upper{ position:relative; } .ba-modal .upper .title{ display:inline-block; color:#fff; font-weight:100; font-size:1em; margin:0 0 30px 0; } .ba-modal .upper .date{ color:rgb(124,140,165); position:relative; top:-14px; font-size:14px; font-weight:300; } .ba-modal .upper .buy{ font-weight:100; position:absolute; right:0; font-size:0.9em; padding:3px 5px; color:#fff; top:0; border-radius:2px; background-color:rgb(54,174,70); } .ba-modal .upper .sell{ position:absolute; right:5px; font-size:1em; padding:3px 5px; color:#fff; background-color:rgb(34,153,241); } .ba-modal img{ width:100%; height:auto; box-shadow:0 0 14px rgba(21,42,55,.4); } .ba-modal .lower .contents{ background-color:rgb(34,44,60); border:1px solid rgb(49,61,79); padding:15px; color:rgb(124,140,165); font-weight:200; font-size:0.9em; line-height:1.2; margin-bottom:5px; } .ba-modal .lower .contents .name{ text-align:right; margin:5px 0px; } .ba-modal .lower .contents .name strong{ font-weight:400; font-size:1.1em; } .ba-modal .modal-button{ background-color:rgb(34,44,60); border:1px solid rgb(49,61,79); color:rgb(124,140,165); font-weight:400; font-size:1.1em; text-decoration: none; padding:5px 10px; display:inline-block; } @media screen and (max-width:480px){ .mypage-content-wrapper{ width:100%; margin-left:0; } .mypage-content-wrapper .content .box-wrapper .box{ padding:5px 10px; } } @media screen and (min-width:481px) and (max-width:720px){ } @media screen and (min-width:721px) and (max-width:1180px){ } @media screen and (min-width:1181px){ }
public/css/db.css
@import url(https://cdn.rawgit.com/theeluwin/NotoSansKR-Hestia/master/stylesheets/NotoSansKR-Hestia.css); body{ margin:none; font-family:'Noto Sans Korean'; } *{ -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */ -moz-box-sizing: border-box; /* Firefox, other Gecko */ box-sizing: border-box; } @media screen and (max-width:480px){ body{ font-size:10px; } } @media screen and (min-width:481px) and (max-width:720px){ body{ font-size:11px; } } @media screen and (min-width:721px) and (max-width:1180px){ body{ font-size:15px; } } @media screen and (min-width:1181px){ body{ font-size:16px; } } .login-wrapper{ background-image:url('../images/2.jpg'); background-repeat:no-repeat; background-size:cover; height:100vh; background-position:center center; } .login-form-wrapper{ width:250px; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); -o-transform:translate(-50%,-50%); -moz-transform:translate(-50%,-50%); -webkit-transform:translate(-50%,-50%); } .login-title{ padding-bottom:1em; text-shadow:2px 1px 45px #fff; font-weight:100; color:rgb(80,90,110); /*position:absolute;*/ top:10%; text-align:center; /*font-size:5em;*/ left:50%; font-size:80px; } input,textarea{ position:relative; display:inline-block; outline:none; margin-bottom:7px; border-radius:3px; border:1px solid rgb(160,180,200); -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */ -moz-box-sizing: border-box; /* Firefox, other Gecko */ box-sizing: border-box; -webkit-appearance: none; } input:focus{ border:1px solid rgb(120,130,150); } input[type=checkbox]{ margin:0; } input[type=text], input[type=password]{ width:100%; height:44px; font-size:15px; padding:6px 5%; } .check-label{ font-size:14px; display:inline-block; color:#fff; margin:0px 0px 7px 0px; } input[type=submit]{ } .input-button{ width:100%; height:44px; font-size:15px; padding:6px 15px; margin-bottom:5px; border-radius:2px; background-color:rgb(70,80,100); border-color:rgb(70,80,100); color:#fff; position:relative; display:inline-block; cursor:pointer; text-align:center; -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */ -moz-box-sizing: border-box; /* Firefox, other Gecko */ box-sizing: border-box; } div.input-button{ line-height:32px; } .login-join{ background-color:#fff; border:1px solid rgb(70,80,100); color:rgb(70,80,100); } .login-join:hover{ background-color:#eee !important; } .input-button:hover{ background-color:rgb(80,90,110); } .login-wrapper .detail-wrapper{ font-size:11px; color:#fff; font-family:inherit; } .login-wrapper .detail-wrapper .item{ padding:2px; display:inline-block; text-decoration:none; cursor:pointer; border-bottom:1px solid rgba(255,255,255,0); } .login-wrapper .detail-wrapper .item:hover{ border-bottom:1px solid #fff; } .login-wrapper .detail-wrapper .item:last-child{ float:right; } .each-content{ width:23%; margin:1%; float:left; cursor:pointer; background-color:rgb(39,49,66); border:1px solid rgb(49,61,79); border-radius:3px; display:inline-block; } .each-content .image-wrapper{ text-align:center; position: relative; margin-top:10px; } .each-content .image-wrapper .inner-wrapper{ padding-top:60%; } .each-content .image-wrapper img{ width:90%; height:100%; position:absolute; top:0; left:5%; border-radius:2px; vertical-align: middle; } .each-content .detail-wrapper{ padding:14px; } .each-content .detail-wrapper .title{ color:#fff; font-size:12px; margin:0; font-weight:200; overflow:hidden; -ms-text-overflow: ellipsis; text-overflow: ellipsis; } .each-content .detail-wrapper .price{ font-size:12px; margin:5px 0 0 0; font-weight:400; color:rgb(87,99,118); } .each-content .detail-wrapper .buy{ background-color:rgb(54,174,70); color:#fff; padding:2px 5px; margin-top:8px; display:inline-block; border-radius:2px; font-size:11px; } .each-content .detail-wrapper .sell{ background-color:rgb(34,153,241); color:#fff; padding:2px 5px; margin-top:8px; display:inline-block; border-radius:2px; font-size:11px; } .main-wrapper{ background-color:rgb(27,36,49); margin:140px 0 0 0; float:left; width:100%; } .main-top-nav{ z-index:999; position:fixed; height:70px; background-color:rgb(29,148,238); left:0; top:0; right:0; } .main-top-nav .content{ display:inline-block; color:#fff; height:20px; margin:14px 2px 0 2px; padding:12px; font-size:16px; -webkit-box-sizing:initial; -moz-box-sizing:initial; box-sizing:initial; line-height:1; text-decoration:none; cursor:pointer; } .main-top-nav .content:hover{ background-color:rgb(17,102,165); border-radius:2px; cursor:pointer; } .main-top-nav .right-menu{ position:absolute; top:0; right:0; } .main-sub-nav{ position:fixed; height:70px; background-color:rgb(39,49,66); border:1px solid rgb(49,61,79); left:0; top:70px; right:0; z-index:9999; } .main-sub-nav .content{ float:left; display:inline-block; color:rgb(124,140,165); margin-top:14px; padding:13px 28px; font-size:14px; -webkit-box-sizing:initial; -moz-box-sizing:initial; box-sizing:initial; line-height:1; text-decoration:none; cursor:pointer; background-color:rgb(34,44,60); border:1px solid rgb(49,61,79); } .main-sub-nav .content:active{ color:#fff; background-color:rgb(34,87,132); border:1px solid rgb(40,157,240); } .main-sub-nav .content.active{ color:#fff; background-color:rgb(34,87,132); border:1px solid rgb(40,157,240); } .main-sub-nav .content:first-child{ border-top-left-radius:3px; border-bottom-left-radius:3px; } .main-sub-nav .content:last-child{ border-top-right-radius:3px; border-bottom-right-radius:3px; } .main-sub-nav .center-menu{ position:absolute; left:50%; top:0; transform:translateX(-50%); -o-transform:translateX(-50%); -moz-transform:translateX(-50%); -webkit-transform:translateX(-50%); } .main-content-wrapper{ width:78%; display:inline-block; float:left; padding:20px; } .main-content-wrapper .added-content:after{ clear:both; display: block; content: " "; } .main-content-wrapper .more-button{ width:98%; padding:10px; background-color:rgb(39,49,66); border:1px solid rgb(49,61,79); color:rgb(69,81,98); text-align:center; border-radius:3px; margin:1%; cursor:pointer; } .main-content-wrapper .more-button.disabled{ background-color:rgb(49,59,76); cursor:default; } .main-content-wrapper .more-button:hover{ background-color:rgb(49,59,76); } .main-menu-wrapper{ float:left; position:fixed; width:22%; height:100%; right:0; background-color:rgb(39,49,66); border-left:1px solid rgb(49,61,79); padding:15px; } .main-menu-wrapper .menu-title{ font-size:14px; color:rgb(91,103,121); margin:15px 0; font-weight:600; } .main-search{ border:1px solid rgb(49,61,79); background-color:rgb(39,49,66); color:#fff; } .main-search::-webkit-input-placeholder{ color:rgb(69,81,98); } .main-search::-moz-placeholder{ color:rgb(69,81,98); } .main-menu-wrapper .menu-info{ font-size:0.8em; color:rgb(91,103,121); font-weight:400; } .main-menu-wrapper .menu-info strong{ font-size:1em; color:#fff; font-weight:500; } @media screen and (max-width:480px){ .main-menu-wrapper{ display:none; } .each-content{ width:98%; } .main-content-wrapper{ width:100%; } .main-sub-nav .content{ float:left; display:inline-block; color:rgb(124,140,165); margin-top:14px; padding:13px 28px; font-size:14px; -webkit-box-sizing:initial; -moz-box-sizing:initial; box-sizing:initial; line-height:1; text-decoration:none; cursor:pointer; background-color:rgb(34,44,60); border:1px solid rgb(49,61,79); } } @media screen and (min-width:481px) and (max-width:720px){ .main-menu-wrapper{ display:none; } .each-content{ width:48%; } .main-content-wrapper{ width:100%; } .main-sub-nav .content{ float:left; display:inline-block; color:rgb(124,140,165); margin-top:19px; padding:8px 10px; font-size:12px; -webkit-box-sizing:initial; -moz-box-sizing:initial; box-sizing:initial; line-height:1; text-decoration:none; cursor:pointer; background-color:rgb(34,44,60); border:1px solid rgb(49,61,79); } } @media screen and (min-width:721px) and (max-width:1180px){ .each-content{ width:31.33333%; } } @media screen and (min-width:1181px){ } .upload-wrapper{ background-color:rgb(27,36,49); margin:70px 0 0 0; float:left; width:100%; } .upload-menu-wrapper{ width:20%; background-color:rgb(39,49,66); border:1px solid rgb(49,61,79); position:fixed; height:100%; left:0; padding:20px; } .upload-menu-wrapper .inner-wrapper{ max-width:300px; margin:auto; text-align:center; } .upload-menu-wrapper .button-wrapper{ width:90%; display:block; margin:auto; } .upload-menu-wrapper .button-wrapper:after{ clear:both; display: block; content: " "; } .upload-menu-wrapper .button-wrapper .button{ text-decoration: none; display:inline-block; float:left; border:1px solid rgb(49,61,79); background-color:rgb(41,51,69); color:#fff; font-weight:300; margin:1%; width:49%; height:60px; text-align:center; line-height:60px; } .upload-menu-wrapper .button-wrapper .button:first-child{ margin-left:0; } .upload-menu-wrapper .button-wrapper .button:last-child{ margin-right:0; } .upload-menu-wrapper .button-wrapper .button.active{ background-color:rgb(38,91,136); border:1px solid rgb(36,154,242); } .upload-main-wrapper{ width:80%; margin-left:20%; position:absolute; } .content-input-wrapper{ margin:20px 5%; background-color:#fff; border-radius:2px; } .right-stick-input{ width:90%; margin:auto; } .right-stick-input input{ width:80%; float:left; border:1px solid rgb(49,61,79); background-color:rgb(41,51,69); border-right:none; border-top-right-radius:0px; border-bottom-right-radius:0px; color:#fff; } .right-stick-input div{ float:left; width:20%; border:1px solid rgb(49,61,79); background-color:rgb(49,60,89); height:44px; line-height:44px; font-size:11px; text-align: center; color:#fff; } .upload-submit{ background-color:rgb(34,44,60); border:1px solid rgb(49,61,79); color:rgb(124,140,165); width:90%; text-align:center; border-radius:2px; display:inline-block; height:44px; line-height:44px; text-decoration: none; } .upload-submit:hover{ background-color:rgb(55,67,85); } .file-uploader{ width:90%; margin:15px 5%; position:relative; display:inline-block; min-height:400px; background-color:rgb(247,248,250); border:3px dashed rgb(60,75,110); cursor:pointer; padding:15px; } .file-uploader .inner{ width:100%; text-align:center; left:0; text-align:center; position:absolute; top:50%; transform:translateY(-50%); -o-transform:translateY(-50%); -moz-transform:translateY(-50%); -webkit-transform:translateY(-50%); } .file-uploader .inner .filename{ font-weight:500; font-size:19px; margin-top:5px; } .file-uploader .inner .size{ font-weight:400; font-size:16px; color:#ddd; } .file-uploader .inner i{ color:rgb(60,75,110); } .file-uploader .inner .intro{ font-weight:400; font-size:20px; margin-top:5px; color:rgb(60,75,110); } .upload-content{ width:90%; margin-left:5%; margin-bottom:5%; font-size:16px; padding:20px; } .upload-content:focus{ border:1px solid #999; outline:none; } @media screen and (max-width:480px){ .upload-menu-wrapper{ width:100%; background-color:rgb(39,49,66); border:1px solid rgb(49,61,79); position:absolute; height:initial; left:0; right:0; padding:20px; z-index:1; } .upload-menu-wrapper .button{ font-size:20px; } .upload-main-wrapper{ margin-top:260px; width:98%; margin-left:1%; } } @media screen and (min-width:481px) and (max-width:720px){ .upload-menu-wrapper{ width:100%; background-color:rgb(39,49,66); border:1px solid rgb(49,61,79); position:fixed; height:initial; left:0; right:0; padding:20px; z-index:999; } .upload-menu-wrapper .button{ font-size:20px; } .upload-main-wrapper{ margin-top:260px; width:95%; margin-left:2.5%; } .content-input-wrapper{ margin:20px 0%; background-color:#fff; border-radius:2px; } } @media screen and (min-width:721px) and (max-width:1180px){ .upload-menu-wrapper{ width:30%; background-color:rgb(39,49,66); border:1px solid rgb(49,61,79); position:fixed; left:0; right:0; padding:20px; z-index:999; } .upload-main-wrapper{ width:70%; margin-left:30%; } } @media screen and (min-width:1181px){ } .mypage-wrapper{ background-color:rgb(27,36,49); margin:70px 0 0 0; float:left; width:100%; } .mypage-wrapper .mypage-details{ width:100%; text-align: center; margin:auto; position:fixed; top:70px; border-bottom:1px solid rgb(49,61,79); background-color:rgb(41,51,69); } .mypage-details > *{ display:inline-block; padding:10px; font-size:1em; color:rgb(91,103,121); font-weight:400; } .mypage-wrapper .mypage-details .name{ font-weight:400; } .mypage-wrapper .mypage-details .remain{ font-weight:400; } .mypage-wrapper .mypage-details .in-process{ font-weight:400; } .mypage-wrapper .mypage-details .done{ font-weight:400; } .mypage-wrapper .mypage-details div strong{ color:#fff; font-size:1.2em; font-weight:500; } .mypage-content-wrapper{ width:90%; margin-left:5%; margin-top:150px; } .mypage-content-wrapper .content{ padding:15px; margin-bottom:15px; cursor:pointer; border-bottom:1px solid rgb(49,61,79); background-color:rgb(41,51,69); } .mypage-content-wrapper .content .title{ color:#fff; font-weight:400; font-size:1.1em; } .mypage-content-wrapper .content .box-wrapper:after{ clear:both; display: block; content: " "; } .mypage-content-wrapper .content .box-wrapper .box{ text-align:center; padding:10px 20px; display:inline-block; background-color:rgb(34,44,60); border:1px solid rgb(49,61,79); color:rgb(124,140,165); width:18%; margin:1%; float:left; } .mypage-content-wrapper .content .box-wrapper .box.active{ background-color:rgb(44,54,70); } .ba-modal-wrapper{ background-color:rgba(0,0,0,.4); position:fixed; width:100%; height:100%; z-index:9999; top:0; } .ba-modal{ max-width:700px; width:90%; border-bottom:1px solid rgb(49,61,79); background-color:rgb(27,36,49); position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); -o-transform:translate(-50%,-50%); -moz-transform:translate(-50%,-50%); -webkit-transform:translate(-50%,-50%); padding:30px; overflow-y: auto; max-height:100%; } .ba-modal .upper{ position:relative; } .ba-modal .upper .title{ display:inline-block; color:#fff; font-weight:100; font-size:1em; margin:0 0 30px 0; } .ba-modal .upper .date{ color:rgb(124,140,165); position:relative; top:-14px; font-size:14px; font-weight:300; } .ba-modal .upper .buy{ font-weight:100; position:absolute; right:0; font-size:0.9em; padding:3px 5px; color:#fff; top:0; border-radius:2px; background-color:rgb(54,174,70); } .ba-modal .upper .sell{ position:absolute; right:5px; font-size:1em; padding:3px 5px; color:#fff; background-color:rgb(34,153,241); } .ba-modal img{ width:100%; height:auto; box-shadow:0 0 14px rgba(21,42,55,.4); } .ba-modal .lower .contents{ background-color:rgb(34,44,60); border:1px solid rgb(49,61,79); padding:15px; color:rgb(124,140,165); font-weight:200; font-size:0.9em; line-height:1.2; margin-bottom:5px; } .ba-modal .lower .contents .name{ text-align:right; margin:5px 0px; } .ba-modal .lower .contents .name strong{ font-weight:400; font-size:1.1em; } .ba-modal .modal-button{ background-color:rgb(34,44,60); border:1px solid rgb(49,61,79); color:rgb(124,140,165); font-weight:400; font-size:1.1em; text-decoration: none; padding:5px 10px; display:inline-block; } @media screen and (max-width:480px){ .mypage-content-wrapper{ width:100%; margin-left:0; } .mypage-content-wrapper .content .box-wrapper .box{ padding:5px 10px; } } @media screen and (min-width:481px) and (max-width:720px){ } @media screen and (min-width:721px) and (max-width:1180px){ } @media screen and (min-width:1181px){ }
0.255437
0.064388
.root { display: flex; justify-content: center; } .root-child { flex-shrink: 1; min-width: 12rem; } /* Each option */ .option-label { display: inline-block; font-size: 1.4rem; margin-bottom: 0.5rem; } .option-block { margin-bottom: 2rem; } /* Opponent */ .opponent { display: flex; margin: 0px -4px; } #bot_opponent { background-color: #ff5c67; color: white; } #human_opponent { background-color: #d8d6de; } #watch { background-color: #d8d6de; } .opponent-choice { display: flex; justify-content: center; align-items: flex-end; width: 100px; height: 100px; margin: 0px 4px; border-radius: 5px; } .opponent-choice img { margin-bottom: 1rem; } .opponent-choice label { font-size: 1.2rem; text-transform: lowercase; } .opponent-choice > div { display: flex; flex-direction: column; text-align: center; margin-bottom: 2rem; } /* Level */ select { display: block; } /* Turn */ .turn { display: flex; flex-wrap: wrap; margin: 0px -4px; } .turn-button { display: block; margin: 0px 4px; height: 75px; max-width: 155px; min-width: 110px; border-radius: 5px; background-color: #d8d6de; color: #777583; text-align: center; flex: 1; } .turn-button.selected { background-color: #21cebe; color: white; } .turn-button span { display: block; } .turn-button span:first-child { font-family: 'Baloo Da 2', cursive; font-weight: 800; letter-spacing: 0.05em; font-size: 2.5rem; text-transform: uppercase; margin-top: 1rem; } .turn-button span:last-child { font-size: 1rem; } /* Submit */ .submit-block { display: flex; justify-content: center; max-width: 320px; margin-top: 5rem; } .submit-btn { display: flex; flex-direction: column; justify-content: center; text-align: center; height: 50px; width: 100px; border-radius: 5px; background-color: #6c5fac; } .submit-btn:active { transform: scale(1.05); background-color: #7663d3; } .submit-link { text-decoration: none; color: white; font-size: 2rem; font-weight: 500; text-transform: uppercase; }
www/src/setup.css
.root { display: flex; justify-content: center; } .root-child { flex-shrink: 1; min-width: 12rem; } /* Each option */ .option-label { display: inline-block; font-size: 1.4rem; margin-bottom: 0.5rem; } .option-block { margin-bottom: 2rem; } /* Opponent */ .opponent { display: flex; margin: 0px -4px; } #bot_opponent { background-color: #ff5c67; color: white; } #human_opponent { background-color: #d8d6de; } #watch { background-color: #d8d6de; } .opponent-choice { display: flex; justify-content: center; align-items: flex-end; width: 100px; height: 100px; margin: 0px 4px; border-radius: 5px; } .opponent-choice img { margin-bottom: 1rem; } .opponent-choice label { font-size: 1.2rem; text-transform: lowercase; } .opponent-choice > div { display: flex; flex-direction: column; text-align: center; margin-bottom: 2rem; } /* Level */ select { display: block; } /* Turn */ .turn { display: flex; flex-wrap: wrap; margin: 0px -4px; } .turn-button { display: block; margin: 0px 4px; height: 75px; max-width: 155px; min-width: 110px; border-radius: 5px; background-color: #d8d6de; color: #777583; text-align: center; flex: 1; } .turn-button.selected { background-color: #21cebe; color: white; } .turn-button span { display: block; } .turn-button span:first-child { font-family: 'Baloo Da 2', cursive; font-weight: 800; letter-spacing: 0.05em; font-size: 2.5rem; text-transform: uppercase; margin-top: 1rem; } .turn-button span:last-child { font-size: 1rem; } /* Submit */ .submit-block { display: flex; justify-content: center; max-width: 320px; margin-top: 5rem; } .submit-btn { display: flex; flex-direction: column; justify-content: center; text-align: center; height: 50px; width: 100px; border-radius: 5px; background-color: #6c5fac; } .submit-btn:active { transform: scale(1.05); background-color: #7663d3; } .submit-link { text-decoration: none; color: white; font-size: 2rem; font-weight: 500; text-transform: uppercase; }
0.499512
0.105211
.permanent{ display: flex; flex-direction: row; justify-content: flex-start; align-items: center; width: 600px; height: 60px; stroke-width: 1px; margin: 8px; /*opacity: 0.7;*/ border-style: solid; border-radius: 25px; border-color: rgb(179, 178, 177); border-width: 2px; font-family: Montserrat, sans-serif; font-size: 18px; overflow:hidden; white-space:nowrap; text-overflow: ellipsis; user-select: none; cursor: pointer; color: #3af55c; background: rgba(53, 53, 53, 1); } .buttons{ margin: 10px; } .popUp{ height: auto; display: none; flex-direction: column; align-items: center; justify-content: center; } .popUp.hidden{ /*display: none;*/ height: 0; } .titleLinkDiv{ width: 350px; overflow: hidden; text-overflow: ellipsis; text-align: left; display: block; color: white; opacity: 1; } .titleLink{ color: white; opacity: 1; margin: 0px; } .titleLink.selectedRecommendation{ color: black; } .selectedRecommendation{ background-color: white; color: black; } .progressTitle{ margin: 0px; } .thumbUp, .thumbDown, .playButton{ font-size: 35px; background: none; border: none; outline: none; color: #29a747; } .fa-pause-circle-o{ font-size: 35px; background: none; border: none; outline: none; color: #29a747; } .recommendation{ display: none; flex-direction: column; justify-content: center; align-items: center; } .recommendation.active{ display: flex; } .miniHistogram{ display: flex; align-items: center; justify-content: center; } .artistNameRecommendation{ margin: 1px; text-align: center; } .showScatterplot { outline:none; background-color: #4CAF50; border: none; color: white; padding: 15px 32px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; margin: 4px 2px; cursor: pointer; } .showPopUp{ outline: none; color: #29a747; background-color: rgba(53, 53, 53, 1); border-style: solid; border-radius: 25px; border-color: rgb(179, 178, 177); border-width: 2px; } .showPopUp.selectedShowPopUp{ color: rgba(24,24,24,1); background-color: #76ed8f; opacity: 1; } #warningNoRecommendations{ display: none; color: #75ec8f }
public/stylesheets/recommendation.css
.permanent{ display: flex; flex-direction: row; justify-content: flex-start; align-items: center; width: 600px; height: 60px; stroke-width: 1px; margin: 8px; /*opacity: 0.7;*/ border-style: solid; border-radius: 25px; border-color: rgb(179, 178, 177); border-width: 2px; font-family: Montserrat, sans-serif; font-size: 18px; overflow:hidden; white-space:nowrap; text-overflow: ellipsis; user-select: none; cursor: pointer; color: #3af55c; background: rgba(53, 53, 53, 1); } .buttons{ margin: 10px; } .popUp{ height: auto; display: none; flex-direction: column; align-items: center; justify-content: center; } .popUp.hidden{ /*display: none;*/ height: 0; } .titleLinkDiv{ width: 350px; overflow: hidden; text-overflow: ellipsis; text-align: left; display: block; color: white; opacity: 1; } .titleLink{ color: white; opacity: 1; margin: 0px; } .titleLink.selectedRecommendation{ color: black; } .selectedRecommendation{ background-color: white; color: black; } .progressTitle{ margin: 0px; } .thumbUp, .thumbDown, .playButton{ font-size: 35px; background: none; border: none; outline: none; color: #29a747; } .fa-pause-circle-o{ font-size: 35px; background: none; border: none; outline: none; color: #29a747; } .recommendation{ display: none; flex-direction: column; justify-content: center; align-items: center; } .recommendation.active{ display: flex; } .miniHistogram{ display: flex; align-items: center; justify-content: center; } .artistNameRecommendation{ margin: 1px; text-align: center; } .showScatterplot { outline:none; background-color: #4CAF50; border: none; color: white; padding: 15px 32px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; margin: 4px 2px; cursor: pointer; } .showPopUp{ outline: none; color: #29a747; background-color: rgba(53, 53, 53, 1); border-style: solid; border-radius: 25px; border-color: rgb(179, 178, 177); border-width: 2px; } .showPopUp.selectedShowPopUp{ color: rgba(24,24,24,1); background-color: #76ed8f; opacity: 1; } #warningNoRecommendations{ display: none; color: #75ec8f }
0.271638
0.148386
.custom_gallery_layout_label { width: 74px !important; } .custom_gallery_layout_control { margin-left: 80px !important; } .gallery_plugin_message { font-weight: 400; background: #d54d21; padding: 1em; margin: 10px 0; } .gallery_plugin_message > p { color: #fff; margin: 0px !important; } .widget_premium_feature { color: #FF0000; font-size: 13px !important; } .gallery-shortcode-label { color:#5A5A5A!important; font-family:Georgia,Times New Roman,Times,serif!important; font-size:1.8em!important; font-weight:normal!important; } .gallery_icon { background: url(../images/icon.png) no-repeat top left; display: inline-block; height: 16px; margin: 0 2px 0 0; vertical-align: sub; width: 16px; } .separator-doubled { padding: 0; height: 0; border: none; border-top: medium double #d5d5d5; color: #333; text-align: center; margin-top: 10px; } .separator-single { padding: 0; height: 0; border: none; border-bottom: 1px solid #d5d5d5; color: #333; text-align: center; margin-top: 10px; margin-bottom: 10px; } .dataTable td { text-align: left !important; } .breadcrumb { padding: 8px 15px; margin: 0 0 20px; list-style: none; background-color: #f5f5f5; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .breadcrumb > li { display: inline-block; *display: inline; text-shadow: 0 1px 0 #ffffff; *zoom: 1; } .breadcrumb > li > .divider { padding: 0 5px; color: #ccc; } .breadcrumb > .active { color: #999999; } .btn-small { padding: 7px 12px 6px 12px; line-height: 13px; } button.btn.btn-small, input[type="submit"].btn.btn-small { *padding-top: 3px; *padding-bottom: 3px; } .btn { display: inline-block; *display: inline; padding: 4px 12px; margin-bottom: 0; *margin-left: .3em; font-size: 12px; line-height: 20px; color: #333333; text-align: center; text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); vertical-align: middle; cursor: pointer; background-color: #f5f5f5; *background-color: #e6e6e6; background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6)); background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6); background-image: -o-linear-gradient(top, #ffffff, #e6e6e6); background-image: linear-gradient(to bottom, #ffffff, #e6e6e6); background-repeat: repeat-x; border: 1px solid #bbbbbb; *border: 0; 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-bottom-color: #a2a2a2; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0); filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); *zoom: 1; -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); } .btn:hover, .btn:active, .btn.active, .btn.disabled, .btn[disabled] { color: #333333; background-color: #e6e6e6; *background-color: #d9d9d9; } .btn:active, .btn.active { background-color: #cccccc \9; } .btn:first-child { *margin-left: 0; } .btn:hover { color: #333333; text-decoration: none; background-position: 0 -15px; -webkit-transition: background-position 0.1s linear; -moz-transition: background-position 0.1s linear; -o-transition: background-position 0.1s linear; transition: background-position 0.1s linear; } .btn:focus { outline: thin dotted #333; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } .btn.active, .btn:active { background-image: none; outline: 0; -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); } .btn-primary.active, .btn-warning.active, .btn-danger.active, .btn-success.active, .btn-info.active, .btn-inverse.active { color: rgba(255, 255, 255, 0.75); } .btn { border-color: #c5c5c5; border-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25); } .btn-primary { color: #ffffff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); background-color: #006dcc; *background-color: #0044cc; background-image: -moz-linear-gradient(top, #0088cc, #0044cc); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc)); background-image: -webkit-linear-gradient(top, #0088cc, #0044cc); background-image: -o-linear-gradient(top, #0088cc, #0044cc); background-image: linear-gradient(to bottom, #0088cc, #0044cc); background-repeat: repeat-x; border-color: #0044cc #0044cc #002a80; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0); filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); margin-top: 0px; } .btn-primary:hover, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] { color: #ffffff; background-color: #0044cc; *background-color: #003bb3; } .btn-primary:active, .btn-primary.active { background-color: #003399 \9; } .btn-warning { color: #ffffff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); background-color: #faa732; *background-color: #f89406; background-image: -moz-linear-gradient(top, #fbb450, #f89406); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406)); background-image: -webkit-linear-gradient(top, #fbb450, #f89406); background-image: -o-linear-gradient(top, #fbb450, #f89406); background-image: linear-gradient(to bottom, #fbb450, #f89406); background-repeat: repeat-x; border-color: #f89406 #f89406 #ad6704; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0); filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); } .btn-warning:hover, .btn-warning:active, .btn-warning.active, .btn-warning.disabled, .btn-warning[disabled] { color: #ffffff; background-color: #f89406; *background-color: #df8505; } .btn-warning:active, .btn-warning.active { background-color: #c67605 \9; } .btn-danger { color: #ffffff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); background-color: #da4f49; *background-color: #bd362f; background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f)); background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f); background-image: -o-linear-gradient(top, #ee5f5b, #bd362f); background-image: linear-gradient(to bottom, #ee5f5b, #bd362f); background-repeat: repeat-x; border-color: #bd362f #bd362f #802420; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0); filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); } .btn-danger:hover, .btn-danger:active, .btn-danger.active, .btn-danger.disabled, .btn-danger[disabled] { color: #ffffff; background-color: #bd362f; *background-color: #a9302a; } .btn-danger:active, .btn-danger.active { background-color: #942a25 \9; } .btn-success { color: #ffffff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); background-color: #5bb75b; *background-color: #51a351; background-image: -moz-linear-gradient(top, #62c462, #51a351); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351)); background-image: -webkit-linear-gradient(top, #62c462, #51a351); background-image: -o-linear-gradient(top, #62c462, #51a351); background-image: linear-gradient(to bottom, #62c462, #51a351); background-repeat: repeat-x; border-color: #51a351 #51a351 #387038; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0); filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); } .btn-success:hover, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled] { color: #ffffff; background-color: #51a351; *background-color: #499249; } .btn-success:active, .btn-success.active { background-color: #408140 \9; } .btn-info { color: #ffffff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); background-color: #49afcd; *background-color: #2f96b4; background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4)); background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4); background-image: -o-linear-gradient(top, #5bc0de, #2f96b4); background-image: linear-gradient(to bottom, #5bc0de, #2f96b4); background-repeat: repeat-x; border-color: #2f96b4 #2f96b4 #1f6377; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0); filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); margin-top: 0px; } .btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] { color: #ffffff; background-color: #2f96b4; *background-color: #2a85a0; } .btn-info:active, .btn-info.active { background-color: #24748c \9; } .btn-inverse { color: #ffffff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); background-color: #363636; *background-color: #222222; background-image: -moz-linear-gradient(top, #444444, #222222); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222)); background-image: -webkit-linear-gradient(top, #444444, #222222); background-image: -o-linear-gradient(top, #444444, #222222); background-image: linear-gradient(to bottom, #444444, #222222); background-repeat: repeat-x; border-color: #222222 #222222 #000000; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0); filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); } .btn-inverse:hover, .btn-inverse:active, .btn-inverse.active, .btn-inverse.disabled, .btn-inverse[disabled] { color: #ffffff; background-color: #222222; *background-color: #151515; } .btn-inverse:active, .btn-inverse.active { background-color: #080808 \9; } .stat { margin: 0px; padding: 0px; } .item-list.table .percent { width: 30px; float: right; margin-right: 10px; margin-top: 3px; } .item-list.table .title { padding-top: -5px; } .stat .title { margin-left: 10px; margin-right: 10px; font-size: 13px; } .stat.good .percent { color: #52e136; font-size: 16px; font-weight: bold; } .stat.bad .percent { color: #d12610; font-size: 16px; font-weight: bold; } .stat.ok .percent { color: #37b7f3; font-size: 16px; font-weight: bold; } .line-chart { display: none } .layout-block { background-color: #F6F6F6; background-image: -webkit-gradient(linear, 0 0%, 0 100%, from(#F9F9F9), to(#EDEDED)); background-image: -webkit-linear-gradient(top, #F9F9F9 0%, #EDEDED 100%); background-image: -moz-linear-gradient(top, #F9F9F9 0%, #EDEDED 100%); background-image: -ms-linear-gradient(top, #F9F9F9 0%, #EDEDED 100%); background-image: -o-linear-gradient(top, #F9F9F9 0%, #EDEDED 100%); background-image: linear-gradient(top, #F9F9F9 0%, #EDEDED 100%); filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffF9F9F9', endColorstr='#ffEDEDED', GradientType=0); border: 1px solid #D5D5D5; box-shadow: 0 1px 0 0 white inset, 0 1px 0 rgba(255, 255, 255, 0.4); -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; line-height: 18px; margin: 0 0 20px 0; padding: 10px; } .layout-span12 { width: 940px; } .layout-span11 { width: 860px; } .layout-span10 { width: 780px; } .layout-span9 { width: 700px; } .layout-span8 { width: 620px; } .layout-span7 { width: 540px; } .layout-span6 { width: 460px; } .layout-span5 { width: 380px; } .layout-span4 { width: 300px; } .layout-span3 { width: 220px; } .layout-span2 { width: 140px; } .layout-span1 { width: 60px; } .offset12 { margin-left: 980px; } .offset11 { margin-left: 900px; } .offset10 { margin-left: 820px; } .offset9 { margin-left: 740px; } .offset8 { margin-left: 660px; } .offset7 { margin-left: 580px; } .offset6 { margin-left: 500px; } .offset5 { margin-left: 420px; } .offset4 { margin-left: 340px; } .offset3 { margin-left: 260px; } .offset2 { margin-left: 180px; } .offset1 { margin-left: 100px; } .fluid-layout { width: 99%; margin-top: 1%; *zoom: 1; } .fluid-layout:before, .fluid-layout:after { display: table; line-height: 0; content: ""; } .fluid-layout:after { clear: both; } .fluid-layout [class*="layout-span"] { display: block; float: left; width: 100%; min-height: 30px; margin-left: 2.127659574468085%; *margin-left: 2.074468085106383%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .fluid-layout [class*="layout-span"]:first-child { margin-left: 0; } .fluid-layout .controls-row [class*="layout-span"] + [class*="layout-span"] { margin-left: 2.127659574468085%; } .fluid-layout .layout-span12 { width: 100%; *width: 99.94680851063829%; } .fluid-layout .layout-span11 { width: 91.48936170212765%; *width: 91.43617021276594%; } .fluid-layout .layout-span10 { width: 82.97872340425532%; *width: 82.92553191489361%; } .fluid-layout .layout-span9 { width: 74.46808510638297%; *width: 74.41489361702126%; } .fluid-layout .layout-span8 { width: 65.95744680851064%; *width: 65.90425531914893%; } .fluid-layout .layout-span7 { width: 57.44680851063829%; *width: 57.39361702127659%; } .fluid-layout .layout-span6 { width: 48.93617021276595%; *width: 48.88297872340425%; } .fluid-layout .layout-span5 { width: 40.42553191489362%; *width: 40.37234042553192%; } .fluid-layout .layout-span4 { width: 31.914893617021278%; *width: 31.861702127659576%; } .fluid-layout .layout-span3 { width: 23.404255319148934%; *width: 23.351063829787233%; } .fluid-layout .layout-span2 { width: 14.893617021276595%; *width: 14.840425531914894%; } .fluid-layout .layout-span1 { width: 6.382978723404255%; *width: 6.329787234042553%; } .fluid-layout .offset12 { margin-left: 104.25531914893617%; *margin-left: 104.14893617021275%; } .fluid-layout .offset12:first-child { margin-left: 102.12765957446808%; *margin-left: 102.02127659574467%; } .fluid-layout .offset11 { margin-left: 95.74468085106382%; *margin-left: 95.6382978723404%; } .fluid-layout .offset11:first-child { margin-left: 93.61702127659574%; *margin-left: 93.51063829787232%; } .fluid-layout .offset10 { margin-left: 87.23404255319149%; *margin-left: 87.12765957446807%; } .fluid-layout .offset10:first-child { margin-left: 85.1063829787234%; *margin-left: 84.99999999999999%; } .fluid-layout .offset9 { margin-left: 78.72340425531914%; *margin-left: 78.61702127659572%; } .fluid-layout .offset9:first-child { margin-left: 76.59574468085106%; *margin-left: 76.48936170212764%; } .fluid-layout .offset8 { margin-left: 70.2127659574468%; *margin-left: 70.10638297872339%; } .fluid-layout .offset8:first-child { margin-left: 68.08510638297872%; *margin-left: 67.9787234042553%; } .fluid-layout .offset7 { margin-left: 61.70212765957446%; *margin-left: 61.59574468085106%; } .fluid-layout .offset7:first-child { margin-left: 59.574468085106375%; *margin-left: 59.46808510638297%; } .fluid-layout .offset6 { margin-left: 53.191489361702125%; *margin-left: 53.085106382978715%; } .fluid-layout .offset6:first-child { margin-left: 51.063829787234035%; *margin-left: 50.95744680851063%; } .fluid-layout .offset5 { margin-left: 44.68085106382979%; *margin-left: 44.57446808510638%; } .fluid-layout .offset5:first-child { margin-left: 42.5531914893617%; *margin-left: 42.4468085106383%; } .fluid-layout .offset4 { margin-left: 36.170212765957444%; *margin-left: 36.06382978723405%; } .fluid-layout .offset4:first-child { margin-left: 34.04255319148936%; *margin-left: 33.93617021276596%; } .fluid-layout .offset3 { margin-left: 27.659574468085104%; *margin-left: 27.5531914893617%; } .fluid-layout .offset3:first-child { margin-left: 25.53191489361702%; *margin-left: 25.425531914893618%; } .fluid-layout .offset2 { margin-left: 19.148936170212764%; *margin-left: 19.04255319148936%; } .fluid-layout .offset2:first-child { margin-left: 17.02127659574468%; *margin-left: 16.914893617021278%; } .fluid-layout .offset1 { margin-left: 10.638297872340425%; *margin-left: 10.53191489361702%; } .fluid-layout .offset1:first-child { margin-left: 8.51063829787234%; *margin-left: 8.404255319148938%; } [class*="layout-span"].hide, .fluid-layout [class*="layout-span"].hide { display: none; } [class*="layout-span"].pull-right, .fluid-layout [class*="layout-span"].pull-right { float: right; } .fluid-layout input[class*="layout-span"], .fluid-layout select[class*="layout-span"], .fluid-layout textarea[class*="layout-span"], .fluid-layout .uneditable-input[class*="layout-span"] { float: none; margin-left: 0; } .fluid-layout input[class*="layout-span"], .fluid-layout select[class*="layout-span"], .fluid-layout textarea[class*="layout-span"], .fluid-layout .uneditable-input[class*="layout-span"], .fluid-layout .input-prepend [class*="layout-span"], .fluid-layout .input-append [class*="layout-span"] { display: inline-block; } .controls-row [class*="layout-span"], .fluid-layout .controls-row [class*="layout-span"] { float: left; } /*********************************TABLE CONTENT********************************/ table td[class*="layout-span"], table th[class*="layout-span"], .fluid-layout table td[class*="layout-span"], .fluid-layout table th[class*="layout-span"] { display: table-cell; float: none; margin-left: 0; } table td.layout-span1, table th.layout-span1 { float: none; width: 44px; margin-left: 0; } table td.layout-span2, table th.layout-span2 { float: none; width: 124px; margin-left: 0; } table td.layout-span3, table th.layout-span3 { float: none; width: 204px; margin-left: 0; } table td.layout-span4, table th.layout-span4 { float: none; width: 284px; margin-left: 0; } table td.layout-span5, table th.layout-span5 { float: none; width: 364px; margin-left: 0; } table td.layout-span6, table th.layout-span6 { float: none; width: 444px; margin-left: 0; } table td.layout-span7, table th.layout-span7 { float: none; width: 524px; margin-left: 0; } table td.layout-span8, table th.layout-span8 { float: none; width: 604px; margin-left: 0; } table td.layout-span9, table th.layout-span9 { float: none; width: 684px; margin-left: 0; } table td.layout-span10, table th.layout-span10 { float: none; width: 764px; margin-left: 0; } table td.layout-span11, table th.layout-span11 { float: none; width: 844px; margin-left: 0; } table td.layout-span12, table th.layout-span12 { float: none; width: 924px; margin-left: 0; } .layout-table-controls { margin: 0 -1px; } .layout-table-controls > li { display: inline-block; margin: 0 1px; } /*.layout-table-controls > li > .btn { padding: 0px; }*/ * / .layout-table-controls > li > .btn > i { margin-left: 0; margin-right: 0; } .layout-table-controls > li > a > i { margin-right: 0; font-size: 14px; color: #555; } .layout-table-controls > li > a.btn > b, .layout-table-controls > li > a > b { margin: 1px 0 -1px 0; font-size: 14px; color: #555; width: 1.1em; float: none; } .stats-overview-cont { padding-top: 0px; margin-bottom: 15px; } .stats-overview { clear: both; padding: 10px 10px 0px 10px; margin: 0px; margin-bottom: 5px; } .stats-overview .display { margin-right: 5px; float: left; } .stats-overview .details { color: #888; } .stats-overview .details .title { color: #777; font-size: 12px; font-weight: normal; margin-bottom: 3px; padding: 0px !important; } .stats-overview .details .title i { color: #999; margin-right: 2px; } .stats-overview .details .numbers { color: #777; font-size: 20px; font-weight: bold; margin-bottom: 6px; !important } .stats-overview .progress-layout { height: 10px; margin-bottom: 10px !important; } .stats-overview:hover { text-decoration: none !important; border-color: #999 !important; color: #444 !important; text-shadow: 0 1px 0px rgba(255, 255, 255, 1) !important; -webkit-transition: all 0.3s ease !important; -moz-transition: all 0.3s ease !important; -ms-transition: all 0.3s ease !important; -o-transition: all 0.3s ease !important; transition: all 0.3s ease !important; -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, .55) !important; -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, .55) !important; box-shadow: 0px 0px 3px rgba(0, 0, 0, .55) !important; } @-webkit-keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } @-moz-keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } @-ms-keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } @-o-keyframes progress-bar-stripes { from { background-position: 0 0; } to { background-position: 40px 0; } } @keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } .progress-layout { height: 20px; margin-bottom: 20px; overflow: hidden; background-color: #f7f7f7; background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9)); background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9); background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9); background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9); background-repeat: repeat-x; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0); -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); } .progress-layout .bar { float: left; width: 0; height: 100%; font-size: 12px; color: #ffffff; text-align: center; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); background-color: #0e90d2; background-image: -moz-linear-gradient(top, #149bdf, #0480be); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be)); background-image: -webkit-linear-gradient(top, #149bdf, #0480be); background-image: -o-linear-gradient(top, #149bdf, #0480be); background-image: linear-gradient(to bottom, #149bdf, #0480be); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0); -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-transition: width 0.6s ease; -moz-transition: width 0.6s ease; -o-transition: width 0.6s ease; transition: width 0.6s ease; } .progress-layout .bar + .bar { -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15); -moz-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15); box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15); } .progress-layout-striped .bar { background-color: #149bdf; background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -webkit-background-size: 40px 40px; -moz-background-size: 40px 40px; -o-background-size: 40px 40px; background-size: 40px 40px; } .progress-layout.active .bar { -webkit-animation: progress-bar-stripes 2s linear infinite; -moz-animation: progress-bar-stripes 2s linear infinite; -ms-animation: progress-bar-stripes 2s linear infinite; -o-animation: progress-bar-stripes 2s linear infinite; animation: progress-bar-stripes 2s linear infinite; } .progress-layout-danger .bar, .progress-layout .bar-danger { background-color: #dd514c; background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35)); background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35); background-image: -o-linear-gradient(top, #ee5f5b, #c43c35); background-image: linear-gradient(to bottom, #ee5f5b, #c43c35); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0); } .progress-layout-danger.progress-layout-striped .bar, .progress-layout-striped .bar-danger { background-color: #ee5f5b; background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .progress-layout-success .bar, .progress-layout .bar-success { background-color: #5eb95e; background-image: -moz-linear-gradient(top, #62c462, #57a957); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957)); background-image: -webkit-linear-gradient(top, #62c462, #57a957); background-image: -o-linear-gradient(top, #62c462, #57a957); background-image: linear-gradient(to bottom, #62c462, #57a957); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0); } .progress-layout-success.progress-layout-striped .bar, .progress-layout-striped .bar-success { background-color: #62c462; background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .progress-layout-info .bar, .progress-layout .bar-info { background-color: #4bb1cf; background-image: -moz-linear-gradient(top, #5bc0de, #339bb9); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9)); background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9); background-image: -o-linear-gradient(top, #5bc0de, #339bb9); background-image: linear-gradient(to bottom, #5bc0de, #339bb9); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0); } .progress-layout-info.progress-layout-striped .bar, .progress-layout-striped .bar-info { background-color: #5bc0de; background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .progress-layout-warning .bar, .progress-layout .bar-warning { background-color: #faa732; background-image: -moz-linear-gradient(top, #fbb450, #f89406); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406)); background-image: -webkit-linear-gradient(top, #fbb450, #f89406); background-image: -o-linear-gradient(top, #fbb450, #f89406); background-image: linear-gradient(to bottom, #fbb450, #f89406); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0); } .progress-layout-warning.progress-layout-striped .bar, .progress-layout-striped .bar-warning { background-color: #fbb450; background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .widget-layout { background: none repeat scroll 0 0 #F9F9F9; border-top: 1px solid #e0dede; border-left: 1px solid #e0dede; border-right: 1px solid #e0dede; clear: both; margin-top: 0px; margin-bottom: 20px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } .widget-layout-title { background-color: #EFEFEF; background-image: -webkit-gradient(linear, 0 0%, 0 100%, from(#FDFDFD), to(#EAEAEA)); background-image: -webkit-linear-gradient(top, #FDFDFD 0%, #EAEAEA 100%); background-image: -moz-linear-gradient(top, #FDFDFD 0%, #EAEAEA 100%); background-image: -ms-linear-gradient(top, #FDFDFD 0%, #EAEAEA 100%); background-image: -o-linear-gradient(top, #FDFDFD 0%, #EAEAEA 100%); background-image: -linear-gradient(top, #FDFDFD 0%, #EAEAEA 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdfdfd', endColorstr='#eaeaea', GradientType=0); border-bottom: 1px solid #e0dede; height: 36px; -webkit-border-radius: 3px 3px 0px 0px; -moz-border-radius: 3px 3px 0px 0px; border-radius: 3px 3px 0px 0px; } /****************************** Widget Section *********************************/ .widget-layout-title > h4 { color: #444; float: left; font-size: 13px; font-weight: bold; padding: 12px 11px 10px 15px; line-height: 12px; margin: 0px !important; } .widget-layout-title > h4 i { font-size: 14px; margin-right: 6px; !important } .widget-layout-title span.tools { padding: 3px 5px 2px; float: right; margin: 6px 0px 0 0 !important; cursor: pointer; } .widget-layout-title span.tools > a { display: inline-block; margin-right: 5px !important; color: #555; font-size: 14px; } .widget-layout-title span.tools > a:hover { text-decoration: none; -webkit-transition: all 0.1s ease-in-out; -moz-transition: all 0.1s ease-in-out; -o-transition: all 0.1s ease-in-out; -ms-transition: all 0.1s ease-in-out; transition: all 0.1s ease-in-out; opacity: .6; } .widget-layout-title .btn-group { margin-right: 5px !important; margin-top: -2px !important; } .widget-layout-title .btn-group .caret { margin-top: 8px !important; margin-left: 3px !important; } .widget-layout-body { padding: 10px 15px; border-bottom: 1px solid #CDCDCD; -webkit-border-radius: 0px 0px 3px 3px; -moz-border-radius: 0px 0px 3px 3px; border-radius: 0px 0px 3px 3px; } /********************** Widget Section *********************************/ .fluid-layout table { max-width: 100%; background-color: transparent; border-collapse: collapse; border-spacing: 0; } .fluid-layout .table { width: 100%; margin-bottom: 20px; margin-top: 10px !important } .fluid-layout .table th, .fluid-layout .table td { padding: 8px; line-height: 20px; text-align: left; vertical-align: top; border-top: 1px solid #dddddd; } .fluid-layout .table th { font-weight: bold; } .fluid-layout .table caption + thead tr:first-child th, .fluid-layout .table caption + thead tr:first-child td, .fluid-layout .table colgroup + thead tr:first-child th, .fluid-layout .table colgroup + thead tr:first-child td, .fluid-layout.table thead:first-child tr:first-child th, .fluid-layout.table thead :first-child tr:first-child td { border-top: 0; } .fluid-layout .table tbody + tbody { border-top: 2px solid #dddddd; } .fluid-layout .table .table { background-color: #ffffff; } .fluid-layout .table-condensed th, .fluid-layout .table-condensed td { padding: 4px 5px; } .fluid-layout .table-bordered { border: 1px solid #dddddd; border-collapse: separate; *border-collapse: collapse; border-left: 0; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .fluid-layout .table-bordered th, .fluid-layout .table-bordered td { border-left: 1px solid #dddddd; } .fluid-layout .table-striped tbody > tr:nth-child(odd) > td, .fluid-layout .table-striped tbody > tr:nth-child(odd) > th { background-color: #f9f9f9; } .fluid-layout .table-hover tbody tr:hover td, .fluid-layout .table-hover tbody tr:hover th { background-color: #f5f5f5; } .fluid-layout .table tbody tr.success td { background-color: #dff0d8; } .fluid-layout .table tbody tr.error td { background-color: #f2dede; } .fluid-layout .table tbody tr.warning td { background-color: #fcf8e3; } .fluid-layout .table tbody tr.info td { background-color: #d9edf7; } .fluid-layout .table-hover tbody tr.success:hover td { background-color: #d0e9c6; } .fluid-layout .table-hover tbody tr.error:hover td { background-color: #ebcccc; } .fluid-layout .table-hover tbody tr.warning:hover td { background-color: #faf2cc; } .fluid-layout .table-hover tbody tr.info:hover td { background-color: #c4e3f3; } .label-layout, .badge { display: inline-block; padding: 2px 4px; font-size: 11.844px; font-weight: bold; line-height: 14px; color: #ffffff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); white-space: nowrap; vertical-align: baseline; background-color: #999999; } .label-layout { -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } .badge { padding-right: 9px; padding-left: 9px; -webkit-border-radius: 9px; -moz-border-radius: 9px; border-radius: 9px; } .label-layout:empty, .badge:empty { display: none; } .label-layout-important, .badge-important { background-color: #b94a48; } .label-layout-important[href], .badge-important[href] { background-color: #953b39; } .label-layout-warning, .badge-warning { background-color: #f89406; } .label-layout-warning[href], .badge-warning[href] { background-color: #c67605; } .label-layout-success, .badge-success { background-color: #468847; } .label-layout-success[href], .badge-success[href] { background-color: #356635; } .label-layout-info, .badge-info { background-color: #3a87ad; } .label-layout-info[href], .badge-info[href] { background-color: #2d6987; } .label-layout-inverse, .badge-inverse { background-color: #333333; } .label-layout-inverse[href], .badge-inverse[href] { background-color: #1a1a1a; } .btn .label-layout, .btn .badge { position: relative; top: -1px; } .btn-mini .label-layout, .btn-mini .badge { top: 0; } .fluid-layout a { text-decoration: none !important } .fluid-layout a:hover { text-decoration: none !important } /***********************************************FORM CONTENT***********************************************/ .widget-layout-body .form form { margin: 0px !important; padding: 0px !important; } .widget-layout-body .layout-control-group:last-child { padding-bottom: 0px !important; margin-bottom: 0px !important; } .widget-layout-body .form-actions { margin-left: -15px !important; margin-right: -15px !important; margin-top: 20px !important; margin-bottom: -15px !important; margin-top: 20px; padding-left: 195px; -webkit-border-radius: 0px 0px 4px 4px; -moz-border-radius: 0px 0px 4px 4px; border-radius: 0px 0px 4px 4px; } .widget-layout-body .dataTables_info, .widget-layout-body .dataTables_paginate { /*margin-top: 5px !important;*/ padding-bottom: 0px !important; margin-bottom: -4px !important; } .dataTables_info { padding: 0px; display: block; float: left; } .dataTables_paginate { float: right; margin: 0px; } .dataTables_paginate .last { margin-right: 0 !important; } paging_full_numbers { height: 22px; line-height: 22px; } .paging_full_numbers .next:active, .paging_full_numbers .first:active, .paging_full_numbers .previous:active, .paging_full_numbers .last:active { font-weight: normal !important; } .paging_full_numbers a:active { outline: none } .paging_full_numbers a:hover { text-decoration: none; } .paging_full_numbers a.paginate_button, .paging_full_numbers a.paginate_active { border: 1px solid #d3d3d3; -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; padding: 5px 8px; margin: 0 3px; cursor: pointer; *cursor: hand; color: #919191; font-size: 11px; box-shadow: 0 1px 0 #fff inset, 0 1px 0px #eaeaea; -webkit-box-shadow: 0 1px 0 #fff inset, 0 1px 0px #eaeaea; -moz-box-shadow: 0 1px 0 #fff inset, 0 1px 0px #eaeaea; } .paging_full_numbers a.paginate_button { background: #ffffff; background: -moz-linear-gradient(top, #ffffff 0%, #f5f5f5 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f5f5f5)); background: -webkit-linear-gradient(top, #ffffff 0%, #f5f5f5 100%); background: -o-linear-gradient(top, #ffffff 0%, #f5f5f5 100%); background: -ms-linear-gradient(top, #ffffff 0%, #f5f5f5 100%); background: linear-gradient(top, #ffffff 0%, #f5f5f5 100%); } .paging_full_numbers a.paginate_button:hover { background: #fcfcfc; color: #327394; } .paging_full_numbers a.paginate_active, .paging_full_numbers a.paginate_button:active { background: #6f6f6f; color: #fff; border-color: #646464; box-shadow: 0 1px 2px #545454 inset, 0 1px 0 #fff; -webkit-box-shadow: 0 1px 2px #545454 inset, 0 1px 0 #fff; -moz-box-shadow: 0 1px 2px #545454 inset, 0 1px 0 #fff; font-weight: bold; } .paginate_button_disabled, .paginate_button_disabled:active { background: #F9F9F9 !important; color: #CCC !important; box-shadow: none !important; font-weight: normal !important; border: 1px solid #E5E5E5 !important; } .paginate_button_disabled:active { border-color: #d3d3d3 !important; } .dataTables_processing { position: absolute; top: 50%; left: 50%; width: 250px; height: 30px; margin-left: -125px; margin-top: -15px; padding: 14px 0 2px 0; border: 1px solid #ddd; text-align: center; color: #999; font-size: 14px; background-color: white; } .sorting { background: url('../images/tables/sort_both.png') no-repeat 100% 8px; } .sorting_asc { background: url('../images/tables/sort_asc.png') no-repeat 100% 8px; } .sorting_desc { background: url('../images/tables/sort_desc.png') no-repeat 100% 8px; } .sorting_asc_disabled { background: url('../images/tables/sort_asc_disabled.png') no-repeat 100% 8px; } .sorting_desc_disabled { background: url('../images/tables/sort_desc_disabled.png') no-repeat 100% 8px; } .table.dataTable th:active { outline: none; } .datatable-footer { border-top: 1px solid #ddd; padding: 15px 0; } .datatable-footer { background: #fcfcfc; background: -moz-linear-gradient(top, #fcfcfc 0%, #f5f5f5 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fcfcfc), color-stop(100%, #f5f5f5)); background: -webkit-linear-gradient(top, #fcfcfc 0%, #f5f5f5 100%); background: -o-linear-gradient(top, #fcfcfc 0%, #f5f5f5 100%); background: -ms-linear-gradient(top, #fcfcfc 0%, #f5f5f5 100%); background: linear-gradient(top, #fcfcfc 0%, #f5f5f5 100%); } .dataTables_scroll { clear: both; } .dataTables_scrollBody { *margin-top: -1px; -webkit-overflow-scrolling: touch; } .table.dataTable th:active { outline: none; } .datatable-footer { border-top: 1px solid #ddd; padding: 15px 0; margin-bottom: 10px; } .datatable-footer { background: #fcfcfc; background: -moz-linear-gradient(top, #fcfcfc 0%, #f5f5f5 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fcfcfc), color-stop(100%, #f5f5f5)); background: -webkit-linear-gradient(top, #fcfcfc 0%, #f5f5f5 100%); background: -o-linear-gradient(top, #fcfcfc 0%, #f5f5f5 100%); background: -ms-linear-gradient(top, #fcfcfc 0%, #f5f5f5 100%); background: linear-gradient(top, #fcfcfc 0%, #f5f5f5 100%); } .dataTables_scroll { clear: both; } .dataTables_scrollBody { *margin-top: -1px; -webkit-overflow-scrolling: touch; } .widget-layout-body .table { padding-bottom: 0px !important; margin-bottom: 0px !important; } .form-search input, .form-inline input, .layout-form input, .form-search textarea, .form-inline textarea, .layout-form textarea, .form-search select, .form-inline select, .layout-form select, .form-search .help-inline, .form-inline .help-inline, .layout-form .help-inline, .form-search .uneditable-input, .form-inline .uneditable-input, .layout-form .uneditable-input, .form-search .input-prepend, .form-inline .input-prepend, .layout-form .input-prepend, .form-search .input-append, .form-inline .input-append, .layout-form .input-append { display: inline-block; *display: inline; margin-bottom: 0; vertical-align: middle; *zoom: 1; } .layout-control-group { margin-bottom: 10px; } legend + .layout-control-group { margin-top: 20px; -webkit-margin-top-collapse: separate; } .layout-form .layout-control-group { *zoom: 1; } .layout-form .layout-control-group:before, .layout-form .layout-control-group:after { display: table; line-height: 0; content: ""; } .layout-form .layout-control-group:after { clear: both; } .layout-form .layout-control-label { float: left; width: 160px; padding-top: 8px; text-align: left; } .layout-form .layout-controls { *display: inline-block; *padding-left: 20px; margin-left: 180px; *margin-left: 0; } .layout-form .layout-controls-radio { margin-top: 7px; float: left; margin-left: 20px; } .layout-form .layout-controls:first-child { *padding-left: 180px; } .layout-form .help-block { margin-bottom: 0; } .layout-form input + .help-block, .layout-form select + .help-block, .layout-form textarea + .help-block, .layout-form .uneditable-input + .help-block, .layout-form .input-prepend + .help-block, .layout-form .input-append + .help-block { margin-top: 10px; } .layout-form .form-actions { padding-left: 180px; } .layout-control-group.warning > label, .layout-control-group.warning .help-block, .layout-control-group.warning .help-inline { color: #c09853; } .layout-control-group.warning .checkbox, .layout-control-group.warning .radio, .layout-control-group.warning input, .layout-control-group.warning select, .layout-control-group.warning textarea { color: #c09853; } .layout-control-group.warning input, .layout-control-group.warning select, .layout-control-group.warning textarea { border-color: #c09853; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } .layout-control-group.warning input:focus, .layout-control-group.warning select:focus, .layout-control-group.warning textarea:focus { border-color: #a47e3c; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; } .layout-control-group.warning .input-prepend .add-on, .layout-control-group.warning .input-append .add-on { color: #c09853; background-color: #fcf8e3; border-color: #c09853; } .layout-control-group.error > label, .layout-control-group.error .help-block, .layout-control-group.error .help-inline { color: #b94a48; } .error { color: #b94a48; } .layout-control-group.error .checkbox, .layout-control-group.error .radio, .layout-control-group.error input, .layout-control-group.error select, .layout-control-group.error textarea { color: #b94a48; } .layout-control-group.error input, .layout-control-group.error select, .layout-control-group.error textarea { border-color: #b94a48; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } .layout-control-group.error input:focus, .layout-control-group.error select:focus, .layout-control-group.error textarea:focus { border-color: #953b39; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; } .layout-control-group.error .input-prepend .add-on, .layout-control-group.error .input-append .add-on { color: #b94a48; background-color: #f2dede; border-color: #b94a48; } .layout-control-group.success > label, .layout-control-group.success .help-block, .layout-control-group.success .help-inline { color: #468847; } .layout-control-group.success .checkbox, .layout-control-group.success .radio, .layout-control-group.success input, .layout-control-group.success select, .layout-control-group.success textarea { color: #468847; } .layout-control-group.success input, .layout-control-group.success select, .layout-control-group.success textarea { border-color: #468847; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } .layout-control-group.success input:focus, .layout-control-group.success select:focus, .layout-control-group.success textarea:focus { border-color: #356635; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; } .layout-control-group.success .input-prepend .add-on, .layout-control-group.success .input-append .add-on { color: #468847; background-color: #dff0d8; border-color: #468847; } .layout-control-group.info > label, .layout-control-group.info .help-block, .layout-control-group.info .help-inline { color: #3a87ad; } .layout-control-group.info .checkbox, .layout-control-group.info .radio, .layout-control-group.info input, .layout-control-group.info select, .layout-control-group.info textarea { color: #3a87ad; } .layout-control-group.info input, .layout-control-group.info select, .layout-control-group.info textarea { border-color: #3a87ad; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } .layout-control-group.info input:focus, .layout-control-group.info select:focus, .layout-control-group.info textarea:focus { border-color: #2d6987; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3; -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3; } .layout-control-group.info .input-prepend .add-on, .layout-control-group.info .input-append .add-on { color: #3a87ad; background-color: #d9edf7; border-color: #3a87ad; } .layout-controls > .radio, .layout-controls > .checkbox { display: inline-block; /*padding: 0 !important;*/ margin: 0 !important; margin-top: 0px !important; margin-right: 15px !important; } .layout-controls > .radio.line, .layout-controls > .checkbox.line { display: block; padding: 0 !important; margin: 0 !important; margin-top: 5px !important; } .layout-controls .text { display: block; margin-top: 5px; } .layout-controls > .radio:first-child, .layout-controls > .checkbox:first-child { padding-top: 7px; } .dropup, .dropdown { position: relative; } .dropdown-toggle { *margin-bottom: -3px; } .dropdown-toggle:active, .open .dropdown-toggle { outline: 0; } /* # Other classes ================================================== */ .close { float: right; font-size: 16px; line-height: 16px; color: #000000; opacity: 0.2; filter: alpha(opacity=20); } .close:hover { color: #000000; text-decoration: none; cursor: pointer; opacity: 0.4; filter: alpha(opacity=40); } button.close { padding: 0; cursor: pointer; background: transparent; border: 0; } .pull-right { float: right; } .pull-left { float: left; } .hide { display: none; } .show { display: block; } .invisible { visibility: hidden; } .typeahead { margin-top: -1px; } .fade { opacity: 0; -webkit-transition: opacity 0.15s linear; -moz-transition: opacity 0.15s linear; -o-transition: opacity 0.15s linear; transition: opacity 0.15s linear; } .fade.in { opacity: 1; } .collapse { position: relative; height: 0; overflow: hidden; -webkit-transition: height 0.35s ease; -moz-transition: height 0.35s ease; -o-transition: height 0.35s ease; transition: height 0.35s ease; } .collapse.in { height: auto; } .hidden { display: none; } *= = = = = Popover = = = = = * / .popover { position: absolute; top: 0; left: 0; z-index: 1010; display: none; background-color: #ffffff; border: 1px solid #d5d5d5; -webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); } .popover.top { margin-bottom: 10px; } .popover.right { margin-left: 10px; } .popover.bottom { margin-top: 10px; } .popover.left { margin-left: -10px; } .popover-title { border-bottom: 1px solid #d5d5d5; margin: 0; padding: 9px 14px 8px 14px; font-size: 12px; font-weight: bold; line-height: 18px; -webkit-border-radius: 3px 3px 0 0; -moz-border-radius: 3px 3px 0 0; border-radius: 3px 3px 0 0; background: #f7f7f7; background: -moz-linear-gradient(top, #ffffff 0%, #f2f2f2 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f2f2f2)); background: -webkit-linear-gradient(top, #ffffff 0%, #f2f2f2 100%); background: -o-linear-gradient(top, #ffffff 0%, #f2f2f2 100%); background: -ms-linear-gradient(top, #ffffff 0%, #f2f2f2 100%); background: linear-gradient(to bottom, #ffffff 0%, #f2f2f2 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f2f2f2', GradientType=0); box-shadow: 0 1px 0 #fff; -webkit-box-shadow: 0 1px 0 #fff; -moz-box-shadow: 0 1px 0 #fff; } .popover-content { padding: 9px 14px; } .popover-content p, .popover-content ul, .popover-content ol { margin-bottom: 0; } .popover .arrow, .popover .arrow:after { position: absolute; display: inline-block; width: 0; height: 0; border-color: transparent; border-style: solid; } .popover .arrow:after { content: ""; z-index: -1; } .popover.top .arrow { bottom: -7px; left: 50%; margin-left: -7px; border-width: 7px 7px 0; border-top-color: #ffffff; } .popover.top .arrow:after { border-width: 8px 8px 0; border-top-color: rgba(0, 0, 0, 0.25); bottom: -1px; left: -8px; } .popover.right .arrow { top: 50%; left: -7px; margin-top: -7px; border-width: 7px 7px 7px 0; border-right-color: #ffffff; } .popover.right .arrow:after { border-width: 8px 8px 8px 0; border-right-color: rgba(0, 0, 0, 0.25); bottom: -8px; left: -1px; } .popover.bottom .arrow { top: -7px; left: 50%; margin-left: -7px; border-width: 0 7px 7px; border-bottom-color: #ffffff; } .popover.bottom .arrow:after { border-width: 0 8px 8px; border-bottom-color: rgba(0, 0, 0, 0.25); top: -1px; left: -8px; } .popover.left .arrow { top: 50%; right: -7px; margin-top: -7px; border-width: 7px 0 7px 7px; border-left-color: #ffffff; } .popover.left .arrow:after { border-width: 8px 0 8px 8px; border-left-color: rgba(0, 0, 0, 0.25); bottom: -8px; right: -1px; } .custom-layout-label { width: 120px; display: inline-block; } .layout-form .layout-label-control-group { float: left; width: 160px; text-align: left; } .layout-system-report { display: none; margin: 10px 0; padding: 0; position: relative; } .close-report { display: none; } .layout-system-report textarea { font-family: monospace; width: 100%; margin: 0; height: 300px; padding: 20px; -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0; resize: none; font-size: 12px; line-height: 20px; outline: 0; } /*************************** Gallery Bank Information Popup********************************/ .gallery_bank_popup_box .ui-dialog-titlebar { background : #E33A0C; color : #fff; font-size : 1.5em; font-weight : normal; height : auto; line-height : 2.5; padding : 0 1em; } .gallery_bank_popup_box .ui-dialog-titlebar span { text-align : left; } .gallery_bank_popup_box .ui-dialog-titlebar button { width : 30px; height : 30px; color : #ffffff; top : 15px; right : 15px; margin : 0; padding : 0; } .gallery_bank_popup_box .ui-dialog-titlebar button:before { color : #ffffff; } .gallery_bank_popup_box .ui-dialog-titlebar button:hover:before { color : #fff; } .gallery_bank_popup_box .ui-icon, .gallery_bank_popup_box .ui-icon:hover { background : none !important; } #gallery_bank_popup { padding : 0; margin : 0; } #gallery_bank_popup li { border-bottom : 1px solid #e5e5e5; padding : 1em 2em; overflow : hidden; list-style : decimal; list-style-position : inside; } #gallery_bank_popup li p { margin-top : 0; margin-left: 13px; } #gallery_bank_popup li h4 { margin : 0; } #gallery_bank_popup .gb_close_popup { position : relative; display : block; width : 98%; line-height : 3; text-align : right; color : #AE3A3A; } .wp-core-ui .gb_buttons { border: 1px solid #FF6D1E; font-size: 13px; padding: 4px 0; color: #FFF; text-shadow: 0 1px 3px #FF6D1E; font-weight: bold; background: #FF6D1E; -moz-border-radius: 3px; border-radius: 3px; -webkit-border-radius: 3px; text-decoration: none; height: 35px; text-align: center; width: 100px; -moz-box-shadow: 0px 1px 1px 0 #FF6D1E inset; -webkit-box-shadow: 0px 1px 1px 0 #FF6D1E inset; box-shadow: 0px 1px 1px 0 #FF6D1E inset; margin-left: 13px; } .wp-core-ui .gb_buttons:hover, .wp-core-ui .gb_buttons:focus { background: #FF6D1E; color: #FFF; border: 1px solid #FF6D1E; -moz-box-shadow: 0px 1px 1px 0 #FF6D1E inset; -webkit-box-shadow: 0px 1px 1px 0 #FF6D1E inset; box-shadow: 0px 1px 1px 0 #FF6D1E inset; } /****************************** Gallery Bank Getting Started **********************************/ #gallery_bank_get_started .inside { padding : 0; margin : 0; } #gallery_bank_get_started .gallery-bank-video { position : relative; padding-bottom : 48.5%; padding-top : 25px; height : 0; width : 85%; margin : 1em auto 0 auto; } #gallery_bank_get_started .gallery-bank-video iframe { position : absolute; top : 0; left : 0; width : 100%; height : 100%; } .gallery_bank_getting_started { padding : 0 2em; overflow : hidden; } .gallery_bank_layout { /* padding: 13px 323px 0px 266px !important; */ background-color: #fff !important; } .gallery_bank_layout > a { margin-top:15px; margin-bottom:10px; text-decoration:none !important; } .gallery_bank_layout > .btn { margin-top:15px; margin-bottom:10px; text-decoration:none !important; } .gallery_bank_getting_started .column { width : 100%; max-width : 45%; float : left; padding-right : 2.5%; padding-bottom : 2em; } .gallery_bank_getting_started .column.two { margin-right : 0; padding-right : 0; padding-left : 2.5%; border : 0; max-width : 49%; border-left : 1px solid #ebebeb; } .gallery_bank_getting_started .gallery-bank-video-link { width : 100%; max-width : 200px; float : left; margin : 0 1.5em 1.5em 0; } .gallery_bank_getting_started .gallery-bank-video-link img { max-width : 100%; height : auto; } .gallery_bank_getting_started .gallery_bank_video { display : none; } .gallery-bank-video-popup .gallery_bank_video { padding : 0; margin : 0 0 -5px 0; } .gallery-bank-video-popup .ui-dialog-titlebar { line-height : 1; font-size : 1em; height : 35px; background : #222; border-bottom : none; } .gallery-bank-video-popup .ui-dialog-titlebar button { width : 30px; height : 30px; color : #ffffff; top : 0px; right : 0px; margin : 0; padding : 0; } .breadcrumb > li > a { text-decoration:none !important; } .framework_tabs { width:100%; display:inline-block; } .framework_tab-links:after { display:inline-block; clear:both; content:''; } .framework_tab-links li { margin:0px 5px; float:left; list-style:none; border :1px solid #e5e5e5; border-bottom:none; } .framework_tab-links a { padding:9px 15px; display:inline-block; border-radius:3px 3px 0px 0px; background:#EFEFEF; color:#4c4c4c; transition:all linear 0.15s; } .framework_tab-links a:hover { background:#ffffff; text-decoration:none; } li.active a, li.active a:hover { background:#fff; color:#4c4c4c; } .framework_tab-content { border-radius:3px; border:1px solid #e5e5e5; /*box-shadow:-1px 1px 1px rgba(0,0,0,0.15);*/ background:#fff; margin-top: 2%; padding: 10px 10px 10px 10px; margin-left: 4px; } .framework_tab { display:none; } .framework_tab.active { display:block; } .framework_background { background-color: #ffffff; padding-bottom:20px; } .framework_txt-align { vertical-align: middle !important; } .plugin-div { float: left; margin: 0 8px 16px; width: 48.5%; width: -webkit-calc(50% - 8px); width: calc(50% - 8px); background-color: #fff; border: 1px solid #dedede; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box } .plugin-div:nth-child(odd) { clear: both; margin-left: 0 } .plugin-div:nth-child(even) { margin-right: 0 } @media screen and (max-width:782px) { .plugin-card { margin-left: 0; margin-right: 0; width: 100% } } .plugin-div-top { position: relative; background-color: #073b4c !important; padding: 20px 20px 10px; min-height:200px; } .plugin-div-inner-content { min-height:150px; } .plugin-action-buttons, div.action-links { margin: 0 } .plugin-div h4 { margin: 0 0 12px; font-size: 16px; line-height: 1.3 } .plugin-div .desc, .plugin-div .name { margin-left: 148px; } .plugin-div .action-links { } .plugin-div-button { margin-left: 5px !important; } .plugin-div-settings { display:inline-block; margin: 1px 21px 18px !important; width: 50.5% ; width: -webkit-calc(50% - 8px); width: calc(100% - 30px) !important; background-color: #FAFAFA; border: 1px solid #dedede; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; vertical-align: top; min-height: 330px; } .plugin-div-settings:nth-child(odd) { clear: both; margin-left: 0 } .plugin-div-settings:nth-child(even) { margin-right: 0; margin-left: 8px; } .plugin-div-settings-top { position: relative; padding: 20px 20px 10px; background-color: #fff; } .plugin-action-buttons, div.action-links { margin: 0 } .plugin-div-settings h4 { margin: 0 0 12px; font-size: 16px; line-height: 1.3 } .plugin-div-settings .desc, .plugin-div-settings .name { margin-left: 148px; } .plugin-div-settings-button { margin-left: 5px !important; } .plugin-card-bottom_settings { background-color: #073b4c; border-top: 1px solid #dedede; clear: both; color: #ffffff; font-family: segoe ui; font-size: 16px; overflow: hidden; padding: 8px 20px; text-align: right; } .plugin-icon-custom { position: absolute; top: 20px; left: 20px; max-width: 128px; margin: 0px 20px 20px 0px; text-decoration: none; text-align:center; } .plugin-action-buttons-custom { clear: right; margin-left: 2em; margin-bottom: 1em; text-align: right; } .coustom-nav-tab { padding: 6px 10px !important; font-weight: 700 !important; font-size: 15px !important; line-height: 24px !important; } .custom_icon { width:128px; height:128px; } .service-div-settings { display:inline-block; margin: 0 0px 16px; width: 48.5%; width: -webkit-calc(50% - 8px); width: calc(50% - 8px); background-color: #FAFAFA; border: 1px solid #dedede; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; vertical-align: top; min-height: 300px; } .service-div-settings:nth-child(odd) { clear: both; margin-left: 0 } .service-div-settings:nth-child(even) { margin-right: 0; margin-left: 8px; } .service-div-settings .desc, .service-div-settings .name { } .service-div-settings-top { position: relative; padding: 5px 20px; background-color: #fff; } .service-div-inner-content { min-height:150px; } .service-div-settings .desc p { line-height: 2em !important; }
wp-content/plugins/portfolio-filter-gallery/featured-plugins/css/feature-plugins.css
.custom_gallery_layout_label { width: 74px !important; } .custom_gallery_layout_control { margin-left: 80px !important; } .gallery_plugin_message { font-weight: 400; background: #d54d21; padding: 1em; margin: 10px 0; } .gallery_plugin_message > p { color: #fff; margin: 0px !important; } .widget_premium_feature { color: #FF0000; font-size: 13px !important; } .gallery-shortcode-label { color:#5A5A5A!important; font-family:Georgia,Times New Roman,Times,serif!important; font-size:1.8em!important; font-weight:normal!important; } .gallery_icon { background: url(../images/icon.png) no-repeat top left; display: inline-block; height: 16px; margin: 0 2px 0 0; vertical-align: sub; width: 16px; } .separator-doubled { padding: 0; height: 0; border: none; border-top: medium double #d5d5d5; color: #333; text-align: center; margin-top: 10px; } .separator-single { padding: 0; height: 0; border: none; border-bottom: 1px solid #d5d5d5; color: #333; text-align: center; margin-top: 10px; margin-bottom: 10px; } .dataTable td { text-align: left !important; } .breadcrumb { padding: 8px 15px; margin: 0 0 20px; list-style: none; background-color: #f5f5f5; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .breadcrumb > li { display: inline-block; *display: inline; text-shadow: 0 1px 0 #ffffff; *zoom: 1; } .breadcrumb > li > .divider { padding: 0 5px; color: #ccc; } .breadcrumb > .active { color: #999999; } .btn-small { padding: 7px 12px 6px 12px; line-height: 13px; } button.btn.btn-small, input[type="submit"].btn.btn-small { *padding-top: 3px; *padding-bottom: 3px; } .btn { display: inline-block; *display: inline; padding: 4px 12px; margin-bottom: 0; *margin-left: .3em; font-size: 12px; line-height: 20px; color: #333333; text-align: center; text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); vertical-align: middle; cursor: pointer; background-color: #f5f5f5; *background-color: #e6e6e6; background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6)); background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6); background-image: -o-linear-gradient(top, #ffffff, #e6e6e6); background-image: linear-gradient(to bottom, #ffffff, #e6e6e6); background-repeat: repeat-x; border: 1px solid #bbbbbb; *border: 0; 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-bottom-color: #a2a2a2; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0); filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); *zoom: 1; -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); } .btn:hover, .btn:active, .btn.active, .btn.disabled, .btn[disabled] { color: #333333; background-color: #e6e6e6; *background-color: #d9d9d9; } .btn:active, .btn.active { background-color: #cccccc \9; } .btn:first-child { *margin-left: 0; } .btn:hover { color: #333333; text-decoration: none; background-position: 0 -15px; -webkit-transition: background-position 0.1s linear; -moz-transition: background-position 0.1s linear; -o-transition: background-position 0.1s linear; transition: background-position 0.1s linear; } .btn:focus { outline: thin dotted #333; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } .btn.active, .btn:active { background-image: none; outline: 0; -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); } .btn-primary.active, .btn-warning.active, .btn-danger.active, .btn-success.active, .btn-info.active, .btn-inverse.active { color: rgba(255, 255, 255, 0.75); } .btn { border-color: #c5c5c5; border-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25); } .btn-primary { color: #ffffff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); background-color: #006dcc; *background-color: #0044cc; background-image: -moz-linear-gradient(top, #0088cc, #0044cc); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc)); background-image: -webkit-linear-gradient(top, #0088cc, #0044cc); background-image: -o-linear-gradient(top, #0088cc, #0044cc); background-image: linear-gradient(to bottom, #0088cc, #0044cc); background-repeat: repeat-x; border-color: #0044cc #0044cc #002a80; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0); filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); margin-top: 0px; } .btn-primary:hover, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] { color: #ffffff; background-color: #0044cc; *background-color: #003bb3; } .btn-primary:active, .btn-primary.active { background-color: #003399 \9; } .btn-warning { color: #ffffff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); background-color: #faa732; *background-color: #f89406; background-image: -moz-linear-gradient(top, #fbb450, #f89406); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406)); background-image: -webkit-linear-gradient(top, #fbb450, #f89406); background-image: -o-linear-gradient(top, #fbb450, #f89406); background-image: linear-gradient(to bottom, #fbb450, #f89406); background-repeat: repeat-x; border-color: #f89406 #f89406 #ad6704; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0); filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); } .btn-warning:hover, .btn-warning:active, .btn-warning.active, .btn-warning.disabled, .btn-warning[disabled] { color: #ffffff; background-color: #f89406; *background-color: #df8505; } .btn-warning:active, .btn-warning.active { background-color: #c67605 \9; } .btn-danger { color: #ffffff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); background-color: #da4f49; *background-color: #bd362f; background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f)); background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f); background-image: -o-linear-gradient(top, #ee5f5b, #bd362f); background-image: linear-gradient(to bottom, #ee5f5b, #bd362f); background-repeat: repeat-x; border-color: #bd362f #bd362f #802420; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0); filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); } .btn-danger:hover, .btn-danger:active, .btn-danger.active, .btn-danger.disabled, .btn-danger[disabled] { color: #ffffff; background-color: #bd362f; *background-color: #a9302a; } .btn-danger:active, .btn-danger.active { background-color: #942a25 \9; } .btn-success { color: #ffffff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); background-color: #5bb75b; *background-color: #51a351; background-image: -moz-linear-gradient(top, #62c462, #51a351); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351)); background-image: -webkit-linear-gradient(top, #62c462, #51a351); background-image: -o-linear-gradient(top, #62c462, #51a351); background-image: linear-gradient(to bottom, #62c462, #51a351); background-repeat: repeat-x; border-color: #51a351 #51a351 #387038; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0); filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); } .btn-success:hover, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled] { color: #ffffff; background-color: #51a351; *background-color: #499249; } .btn-success:active, .btn-success.active { background-color: #408140 \9; } .btn-info { color: #ffffff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); background-color: #49afcd; *background-color: #2f96b4; background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4)); background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4); background-image: -o-linear-gradient(top, #5bc0de, #2f96b4); background-image: linear-gradient(to bottom, #5bc0de, #2f96b4); background-repeat: repeat-x; border-color: #2f96b4 #2f96b4 #1f6377; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0); filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); margin-top: 0px; } .btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] { color: #ffffff; background-color: #2f96b4; *background-color: #2a85a0; } .btn-info:active, .btn-info.active { background-color: #24748c \9; } .btn-inverse { color: #ffffff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); background-color: #363636; *background-color: #222222; background-image: -moz-linear-gradient(top, #444444, #222222); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222)); background-image: -webkit-linear-gradient(top, #444444, #222222); background-image: -o-linear-gradient(top, #444444, #222222); background-image: linear-gradient(to bottom, #444444, #222222); background-repeat: repeat-x; border-color: #222222 #222222 #000000; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0); filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); } .btn-inverse:hover, .btn-inverse:active, .btn-inverse.active, .btn-inverse.disabled, .btn-inverse[disabled] { color: #ffffff; background-color: #222222; *background-color: #151515; } .btn-inverse:active, .btn-inverse.active { background-color: #080808 \9; } .stat { margin: 0px; padding: 0px; } .item-list.table .percent { width: 30px; float: right; margin-right: 10px; margin-top: 3px; } .item-list.table .title { padding-top: -5px; } .stat .title { margin-left: 10px; margin-right: 10px; font-size: 13px; } .stat.good .percent { color: #52e136; font-size: 16px; font-weight: bold; } .stat.bad .percent { color: #d12610; font-size: 16px; font-weight: bold; } .stat.ok .percent { color: #37b7f3; font-size: 16px; font-weight: bold; } .line-chart { display: none } .layout-block { background-color: #F6F6F6; background-image: -webkit-gradient(linear, 0 0%, 0 100%, from(#F9F9F9), to(#EDEDED)); background-image: -webkit-linear-gradient(top, #F9F9F9 0%, #EDEDED 100%); background-image: -moz-linear-gradient(top, #F9F9F9 0%, #EDEDED 100%); background-image: -ms-linear-gradient(top, #F9F9F9 0%, #EDEDED 100%); background-image: -o-linear-gradient(top, #F9F9F9 0%, #EDEDED 100%); background-image: linear-gradient(top, #F9F9F9 0%, #EDEDED 100%); filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffF9F9F9', endColorstr='#ffEDEDED', GradientType=0); border: 1px solid #D5D5D5; box-shadow: 0 1px 0 0 white inset, 0 1px 0 rgba(255, 255, 255, 0.4); -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; line-height: 18px; margin: 0 0 20px 0; padding: 10px; } .layout-span12 { width: 940px; } .layout-span11 { width: 860px; } .layout-span10 { width: 780px; } .layout-span9 { width: 700px; } .layout-span8 { width: 620px; } .layout-span7 { width: 540px; } .layout-span6 { width: 460px; } .layout-span5 { width: 380px; } .layout-span4 { width: 300px; } .layout-span3 { width: 220px; } .layout-span2 { width: 140px; } .layout-span1 { width: 60px; } .offset12 { margin-left: 980px; } .offset11 { margin-left: 900px; } .offset10 { margin-left: 820px; } .offset9 { margin-left: 740px; } .offset8 { margin-left: 660px; } .offset7 { margin-left: 580px; } .offset6 { margin-left: 500px; } .offset5 { margin-left: 420px; } .offset4 { margin-left: 340px; } .offset3 { margin-left: 260px; } .offset2 { margin-left: 180px; } .offset1 { margin-left: 100px; } .fluid-layout { width: 99%; margin-top: 1%; *zoom: 1; } .fluid-layout:before, .fluid-layout:after { display: table; line-height: 0; content: ""; } .fluid-layout:after { clear: both; } .fluid-layout [class*="layout-span"] { display: block; float: left; width: 100%; min-height: 30px; margin-left: 2.127659574468085%; *margin-left: 2.074468085106383%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .fluid-layout [class*="layout-span"]:first-child { margin-left: 0; } .fluid-layout .controls-row [class*="layout-span"] + [class*="layout-span"] { margin-left: 2.127659574468085%; } .fluid-layout .layout-span12 { width: 100%; *width: 99.94680851063829%; } .fluid-layout .layout-span11 { width: 91.48936170212765%; *width: 91.43617021276594%; } .fluid-layout .layout-span10 { width: 82.97872340425532%; *width: 82.92553191489361%; } .fluid-layout .layout-span9 { width: 74.46808510638297%; *width: 74.41489361702126%; } .fluid-layout .layout-span8 { width: 65.95744680851064%; *width: 65.90425531914893%; } .fluid-layout .layout-span7 { width: 57.44680851063829%; *width: 57.39361702127659%; } .fluid-layout .layout-span6 { width: 48.93617021276595%; *width: 48.88297872340425%; } .fluid-layout .layout-span5 { width: 40.42553191489362%; *width: 40.37234042553192%; } .fluid-layout .layout-span4 { width: 31.914893617021278%; *width: 31.861702127659576%; } .fluid-layout .layout-span3 { width: 23.404255319148934%; *width: 23.351063829787233%; } .fluid-layout .layout-span2 { width: 14.893617021276595%; *width: 14.840425531914894%; } .fluid-layout .layout-span1 { width: 6.382978723404255%; *width: 6.329787234042553%; } .fluid-layout .offset12 { margin-left: 104.25531914893617%; *margin-left: 104.14893617021275%; } .fluid-layout .offset12:first-child { margin-left: 102.12765957446808%; *margin-left: 102.02127659574467%; } .fluid-layout .offset11 { margin-left: 95.74468085106382%; *margin-left: 95.6382978723404%; } .fluid-layout .offset11:first-child { margin-left: 93.61702127659574%; *margin-left: 93.51063829787232%; } .fluid-layout .offset10 { margin-left: 87.23404255319149%; *margin-left: 87.12765957446807%; } .fluid-layout .offset10:first-child { margin-left: 85.1063829787234%; *margin-left: 84.99999999999999%; } .fluid-layout .offset9 { margin-left: 78.72340425531914%; *margin-left: 78.61702127659572%; } .fluid-layout .offset9:first-child { margin-left: 76.59574468085106%; *margin-left: 76.48936170212764%; } .fluid-layout .offset8 { margin-left: 70.2127659574468%; *margin-left: 70.10638297872339%; } .fluid-layout .offset8:first-child { margin-left: 68.08510638297872%; *margin-left: 67.9787234042553%; } .fluid-layout .offset7 { margin-left: 61.70212765957446%; *margin-left: 61.59574468085106%; } .fluid-layout .offset7:first-child { margin-left: 59.574468085106375%; *margin-left: 59.46808510638297%; } .fluid-layout .offset6 { margin-left: 53.191489361702125%; *margin-left: 53.085106382978715%; } .fluid-layout .offset6:first-child { margin-left: 51.063829787234035%; *margin-left: 50.95744680851063%; } .fluid-layout .offset5 { margin-left: 44.68085106382979%; *margin-left: 44.57446808510638%; } .fluid-layout .offset5:first-child { margin-left: 42.5531914893617%; *margin-left: 42.4468085106383%; } .fluid-layout .offset4 { margin-left: 36.170212765957444%; *margin-left: 36.06382978723405%; } .fluid-layout .offset4:first-child { margin-left: 34.04255319148936%; *margin-left: 33.93617021276596%; } .fluid-layout .offset3 { margin-left: 27.659574468085104%; *margin-left: 27.5531914893617%; } .fluid-layout .offset3:first-child { margin-left: 25.53191489361702%; *margin-left: 25.425531914893618%; } .fluid-layout .offset2 { margin-left: 19.148936170212764%; *margin-left: 19.04255319148936%; } .fluid-layout .offset2:first-child { margin-left: 17.02127659574468%; *margin-left: 16.914893617021278%; } .fluid-layout .offset1 { margin-left: 10.638297872340425%; *margin-left: 10.53191489361702%; } .fluid-layout .offset1:first-child { margin-left: 8.51063829787234%; *margin-left: 8.404255319148938%; } [class*="layout-span"].hide, .fluid-layout [class*="layout-span"].hide { display: none; } [class*="layout-span"].pull-right, .fluid-layout [class*="layout-span"].pull-right { float: right; } .fluid-layout input[class*="layout-span"], .fluid-layout select[class*="layout-span"], .fluid-layout textarea[class*="layout-span"], .fluid-layout .uneditable-input[class*="layout-span"] { float: none; margin-left: 0; } .fluid-layout input[class*="layout-span"], .fluid-layout select[class*="layout-span"], .fluid-layout textarea[class*="layout-span"], .fluid-layout .uneditable-input[class*="layout-span"], .fluid-layout .input-prepend [class*="layout-span"], .fluid-layout .input-append [class*="layout-span"] { display: inline-block; } .controls-row [class*="layout-span"], .fluid-layout .controls-row [class*="layout-span"] { float: left; } /*********************************TABLE CONTENT********************************/ table td[class*="layout-span"], table th[class*="layout-span"], .fluid-layout table td[class*="layout-span"], .fluid-layout table th[class*="layout-span"] { display: table-cell; float: none; margin-left: 0; } table td.layout-span1, table th.layout-span1 { float: none; width: 44px; margin-left: 0; } table td.layout-span2, table th.layout-span2 { float: none; width: 124px; margin-left: 0; } table td.layout-span3, table th.layout-span3 { float: none; width: 204px; margin-left: 0; } table td.layout-span4, table th.layout-span4 { float: none; width: 284px; margin-left: 0; } table td.layout-span5, table th.layout-span5 { float: none; width: 364px; margin-left: 0; } table td.layout-span6, table th.layout-span6 { float: none; width: 444px; margin-left: 0; } table td.layout-span7, table th.layout-span7 { float: none; width: 524px; margin-left: 0; } table td.layout-span8, table th.layout-span8 { float: none; width: 604px; margin-left: 0; } table td.layout-span9, table th.layout-span9 { float: none; width: 684px; margin-left: 0; } table td.layout-span10, table th.layout-span10 { float: none; width: 764px; margin-left: 0; } table td.layout-span11, table th.layout-span11 { float: none; width: 844px; margin-left: 0; } table td.layout-span12, table th.layout-span12 { float: none; width: 924px; margin-left: 0; } .layout-table-controls { margin: 0 -1px; } .layout-table-controls > li { display: inline-block; margin: 0 1px; } /*.layout-table-controls > li > .btn { padding: 0px; }*/ * / .layout-table-controls > li > .btn > i { margin-left: 0; margin-right: 0; } .layout-table-controls > li > a > i { margin-right: 0; font-size: 14px; color: #555; } .layout-table-controls > li > a.btn > b, .layout-table-controls > li > a > b { margin: 1px 0 -1px 0; font-size: 14px; color: #555; width: 1.1em; float: none; } .stats-overview-cont { padding-top: 0px; margin-bottom: 15px; } .stats-overview { clear: both; padding: 10px 10px 0px 10px; margin: 0px; margin-bottom: 5px; } .stats-overview .display { margin-right: 5px; float: left; } .stats-overview .details { color: #888; } .stats-overview .details .title { color: #777; font-size: 12px; font-weight: normal; margin-bottom: 3px; padding: 0px !important; } .stats-overview .details .title i { color: #999; margin-right: 2px; } .stats-overview .details .numbers { color: #777; font-size: 20px; font-weight: bold; margin-bottom: 6px; !important } .stats-overview .progress-layout { height: 10px; margin-bottom: 10px !important; } .stats-overview:hover { text-decoration: none !important; border-color: #999 !important; color: #444 !important; text-shadow: 0 1px 0px rgba(255, 255, 255, 1) !important; -webkit-transition: all 0.3s ease !important; -moz-transition: all 0.3s ease !important; -ms-transition: all 0.3s ease !important; -o-transition: all 0.3s ease !important; transition: all 0.3s ease !important; -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, .55) !important; -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, .55) !important; box-shadow: 0px 0px 3px rgba(0, 0, 0, .55) !important; } @-webkit-keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } @-moz-keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } @-ms-keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } @-o-keyframes progress-bar-stripes { from { background-position: 0 0; } to { background-position: 40px 0; } } @keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } .progress-layout { height: 20px; margin-bottom: 20px; overflow: hidden; background-color: #f7f7f7; background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9)); background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9); background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9); background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9); background-repeat: repeat-x; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0); -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); } .progress-layout .bar { float: left; width: 0; height: 100%; font-size: 12px; color: #ffffff; text-align: center; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); background-color: #0e90d2; background-image: -moz-linear-gradient(top, #149bdf, #0480be); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be)); background-image: -webkit-linear-gradient(top, #149bdf, #0480be); background-image: -o-linear-gradient(top, #149bdf, #0480be); background-image: linear-gradient(to bottom, #149bdf, #0480be); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0); -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-transition: width 0.6s ease; -moz-transition: width 0.6s ease; -o-transition: width 0.6s ease; transition: width 0.6s ease; } .progress-layout .bar + .bar { -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15); -moz-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15); box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15); } .progress-layout-striped .bar { background-color: #149bdf; background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -webkit-background-size: 40px 40px; -moz-background-size: 40px 40px; -o-background-size: 40px 40px; background-size: 40px 40px; } .progress-layout.active .bar { -webkit-animation: progress-bar-stripes 2s linear infinite; -moz-animation: progress-bar-stripes 2s linear infinite; -ms-animation: progress-bar-stripes 2s linear infinite; -o-animation: progress-bar-stripes 2s linear infinite; animation: progress-bar-stripes 2s linear infinite; } .progress-layout-danger .bar, .progress-layout .bar-danger { background-color: #dd514c; background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35)); background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35); background-image: -o-linear-gradient(top, #ee5f5b, #c43c35); background-image: linear-gradient(to bottom, #ee5f5b, #c43c35); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0); } .progress-layout-danger.progress-layout-striped .bar, .progress-layout-striped .bar-danger { background-color: #ee5f5b; background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .progress-layout-success .bar, .progress-layout .bar-success { background-color: #5eb95e; background-image: -moz-linear-gradient(top, #62c462, #57a957); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957)); background-image: -webkit-linear-gradient(top, #62c462, #57a957); background-image: -o-linear-gradient(top, #62c462, #57a957); background-image: linear-gradient(to bottom, #62c462, #57a957); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0); } .progress-layout-success.progress-layout-striped .bar, .progress-layout-striped .bar-success { background-color: #62c462; background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .progress-layout-info .bar, .progress-layout .bar-info { background-color: #4bb1cf; background-image: -moz-linear-gradient(top, #5bc0de, #339bb9); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9)); background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9); background-image: -o-linear-gradient(top, #5bc0de, #339bb9); background-image: linear-gradient(to bottom, #5bc0de, #339bb9); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0); } .progress-layout-info.progress-layout-striped .bar, .progress-layout-striped .bar-info { background-color: #5bc0de; background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .progress-layout-warning .bar, .progress-layout .bar-warning { background-color: #faa732; background-image: -moz-linear-gradient(top, #fbb450, #f89406); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406)); background-image: -webkit-linear-gradient(top, #fbb450, #f89406); background-image: -o-linear-gradient(top, #fbb450, #f89406); background-image: linear-gradient(to bottom, #fbb450, #f89406); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0); } .progress-layout-warning.progress-layout-striped .bar, .progress-layout-striped .bar-warning { background-color: #fbb450; background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .widget-layout { background: none repeat scroll 0 0 #F9F9F9; border-top: 1px solid #e0dede; border-left: 1px solid #e0dede; border-right: 1px solid #e0dede; clear: both; margin-top: 0px; margin-bottom: 20px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } .widget-layout-title { background-color: #EFEFEF; background-image: -webkit-gradient(linear, 0 0%, 0 100%, from(#FDFDFD), to(#EAEAEA)); background-image: -webkit-linear-gradient(top, #FDFDFD 0%, #EAEAEA 100%); background-image: -moz-linear-gradient(top, #FDFDFD 0%, #EAEAEA 100%); background-image: -ms-linear-gradient(top, #FDFDFD 0%, #EAEAEA 100%); background-image: -o-linear-gradient(top, #FDFDFD 0%, #EAEAEA 100%); background-image: -linear-gradient(top, #FDFDFD 0%, #EAEAEA 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdfdfd', endColorstr='#eaeaea', GradientType=0); border-bottom: 1px solid #e0dede; height: 36px; -webkit-border-radius: 3px 3px 0px 0px; -moz-border-radius: 3px 3px 0px 0px; border-radius: 3px 3px 0px 0px; } /****************************** Widget Section *********************************/ .widget-layout-title > h4 { color: #444; float: left; font-size: 13px; font-weight: bold; padding: 12px 11px 10px 15px; line-height: 12px; margin: 0px !important; } .widget-layout-title > h4 i { font-size: 14px; margin-right: 6px; !important } .widget-layout-title span.tools { padding: 3px 5px 2px; float: right; margin: 6px 0px 0 0 !important; cursor: pointer; } .widget-layout-title span.tools > a { display: inline-block; margin-right: 5px !important; color: #555; font-size: 14px; } .widget-layout-title span.tools > a:hover { text-decoration: none; -webkit-transition: all 0.1s ease-in-out; -moz-transition: all 0.1s ease-in-out; -o-transition: all 0.1s ease-in-out; -ms-transition: all 0.1s ease-in-out; transition: all 0.1s ease-in-out; opacity: .6; } .widget-layout-title .btn-group { margin-right: 5px !important; margin-top: -2px !important; } .widget-layout-title .btn-group .caret { margin-top: 8px !important; margin-left: 3px !important; } .widget-layout-body { padding: 10px 15px; border-bottom: 1px solid #CDCDCD; -webkit-border-radius: 0px 0px 3px 3px; -moz-border-radius: 0px 0px 3px 3px; border-radius: 0px 0px 3px 3px; } /********************** Widget Section *********************************/ .fluid-layout table { max-width: 100%; background-color: transparent; border-collapse: collapse; border-spacing: 0; } .fluid-layout .table { width: 100%; margin-bottom: 20px; margin-top: 10px !important } .fluid-layout .table th, .fluid-layout .table td { padding: 8px; line-height: 20px; text-align: left; vertical-align: top; border-top: 1px solid #dddddd; } .fluid-layout .table th { font-weight: bold; } .fluid-layout .table caption + thead tr:first-child th, .fluid-layout .table caption + thead tr:first-child td, .fluid-layout .table colgroup + thead tr:first-child th, .fluid-layout .table colgroup + thead tr:first-child td, .fluid-layout.table thead:first-child tr:first-child th, .fluid-layout.table thead :first-child tr:first-child td { border-top: 0; } .fluid-layout .table tbody + tbody { border-top: 2px solid #dddddd; } .fluid-layout .table .table { background-color: #ffffff; } .fluid-layout .table-condensed th, .fluid-layout .table-condensed td { padding: 4px 5px; } .fluid-layout .table-bordered { border: 1px solid #dddddd; border-collapse: separate; *border-collapse: collapse; border-left: 0; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .fluid-layout .table-bordered th, .fluid-layout .table-bordered td { border-left: 1px solid #dddddd; } .fluid-layout .table-striped tbody > tr:nth-child(odd) > td, .fluid-layout .table-striped tbody > tr:nth-child(odd) > th { background-color: #f9f9f9; } .fluid-layout .table-hover tbody tr:hover td, .fluid-layout .table-hover tbody tr:hover th { background-color: #f5f5f5; } .fluid-layout .table tbody tr.success td { background-color: #dff0d8; } .fluid-layout .table tbody tr.error td { background-color: #f2dede; } .fluid-layout .table tbody tr.warning td { background-color: #fcf8e3; } .fluid-layout .table tbody tr.info td { background-color: #d9edf7; } .fluid-layout .table-hover tbody tr.success:hover td { background-color: #d0e9c6; } .fluid-layout .table-hover tbody tr.error:hover td { background-color: #ebcccc; } .fluid-layout .table-hover tbody tr.warning:hover td { background-color: #faf2cc; } .fluid-layout .table-hover tbody tr.info:hover td { background-color: #c4e3f3; } .label-layout, .badge { display: inline-block; padding: 2px 4px; font-size: 11.844px; font-weight: bold; line-height: 14px; color: #ffffff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); white-space: nowrap; vertical-align: baseline; background-color: #999999; } .label-layout { -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } .badge { padding-right: 9px; padding-left: 9px; -webkit-border-radius: 9px; -moz-border-radius: 9px; border-radius: 9px; } .label-layout:empty, .badge:empty { display: none; } .label-layout-important, .badge-important { background-color: #b94a48; } .label-layout-important[href], .badge-important[href] { background-color: #953b39; } .label-layout-warning, .badge-warning { background-color: #f89406; } .label-layout-warning[href], .badge-warning[href] { background-color: #c67605; } .label-layout-success, .badge-success { background-color: #468847; } .label-layout-success[href], .badge-success[href] { background-color: #356635; } .label-layout-info, .badge-info { background-color: #3a87ad; } .label-layout-info[href], .badge-info[href] { background-color: #2d6987; } .label-layout-inverse, .badge-inverse { background-color: #333333; } .label-layout-inverse[href], .badge-inverse[href] { background-color: #1a1a1a; } .btn .label-layout, .btn .badge { position: relative; top: -1px; } .btn-mini .label-layout, .btn-mini .badge { top: 0; } .fluid-layout a { text-decoration: none !important } .fluid-layout a:hover { text-decoration: none !important } /***********************************************FORM CONTENT***********************************************/ .widget-layout-body .form form { margin: 0px !important; padding: 0px !important; } .widget-layout-body .layout-control-group:last-child { padding-bottom: 0px !important; margin-bottom: 0px !important; } .widget-layout-body .form-actions { margin-left: -15px !important; margin-right: -15px !important; margin-top: 20px !important; margin-bottom: -15px !important; margin-top: 20px; padding-left: 195px; -webkit-border-radius: 0px 0px 4px 4px; -moz-border-radius: 0px 0px 4px 4px; border-radius: 0px 0px 4px 4px; } .widget-layout-body .dataTables_info, .widget-layout-body .dataTables_paginate { /*margin-top: 5px !important;*/ padding-bottom: 0px !important; margin-bottom: -4px !important; } .dataTables_info { padding: 0px; display: block; float: left; } .dataTables_paginate { float: right; margin: 0px; } .dataTables_paginate .last { margin-right: 0 !important; } paging_full_numbers { height: 22px; line-height: 22px; } .paging_full_numbers .next:active, .paging_full_numbers .first:active, .paging_full_numbers .previous:active, .paging_full_numbers .last:active { font-weight: normal !important; } .paging_full_numbers a:active { outline: none } .paging_full_numbers a:hover { text-decoration: none; } .paging_full_numbers a.paginate_button, .paging_full_numbers a.paginate_active { border: 1px solid #d3d3d3; -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; padding: 5px 8px; margin: 0 3px; cursor: pointer; *cursor: hand; color: #919191; font-size: 11px; box-shadow: 0 1px 0 #fff inset, 0 1px 0px #eaeaea; -webkit-box-shadow: 0 1px 0 #fff inset, 0 1px 0px #eaeaea; -moz-box-shadow: 0 1px 0 #fff inset, 0 1px 0px #eaeaea; } .paging_full_numbers a.paginate_button { background: #ffffff; background: -moz-linear-gradient(top, #ffffff 0%, #f5f5f5 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f5f5f5)); background: -webkit-linear-gradient(top, #ffffff 0%, #f5f5f5 100%); background: -o-linear-gradient(top, #ffffff 0%, #f5f5f5 100%); background: -ms-linear-gradient(top, #ffffff 0%, #f5f5f5 100%); background: linear-gradient(top, #ffffff 0%, #f5f5f5 100%); } .paging_full_numbers a.paginate_button:hover { background: #fcfcfc; color: #327394; } .paging_full_numbers a.paginate_active, .paging_full_numbers a.paginate_button:active { background: #6f6f6f; color: #fff; border-color: #646464; box-shadow: 0 1px 2px #545454 inset, 0 1px 0 #fff; -webkit-box-shadow: 0 1px 2px #545454 inset, 0 1px 0 #fff; -moz-box-shadow: 0 1px 2px #545454 inset, 0 1px 0 #fff; font-weight: bold; } .paginate_button_disabled, .paginate_button_disabled:active { background: #F9F9F9 !important; color: #CCC !important; box-shadow: none !important; font-weight: normal !important; border: 1px solid #E5E5E5 !important; } .paginate_button_disabled:active { border-color: #d3d3d3 !important; } .dataTables_processing { position: absolute; top: 50%; left: 50%; width: 250px; height: 30px; margin-left: -125px; margin-top: -15px; padding: 14px 0 2px 0; border: 1px solid #ddd; text-align: center; color: #999; font-size: 14px; background-color: white; } .sorting { background: url('../images/tables/sort_both.png') no-repeat 100% 8px; } .sorting_asc { background: url('../images/tables/sort_asc.png') no-repeat 100% 8px; } .sorting_desc { background: url('../images/tables/sort_desc.png') no-repeat 100% 8px; } .sorting_asc_disabled { background: url('../images/tables/sort_asc_disabled.png') no-repeat 100% 8px; } .sorting_desc_disabled { background: url('../images/tables/sort_desc_disabled.png') no-repeat 100% 8px; } .table.dataTable th:active { outline: none; } .datatable-footer { border-top: 1px solid #ddd; padding: 15px 0; } .datatable-footer { background: #fcfcfc; background: -moz-linear-gradient(top, #fcfcfc 0%, #f5f5f5 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fcfcfc), color-stop(100%, #f5f5f5)); background: -webkit-linear-gradient(top, #fcfcfc 0%, #f5f5f5 100%); background: -o-linear-gradient(top, #fcfcfc 0%, #f5f5f5 100%); background: -ms-linear-gradient(top, #fcfcfc 0%, #f5f5f5 100%); background: linear-gradient(top, #fcfcfc 0%, #f5f5f5 100%); } .dataTables_scroll { clear: both; } .dataTables_scrollBody { *margin-top: -1px; -webkit-overflow-scrolling: touch; } .table.dataTable th:active { outline: none; } .datatable-footer { border-top: 1px solid #ddd; padding: 15px 0; margin-bottom: 10px; } .datatable-footer { background: #fcfcfc; background: -moz-linear-gradient(top, #fcfcfc 0%, #f5f5f5 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fcfcfc), color-stop(100%, #f5f5f5)); background: -webkit-linear-gradient(top, #fcfcfc 0%, #f5f5f5 100%); background: -o-linear-gradient(top, #fcfcfc 0%, #f5f5f5 100%); background: -ms-linear-gradient(top, #fcfcfc 0%, #f5f5f5 100%); background: linear-gradient(top, #fcfcfc 0%, #f5f5f5 100%); } .dataTables_scroll { clear: both; } .dataTables_scrollBody { *margin-top: -1px; -webkit-overflow-scrolling: touch; } .widget-layout-body .table { padding-bottom: 0px !important; margin-bottom: 0px !important; } .form-search input, .form-inline input, .layout-form input, .form-search textarea, .form-inline textarea, .layout-form textarea, .form-search select, .form-inline select, .layout-form select, .form-search .help-inline, .form-inline .help-inline, .layout-form .help-inline, .form-search .uneditable-input, .form-inline .uneditable-input, .layout-form .uneditable-input, .form-search .input-prepend, .form-inline .input-prepend, .layout-form .input-prepend, .form-search .input-append, .form-inline .input-append, .layout-form .input-append { display: inline-block; *display: inline; margin-bottom: 0; vertical-align: middle; *zoom: 1; } .layout-control-group { margin-bottom: 10px; } legend + .layout-control-group { margin-top: 20px; -webkit-margin-top-collapse: separate; } .layout-form .layout-control-group { *zoom: 1; } .layout-form .layout-control-group:before, .layout-form .layout-control-group:after { display: table; line-height: 0; content: ""; } .layout-form .layout-control-group:after { clear: both; } .layout-form .layout-control-label { float: left; width: 160px; padding-top: 8px; text-align: left; } .layout-form .layout-controls { *display: inline-block; *padding-left: 20px; margin-left: 180px; *margin-left: 0; } .layout-form .layout-controls-radio { margin-top: 7px; float: left; margin-left: 20px; } .layout-form .layout-controls:first-child { *padding-left: 180px; } .layout-form .help-block { margin-bottom: 0; } .layout-form input + .help-block, .layout-form select + .help-block, .layout-form textarea + .help-block, .layout-form .uneditable-input + .help-block, .layout-form .input-prepend + .help-block, .layout-form .input-append + .help-block { margin-top: 10px; } .layout-form .form-actions { padding-left: 180px; } .layout-control-group.warning > label, .layout-control-group.warning .help-block, .layout-control-group.warning .help-inline { color: #c09853; } .layout-control-group.warning .checkbox, .layout-control-group.warning .radio, .layout-control-group.warning input, .layout-control-group.warning select, .layout-control-group.warning textarea { color: #c09853; } .layout-control-group.warning input, .layout-control-group.warning select, .layout-control-group.warning textarea { border-color: #c09853; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } .layout-control-group.warning input:focus, .layout-control-group.warning select:focus, .layout-control-group.warning textarea:focus { border-color: #a47e3c; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; } .layout-control-group.warning .input-prepend .add-on, .layout-control-group.warning .input-append .add-on { color: #c09853; background-color: #fcf8e3; border-color: #c09853; } .layout-control-group.error > label, .layout-control-group.error .help-block, .layout-control-group.error .help-inline { color: #b94a48; } .error { color: #b94a48; } .layout-control-group.error .checkbox, .layout-control-group.error .radio, .layout-control-group.error input, .layout-control-group.error select, .layout-control-group.error textarea { color: #b94a48; } .layout-control-group.error input, .layout-control-group.error select, .layout-control-group.error textarea { border-color: #b94a48; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } .layout-control-group.error input:focus, .layout-control-group.error select:focus, .layout-control-group.error textarea:focus { border-color: #953b39; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; } .layout-control-group.error .input-prepend .add-on, .layout-control-group.error .input-append .add-on { color: #b94a48; background-color: #f2dede; border-color: #b94a48; } .layout-control-group.success > label, .layout-control-group.success .help-block, .layout-control-group.success .help-inline { color: #468847; } .layout-control-group.success .checkbox, .layout-control-group.success .radio, .layout-control-group.success input, .layout-control-group.success select, .layout-control-group.success textarea { color: #468847; } .layout-control-group.success input, .layout-control-group.success select, .layout-control-group.success textarea { border-color: #468847; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } .layout-control-group.success input:focus, .layout-control-group.success select:focus, .layout-control-group.success textarea:focus { border-color: #356635; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; } .layout-control-group.success .input-prepend .add-on, .layout-control-group.success .input-append .add-on { color: #468847; background-color: #dff0d8; border-color: #468847; } .layout-control-group.info > label, .layout-control-group.info .help-block, .layout-control-group.info .help-inline { color: #3a87ad; } .layout-control-group.info .checkbox, .layout-control-group.info .radio, .layout-control-group.info input, .layout-control-group.info select, .layout-control-group.info textarea { color: #3a87ad; } .layout-control-group.info input, .layout-control-group.info select, .layout-control-group.info textarea { border-color: #3a87ad; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } .layout-control-group.info input:focus, .layout-control-group.info select:focus, .layout-control-group.info textarea:focus { border-color: #2d6987; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3; -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3; } .layout-control-group.info .input-prepend .add-on, .layout-control-group.info .input-append .add-on { color: #3a87ad; background-color: #d9edf7; border-color: #3a87ad; } .layout-controls > .radio, .layout-controls > .checkbox { display: inline-block; /*padding: 0 !important;*/ margin: 0 !important; margin-top: 0px !important; margin-right: 15px !important; } .layout-controls > .radio.line, .layout-controls > .checkbox.line { display: block; padding: 0 !important; margin: 0 !important; margin-top: 5px !important; } .layout-controls .text { display: block; margin-top: 5px; } .layout-controls > .radio:first-child, .layout-controls > .checkbox:first-child { padding-top: 7px; } .dropup, .dropdown { position: relative; } .dropdown-toggle { *margin-bottom: -3px; } .dropdown-toggle:active, .open .dropdown-toggle { outline: 0; } /* # Other classes ================================================== */ .close { float: right; font-size: 16px; line-height: 16px; color: #000000; opacity: 0.2; filter: alpha(opacity=20); } .close:hover { color: #000000; text-decoration: none; cursor: pointer; opacity: 0.4; filter: alpha(opacity=40); } button.close { padding: 0; cursor: pointer; background: transparent; border: 0; } .pull-right { float: right; } .pull-left { float: left; } .hide { display: none; } .show { display: block; } .invisible { visibility: hidden; } .typeahead { margin-top: -1px; } .fade { opacity: 0; -webkit-transition: opacity 0.15s linear; -moz-transition: opacity 0.15s linear; -o-transition: opacity 0.15s linear; transition: opacity 0.15s linear; } .fade.in { opacity: 1; } .collapse { position: relative; height: 0; overflow: hidden; -webkit-transition: height 0.35s ease; -moz-transition: height 0.35s ease; -o-transition: height 0.35s ease; transition: height 0.35s ease; } .collapse.in { height: auto; } .hidden { display: none; } *= = = = = Popover = = = = = * / .popover { position: absolute; top: 0; left: 0; z-index: 1010; display: none; background-color: #ffffff; border: 1px solid #d5d5d5; -webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); } .popover.top { margin-bottom: 10px; } .popover.right { margin-left: 10px; } .popover.bottom { margin-top: 10px; } .popover.left { margin-left: -10px; } .popover-title { border-bottom: 1px solid #d5d5d5; margin: 0; padding: 9px 14px 8px 14px; font-size: 12px; font-weight: bold; line-height: 18px; -webkit-border-radius: 3px 3px 0 0; -moz-border-radius: 3px 3px 0 0; border-radius: 3px 3px 0 0; background: #f7f7f7; background: -moz-linear-gradient(top, #ffffff 0%, #f2f2f2 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f2f2f2)); background: -webkit-linear-gradient(top, #ffffff 0%, #f2f2f2 100%); background: -o-linear-gradient(top, #ffffff 0%, #f2f2f2 100%); background: -ms-linear-gradient(top, #ffffff 0%, #f2f2f2 100%); background: linear-gradient(to bottom, #ffffff 0%, #f2f2f2 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f2f2f2', GradientType=0); box-shadow: 0 1px 0 #fff; -webkit-box-shadow: 0 1px 0 #fff; -moz-box-shadow: 0 1px 0 #fff; } .popover-content { padding: 9px 14px; } .popover-content p, .popover-content ul, .popover-content ol { margin-bottom: 0; } .popover .arrow, .popover .arrow:after { position: absolute; display: inline-block; width: 0; height: 0; border-color: transparent; border-style: solid; } .popover .arrow:after { content: ""; z-index: -1; } .popover.top .arrow { bottom: -7px; left: 50%; margin-left: -7px; border-width: 7px 7px 0; border-top-color: #ffffff; } .popover.top .arrow:after { border-width: 8px 8px 0; border-top-color: rgba(0, 0, 0, 0.25); bottom: -1px; left: -8px; } .popover.right .arrow { top: 50%; left: -7px; margin-top: -7px; border-width: 7px 7px 7px 0; border-right-color: #ffffff; } .popover.right .arrow:after { border-width: 8px 8px 8px 0; border-right-color: rgba(0, 0, 0, 0.25); bottom: -8px; left: -1px; } .popover.bottom .arrow { top: -7px; left: 50%; margin-left: -7px; border-width: 0 7px 7px; border-bottom-color: #ffffff; } .popover.bottom .arrow:after { border-width: 0 8px 8px; border-bottom-color: rgba(0, 0, 0, 0.25); top: -1px; left: -8px; } .popover.left .arrow { top: 50%; right: -7px; margin-top: -7px; border-width: 7px 0 7px 7px; border-left-color: #ffffff; } .popover.left .arrow:after { border-width: 8px 0 8px 8px; border-left-color: rgba(0, 0, 0, 0.25); bottom: -8px; right: -1px; } .custom-layout-label { width: 120px; display: inline-block; } .layout-form .layout-label-control-group { float: left; width: 160px; text-align: left; } .layout-system-report { display: none; margin: 10px 0; padding: 0; position: relative; } .close-report { display: none; } .layout-system-report textarea { font-family: monospace; width: 100%; margin: 0; height: 300px; padding: 20px; -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0; resize: none; font-size: 12px; line-height: 20px; outline: 0; } /*************************** Gallery Bank Information Popup********************************/ .gallery_bank_popup_box .ui-dialog-titlebar { background : #E33A0C; color : #fff; font-size : 1.5em; font-weight : normal; height : auto; line-height : 2.5; padding : 0 1em; } .gallery_bank_popup_box .ui-dialog-titlebar span { text-align : left; } .gallery_bank_popup_box .ui-dialog-titlebar button { width : 30px; height : 30px; color : #ffffff; top : 15px; right : 15px; margin : 0; padding : 0; } .gallery_bank_popup_box .ui-dialog-titlebar button:before { color : #ffffff; } .gallery_bank_popup_box .ui-dialog-titlebar button:hover:before { color : #fff; } .gallery_bank_popup_box .ui-icon, .gallery_bank_popup_box .ui-icon:hover { background : none !important; } #gallery_bank_popup { padding : 0; margin : 0; } #gallery_bank_popup li { border-bottom : 1px solid #e5e5e5; padding : 1em 2em; overflow : hidden; list-style : decimal; list-style-position : inside; } #gallery_bank_popup li p { margin-top : 0; margin-left: 13px; } #gallery_bank_popup li h4 { margin : 0; } #gallery_bank_popup .gb_close_popup { position : relative; display : block; width : 98%; line-height : 3; text-align : right; color : #AE3A3A; } .wp-core-ui .gb_buttons { border: 1px solid #FF6D1E; font-size: 13px; padding: 4px 0; color: #FFF; text-shadow: 0 1px 3px #FF6D1E; font-weight: bold; background: #FF6D1E; -moz-border-radius: 3px; border-radius: 3px; -webkit-border-radius: 3px; text-decoration: none; height: 35px; text-align: center; width: 100px; -moz-box-shadow: 0px 1px 1px 0 #FF6D1E inset; -webkit-box-shadow: 0px 1px 1px 0 #FF6D1E inset; box-shadow: 0px 1px 1px 0 #FF6D1E inset; margin-left: 13px; } .wp-core-ui .gb_buttons:hover, .wp-core-ui .gb_buttons:focus { background: #FF6D1E; color: #FFF; border: 1px solid #FF6D1E; -moz-box-shadow: 0px 1px 1px 0 #FF6D1E inset; -webkit-box-shadow: 0px 1px 1px 0 #FF6D1E inset; box-shadow: 0px 1px 1px 0 #FF6D1E inset; } /****************************** Gallery Bank Getting Started **********************************/ #gallery_bank_get_started .inside { padding : 0; margin : 0; } #gallery_bank_get_started .gallery-bank-video { position : relative; padding-bottom : 48.5%; padding-top : 25px; height : 0; width : 85%; margin : 1em auto 0 auto; } #gallery_bank_get_started .gallery-bank-video iframe { position : absolute; top : 0; left : 0; width : 100%; height : 100%; } .gallery_bank_getting_started { padding : 0 2em; overflow : hidden; } .gallery_bank_layout { /* padding: 13px 323px 0px 266px !important; */ background-color: #fff !important; } .gallery_bank_layout > a { margin-top:15px; margin-bottom:10px; text-decoration:none !important; } .gallery_bank_layout > .btn { margin-top:15px; margin-bottom:10px; text-decoration:none !important; } .gallery_bank_getting_started .column { width : 100%; max-width : 45%; float : left; padding-right : 2.5%; padding-bottom : 2em; } .gallery_bank_getting_started .column.two { margin-right : 0; padding-right : 0; padding-left : 2.5%; border : 0; max-width : 49%; border-left : 1px solid #ebebeb; } .gallery_bank_getting_started .gallery-bank-video-link { width : 100%; max-width : 200px; float : left; margin : 0 1.5em 1.5em 0; } .gallery_bank_getting_started .gallery-bank-video-link img { max-width : 100%; height : auto; } .gallery_bank_getting_started .gallery_bank_video { display : none; } .gallery-bank-video-popup .gallery_bank_video { padding : 0; margin : 0 0 -5px 0; } .gallery-bank-video-popup .ui-dialog-titlebar { line-height : 1; font-size : 1em; height : 35px; background : #222; border-bottom : none; } .gallery-bank-video-popup .ui-dialog-titlebar button { width : 30px; height : 30px; color : #ffffff; top : 0px; right : 0px; margin : 0; padding : 0; } .breadcrumb > li > a { text-decoration:none !important; } .framework_tabs { width:100%; display:inline-block; } .framework_tab-links:after { display:inline-block; clear:both; content:''; } .framework_tab-links li { margin:0px 5px; float:left; list-style:none; border :1px solid #e5e5e5; border-bottom:none; } .framework_tab-links a { padding:9px 15px; display:inline-block; border-radius:3px 3px 0px 0px; background:#EFEFEF; color:#4c4c4c; transition:all linear 0.15s; } .framework_tab-links a:hover { background:#ffffff; text-decoration:none; } li.active a, li.active a:hover { background:#fff; color:#4c4c4c; } .framework_tab-content { border-radius:3px; border:1px solid #e5e5e5; /*box-shadow:-1px 1px 1px rgba(0,0,0,0.15);*/ background:#fff; margin-top: 2%; padding: 10px 10px 10px 10px; margin-left: 4px; } .framework_tab { display:none; } .framework_tab.active { display:block; } .framework_background { background-color: #ffffff; padding-bottom:20px; } .framework_txt-align { vertical-align: middle !important; } .plugin-div { float: left; margin: 0 8px 16px; width: 48.5%; width: -webkit-calc(50% - 8px); width: calc(50% - 8px); background-color: #fff; border: 1px solid #dedede; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box } .plugin-div:nth-child(odd) { clear: both; margin-left: 0 } .plugin-div:nth-child(even) { margin-right: 0 } @media screen and (max-width:782px) { .plugin-card { margin-left: 0; margin-right: 0; width: 100% } } .plugin-div-top { position: relative; background-color: #073b4c !important; padding: 20px 20px 10px; min-height:200px; } .plugin-div-inner-content { min-height:150px; } .plugin-action-buttons, div.action-links { margin: 0 } .plugin-div h4 { margin: 0 0 12px; font-size: 16px; line-height: 1.3 } .plugin-div .desc, .plugin-div .name { margin-left: 148px; } .plugin-div .action-links { } .plugin-div-button { margin-left: 5px !important; } .plugin-div-settings { display:inline-block; margin: 1px 21px 18px !important; width: 50.5% ; width: -webkit-calc(50% - 8px); width: calc(100% - 30px) !important; background-color: #FAFAFA; border: 1px solid #dedede; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; vertical-align: top; min-height: 330px; } .plugin-div-settings:nth-child(odd) { clear: both; margin-left: 0 } .plugin-div-settings:nth-child(even) { margin-right: 0; margin-left: 8px; } .plugin-div-settings-top { position: relative; padding: 20px 20px 10px; background-color: #fff; } .plugin-action-buttons, div.action-links { margin: 0 } .plugin-div-settings h4 { margin: 0 0 12px; font-size: 16px; line-height: 1.3 } .plugin-div-settings .desc, .plugin-div-settings .name { margin-left: 148px; } .plugin-div-settings-button { margin-left: 5px !important; } .plugin-card-bottom_settings { background-color: #073b4c; border-top: 1px solid #dedede; clear: both; color: #ffffff; font-family: segoe ui; font-size: 16px; overflow: hidden; padding: 8px 20px; text-align: right; } .plugin-icon-custom { position: absolute; top: 20px; left: 20px; max-width: 128px; margin: 0px 20px 20px 0px; text-decoration: none; text-align:center; } .plugin-action-buttons-custom { clear: right; margin-left: 2em; margin-bottom: 1em; text-align: right; } .coustom-nav-tab { padding: 6px 10px !important; font-weight: 700 !important; font-size: 15px !important; line-height: 24px !important; } .custom_icon { width:128px; height:128px; } .service-div-settings { display:inline-block; margin: 0 0px 16px; width: 48.5%; width: -webkit-calc(50% - 8px); width: calc(50% - 8px); background-color: #FAFAFA; border: 1px solid #dedede; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; vertical-align: top; min-height: 300px; } .service-div-settings:nth-child(odd) { clear: both; margin-left: 0 } .service-div-settings:nth-child(even) { margin-right: 0; margin-left: 8px; } .service-div-settings .desc, .service-div-settings .name { } .service-div-settings-top { position: relative; padding: 5px 20px; background-color: #fff; } .service-div-inner-content { min-height:150px; } .service-div-settings .desc p { line-height: 2em !important; }
0.359139
0.149314
html { height: 100%; font-family: sans-serif; } body { height: 100%; width: 100%; margin: 0; padding: 0; background-color: lightgrey; text-align: center; } header { height: 10%; width: 100%; padding: 0; overflow: auto; background-color: forestGreen; text-align: center; } header h1 { color: white; font-size: 35pt; margin: 0; margin-left: 10pt; } main { height: 85%; width: 100%; overflow: auto; } h1.sidebar { margin-top: 2%; margin-bottom: 3%; color: black; text-decoration: underline; } h2.sidebar { margin-top: 2%; margin-bottom: 3%; margin-left: 10%; font-size: 15pt; color: black; text-align: left; } h3.review { margin: 0; margin-bottom: 3%; font-size: 20pt; font-weight: bold; text-align: center; text-decoration: underline; cursor: pointer; } h4.review { margin: 0; margin-bottom: 2%; font-size: 15pt; color: white; } footer { height: 5%; width: 100%; } div.scroll-box { overflow: auto; } div.rounded-border { border: 2px solid lightgrey; border-radius: 2px; } /******************************************************************************* HOME PAGE *******************************************************************************/ #home-page { margin: 2%; margin-bottom: 0; padding: 2%; height: 90%; width: 92%; background-color: grey; border-radius: 6pt; } #home-title { margin: 2%; margin-bottom: 4%; height: 6%; width: 96%; font-size: 30pt; } #home-content { margin-left: 2%; margin-right: 2%; height: 70%; width: 96%; text-align: center; font-size: 18pt; } input.basic-input { margin-right: 2%; padding: 2pt; font-size: 14pt; border: 2px solid black; border-radius: 4px; } input.custom-input { margin: 1%; margin-top: 0%; padding: 2pt; font-size: 14pt; border: 2px solid black; border-radius: 4px; } #submit-buttons { margin-left: 2%; margin-right: 2%; padding-top: 2%; height: 10%; width: 96%; text-align: center; } button.submit-button { margin-left: 2%; margin-right: 2%; padding: 16px 31px; background-color: forestGreen; border-radius: 28px; border: 2px solid black; display: inline-block; cursor: pointer; color: white; font-weight: bold; } #file-list { margin-left: 20%; text-align: left; list-style: none; } li.file-selection { margin-bottom: 2%; font-size: 15pt; cursor: pointer; color: white; } /******************************************************************************* CUSTOM INPUT FORM *******************************************************************************/ #environment-form { height: 100%; width: 100%; } #basic-inputs { height: 10%; width: 100%; } #custom-inputs { height: 90%; width: 100%; } #custom-inputs-title { margin: 0; height: 12%; width: 100%; font-size: 30pt; } #custom-inputs-content { margin: 0; height: 72%; width: 94%; padding: 3%; border-radius: 6pt; } ul.selection-list { margin-left: 33%; list-style: none; vertical-align: baseline; text-align: left; } /******************************************************************************* CUSTOM INPUT FORM *******************************************************************************/ #files { height: 100%; width: 100%; } /******************************************************************************* NAVIGATION BAR *******************************************************************************/ #navigation { margin: 2%; height: 16%; width: 96%; background-color: grey; border-radius: 6pt; text-align: center; } #new-environment { margin-top: 3%; } /******************************************************************************* VISUALIZER DISPLAY *******************************************************************************/ #display { height: 76%; width: 50%; float: left; text-align: center; background-color: white; } rect.display-cell:hover { fill-opacity: .4; cursor: pointer; } /******************************************************************************* CONTROL TOOLBAR *******************************************************************************/ #toolbar { height: 76%; width: 21%; margin-left: 2%; margin-right: 2%; float: left; background-color: grey; border-radius: 6pt; } #layer-toggles { height: 13%; width: 85%; margin-left: 15%; text-align: left; } #layer-selector { height: 28%; width: 85%; margin-left: 15%; text-align: left; } #anomaly-selector { height: 28%; width: 85%; margin-left: 15%; text-align: left; } /******************************************************************************* LEGEND *******************************************************************************/ #legend { height: 76%; width: 21%; margin-left: 2%; margin-right: 2%; padding: 0; float: left; background-color: grey; border-radius: 6pt; word-wrap: break-word; overflow: hidden; } table.legend-table { table-layout: fixed; margin: 0; padding-left: 5%; text-align: left; color: white; } td.legend-table-name { color: #D6D6D6; font-weight: bold; } td.legend-table-value { color: white; } #legend-main-table { height: 13%; } #legend-selected-layer-table { height: 15%; } #cell-table-holder { height: 42%; } /******************************************************************************* STYLING FOR TOGGLE SWITCHES *******************************************************************************/ #operation-controls { height: 8%; width: 98%; margin-top: 3%; padding: 2%; float: left; background-color: grey; border-radius: 6pt; text-align: center; } #action-message { height: 90%; padding: 2%; background-color: white; text-decoration-color: black; font-size: 12pt; text-align: left; display: inline; } #state-message { height: 90%; padding: 2%; background-color: white; text-decoration-color: black; font-size: 12pt; text-align: left; } /******************************************************************************* STYLING FOR TOGGLE SWITCHES *******************************************************************************/ .switch { display: inline-block; height: 17pt; position: relative; width: 30pt; margin-bottom: 5pt; } .switch input { display:none; } .slider { background-color: #ccc; bottom: 0; cursor: pointer; left: 0; position: absolute; right: 0; top: 0; transition: .4s; } .slider:before { background-color: #fff; bottom: 2pt; content: ""; height: 13pt; left: 2pt; position: absolute; transition: .4s; width: 13pt; } input:checked + .slider { background-color: forestgreen; } input:checked + .slider:before { transform: translateX(13pt); } .slider.round { border-radius: 17pt; } .slider.round:before { border-radius: 50%; } .container { margin: 0 auto; } .toggle-text { position: relative; left: 35pt; top: 0.5pt; font-size: 15pt; color: #b3b3b3; } /******************************************************************************* STYLING FOR RADIO BUTTONS *******************************************************************************/ .inline{ display: inline-block; } .radio{ color:#b3b3b3; font-size:12pt; position:relative; } .radio span{ position:relative; padding-left:20pt; } .radio span:after{ content:''; width:12pt; height:12pt; border:2pt solid; position:absolute; left:0; top:1pt; border-radius:100%; -ms-border-radius:100%; -moz-border-radius:100%; -webkit-border-radius:100%; box-sizing:border-box; -ms-box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; } .radio input[type="radio"]{ cursor: pointer; position: absolute; width:100%; height:100%; z-index: 1; opacity: 0; } .radio input[type="radio"]:checked + span{ color: black; } .radio input[type="radio"]:checked + span:before{ content:''; width:12pt; height:12pt; position:absolute; background: forestgreen; left:0pt; top:1pt; border-radius:100%; -ms-border-radius:100%; -moz-border-radius:100%; -webkit-border-radius:100%; }
app/src/main/css/index.css
html { height: 100%; font-family: sans-serif; } body { height: 100%; width: 100%; margin: 0; padding: 0; background-color: lightgrey; text-align: center; } header { height: 10%; width: 100%; padding: 0; overflow: auto; background-color: forestGreen; text-align: center; } header h1 { color: white; font-size: 35pt; margin: 0; margin-left: 10pt; } main { height: 85%; width: 100%; overflow: auto; } h1.sidebar { margin-top: 2%; margin-bottom: 3%; color: black; text-decoration: underline; } h2.sidebar { margin-top: 2%; margin-bottom: 3%; margin-left: 10%; font-size: 15pt; color: black; text-align: left; } h3.review { margin: 0; margin-bottom: 3%; font-size: 20pt; font-weight: bold; text-align: center; text-decoration: underline; cursor: pointer; } h4.review { margin: 0; margin-bottom: 2%; font-size: 15pt; color: white; } footer { height: 5%; width: 100%; } div.scroll-box { overflow: auto; } div.rounded-border { border: 2px solid lightgrey; border-radius: 2px; } /******************************************************************************* HOME PAGE *******************************************************************************/ #home-page { margin: 2%; margin-bottom: 0; padding: 2%; height: 90%; width: 92%; background-color: grey; border-radius: 6pt; } #home-title { margin: 2%; margin-bottom: 4%; height: 6%; width: 96%; font-size: 30pt; } #home-content { margin-left: 2%; margin-right: 2%; height: 70%; width: 96%; text-align: center; font-size: 18pt; } input.basic-input { margin-right: 2%; padding: 2pt; font-size: 14pt; border: 2px solid black; border-radius: 4px; } input.custom-input { margin: 1%; margin-top: 0%; padding: 2pt; font-size: 14pt; border: 2px solid black; border-radius: 4px; } #submit-buttons { margin-left: 2%; margin-right: 2%; padding-top: 2%; height: 10%; width: 96%; text-align: center; } button.submit-button { margin-left: 2%; margin-right: 2%; padding: 16px 31px; background-color: forestGreen; border-radius: 28px; border: 2px solid black; display: inline-block; cursor: pointer; color: white; font-weight: bold; } #file-list { margin-left: 20%; text-align: left; list-style: none; } li.file-selection { margin-bottom: 2%; font-size: 15pt; cursor: pointer; color: white; } /******************************************************************************* CUSTOM INPUT FORM *******************************************************************************/ #environment-form { height: 100%; width: 100%; } #basic-inputs { height: 10%; width: 100%; } #custom-inputs { height: 90%; width: 100%; } #custom-inputs-title { margin: 0; height: 12%; width: 100%; font-size: 30pt; } #custom-inputs-content { margin: 0; height: 72%; width: 94%; padding: 3%; border-radius: 6pt; } ul.selection-list { margin-left: 33%; list-style: none; vertical-align: baseline; text-align: left; } /******************************************************************************* CUSTOM INPUT FORM *******************************************************************************/ #files { height: 100%; width: 100%; } /******************************************************************************* NAVIGATION BAR *******************************************************************************/ #navigation { margin: 2%; height: 16%; width: 96%; background-color: grey; border-radius: 6pt; text-align: center; } #new-environment { margin-top: 3%; } /******************************************************************************* VISUALIZER DISPLAY *******************************************************************************/ #display { height: 76%; width: 50%; float: left; text-align: center; background-color: white; } rect.display-cell:hover { fill-opacity: .4; cursor: pointer; } /******************************************************************************* CONTROL TOOLBAR *******************************************************************************/ #toolbar { height: 76%; width: 21%; margin-left: 2%; margin-right: 2%; float: left; background-color: grey; border-radius: 6pt; } #layer-toggles { height: 13%; width: 85%; margin-left: 15%; text-align: left; } #layer-selector { height: 28%; width: 85%; margin-left: 15%; text-align: left; } #anomaly-selector { height: 28%; width: 85%; margin-left: 15%; text-align: left; } /******************************************************************************* LEGEND *******************************************************************************/ #legend { height: 76%; width: 21%; margin-left: 2%; margin-right: 2%; padding: 0; float: left; background-color: grey; border-radius: 6pt; word-wrap: break-word; overflow: hidden; } table.legend-table { table-layout: fixed; margin: 0; padding-left: 5%; text-align: left; color: white; } td.legend-table-name { color: #D6D6D6; font-weight: bold; } td.legend-table-value { color: white; } #legend-main-table { height: 13%; } #legend-selected-layer-table { height: 15%; } #cell-table-holder { height: 42%; } /******************************************************************************* STYLING FOR TOGGLE SWITCHES *******************************************************************************/ #operation-controls { height: 8%; width: 98%; margin-top: 3%; padding: 2%; float: left; background-color: grey; border-radius: 6pt; text-align: center; } #action-message { height: 90%; padding: 2%; background-color: white; text-decoration-color: black; font-size: 12pt; text-align: left; display: inline; } #state-message { height: 90%; padding: 2%; background-color: white; text-decoration-color: black; font-size: 12pt; text-align: left; } /******************************************************************************* STYLING FOR TOGGLE SWITCHES *******************************************************************************/ .switch { display: inline-block; height: 17pt; position: relative; width: 30pt; margin-bottom: 5pt; } .switch input { display:none; } .slider { background-color: #ccc; bottom: 0; cursor: pointer; left: 0; position: absolute; right: 0; top: 0; transition: .4s; } .slider:before { background-color: #fff; bottom: 2pt; content: ""; height: 13pt; left: 2pt; position: absolute; transition: .4s; width: 13pt; } input:checked + .slider { background-color: forestgreen; } input:checked + .slider:before { transform: translateX(13pt); } .slider.round { border-radius: 17pt; } .slider.round:before { border-radius: 50%; } .container { margin: 0 auto; } .toggle-text { position: relative; left: 35pt; top: 0.5pt; font-size: 15pt; color: #b3b3b3; } /******************************************************************************* STYLING FOR RADIO BUTTONS *******************************************************************************/ .inline{ display: inline-block; } .radio{ color:#b3b3b3; font-size:12pt; position:relative; } .radio span{ position:relative; padding-left:20pt; } .radio span:after{ content:''; width:12pt; height:12pt; border:2pt solid; position:absolute; left:0; top:1pt; border-radius:100%; -ms-border-radius:100%; -moz-border-radius:100%; -webkit-border-radius:100%; box-sizing:border-box; -ms-box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; } .radio input[type="radio"]{ cursor: pointer; position: absolute; width:100%; height:100%; z-index: 1; opacity: 0; } .radio input[type="radio"]:checked + span{ color: black; } .radio input[type="radio"]:checked + span:before{ content:''; width:12pt; height:12pt; position:absolute; background: forestgreen; left:0pt; top:1pt; border-radius:100%; -ms-border-radius:100%; -moz-border-radius:100%; -webkit-border-radius:100%; }
0.494629
0.075517
@font-face { font-family: Anton; src: url(../fontes/anton-2.ttf); } @font-face { font-family: Bitwise; src: url(../fontes/bitwise.ttf); } :root { --Azul-Escuro: #000d63; --azul-claro: #084cb9; --Laranjado: #E66D22; --cinza: #0D0D0D; --Branco: #ffffff; --strong: red; --sombra: rgba(0, 0, 0, 0.39); --footer: rgb(75, 75, 75); } * { margin: 0px; padding: 0px; } html { overflow-y: scroll; overflow-x: hidden; } html::-webkit-scrollbar { width: 10px; } html::-webkit-scrollbar-track { background: var(--azul-claro); } html::-webkit-scrollbar-thumb { background-color: var(--Laranjado); border-radius: 0px 0px 12px 12px; } body { font-family: Anton, sans-serif; font-weight: 100; } nav { width: 100%; height: 180px; top: 0px; position: fixed; border: 1px solid #000d63; padding-bottom: 20px; /* background-repeat: no-repeat; background-size: cover; background-position: center center; background-image: url(../imagens/download.jpg); */ background-color: var(--azul-claro); display: flex; } nav > img { width: 200px; position: absolute; top: -10px; left: 20px; } nav > button#menu { width: 300px; padding: 15px; border-radius: 10px; margin-left: 10px; margin-top: 100px; color: var(--Branco); background-color: var(--Laranjado); border: 1px solid white; cursor: pointer; display: block; } nav > div > button:hover { transition: 200ms transform linear; transform: scale(1.03); } nav > button > p { display: inline; margin-left: 53px; } nav > button > strong { text-align: left; font-size: 20px; } nav > #categorias{ width: 300px; height: 100%; position: fixed; top: 0px; left: -360px; overflow-y: auto; overflow-x: hidden; background-color: var(--azul-claro); } nav > #categorias > p { font-family: Bitwise, sans-serif; font-weight: 900; color: var(--Branco); margin-left: 20px; } nav > ul::-webkit-scrollbar { width: 10px; } nav > ul::-webkit-scrollbar-thumb { background-color: var(--Laranjado); border-radius: 2px; /*border: 3px solid orange;*/ } #Xc { width: 30px; height: 30px; border-radius: 50%; text-align: center; position: absolute; top: 20px; left: 300px; color: var(--Branco); text-decoration: none; background-color: #E66D22; cursor: pointer; } #Xc > span { top: -20px; right: 8px; position: absolute; font-size: 40px; } nav > ul > img { width: 200px; margin-left: 20px; margin-bottom: -40px; } nav > ul > button { position: absolute; top: 10px; right: 0px; font-size: 20px; } nav > ul > li { padding: 10px 0px; font-size: 25px; } nav > ul > li > a { width: 330px; height: 40px; padding-left: 20px; position: absolute; text-decoration: none; color: var(--Branco); } nav > ul > li > a:hover { background-color: var(--Azul-Escuro); } nav > #fundo { width: 100%; height: 100%; top: 0px; position: fixed; display: none; background-color: #0d0d0dc4; -webkit-filter: blur(0px); -moz-filter: blur(0px); -o-filter: blur(0px); -ms-filter: blur(53px); filter: blur(0px); } /* Banner */ section#local-banner { width: 100%; height: 450px; background-color: #E66D22; margin-top: 200px; } section#local-banner > div#banner { max-width: 1900px; background-size: cover; height: 450px; margin: auto; background-position: center center; background-repeat: no-repeat; background-image: url(../imagens/banner/MÊS.png); } /* Amostras */ section#amostras { width: 99,9%; height: 200px; background-color: var(--Branco); overflow: hidden; padding-top: 20px; position: relative; border: 4px solid #E66D22; } /* btn1 */ section#amostras > button#btn1 { width: 70px; height: 270px; border: none; top: -20px; position: absolute; background-color: #e66d22b9; } section#amostras > button > div > div { width: 5px; height: 40px; background-color: var(--Branco); position: absolute; top: 100px; left: 25px; } section#amostras > button#btn1 { display: none; } section#amostras > button#btn1 > div > div.t1 { transform: rotate(50deg); top: 103px; } section#amostras > button#btn1 > div > div.t2 { transform: rotate(-50deg); top: 127px; } /* btn 2 */ section#amostras > button#btn2 { right: 0px; width: 70px; height: 270px; border: none; top: -15px; position: absolute; background-color: #e66d22b9; } section#amostras > button#btn2 > div { transform: rotate(180deg); } section#amostras > button#btn2 > div > div.t1 { transform: rotate(50deg); top: -30px; } section#amostras > button#btn2 > div > div.t2 { transform: rotate(-50deg); top: -7px; } /* section amostra */ section#amostras > section { position: absolute; height: 230px; left: -3500px; display: flex; padding-top: 25px; } section#amostras > section > div { width: 160px; height: 90px; padding-right: 40px; transition: transform 400ms; transform: translateX(0) scale(1); cursor: pointer; } section#amostras > section > div:hover, div:focus { transform: translateX(5px) scale(1.2); } section#amostras > section > div > a > img { width: 150px; height: 155px; } main { width: 100%; padding-top: 50px; padding-bottom: 80px; background-color: var(--Azul-Escuro); } article { max-width: 1232px; } div#segundo-menu { width: 30px; height: 60px; margin-left: 10px; position: fixed; bottom: 130px; cursor: pointer; display: none; } article > h1 { font-size: 28px; color: var(--Branco); margin-left: 80px; } article > div#p1 { width: 220px; height: 440px; display: inline-flex; padding-left: 80px; margin: auto; } article > div > a > div > img { width: 220px; height: 210px; border-radius: 20px; transition: transform 1s; transform: translateX(0) scale(1); cursor: pointer; border: 4px solid #E66D22; } article > div > a > div > img:hover, img:focus { transform: translateX(10px) scale(1.2); } article > div > a > div > div.texto { width: 220px; margin-left: 5px; } article > div > a > div > div.texto > p { color: var(--Branco); } article > div > a > div > div.texto > strong { color: var(--Laranjado); } article > div > a > div > div.texto > hr { width: 40px; } article > div > a > div > div.texto > span { font-size: 13px; color: white; } a#subir { width: 50px; height: 50px; position: fixed; background-size: cover; background-image: url(../imagens/ícones/subir.png); bottom: 135px; right: -50px; border-radius: 50%; opacity: 0.5; } #subir:hover { transition: 200ms transform linear; transform: scale(1.2); opacity: 1; } footer { width: 100%; padding-top: 30px; padding-bottom: 30px; height: auto; background-color: var(--azul-claro); } footer > img { width: 230px; margin-left: 50%; transform: translate(-50%); } footer > div { text-align: center; padding: 0px 30px 30px; font-family: Arial, Helvetica, sans-serif; } footer > div#infFooter > p { font-size: 16px; margin: 20px; } footer > div > strong > a { text-decoration: none; color: black; } @media screen and (min-width: 1232px) { article { width: 1232px; margin: auto; } } @media screen and (max-width: 1060px) { /* Banner */ section#local-banner { width: 100%; height: 350px; background-color: #E66D22; margin-top: 200px; } section#local-banner > div#banner { max-width: 1000px; background-size: cover; height: 350px; margin: auto; background-position: center center; background-repeat: no-repeat; background-image: url(../imagens/banner/MÊS.png); } } @media screen and (max-width: 820px) { nav { height: 100px; } nav > img { width: 200px; margin-left: 50%; transform: translate(-50%); } nav > #menu2 { width: 25px; height: 50px; margin-top: 80px; margin-left: 20px; cursor: pointer; } nav > #menu2 > p { width: 100%; height: 4px; background-color: white; margin-top: 5px; } nav > button#menu { display: none; } /* Banner */ section#local-banner { width: 100%; height: 200px; background-color: #E66D22; margin-top: 122px; } section#local-banner > div#banner { min-width: 150px; background-size: cover; height: 200px; margin: auto; background-position: center center; background-repeat: no-repeat; background-image: url(../imagens/banner/MÊS.png); } section#amostras { margin-top: 0px; } } @media screen and (max-width: 630px) { section#amostras { width: 97.9%; height: 130px; background-color: var(--Branco); margin-top: 0px; overflow-x: scroll; padding-top: 20px; position: relative; border: 4px solid #E66D22; } section#amostras > button { width: 40px; height: 100px; border: none; top: 0px; position: absolute; background-color: #e66d22b9; } section#amostras > button#btn1, button#btn2 { display: none; } section#amostras > button#btn1 > div { width: 5px; height: 30px; position: absolute; top: -55px; left: 15px; } section#amostras > button#btn2 > div { width: 5px; height: 30px; position: absolute; top: 50px; right: 10px; } section#amostras > section { position: absolute; left: 0px; display: flex; margin-top: -20px; } section#amostras > section > div { width: 120px; height: 160px; padding-right: 40px; transition: transform 400ms; transform: translateX(0) scale(1); cursor: pointer; } section#amostras > section > div:hover, dvi:focus { transform: translateX(5px) scale(1.2); } section#amostras > section > div > a > img { width: 120px; height: 120px; } } @media screen and (max-width: 500px) { nav > #categorias { width: 246px; } nav > #categorias > #Xc { width: 30px; height: 30px; border-radius: 50%; text-align: center; position: absolute; top: 20px; left: 200px; color: var(--Branco); text-decoration: none; background-color: #E66D22; } #Xc > span { top: -20px; right: 8px; position: absolute; font-size: 40px; } } @media screen and (max-width: 450px){ /* Banner */ section#local-banner { width: 100%; height: 150px; background-color: #E66D22; margin-top: 200px; } section#local-banner > div#banner { min-width: 120px; background-size: cover; height: 150px; margin: auto; background-position: center; background-repeat: no-repeat; background-image: url(../imagens/banner/MÊS.png); } footer > img { width: 170px; } }
desafio/Segundo-projeto/estilo/home.css
@font-face { font-family: Anton; src: url(../fontes/anton-2.ttf); } @font-face { font-family: Bitwise; src: url(../fontes/bitwise.ttf); } :root { --Azul-Escuro: #000d63; --azul-claro: #084cb9; --Laranjado: #E66D22; --cinza: #0D0D0D; --Branco: #ffffff; --strong: red; --sombra: rgba(0, 0, 0, 0.39); --footer: rgb(75, 75, 75); } * { margin: 0px; padding: 0px; } html { overflow-y: scroll; overflow-x: hidden; } html::-webkit-scrollbar { width: 10px; } html::-webkit-scrollbar-track { background: var(--azul-claro); } html::-webkit-scrollbar-thumb { background-color: var(--Laranjado); border-radius: 0px 0px 12px 12px; } body { font-family: Anton, sans-serif; font-weight: 100; } nav { width: 100%; height: 180px; top: 0px; position: fixed; border: 1px solid #000d63; padding-bottom: 20px; /* background-repeat: no-repeat; background-size: cover; background-position: center center; background-image: url(../imagens/download.jpg); */ background-color: var(--azul-claro); display: flex; } nav > img { width: 200px; position: absolute; top: -10px; left: 20px; } nav > button#menu { width: 300px; padding: 15px; border-radius: 10px; margin-left: 10px; margin-top: 100px; color: var(--Branco); background-color: var(--Laranjado); border: 1px solid white; cursor: pointer; display: block; } nav > div > button:hover { transition: 200ms transform linear; transform: scale(1.03); } nav > button > p { display: inline; margin-left: 53px; } nav > button > strong { text-align: left; font-size: 20px; } nav > #categorias{ width: 300px; height: 100%; position: fixed; top: 0px; left: -360px; overflow-y: auto; overflow-x: hidden; background-color: var(--azul-claro); } nav > #categorias > p { font-family: Bitwise, sans-serif; font-weight: 900; color: var(--Branco); margin-left: 20px; } nav > ul::-webkit-scrollbar { width: 10px; } nav > ul::-webkit-scrollbar-thumb { background-color: var(--Laranjado); border-radius: 2px; /*border: 3px solid orange;*/ } #Xc { width: 30px; height: 30px; border-radius: 50%; text-align: center; position: absolute; top: 20px; left: 300px; color: var(--Branco); text-decoration: none; background-color: #E66D22; cursor: pointer; } #Xc > span { top: -20px; right: 8px; position: absolute; font-size: 40px; } nav > ul > img { width: 200px; margin-left: 20px; margin-bottom: -40px; } nav > ul > button { position: absolute; top: 10px; right: 0px; font-size: 20px; } nav > ul > li { padding: 10px 0px; font-size: 25px; } nav > ul > li > a { width: 330px; height: 40px; padding-left: 20px; position: absolute; text-decoration: none; color: var(--Branco); } nav > ul > li > a:hover { background-color: var(--Azul-Escuro); } nav > #fundo { width: 100%; height: 100%; top: 0px; position: fixed; display: none; background-color: #0d0d0dc4; -webkit-filter: blur(0px); -moz-filter: blur(0px); -o-filter: blur(0px); -ms-filter: blur(53px); filter: blur(0px); } /* Banner */ section#local-banner { width: 100%; height: 450px; background-color: #E66D22; margin-top: 200px; } section#local-banner > div#banner { max-width: 1900px; background-size: cover; height: 450px; margin: auto; background-position: center center; background-repeat: no-repeat; background-image: url(../imagens/banner/MÊS.png); } /* Amostras */ section#amostras { width: 99,9%; height: 200px; background-color: var(--Branco); overflow: hidden; padding-top: 20px; position: relative; border: 4px solid #E66D22; } /* btn1 */ section#amostras > button#btn1 { width: 70px; height: 270px; border: none; top: -20px; position: absolute; background-color: #e66d22b9; } section#amostras > button > div > div { width: 5px; height: 40px; background-color: var(--Branco); position: absolute; top: 100px; left: 25px; } section#amostras > button#btn1 { display: none; } section#amostras > button#btn1 > div > div.t1 { transform: rotate(50deg); top: 103px; } section#amostras > button#btn1 > div > div.t2 { transform: rotate(-50deg); top: 127px; } /* btn 2 */ section#amostras > button#btn2 { right: 0px; width: 70px; height: 270px; border: none; top: -15px; position: absolute; background-color: #e66d22b9; } section#amostras > button#btn2 > div { transform: rotate(180deg); } section#amostras > button#btn2 > div > div.t1 { transform: rotate(50deg); top: -30px; } section#amostras > button#btn2 > div > div.t2 { transform: rotate(-50deg); top: -7px; } /* section amostra */ section#amostras > section { position: absolute; height: 230px; left: -3500px; display: flex; padding-top: 25px; } section#amostras > section > div { width: 160px; height: 90px; padding-right: 40px; transition: transform 400ms; transform: translateX(0) scale(1); cursor: pointer; } section#amostras > section > div:hover, div:focus { transform: translateX(5px) scale(1.2); } section#amostras > section > div > a > img { width: 150px; height: 155px; } main { width: 100%; padding-top: 50px; padding-bottom: 80px; background-color: var(--Azul-Escuro); } article { max-width: 1232px; } div#segundo-menu { width: 30px; height: 60px; margin-left: 10px; position: fixed; bottom: 130px; cursor: pointer; display: none; } article > h1 { font-size: 28px; color: var(--Branco); margin-left: 80px; } article > div#p1 { width: 220px; height: 440px; display: inline-flex; padding-left: 80px; margin: auto; } article > div > a > div > img { width: 220px; height: 210px; border-radius: 20px; transition: transform 1s; transform: translateX(0) scale(1); cursor: pointer; border: 4px solid #E66D22; } article > div > a > div > img:hover, img:focus { transform: translateX(10px) scale(1.2); } article > div > a > div > div.texto { width: 220px; margin-left: 5px; } article > div > a > div > div.texto > p { color: var(--Branco); } article > div > a > div > div.texto > strong { color: var(--Laranjado); } article > div > a > div > div.texto > hr { width: 40px; } article > div > a > div > div.texto > span { font-size: 13px; color: white; } a#subir { width: 50px; height: 50px; position: fixed; background-size: cover; background-image: url(../imagens/ícones/subir.png); bottom: 135px; right: -50px; border-radius: 50%; opacity: 0.5; } #subir:hover { transition: 200ms transform linear; transform: scale(1.2); opacity: 1; } footer { width: 100%; padding-top: 30px; padding-bottom: 30px; height: auto; background-color: var(--azul-claro); } footer > img { width: 230px; margin-left: 50%; transform: translate(-50%); } footer > div { text-align: center; padding: 0px 30px 30px; font-family: Arial, Helvetica, sans-serif; } footer > div#infFooter > p { font-size: 16px; margin: 20px; } footer > div > strong > a { text-decoration: none; color: black; } @media screen and (min-width: 1232px) { article { width: 1232px; margin: auto; } } @media screen and (max-width: 1060px) { /* Banner */ section#local-banner { width: 100%; height: 350px; background-color: #E66D22; margin-top: 200px; } section#local-banner > div#banner { max-width: 1000px; background-size: cover; height: 350px; margin: auto; background-position: center center; background-repeat: no-repeat; background-image: url(../imagens/banner/MÊS.png); } } @media screen and (max-width: 820px) { nav { height: 100px; } nav > img { width: 200px; margin-left: 50%; transform: translate(-50%); } nav > #menu2 { width: 25px; height: 50px; margin-top: 80px; margin-left: 20px; cursor: pointer; } nav > #menu2 > p { width: 100%; height: 4px; background-color: white; margin-top: 5px; } nav > button#menu { display: none; } /* Banner */ section#local-banner { width: 100%; height: 200px; background-color: #E66D22; margin-top: 122px; } section#local-banner > div#banner { min-width: 150px; background-size: cover; height: 200px; margin: auto; background-position: center center; background-repeat: no-repeat; background-image: url(../imagens/banner/MÊS.png); } section#amostras { margin-top: 0px; } } @media screen and (max-width: 630px) { section#amostras { width: 97.9%; height: 130px; background-color: var(--Branco); margin-top: 0px; overflow-x: scroll; padding-top: 20px; position: relative; border: 4px solid #E66D22; } section#amostras > button { width: 40px; height: 100px; border: none; top: 0px; position: absolute; background-color: #e66d22b9; } section#amostras > button#btn1, button#btn2 { display: none; } section#amostras > button#btn1 > div { width: 5px; height: 30px; position: absolute; top: -55px; left: 15px; } section#amostras > button#btn2 > div { width: 5px; height: 30px; position: absolute; top: 50px; right: 10px; } section#amostras > section { position: absolute; left: 0px; display: flex; margin-top: -20px; } section#amostras > section > div { width: 120px; height: 160px; padding-right: 40px; transition: transform 400ms; transform: translateX(0) scale(1); cursor: pointer; } section#amostras > section > div:hover, dvi:focus { transform: translateX(5px) scale(1.2); } section#amostras > section > div > a > img { width: 120px; height: 120px; } } @media screen and (max-width: 500px) { nav > #categorias { width: 246px; } nav > #categorias > #Xc { width: 30px; height: 30px; border-radius: 50%; text-align: center; position: absolute; top: 20px; left: 200px; color: var(--Branco); text-decoration: none; background-color: #E66D22; } #Xc > span { top: -20px; right: 8px; position: absolute; font-size: 40px; } } @media screen and (max-width: 450px){ /* Banner */ section#local-banner { width: 100%; height: 150px; background-color: #E66D22; margin-top: 200px; } section#local-banner > div#banner { min-width: 120px; background-size: cover; height: 150px; margin: auto; background-position: center; background-repeat: no-repeat; background-image: url(../imagens/banner/MÊS.png); } footer > img { width: 170px; } }
0.349866
0.09645
.angular-schema-form--base64-file label { display: block; } [base64-file-upload] { cursor: pointer; } .base64-file--drop-area { width:100%; background: transparent; color: inherit; cursor: pointer; border-radius: 5px; padding: 0 40px; min-height: 110px; max-height: 110px; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; align-items: center; border: 2px dashed rgba(0, 0, 0, 0.3); outline: none; } .base64-file--drop-area:focus { outline: none; } .base64-file--drop-area-description { display: block; width: 100%; text-align:center; } .base64-file--drop-area-description { font-size:20px; } .ng-invalid-base64-file-upload-size .base64-file--drop-area { border-color: #e93a29; } .base64-file--drop-area.file-hovering { border-color: #29e981; border-style: solid; } .base64-file--file { position: relative; white-space: nowrap; width: 100%; } .base64-file--file::after, .base64-file--file::before { content: ' '; clear: both; display: table; } .base64-file--file-remove { float:right; cursor: pointer; padding:10px; position: absolute; top: 0; right: -10px; font-size:16px; } .base64-file--file-size, .base64-file--file-name { float:left; padding-right: 20px; margin-left: 10px; display:inline-block; width: calc(100% - 100px); white-space: normal; text-align: left; font-weight: lighter; } .base64-file--file-name { font-size: 16px; } .base64-file--file-size { font-size: 11px; } .base64-file--file-preview { float:left; width: 75px; height: 75px; background: rgba(211, 212, 200, 0.4); border-radius: 5px; background-repeat: no-repeat; background-position: center; background-size: contain; display: inline-block; text-align: center; position: relative; overflow: hidden; } .base64-file--file-preview > span { line-height: 75px; font-size: 26px; padding:4px; opacity: 0.2; text-transform: uppercase; }
web/css/addon.css
.angular-schema-form--base64-file label { display: block; } [base64-file-upload] { cursor: pointer; } .base64-file--drop-area { width:100%; background: transparent; color: inherit; cursor: pointer; border-radius: 5px; padding: 0 40px; min-height: 110px; max-height: 110px; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; align-items: center; border: 2px dashed rgba(0, 0, 0, 0.3); outline: none; } .base64-file--drop-area:focus { outline: none; } .base64-file--drop-area-description { display: block; width: 100%; text-align:center; } .base64-file--drop-area-description { font-size:20px; } .ng-invalid-base64-file-upload-size .base64-file--drop-area { border-color: #e93a29; } .base64-file--drop-area.file-hovering { border-color: #29e981; border-style: solid; } .base64-file--file { position: relative; white-space: nowrap; width: 100%; } .base64-file--file::after, .base64-file--file::before { content: ' '; clear: both; display: table; } .base64-file--file-remove { float:right; cursor: pointer; padding:10px; position: absolute; top: 0; right: -10px; font-size:16px; } .base64-file--file-size, .base64-file--file-name { float:left; padding-right: 20px; margin-left: 10px; display:inline-block; width: calc(100% - 100px); white-space: normal; text-align: left; font-weight: lighter; } .base64-file--file-name { font-size: 16px; } .base64-file--file-size { font-size: 11px; } .base64-file--file-preview { float:left; width: 75px; height: 75px; background: rgba(211, 212, 200, 0.4); border-radius: 5px; background-repeat: no-repeat; background-position: center; background-size: contain; display: inline-block; text-align: center; position: relative; overflow: hidden; } .base64-file--file-preview > span { line-height: 75px; font-size: 26px; padding:4px; opacity: 0.2; text-transform: uppercase; }
0.483648
0.056914
.footer { background: #000; z-index: 3; position: relative; } .footer .inner-footer { display: flex; flex-direction: column; width: 1200px; margin: 0 auto; } .footer .inner-footer .foot-1 { padding: 24px 0 8px; font-size: 14px; } .footer .inner-footer .foot-1>ul { display: flex; align-items: center; flex-wrap: wrap; } .footer .inner-footer .foot-1>ul>li { margin-right: 28px; margin-bottom: 16px; opacity: .8; transition: opacity .2s; } .footer .inner-footer .foot-1>ul>li>a { color: white; } .footer .inner-footer .foot-2 { padding: 18px 0; border-top: 1px solid #424242; } .footer .inner-footer .foot-2>p { color: #fff; font-weight: 600; font-size: 14px; margin-bottom: 8px; } .footer .inner-footer .foot-2 ul { display: flex; align-items: center; flex-wrap: wrap; } .footer .inner-footer .foot-2-ul { flex-direction: column !important; align-items: flex-start !important; } .footer .inner-footer .foot-2 ul>li { margin-right: 32px; font-size: 14px; line-height: 36px; opacity: .8; transition: opacity .2s; } .footer .inner-footer .foot-2 .foot-2-country { color: #fff; font-size: 12px; font-weight: 600; } .footer .inner-footer .foot-2 ul>li>a { color: #fff; } .footer .inner-footer .foot-3 { display: flex; align-items: center; border-top: 1px solid #424242; justify-content: space-between; padding: 18px 0; } .footer .inner-footer .foot-3 .foot-3-1 { display: flex; align-items: center; } .footer .inner-footer .foot-3 .foot-3-1 .foot-3-1-logo-con { display: flex; align-items: center; opacity: .8; transition: opacity .2s; } .footer .inner-footer .foot-3 .foot-3-1 .foot-3-1-logo-con .foot-3-1-logo-div { width: 150px; height: auto; overflow: hidden; position: relative; } .footer .inner-footer .foot-3 .foot-3-1 .foot-3-1-logo-con .foot-3-1-logo-div img { width: 100%; height: 100%; } .footer .inner-footer .foot-3 .foot-3-1 .foot-3-1-span { color: #fff; margin-left: 16px; font-size: 12px; opacity: .8; transition: opacity .2s; } .footer .inner-footer .foot-3 .foot-3-ul { display: flex; align-items: center; } .footer .inner-footer .foot-3 .foot-3-ul>li { margin-right: 16px; opacity: .8; transition: opacity .2s; } .footer .inner-footer .foot-3 .foot-3-ul>li>a { color: #fff; } .footer .inner-footer .foot-3 .foot-3-2 { display: flex; } .footer .inner-footer .foot-3 .foot-3-2 .foot-3-2-icon { margin-right: 16px; } .footer .inner-footer .foot-3 .foot-3-2 .foot-3-2-icon:last-of-type { margin-right: 0; } .footer .inner-footer .foot-3 .foot-3-2 .foot-3-2-icon .foot-3-2-app-div { width: 144px; height: 48px; display: inline-block; border-radius: 4px; } .footer .inner-footer .foot-3 .foot-3-2 .foot-3-2-icon .foot-3-2-img { width: 144px; height: 48px; }
Urban Company Clone/css/footer.css
.footer { background: #000; z-index: 3; position: relative; } .footer .inner-footer { display: flex; flex-direction: column; width: 1200px; margin: 0 auto; } .footer .inner-footer .foot-1 { padding: 24px 0 8px; font-size: 14px; } .footer .inner-footer .foot-1>ul { display: flex; align-items: center; flex-wrap: wrap; } .footer .inner-footer .foot-1>ul>li { margin-right: 28px; margin-bottom: 16px; opacity: .8; transition: opacity .2s; } .footer .inner-footer .foot-1>ul>li>a { color: white; } .footer .inner-footer .foot-2 { padding: 18px 0; border-top: 1px solid #424242; } .footer .inner-footer .foot-2>p { color: #fff; font-weight: 600; font-size: 14px; margin-bottom: 8px; } .footer .inner-footer .foot-2 ul { display: flex; align-items: center; flex-wrap: wrap; } .footer .inner-footer .foot-2-ul { flex-direction: column !important; align-items: flex-start !important; } .footer .inner-footer .foot-2 ul>li { margin-right: 32px; font-size: 14px; line-height: 36px; opacity: .8; transition: opacity .2s; } .footer .inner-footer .foot-2 .foot-2-country { color: #fff; font-size: 12px; font-weight: 600; } .footer .inner-footer .foot-2 ul>li>a { color: #fff; } .footer .inner-footer .foot-3 { display: flex; align-items: center; border-top: 1px solid #424242; justify-content: space-between; padding: 18px 0; } .footer .inner-footer .foot-3 .foot-3-1 { display: flex; align-items: center; } .footer .inner-footer .foot-3 .foot-3-1 .foot-3-1-logo-con { display: flex; align-items: center; opacity: .8; transition: opacity .2s; } .footer .inner-footer .foot-3 .foot-3-1 .foot-3-1-logo-con .foot-3-1-logo-div { width: 150px; height: auto; overflow: hidden; position: relative; } .footer .inner-footer .foot-3 .foot-3-1 .foot-3-1-logo-con .foot-3-1-logo-div img { width: 100%; height: 100%; } .footer .inner-footer .foot-3 .foot-3-1 .foot-3-1-span { color: #fff; margin-left: 16px; font-size: 12px; opacity: .8; transition: opacity .2s; } .footer .inner-footer .foot-3 .foot-3-ul { display: flex; align-items: center; } .footer .inner-footer .foot-3 .foot-3-ul>li { margin-right: 16px; opacity: .8; transition: opacity .2s; } .footer .inner-footer .foot-3 .foot-3-ul>li>a { color: #fff; } .footer .inner-footer .foot-3 .foot-3-2 { display: flex; } .footer .inner-footer .foot-3 .foot-3-2 .foot-3-2-icon { margin-right: 16px; } .footer .inner-footer .foot-3 .foot-3-2 .foot-3-2-icon:last-of-type { margin-right: 0; } .footer .inner-footer .foot-3 .foot-3-2 .foot-3-2-icon .foot-3-2-app-div { width: 144px; height: 48px; display: inline-block; border-radius: 4px; } .footer .inner-footer .foot-3 .foot-3-2 .foot-3-2-icon .foot-3-2-img { width: 144px; height: 48px; }
0.464173
0.074669
input[type="text"] { width: 50px; border: 1px solid #CCC; } .padtop { height: 10px; } .cordinate-btn { padding-left: 30px; } .col-cordinates { display: flex; } .cordinate-text { font-size: 25px; padding-left: 30px; padding-right: 10px; color: black; -webkit-text-stroke: 1px black; } .map-center { display: inline-block; height: 0%; vertical-align: middle; } .map { margin-left: auto; margin-right: auto; position: relative; width: 80%; } div.arrow1 { position: absolute; background-color: transparent; width: 5%; height: 10%; left: -5%; top: 45%; /* border-style: groove; border-width: 1% 1% 1% 1%; */ content: url(picture/map/arrow1.png); -webkit-user-select: none; } div.arrow2 { position: absolute; background-color: transparent; width: 10%; height: 5%; left: 45%; top: 0%; /* border-style: groove; border-width: 1% 1% 1% 1%; */ content: url(picture/map/arrow2.png); -webkit-user-select: none; } div.arrow3 { position: absolute; background-color: transparent; width: 5%; height: 10%; left: 95%; top: 45%; /* border-style: groove; border-width: 1% 1% 1% 1%; */ content: url(picture/map/arrow3.png); -webkit-user-select: none; } div.arrow4 { position: absolute; background-color: transparent; width: 10%; height: 5%; left: 45%; top: 100%; /* border-style: groove; border-width: 1% 1% 1% 1%; */ content: url(picture/map/arrow4.png); -webkit-user-select: none; } div.posY1 { position: absolute; background-color: white; width: 5%; height: 10%; left: 0%; top: 5%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posY2 { position: absolute; background-color: white; width: 5%; height: 10%; left: 0%; top: 15%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posY3 { position: absolute; background-color: white; width: 5%; height: 10%; left: 0%; top: 25%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posY4 { position: absolute; background-color: white; width: 5%; height: 10%; left: 0%; top: 35%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posY5 { position: absolute; background-color: white; width: 5%; height: 10%; left: 0%; top: 45%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posY6 { position: absolute; background-color: white; width: 5%; height: 10%; left: 0%; top: 55%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posY7 { position: absolute; background-color: white; width: 5%; height: 10%; left: 0%; top: 65%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posY8 { position: absolute; background-color: white; width: 5%; height: 10%; left: 0%; top: 75%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posY9 { position: absolute; background-color: white; width: 5%; height: 10%; left: 0%; top: 85%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posX1 { position: absolute; background-color: white; width: 10%; height: 5%; left: 5%; top: 95%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posX2 { position: absolute; background-color: white; width: 10%; height: 5%; left: 15%; top: 95%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posX3 { position: absolute; background-color: white; width: 10%; height: 5%; left: 25%; top: 95%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posX4 { position: absolute; background-color: white; width: 10%; height: 5%; left: 35%; top: 95%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posX5 { position: absolute; background-color: white; width: 10%; height: 5%; left: 45%; top: 95%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posX6 { position: absolute; background-color: white; width: 10%; height: 5%; left: 55%; top: 95%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posX7 { position: absolute; background-color: white; width: 10%; height: 5%; left: 65%; top: 95%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posX8 { position: absolute; background-color: white; width: 10%; height: 5%; left: 75%; top: 95%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posX9 { position: absolute; background-color: white; width: 10%; height: 5%; left: 85%; top: 95%; border-style: solid; border-width: 1% 1% 1% 1%; } div.free { position: absolute; background-color: white; width: 5%; height: 5%; left: 0%; top: 95%; border-style: solid; border-width: 1% 1% 1% 1%; } div.box8 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 5%; top: 5%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box17 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 15%; top: 5%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box26 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 25%; top: 5%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box35 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 35%; top: 5%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box44 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 45%; top: 5%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box53 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 55%; top: 5%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box62 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 65%; top: 5%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box71 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 75%; top: 5%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box80 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 85%; top: 5%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box7 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 5%; top: 15%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box16 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 15%; top: 15%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box25 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 25%; top: 15%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box34 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 35%; top: 15%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box43 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 45%; top: 15%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box52 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 55%; top: 15%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box61 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 65%; top: 15%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box70 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 75%; top: 15%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box79 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 85%; top: 15%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box6 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 5%; top: 25%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box15 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 15%; top: 25%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box24 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 25%; top: 25%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box33 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 35%; top: 25%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box42 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 45%; top: 25%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box51 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 55%; top: 25%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box60 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 65%; top: 25%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box69 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 75%; top: 25%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box78 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 85%; top: 25%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box5 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 5%; top: 35%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box14 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 15%; top: 35%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box23 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 25%; top: 35%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box32 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 35%; top: 35%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box41 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 45%; top: 35%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box50 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 55%; top: 35%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box59 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 65%; top: 35%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box68 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 75%; top: 35%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box77 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 85%; top: 35%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box4 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 5%; top: 45%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box13 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 15%; top: 45%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box22 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 25%; top: 45%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box31 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 35%; top: 45%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box40 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 45%; top: 45%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box49 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 55%; top: 45%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box58 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 65%; top: 45%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box67 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 75%; top: 45%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box76 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 85%; top: 45%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box3 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 5%; top: 55%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box12 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 15%; top: 55%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box21 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 25%; top: 55%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box30 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 35%; top: 55%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box39 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 45%; top: 55%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box48 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 55%; top: 55%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box57 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 65%; top: 55%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box66 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 75%; top: 55%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box75 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 85%; top: 55%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box2 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 5%; top: 65%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box11 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 15%; top: 65%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box20 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 25%; top: 65%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box29 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 35%; top: 65%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box38 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 45%; top: 65%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box47 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 55%; top: 65%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box56 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 65%; top: 65%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box65 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 75%; top: 65%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box74 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 85%; top: 65%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box1 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 5%; top: 75%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box10 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 15%; top: 75%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box19 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 25%; top: 75%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box28 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 35%; top: 75%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box37 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 45%; top: 75%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box46 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 55%; top: 75%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box55 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 65%; top: 75%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box64 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 75%; top: 75%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box73 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 85%; top: 75%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box0 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 5%; top: 85%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box9 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 15%; top: 85%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box18 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 25%; top: 85%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box27 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 35%; top: 85%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box36 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 45%; top: 85%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box45 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 55%; top: 85%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box54 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 65%; top: 85%; border-style: groove; border-width: 0.1% 0.1% 0.1% 0.1%; } div.box63 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 75%; top: 85%; border-style: groove; border-width: 0.01%; } div.box72 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 85%; top: 85%; border-style: groove; border-width: 0.01%; } .map-clay{ content: url(picture/map/clay.png); } .map-wood{ content: url(picture/map/wood.png); } .map-crop{ content: url(picture/map/crop.png); } .map-iron{ content: url(picture/map/iron.png); } .map-country{ content: url(picture/map/country.png); } .map-balance{ }
Client/map.css
input[type="text"] { width: 50px; border: 1px solid #CCC; } .padtop { height: 10px; } .cordinate-btn { padding-left: 30px; } .col-cordinates { display: flex; } .cordinate-text { font-size: 25px; padding-left: 30px; padding-right: 10px; color: black; -webkit-text-stroke: 1px black; } .map-center { display: inline-block; height: 0%; vertical-align: middle; } .map { margin-left: auto; margin-right: auto; position: relative; width: 80%; } div.arrow1 { position: absolute; background-color: transparent; width: 5%; height: 10%; left: -5%; top: 45%; /* border-style: groove; border-width: 1% 1% 1% 1%; */ content: url(picture/map/arrow1.png); -webkit-user-select: none; } div.arrow2 { position: absolute; background-color: transparent; width: 10%; height: 5%; left: 45%; top: 0%; /* border-style: groove; border-width: 1% 1% 1% 1%; */ content: url(picture/map/arrow2.png); -webkit-user-select: none; } div.arrow3 { position: absolute; background-color: transparent; width: 5%; height: 10%; left: 95%; top: 45%; /* border-style: groove; border-width: 1% 1% 1% 1%; */ content: url(picture/map/arrow3.png); -webkit-user-select: none; } div.arrow4 { position: absolute; background-color: transparent; width: 10%; height: 5%; left: 45%; top: 100%; /* border-style: groove; border-width: 1% 1% 1% 1%; */ content: url(picture/map/arrow4.png); -webkit-user-select: none; } div.posY1 { position: absolute; background-color: white; width: 5%; height: 10%; left: 0%; top: 5%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posY2 { position: absolute; background-color: white; width: 5%; height: 10%; left: 0%; top: 15%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posY3 { position: absolute; background-color: white; width: 5%; height: 10%; left: 0%; top: 25%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posY4 { position: absolute; background-color: white; width: 5%; height: 10%; left: 0%; top: 35%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posY5 { position: absolute; background-color: white; width: 5%; height: 10%; left: 0%; top: 45%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posY6 { position: absolute; background-color: white; width: 5%; height: 10%; left: 0%; top: 55%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posY7 { position: absolute; background-color: white; width: 5%; height: 10%; left: 0%; top: 65%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posY8 { position: absolute; background-color: white; width: 5%; height: 10%; left: 0%; top: 75%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posY9 { position: absolute; background-color: white; width: 5%; height: 10%; left: 0%; top: 85%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posX1 { position: absolute; background-color: white; width: 10%; height: 5%; left: 5%; top: 95%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posX2 { position: absolute; background-color: white; width: 10%; height: 5%; left: 15%; top: 95%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posX3 { position: absolute; background-color: white; width: 10%; height: 5%; left: 25%; top: 95%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posX4 { position: absolute; background-color: white; width: 10%; height: 5%; left: 35%; top: 95%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posX5 { position: absolute; background-color: white; width: 10%; height: 5%; left: 45%; top: 95%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posX6 { position: absolute; background-color: white; width: 10%; height: 5%; left: 55%; top: 95%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posX7 { position: absolute; background-color: white; width: 10%; height: 5%; left: 65%; top: 95%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posX8 { position: absolute; background-color: white; width: 10%; height: 5%; left: 75%; top: 95%; border-style: solid; border-width: 1% 1% 1% 1%; } div.posX9 { position: absolute; background-color: white; width: 10%; height: 5%; left: 85%; top: 95%; border-style: solid; border-width: 1% 1% 1% 1%; } div.free { position: absolute; background-color: white; width: 5%; height: 5%; left: 0%; top: 95%; border-style: solid; border-width: 1% 1% 1% 1%; } div.box8 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 5%; top: 5%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box17 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 15%; top: 5%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box26 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 25%; top: 5%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box35 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 35%; top: 5%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box44 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 45%; top: 5%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box53 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 55%; top: 5%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box62 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 65%; top: 5%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box71 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 75%; top: 5%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box80 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 85%; top: 5%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box7 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 5%; top: 15%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box16 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 15%; top: 15%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box25 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 25%; top: 15%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box34 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 35%; top: 15%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box43 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 45%; top: 15%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box52 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 55%; top: 15%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box61 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 65%; top: 15%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box70 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 75%; top: 15%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box79 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 85%; top: 15%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box6 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 5%; top: 25%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box15 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 15%; top: 25%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box24 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 25%; top: 25%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box33 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 35%; top: 25%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box42 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 45%; top: 25%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box51 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 55%; top: 25%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box60 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 65%; top: 25%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box69 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 75%; top: 25%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box78 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 85%; top: 25%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box5 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 5%; top: 35%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box14 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 15%; top: 35%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box23 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 25%; top: 35%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box32 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 35%; top: 35%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box41 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 45%; top: 35%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box50 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 55%; top: 35%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box59 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 65%; top: 35%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box68 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 75%; top: 35%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box77 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 85%; top: 35%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box4 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 5%; top: 45%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box13 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 15%; top: 45%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box22 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 25%; top: 45%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box31 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 35%; top: 45%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box40 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 45%; top: 45%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box49 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 55%; top: 45%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box58 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 65%; top: 45%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box67 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 75%; top: 45%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box76 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 85%; top: 45%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box3 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 5%; top: 55%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box12 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 15%; top: 55%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box21 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 25%; top: 55%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box30 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 35%; top: 55%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box39 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 45%; top: 55%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box48 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 55%; top: 55%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box57 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 65%; top: 55%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box66 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 75%; top: 55%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box75 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 85%; top: 55%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box2 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 5%; top: 65%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box11 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 15%; top: 65%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box20 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 25%; top: 65%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box29 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 35%; top: 65%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box38 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 45%; top: 65%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box47 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 55%; top: 65%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box56 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 65%; top: 65%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box65 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 75%; top: 65%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box74 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 85%; top: 65%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box1 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 5%; top: 75%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box10 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 15%; top: 75%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box19 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 25%; top: 75%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box28 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 35%; top: 75%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box37 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 45%; top: 75%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box46 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 55%; top: 75%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box55 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 65%; top: 75%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box64 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 75%; top: 75%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box73 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 85%; top: 75%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box0 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 5%; top: 85%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box9 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 15%; top: 85%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box18 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 25%; top: 85%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box27 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 35%; top: 85%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box36 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 45%; top: 85%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box45 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 55%; top: 85%; border-style: groove; border-width: 1% 1% 1% 1%; } div.box54 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 65%; top: 85%; border-style: groove; border-width: 0.1% 0.1% 0.1% 0.1%; } div.box63 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 75%; top: 85%; border-style: groove; border-width: 0.01%; } div.box72 { position: absolute; background-color: #ddff99; width: 10%; height: 10%; left: 85%; top: 85%; border-style: groove; border-width: 0.01%; } .map-clay{ content: url(picture/map/clay.png); } .map-wood{ content: url(picture/map/wood.png); } .map-crop{ content: url(picture/map/crop.png); } .map-iron{ content: url(picture/map/iron.png); } .map-country{ content: url(picture/map/country.png); } .map-balance{ }
0.558327
0.157169
* body { font-family: 'Roboto', sans-serif; } * .row { margin: 0; } * .container { padding: 70px 0; } * p, * li { color: #444; font-size: 14px; } * .titles { color: #444; margin: 0 0 65px 0; font-size: 40px; text-align: center; } * .titles::after { content: ""; border-top: 1px solid #9c9c9c; width: 30%; position: absolute; top: 60px; left: 35%; } * .container-fluid { padding: 0; } #container-nav { padding-top: 0; padding-bottom: 0; } #container-nav header, #container-nav .navbar { box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.7); background-color: rgba(255, 255, 255, 0.98); } #container-nav #logo { width: 140px; } #container-nav #navbar-links a { color: #3f3f3f; transition: 0.5s; font-size: 1.1rem; padding-right: 15px; font-weight: bold; } #container-nav #navbar-links a:hover { transition: 0.5s; color: #3eade4; } #slider-area .carousel-inner, #slider-area .carousel-item { height: 100vh; } #slider-area .carousel-caption { top: 50%; } #slider-area .carousel-caption h2 { font-size: 50px; text-shadow: 1px 2px 3px black; } #slider-area .carousel-caption p { color: white; font-size: 25px; text-shadow: 1px 2px 3px black; } #slider-area .carousel-indicators .active { background-color: #1385bc; } #about-area p { margin-top: 80px; font-size: 1.1rem; } #about-area #img-empresa { box-shadow: 1px 3px 4px black; } #products-area #img-produtos { box-shadow: 1px 3px 4px black; } #products-area #products-title { font-size: 1.1rem; color: #444; text-transform: uppercase; font-weight: bold; } #products-area #products-list { list-style: none; padding-left: 0; } #products-area #products-list li { padding-bottom: 10px; line-height: 30px; font-size: 1.2rem; } #products-area #products-list i { margin-right: 15px; color: #1385bc; } #software-area { margin-bottom: 100px; } #software-area #img-software { width: 220px; } #software-area p { font-size: 1.1rem; } #consultation-area { text-align: center; } #consultation-area a { color: white; text-decoration: none; } #consultation-area .box-consultations { color: white; transition: 0.5s; background-color: #1385bc; border: 1px solid #1385bc; border-radius: 50px; padding-top: 10px; margin-bottom: 10px; } #consultation-area .box-consultations h4 { font-size: 1.7rem; } #consultation-area .box-consultations p { transition: 0.5s; color: white; font-size: 1rem; } #consultation-area .box-consultations:hover { color: #1385bc; border: 1px solid #1385bc; background-color: white; transition: 0.5s; } #consultation-area .box-consultations:hover p { transition: 0.5s; color: #1385bc; } #contact-area { text-align: center; } #contact-area .contact-box { padding-bottom: 50px; margin-bottom: 50px; border-bottom: 1px solid #3EC1D5; } #contact-area .contact-box i { text-align: center; color: #444; border: solid 1px #444; border-radius: 50%; width: 55px; height: 55px; line-height: 55px; font-size: 24px; margin-bottom: 20px; } #contact-area .contact-box p { font-size: 16px; } #contact-area .contact-box .contact-title { font-weight: bold; color: #1385bc; } #copyright-area { background-color: #a5a5a5; } #copyright-area .container { padding: 10px 0; text-align: center; } #copyright-area .container p { margin-bottom: 0; } #copyright-area .container a { font-weight: bold; color: #444; text-decoration: none; }
css/styles.css
* body { font-family: 'Roboto', sans-serif; } * .row { margin: 0; } * .container { padding: 70px 0; } * p, * li { color: #444; font-size: 14px; } * .titles { color: #444; margin: 0 0 65px 0; font-size: 40px; text-align: center; } * .titles::after { content: ""; border-top: 1px solid #9c9c9c; width: 30%; position: absolute; top: 60px; left: 35%; } * .container-fluid { padding: 0; } #container-nav { padding-top: 0; padding-bottom: 0; } #container-nav header, #container-nav .navbar { box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.7); background-color: rgba(255, 255, 255, 0.98); } #container-nav #logo { width: 140px; } #container-nav #navbar-links a { color: #3f3f3f; transition: 0.5s; font-size: 1.1rem; padding-right: 15px; font-weight: bold; } #container-nav #navbar-links a:hover { transition: 0.5s; color: #3eade4; } #slider-area .carousel-inner, #slider-area .carousel-item { height: 100vh; } #slider-area .carousel-caption { top: 50%; } #slider-area .carousel-caption h2 { font-size: 50px; text-shadow: 1px 2px 3px black; } #slider-area .carousel-caption p { color: white; font-size: 25px; text-shadow: 1px 2px 3px black; } #slider-area .carousel-indicators .active { background-color: #1385bc; } #about-area p { margin-top: 80px; font-size: 1.1rem; } #about-area #img-empresa { box-shadow: 1px 3px 4px black; } #products-area #img-produtos { box-shadow: 1px 3px 4px black; } #products-area #products-title { font-size: 1.1rem; color: #444; text-transform: uppercase; font-weight: bold; } #products-area #products-list { list-style: none; padding-left: 0; } #products-area #products-list li { padding-bottom: 10px; line-height: 30px; font-size: 1.2rem; } #products-area #products-list i { margin-right: 15px; color: #1385bc; } #software-area { margin-bottom: 100px; } #software-area #img-software { width: 220px; } #software-area p { font-size: 1.1rem; } #consultation-area { text-align: center; } #consultation-area a { color: white; text-decoration: none; } #consultation-area .box-consultations { color: white; transition: 0.5s; background-color: #1385bc; border: 1px solid #1385bc; border-radius: 50px; padding-top: 10px; margin-bottom: 10px; } #consultation-area .box-consultations h4 { font-size: 1.7rem; } #consultation-area .box-consultations p { transition: 0.5s; color: white; font-size: 1rem; } #consultation-area .box-consultations:hover { color: #1385bc; border: 1px solid #1385bc; background-color: white; transition: 0.5s; } #consultation-area .box-consultations:hover p { transition: 0.5s; color: #1385bc; } #contact-area { text-align: center; } #contact-area .contact-box { padding-bottom: 50px; margin-bottom: 50px; border-bottom: 1px solid #3EC1D5; } #contact-area .contact-box i { text-align: center; color: #444; border: solid 1px #444; border-radius: 50%; width: 55px; height: 55px; line-height: 55px; font-size: 24px; margin-bottom: 20px; } #contact-area .contact-box p { font-size: 16px; } #contact-area .contact-box .contact-title { font-weight: bold; color: #1385bc; } #copyright-area { background-color: #a5a5a5; } #copyright-area .container { padding: 10px 0; text-align: center; } #copyright-area .container p { margin-bottom: 0; } #copyright-area .container a { font-weight: bold; color: #444; text-decoration: none; }
0.26693
0.077588
.flex-container { display: flex; flex-direction: row; } .flex-left { flex: 65% !important; margin: 2rem; } .flex-right { flex: 20%; } @media (min-width: 1000px) { .flex-right { display: block !important; } .flex-left { display: block !important; } } .flex-right .closeBtn { display: none; } .float-container { display: flex; flex-direction: row; } .float-left { flex: 50%; display: inline; float: left; margin-right: 2rem; margin-top: 2rem; } .float-right { flex: 50%; float: right; margin-top: 6rem; } /* Trends */ #trendsBtn { display: none; float: right; position: fixed; top: 1rem; right: 5rem; margin: 2rem; background-color: #2b414d; box-shadow: 0px 0px 11px white; color: white; outline: none; border: none; border-radius: 3rem; width: 5rem; height: 5rem; } #Trends { background-color: rgb(20 45 56 / 55%); border-radius: 2rem; width: 90%; overflow-y: auto; color: #cecece; margin-right: 4rem; margin-top: 2rem; } #Trends ul { list-style-type: none; padding: 0; height: 90vh; overflow-y: auto; width: 100%; } #Trends ul::-webkit-scrollbar { width: 5px; } #Trends ul::-webkit-scrollbar-track { -webkit-box-shadow: inset 1px 0 4px rgb(33, 37, 41); border-radius: 0 5px 5px 0; } #Trends ul::-webkit-scrollbar-thumb { border-radius: 100px; -webkit-box-shadow: inset 0 0 10px rgb(24, 63, 92); } #Trends li { width: 100%; padding: 2rem 2rem; font-weight: bold; word-break: break-all; overflow-x: hidden; border-bottom: 1px solid rgba(255, 255, 255, 0.295); cursor: pointer; } #Trends li:hover { background-color: rgba(65, 80, 87, 0.582); } #Trends li .tweet-number { float: right; font-size: 12px; } #Trends li p { color: #ffffffd6; font-size: 16px; margin: 0 0 10px; } #Trends h3 { margin: 15px; line-height: 1.5em; font-weight: bold; color: white; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; } #Trends .title { border-bottom: 1px solid rgb(255 255 255 / 34%); width: 100%; } /* searchComp */ #filterComp { display: flex; width: 100%; } #inputFields { float: left; width: 100%; } #inputFields input[type="text"], #inputFields input[type="number"] { border-radius: 5px; background-color: transparent; border-style: none; border: 2px solid #2b6079; margin-bottom: 1rem; width: 90%; color: white } #inputFields input[type="number"] { caret-color: transparent; width: 4em !important; } label[for="tweet-count"] { margin-left: 2rem; } #inputFields input[type="text"]::placeholder { color: #6090a8; } #inputFields input[type="text"]:disabled, #inputFields input[type="number"]:disabled { border-color: #98a0a3; } #inputFields input[type="text"]:disabled::placeholder, input[type="number"]:disabled::placeholder { color: #98a0a3; } #rayValue { color: white; } #inputFields label { color: #7e7e7e; margin-bottom: 0.5rem; margin-top: 1rem; } #inputFields > label.text { display: block; } #inputFields label[for='coordinates-only'], #inputFields label[for='images-only'] { margin-left: 1rem; } #inputFields input[type="range"] { width: 25%; margin: 2rem; } #searchBtn { margin-top: 3rem; margin-right: 4rem; float: right; border-radius: 5px; padding: 0.7rem; box-shadow: 0 0 5px #fffefe; border: 1px solid white; background-color: white; font-weight: bold; } .error_msg { color: #ff7a00; } /* Rounded sliders */ .slider.round { border-radius: 2rem; } .slider.round:before { border-radius: 50%; } /* on mobile */ @media (max-width: 1000px) { .flex-container { flex-direction: column; } .flex-right { display: none; border: none; } .flex-right .closeBtn { display: block; } .flex-left { flex: 100%; } #trendsBtn { display: block; } #Trends { margin: auto !important; margin-top: 2rem !important; } } @media (max-width: 800px) { .flex-right { margin-left: 0; } #trendsBtn { top: 7rem } } @media (max-width: 650px) { .float-container { flex-direction: column; } .float-right, .float-left { margin: 0; } #inputFields { width: 100%; } #inputFields input[type="text"], #inputFields input[type="number"] { width: 90%; } #map { width: 90%; } label[for="tweet-count"] { display: block; margin: 0 } #searchBtn { margin-left: 0; } }
static/css/search.css
.flex-container { display: flex; flex-direction: row; } .flex-left { flex: 65% !important; margin: 2rem; } .flex-right { flex: 20%; } @media (min-width: 1000px) { .flex-right { display: block !important; } .flex-left { display: block !important; } } .flex-right .closeBtn { display: none; } .float-container { display: flex; flex-direction: row; } .float-left { flex: 50%; display: inline; float: left; margin-right: 2rem; margin-top: 2rem; } .float-right { flex: 50%; float: right; margin-top: 6rem; } /* Trends */ #trendsBtn { display: none; float: right; position: fixed; top: 1rem; right: 5rem; margin: 2rem; background-color: #2b414d; box-shadow: 0px 0px 11px white; color: white; outline: none; border: none; border-radius: 3rem; width: 5rem; height: 5rem; } #Trends { background-color: rgb(20 45 56 / 55%); border-radius: 2rem; width: 90%; overflow-y: auto; color: #cecece; margin-right: 4rem; margin-top: 2rem; } #Trends ul { list-style-type: none; padding: 0; height: 90vh; overflow-y: auto; width: 100%; } #Trends ul::-webkit-scrollbar { width: 5px; } #Trends ul::-webkit-scrollbar-track { -webkit-box-shadow: inset 1px 0 4px rgb(33, 37, 41); border-radius: 0 5px 5px 0; } #Trends ul::-webkit-scrollbar-thumb { border-radius: 100px; -webkit-box-shadow: inset 0 0 10px rgb(24, 63, 92); } #Trends li { width: 100%; padding: 2rem 2rem; font-weight: bold; word-break: break-all; overflow-x: hidden; border-bottom: 1px solid rgba(255, 255, 255, 0.295); cursor: pointer; } #Trends li:hover { background-color: rgba(65, 80, 87, 0.582); } #Trends li .tweet-number { float: right; font-size: 12px; } #Trends li p { color: #ffffffd6; font-size: 16px; margin: 0 0 10px; } #Trends h3 { margin: 15px; line-height: 1.5em; font-weight: bold; color: white; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; } #Trends .title { border-bottom: 1px solid rgb(255 255 255 / 34%); width: 100%; } /* searchComp */ #filterComp { display: flex; width: 100%; } #inputFields { float: left; width: 100%; } #inputFields input[type="text"], #inputFields input[type="number"] { border-radius: 5px; background-color: transparent; border-style: none; border: 2px solid #2b6079; margin-bottom: 1rem; width: 90%; color: white } #inputFields input[type="number"] { caret-color: transparent; width: 4em !important; } label[for="tweet-count"] { margin-left: 2rem; } #inputFields input[type="text"]::placeholder { color: #6090a8; } #inputFields input[type="text"]:disabled, #inputFields input[type="number"]:disabled { border-color: #98a0a3; } #inputFields input[type="text"]:disabled::placeholder, input[type="number"]:disabled::placeholder { color: #98a0a3; } #rayValue { color: white; } #inputFields label { color: #7e7e7e; margin-bottom: 0.5rem; margin-top: 1rem; } #inputFields > label.text { display: block; } #inputFields label[for='coordinates-only'], #inputFields label[for='images-only'] { margin-left: 1rem; } #inputFields input[type="range"] { width: 25%; margin: 2rem; } #searchBtn { margin-top: 3rem; margin-right: 4rem; float: right; border-radius: 5px; padding: 0.7rem; box-shadow: 0 0 5px #fffefe; border: 1px solid white; background-color: white; font-weight: bold; } .error_msg { color: #ff7a00; } /* Rounded sliders */ .slider.round { border-radius: 2rem; } .slider.round:before { border-radius: 50%; } /* on mobile */ @media (max-width: 1000px) { .flex-container { flex-direction: column; } .flex-right { display: none; border: none; } .flex-right .closeBtn { display: block; } .flex-left { flex: 100%; } #trendsBtn { display: block; } #Trends { margin: auto !important; margin-top: 2rem !important; } } @media (max-width: 800px) { .flex-right { margin-left: 0; } #trendsBtn { top: 7rem } } @media (max-width: 650px) { .float-container { flex-direction: column; } .float-right, .float-left { margin: 0; } #inputFields { width: 100%; } #inputFields input[type="text"], #inputFields input[type="number"] { width: 90%; } #map { width: 90%; } label[for="tweet-count"] { display: block; margin: 0 } #searchBtn { margin-left: 0; } }
0.295128
0.092115
BODY { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: small; color: #333333; line-height: 150%; background-color: #ffffff; } P { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: small; color: #333333; line-height: 150%; } OL LI { list-style-type: decimal; font-size: small; color: #333333; line-height: 150%; margin: 2px 0px 2px 0px; } LI OL LI { list-style-type: decimal; line-height: 130%; } UL LI { list-style-type: disc; font-size: small; color: #333333; line-height: 150%; margin: 2px 0px 2px 0px; } LI UL LI { list-style-type: circle; line-height: 130%; } LI UL LI UL LI { list-style-type: square; line-height: 130%; } INPUT { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: smaller; font-weight: bold; color: #f2f8f8; text-decoration: none; border: solid 1px #077179; background-color: #077179; } code, pre { font-family: monospace; font-size: 12px; } H1 { font-size: larger; font-weight: bold; text-align: center; color: #077179; background-color: #E4F1F1; border: thin solid #cae4e4; margin: 5px 0px 5px 0px; padding: 3px 3px 3px 3px; line-height: 150%; } H2 { color: #077179; font-size: large; font-weight: bold; } H3, H3 LI { color: #077179; font-size: medium; font-weight: bold; } H4 { color: #077179; font-size: small; font-weight: bold; } H5 { color: #077179; font-size: small; font-style: normal; font-weight: bold; } A.text { text-decoration: none; color: #333333; } A.text:Active { border-bottom: solid 0; color: #333333; } A:Link { color: #6b6f40; text-decoration: underline; padding-bottom: 1px; } A:Visited { color: #b1b681; text-decoration: underline; padding-bottom: 1px; } A:Active { color: #6b6f40; text-decoration: none; padding-bottom: 1px; } A:Hover { } EM { font-style: italic; } SMALL { font-size: smaller; font-family: sans-serif; } address { font-family: sans-serif; font-size: smaller; font-style: normal; } SUB { font-size: 75%; } SUP { font-size: 75%; } TABLE, table { font-size: small; } TABLE.grid, table.grid { font-size: small; border-width: 0px 0px 1px 1px; border-style: solid; border-color: #077179; } TABLE.grid TD, TABLE.grid TH, table.grid td, table.grid th { border-width: 1px 1px 0px 0px; border-style: solid; border-color: #077179; } TABLE.grid TH, table.grid th { font-weight: bold; } TABLE#grid, table#grid { font-size: small; border-width: 0px 0px 1px 1px; border-style: solid; border-color: #077179; } TABLE#grid TD, TABLE#grid TH, table#grid td, table#grid th { border-width: 1px 1px 0px 0px; border-style: solid; border-color: #077179; } TABLE#grid TH, table#grid th { font-weight: bold; } TABLE#no-grid, TABLE#no-grid TD, TABLE#no-grid TH { border-width: 0; } TABLE#colored { font-size: small; border: thin solid #077179; background-color: #e4f1f1; } TABLE.colored-grid { font-size: small; border-width: 0px 0px 1px 1px; border-style: solid; border-color: #077179; background-color: #e4f1f1; } TABLE.colored-grid TD, TABLE.colored-grid TH { border-width: 1px 1px 0px 0px; border-style: solid; border-color: #077179; } TABLE.colored-grid TH { font-weight: bold; } TABLE#colored-grid { font-size: small; border-width: 0px 0px 1px 1px; border-style: solid; border-color: #077179; background-color: #e4f1f1; } TABLE#colored-grid TD, TABLE#colored-grid TH { border-width: 1px 1px 0px 0px; border-style: solid; border-color: #077179; } TABLE#colored-grid TH { font-weight: bold; } DIV.lenia { text-align: center; width: 80%; height: 1px; background-color: #077179; margin: 10px 0px 5px 0px; line-height: 1px; }
knowledgebase/lib/ChemAxon/MarvinBeans/marvinmanuals.css
BODY { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: small; color: #333333; line-height: 150%; background-color: #ffffff; } P { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: small; color: #333333; line-height: 150%; } OL LI { list-style-type: decimal; font-size: small; color: #333333; line-height: 150%; margin: 2px 0px 2px 0px; } LI OL LI { list-style-type: decimal; line-height: 130%; } UL LI { list-style-type: disc; font-size: small; color: #333333; line-height: 150%; margin: 2px 0px 2px 0px; } LI UL LI { list-style-type: circle; line-height: 130%; } LI UL LI UL LI { list-style-type: square; line-height: 130%; } INPUT { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: smaller; font-weight: bold; color: #f2f8f8; text-decoration: none; border: solid 1px #077179; background-color: #077179; } code, pre { font-family: monospace; font-size: 12px; } H1 { font-size: larger; font-weight: bold; text-align: center; color: #077179; background-color: #E4F1F1; border: thin solid #cae4e4; margin: 5px 0px 5px 0px; padding: 3px 3px 3px 3px; line-height: 150%; } H2 { color: #077179; font-size: large; font-weight: bold; } H3, H3 LI { color: #077179; font-size: medium; font-weight: bold; } H4 { color: #077179; font-size: small; font-weight: bold; } H5 { color: #077179; font-size: small; font-style: normal; font-weight: bold; } A.text { text-decoration: none; color: #333333; } A.text:Active { border-bottom: solid 0; color: #333333; } A:Link { color: #6b6f40; text-decoration: underline; padding-bottom: 1px; } A:Visited { color: #b1b681; text-decoration: underline; padding-bottom: 1px; } A:Active { color: #6b6f40; text-decoration: none; padding-bottom: 1px; } A:Hover { } EM { font-style: italic; } SMALL { font-size: smaller; font-family: sans-serif; } address { font-family: sans-serif; font-size: smaller; font-style: normal; } SUB { font-size: 75%; } SUP { font-size: 75%; } TABLE, table { font-size: small; } TABLE.grid, table.grid { font-size: small; border-width: 0px 0px 1px 1px; border-style: solid; border-color: #077179; } TABLE.grid TD, TABLE.grid TH, table.grid td, table.grid th { border-width: 1px 1px 0px 0px; border-style: solid; border-color: #077179; } TABLE.grid TH, table.grid th { font-weight: bold; } TABLE#grid, table#grid { font-size: small; border-width: 0px 0px 1px 1px; border-style: solid; border-color: #077179; } TABLE#grid TD, TABLE#grid TH, table#grid td, table#grid th { border-width: 1px 1px 0px 0px; border-style: solid; border-color: #077179; } TABLE#grid TH, table#grid th { font-weight: bold; } TABLE#no-grid, TABLE#no-grid TD, TABLE#no-grid TH { border-width: 0; } TABLE#colored { font-size: small; border: thin solid #077179; background-color: #e4f1f1; } TABLE.colored-grid { font-size: small; border-width: 0px 0px 1px 1px; border-style: solid; border-color: #077179; background-color: #e4f1f1; } TABLE.colored-grid TD, TABLE.colored-grid TH { border-width: 1px 1px 0px 0px; border-style: solid; border-color: #077179; } TABLE.colored-grid TH { font-weight: bold; } TABLE#colored-grid { font-size: small; border-width: 0px 0px 1px 1px; border-style: solid; border-color: #077179; background-color: #e4f1f1; } TABLE#colored-grid TD, TABLE#colored-grid TH { border-width: 1px 1px 0px 0px; border-style: solid; border-color: #077179; } TABLE#colored-grid TH { font-weight: bold; } DIV.lenia { text-align: center; width: 80%; height: 1px; background-color: #077179; margin: 10px 0px 5px 0px; line-height: 1px; }
0.245447
0.107625
@import url(https://fonts.googleapis.com/css?family=Open+Sans:600,400); .frame { position: absolute; top: 50%; left: 50%; width: 400px; height: 400px; margin-top: -200px; margin-left: -200px; border-radius: 2px; box-shadow: 1px 2px 10px 0px rgba(0, 0, 0, 0.3); background: #FDA231; background: -webkit-linear-gradient(bottom left, #FDA231 0%, #FDCA31 100%); background: -moz-linear-gradient(bottom left, #FDA231 0%, #FDCA31 100%); background: -o-linear-gradient(bottom left, #FDA231 0%, #FDCA31 100%); background: linear-gradient(to top right, #FDA231 0%, #FDCA31 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FDA231', endColorstr='#FDCA31', GradientType=1); color: #497081; font-family: 'Open Sans', Helvetica, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .list { position: absolute; width: 240px; height: 280px; top: 60px; left: 80px; background: #FFFFFF; box-shadow: 4px 8px 12px 0px rgba(0, 0, 0, 0.10); border-radius: 3px; .head { padding: 20px 0; margin: 0 30px; border-bottom: 1px solid #D4DCE0; } .title { font-weight: 600; font-size: 20px; line-height: 30px; text-align: center; } .subtitle { font-size: 12px; line-height: 18px; text-align: center; } ul { list-style: none; padding: 4px 0; margin: 0 30px; li { position: relative; display: block; margin: 24px 0; height: 14px; } .text { float: left; font-size: 13px; line-height: 14px; cursor: pointer; transition: all .3s ease-in-out; } .button { position: relative; z-index: 2; box-sizing: border-box; float: right; width: 14px; height: 14px; border: 1px solid #497081; border-radius: 50%; cursor: pointer; transition: all .4s ease-out .5s; } .checkmark { position: absolute; top: 2px; right: 0; stroke: #C8D4D9; fill: none; stroke-width: 1.5; stroke-dasharray: 30 30; stroke-dashoffset: 30; transition: all .5s ease-out; } input { display: none; &:checked~.text { color: #C8D4D9; } &:checked~.button { transition: all .4s ease-in; transform: scale(1.5); opacity: 0; } &:checked~.checkmark { stroke-dashoffset: 0; transition: all .5s ease-out .4s; } } } }
checklist.css
@import url(https://fonts.googleapis.com/css?family=Open+Sans:600,400); .frame { position: absolute; top: 50%; left: 50%; width: 400px; height: 400px; margin-top: -200px; margin-left: -200px; border-radius: 2px; box-shadow: 1px 2px 10px 0px rgba(0, 0, 0, 0.3); background: #FDA231; background: -webkit-linear-gradient(bottom left, #FDA231 0%, #FDCA31 100%); background: -moz-linear-gradient(bottom left, #FDA231 0%, #FDCA31 100%); background: -o-linear-gradient(bottom left, #FDA231 0%, #FDCA31 100%); background: linear-gradient(to top right, #FDA231 0%, #FDCA31 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FDA231', endColorstr='#FDCA31', GradientType=1); color: #497081; font-family: 'Open Sans', Helvetica, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .list { position: absolute; width: 240px; height: 280px; top: 60px; left: 80px; background: #FFFFFF; box-shadow: 4px 8px 12px 0px rgba(0, 0, 0, 0.10); border-radius: 3px; .head { padding: 20px 0; margin: 0 30px; border-bottom: 1px solid #D4DCE0; } .title { font-weight: 600; font-size: 20px; line-height: 30px; text-align: center; } .subtitle { font-size: 12px; line-height: 18px; text-align: center; } ul { list-style: none; padding: 4px 0; margin: 0 30px; li { position: relative; display: block; margin: 24px 0; height: 14px; } .text { float: left; font-size: 13px; line-height: 14px; cursor: pointer; transition: all .3s ease-in-out; } .button { position: relative; z-index: 2; box-sizing: border-box; float: right; width: 14px; height: 14px; border: 1px solid #497081; border-radius: 50%; cursor: pointer; transition: all .4s ease-out .5s; } .checkmark { position: absolute; top: 2px; right: 0; stroke: #C8D4D9; fill: none; stroke-width: 1.5; stroke-dasharray: 30 30; stroke-dashoffset: 30; transition: all .5s ease-out; } input { display: none; &:checked~.text { color: #C8D4D9; } &:checked~.button { transition: all .4s ease-in; transform: scale(1.5); opacity: 0; } &:checked~.checkmark { stroke-dashoffset: 0; transition: all .5s ease-out .4s; } } } }
0.3295
0.11304
body { margin: 0; padding: 0; font-family: 'Montserrat', sans-serif; } ul, li, i, h2 { margin: 0; padding: 0; } .extern-container { width: 100%; } .intern-container { width: 80%; max-width: 1200px; margin: 0 auto; } .scripts { display: none; } .cat-info { background: red; font-size: 12px; border-radius: 4px; height: 20px; } .cat-info a { height: 100%; color: #fff; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; padding: 0 12px; text-decoration: none; text-transform: uppercase; } .header ul { list-style: none; height: 100%; } .header li { display: inline-block; height: 100%; } .header a { height: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; text-transform: uppercase; } .header .top-bar { height: 34px; background: #282828; color: #fff; font-size: 13px; } .header .top-bar i { color: #fff; } .header .top-bar .intern-container { display: -webkit-box; display: -ms-flexbox; display: flex; height: 100%; width: 100%; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .header .top-bar .left-bar { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin-left: 10px; } .header .top-bar .left-bar .top-bar-date { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; height: 100%; margin-right: 15px; } .header .top-bar .left-bar li:first-child a { padding: 0 10px 0 0; } .header .top-bar .left-bar a { padding: 0 10px; height: 100%; color: #fff; text-decoration: none; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .header .top-bar .left-bar a:hover { color: #dddcdc; } .header .top-bar .right-bar { margin-right: 10px; } .header .top-bar .right-bar a { padding: 0 5px; } .header .top-bar .right-bar a .fa-facebook-f { font-size: 15px; } .header .top-bar .right-bar a .fa-instagram { font-size: 16px; } .header .top-bar .right-bar a .fa-youtube { font-size: 15px; } .header .nav-bar { height: 72px; } .header .nav-bar .intern-container { display: -webkit-box; display: -ms-flexbox; display: flex; width: 100%; height: 100%; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .header .nav-bar .left-bar { margin-left: 10px; display: -webkit-box; display: -ms-flexbox; display: flex; } .header .nav-bar .left-bar .logo { padding: 0; } .header .nav-bar .left-bar img { margin-right: 10px; } .header .nav-bar .left-bar a { font-size: 15px; padding: 0 15px; height: 100%; color: #282828; text-decoration: none; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; font-weight: 1000; } .header .nav-bar .left-bar li:hover { background: rgba(28, 28, 28, 0.05); } .header .nav-bar .left-bar li .dropdown { position: absolute; display: none; z-index: 2; background: #fff; } .header .nav-bar .left-bar li .dropdown li { height: 30px; } .header .nav-bar .left-bar li .dropdown a { font-weight: 100; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .header .nav-bar .left-bar li .link { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .header .nav-bar .left-bar li .link li:hover { background: transparent; } .header .nav-bar .left-bar li .link li:hover a { color: red; } .header .nav-bar .left-bar li .events a { text-transform: none; } .header .nav-bar .left-bar li .genres a { text-transform: uppercase; } .header .nav-bar .right-bar { margin-right: 10px; display: -webkit-box; display: -ms-flexbox; display: flex; border-left: 1px solid rgba(28, 28, 28, 0.05); border-right: 1px solid rgba(28, 28, 28, 0.05); } .header .nav-bar .right-bar .blog, .header .nav-bar .right-bar .search { font-size: 15px; font-weight: bold; padding: 0 15px; height: 100%; color: #282828; text-decoration: none; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .header .nav-bar .right-bar .search { border-left: 1px solid rgba(28, 28, 28, 0.05); width: 34px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .banner { width: 100%; } .banner .tags { display: -webkit-box; display: -ms-flexbox; display: flex; margin-bottom: 10px; } .banner .tags .cat-info { margin-right: 10px; } .banner .background img { width: 100%; display: block; } .banner .play-mid img { width: 40px; height: auto; } .banner .top-row { display: -webkit-box; display: -ms-flexbox; display: flex; } .banner .top-row .left-column { width: 50%; } .banner .top-row .right-column { width: 50%; } .banner .bot-row { display: -webkit-box; display: -ms-flexbox; display: flex; } .banner .bot-row .left-column { width: 33.3333%; } .banner .bot-row .mid-column { width: 33.3333%; } .banner .bot-row .right-column { width: 33.3333%; } .banner .article-container { position: absolute; bottom: 0; } .banner .article-box { position: relative; } .banner .article-content { padding: 15px; z-index: 2; } .banner h2 { color: #fff; font-size: 30px; margin: 0; } .banner .play-top { position: absolute; color: #fff; font-size: 40px; top: 2%; right: 2%; } .banner .play-mid { position: absolute; top: 45%; left: 45%; } .banner .shadow { background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#282828)); background: linear-gradient(180deg, transparent, #282828); bottom: 0; position: absolute; width: 100%; height: 100%; } /*# sourceMappingURL=style.css.map */
news.rukahore.sk/assets/css/style.css
body { margin: 0; padding: 0; font-family: 'Montserrat', sans-serif; } ul, li, i, h2 { margin: 0; padding: 0; } .extern-container { width: 100%; } .intern-container { width: 80%; max-width: 1200px; margin: 0 auto; } .scripts { display: none; } .cat-info { background: red; font-size: 12px; border-radius: 4px; height: 20px; } .cat-info a { height: 100%; color: #fff; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; padding: 0 12px; text-decoration: none; text-transform: uppercase; } .header ul { list-style: none; height: 100%; } .header li { display: inline-block; height: 100%; } .header a { height: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; text-transform: uppercase; } .header .top-bar { height: 34px; background: #282828; color: #fff; font-size: 13px; } .header .top-bar i { color: #fff; } .header .top-bar .intern-container { display: -webkit-box; display: -ms-flexbox; display: flex; height: 100%; width: 100%; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .header .top-bar .left-bar { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin-left: 10px; } .header .top-bar .left-bar .top-bar-date { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; height: 100%; margin-right: 15px; } .header .top-bar .left-bar li:first-child a { padding: 0 10px 0 0; } .header .top-bar .left-bar a { padding: 0 10px; height: 100%; color: #fff; text-decoration: none; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .header .top-bar .left-bar a:hover { color: #dddcdc; } .header .top-bar .right-bar { margin-right: 10px; } .header .top-bar .right-bar a { padding: 0 5px; } .header .top-bar .right-bar a .fa-facebook-f { font-size: 15px; } .header .top-bar .right-bar a .fa-instagram { font-size: 16px; } .header .top-bar .right-bar a .fa-youtube { font-size: 15px; } .header .nav-bar { height: 72px; } .header .nav-bar .intern-container { display: -webkit-box; display: -ms-flexbox; display: flex; width: 100%; height: 100%; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .header .nav-bar .left-bar { margin-left: 10px; display: -webkit-box; display: -ms-flexbox; display: flex; } .header .nav-bar .left-bar .logo { padding: 0; } .header .nav-bar .left-bar img { margin-right: 10px; } .header .nav-bar .left-bar a { font-size: 15px; padding: 0 15px; height: 100%; color: #282828; text-decoration: none; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; font-weight: 1000; } .header .nav-bar .left-bar li:hover { background: rgba(28, 28, 28, 0.05); } .header .nav-bar .left-bar li .dropdown { position: absolute; display: none; z-index: 2; background: #fff; } .header .nav-bar .left-bar li .dropdown li { height: 30px; } .header .nav-bar .left-bar li .dropdown a { font-weight: 100; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .header .nav-bar .left-bar li .link { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .header .nav-bar .left-bar li .link li:hover { background: transparent; } .header .nav-bar .left-bar li .link li:hover a { color: red; } .header .nav-bar .left-bar li .events a { text-transform: none; } .header .nav-bar .left-bar li .genres a { text-transform: uppercase; } .header .nav-bar .right-bar { margin-right: 10px; display: -webkit-box; display: -ms-flexbox; display: flex; border-left: 1px solid rgba(28, 28, 28, 0.05); border-right: 1px solid rgba(28, 28, 28, 0.05); } .header .nav-bar .right-bar .blog, .header .nav-bar .right-bar .search { font-size: 15px; font-weight: bold; padding: 0 15px; height: 100%; color: #282828; text-decoration: none; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .header .nav-bar .right-bar .search { border-left: 1px solid rgba(28, 28, 28, 0.05); width: 34px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .banner { width: 100%; } .banner .tags { display: -webkit-box; display: -ms-flexbox; display: flex; margin-bottom: 10px; } .banner .tags .cat-info { margin-right: 10px; } .banner .background img { width: 100%; display: block; } .banner .play-mid img { width: 40px; height: auto; } .banner .top-row { display: -webkit-box; display: -ms-flexbox; display: flex; } .banner .top-row .left-column { width: 50%; } .banner .top-row .right-column { width: 50%; } .banner .bot-row { display: -webkit-box; display: -ms-flexbox; display: flex; } .banner .bot-row .left-column { width: 33.3333%; } .banner .bot-row .mid-column { width: 33.3333%; } .banner .bot-row .right-column { width: 33.3333%; } .banner .article-container { position: absolute; bottom: 0; } .banner .article-box { position: relative; } .banner .article-content { padding: 15px; z-index: 2; } .banner h2 { color: #fff; font-size: 30px; margin: 0; } .banner .play-top { position: absolute; color: #fff; font-size: 40px; top: 2%; right: 2%; } .banner .play-mid { position: absolute; top: 45%; left: 45%; } .banner .shadow { background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#282828)); background: linear-gradient(180deg, transparent, #282828); bottom: 0; position: absolute; width: 100%; height: 100%; } /*# sourceMappingURL=style.css.map */
0.399929
0.049497
:root { --dropdown-border-color: rgba(27 31 35 15%); --dropdown-hover-background-color: var(--nav-background-color); } .dropdown { position: relative; } .dropdown-caret { display: inline-block; width: 0; height: 0; vertical-align: middle; content: ""; border-top-style: solid; border-top-width: 4px; border-right: 4px solid transparent; border-bottom: 0 solid transparent; border-left: 4px solid transparent; } .dropdown-menu { position: absolute; top: 100%; left: 0; z-index: 100; width: 160px; padding-top: 4px; padding-bottom: 4px; margin-top: 2px; list-style: none; background-color: #fff; background-clip: padding-box; border: 1px solid var(--dropdown-border-color); border-radius: 4px; box-shadow: 0 1px 15px var(--dropdown-border-color); } .dropdown-menu ::after, .dropdown-menu ::before { position: absolute; display: inline-block; content: ""; } .dropdown-menu ::before { border: 8px solid transparent; border-bottom-color: var(--dropdown-border-color); } .dropdown-menu ::after { border: 7px solid transparent; border-bottom-color: #fff; } .dropdown-menu > ul { list-style: none; } .dropdown-menu-no-overflow { width: auto; } .dropdown-item { display: block; padding: 4px 0 2px 8px; overflow: hidden; color: #24292e; text-overflow: ellipsis; white-space: nowrap; } .dropdown-menu-no-overflow .dropdown-item { padding: 4px 16px; overflow: visible; text-overflow: inherit; } .dropdown-item:focus, .dropdown-item:hover { color: #fff; text-decoration: none; background-color: var(--dropdown-hover-background-color); outline: none; } .dropdown-item[aria-checked="false"] { display: none; } .dropdown-item.btn-link, .dropdown-signout { width: 100%; text-align: left; } .dropdown-signout { background: none; border: 0; } .dropdown-divider { display: block; height: 0; margin: 8px 0; border-top: 1px solid #e1e4e8; } .dropdown-header { padding: 4px 16px; font-size: 12px; color: #d1d5da; } .dropdown-menu-w { top: 0; right: 100%; left: auto; width: auto; margin-top: 0; margin-right: 8px; } .dropdown-menu-w ::before { top: 10px; right: -16px; left: auto; border-color: transparent transparent transparent var(--dropdown-border-color); } .dropdown-menu-w ::after { top: 11px; right: -14px; left: auto; border-color: transparent transparent transparent #fff; } .dropdown-menu-e { top: 0; left: 100%; width: auto; margin-top: 0; margin-left: 8px; } .dropdown-menu-e ::before { top: 8px; left: -16px; border-color: transparent var(--dropdown-border-color) transparent transparent; } .dropdown-menu-e ::after { top: 11px; left: -14px; border-color: transparent #fff transparent transparent; } .dropdown-menu-ne { top: auto; bottom: 100%; left: 0; margin-bottom: 3px; } .dropdown-menu-ne ::after, .dropdown-menu-ne ::before { top: auto; right: auto; } .dropdown-menu-ne ::before { bottom: -8px; left: 9px; border-top: 8px solid var(--dropdown-border-color); border-right: 8px solid transparent; border-bottom: 0; border-left: 8px solid transparent; } .dropdown-menu-ne ::after { bottom: -7px; left: 10px; border-top: 7px solid #fff; border-right: 7px solid transparent; border-bottom: 0; border-left: 7px solid transparent; } .dropdown-menu-s { right: 50%; left: auto; transform: translateX(50%); } .dropdown-menu-s ::before { top: -16px; right: 50%; transform: translateX(50%); } .dropdown-menu-s ::after { top: -14px; right: 50%; transform: translateX(50%); } .dropdown-menu-sw { right: 0; left: auto; } .dropdown-menu-sw ::before { top: -16px; right: 9px; left: auto; } .dropdown-menu-sw ::after { top: -14px; right: 10px; left: auto; } .dropdown-menu-se ::before { top: -16px; left: 9px; } .dropdown-menu-se ::after { top: -14px; left: 10px; }
dropdown.css
:root { --dropdown-border-color: rgba(27 31 35 15%); --dropdown-hover-background-color: var(--nav-background-color); } .dropdown { position: relative; } .dropdown-caret { display: inline-block; width: 0; height: 0; vertical-align: middle; content: ""; border-top-style: solid; border-top-width: 4px; border-right: 4px solid transparent; border-bottom: 0 solid transparent; border-left: 4px solid transparent; } .dropdown-menu { position: absolute; top: 100%; left: 0; z-index: 100; width: 160px; padding-top: 4px; padding-bottom: 4px; margin-top: 2px; list-style: none; background-color: #fff; background-clip: padding-box; border: 1px solid var(--dropdown-border-color); border-radius: 4px; box-shadow: 0 1px 15px var(--dropdown-border-color); } .dropdown-menu ::after, .dropdown-menu ::before { position: absolute; display: inline-block; content: ""; } .dropdown-menu ::before { border: 8px solid transparent; border-bottom-color: var(--dropdown-border-color); } .dropdown-menu ::after { border: 7px solid transparent; border-bottom-color: #fff; } .dropdown-menu > ul { list-style: none; } .dropdown-menu-no-overflow { width: auto; } .dropdown-item { display: block; padding: 4px 0 2px 8px; overflow: hidden; color: #24292e; text-overflow: ellipsis; white-space: nowrap; } .dropdown-menu-no-overflow .dropdown-item { padding: 4px 16px; overflow: visible; text-overflow: inherit; } .dropdown-item:focus, .dropdown-item:hover { color: #fff; text-decoration: none; background-color: var(--dropdown-hover-background-color); outline: none; } .dropdown-item[aria-checked="false"] { display: none; } .dropdown-item.btn-link, .dropdown-signout { width: 100%; text-align: left; } .dropdown-signout { background: none; border: 0; } .dropdown-divider { display: block; height: 0; margin: 8px 0; border-top: 1px solid #e1e4e8; } .dropdown-header { padding: 4px 16px; font-size: 12px; color: #d1d5da; } .dropdown-menu-w { top: 0; right: 100%; left: auto; width: auto; margin-top: 0; margin-right: 8px; } .dropdown-menu-w ::before { top: 10px; right: -16px; left: auto; border-color: transparent transparent transparent var(--dropdown-border-color); } .dropdown-menu-w ::after { top: 11px; right: -14px; left: auto; border-color: transparent transparent transparent #fff; } .dropdown-menu-e { top: 0; left: 100%; width: auto; margin-top: 0; margin-left: 8px; } .dropdown-menu-e ::before { top: 8px; left: -16px; border-color: transparent var(--dropdown-border-color) transparent transparent; } .dropdown-menu-e ::after { top: 11px; left: -14px; border-color: transparent #fff transparent transparent; } .dropdown-menu-ne { top: auto; bottom: 100%; left: 0; margin-bottom: 3px; } .dropdown-menu-ne ::after, .dropdown-menu-ne ::before { top: auto; right: auto; } .dropdown-menu-ne ::before { bottom: -8px; left: 9px; border-top: 8px solid var(--dropdown-border-color); border-right: 8px solid transparent; border-bottom: 0; border-left: 8px solid transparent; } .dropdown-menu-ne ::after { bottom: -7px; left: 10px; border-top: 7px solid #fff; border-right: 7px solid transparent; border-bottom: 0; border-left: 7px solid transparent; } .dropdown-menu-s { right: 50%; left: auto; transform: translateX(50%); } .dropdown-menu-s ::before { top: -16px; right: 50%; transform: translateX(50%); } .dropdown-menu-s ::after { top: -14px; right: 50%; transform: translateX(50%); } .dropdown-menu-sw { right: 0; left: auto; } .dropdown-menu-sw ::before { top: -16px; right: 9px; left: auto; } .dropdown-menu-sw ::after { top: -14px; right: 10px; left: auto; } .dropdown-menu-se ::before { top: -16px; left: 9px; } .dropdown-menu-se ::after { top: -14px; left: 10px; }
0.563138
0.077518
*{ box-sizing: border-box; padding: 0; margin:0; } html{ font-family:'SF Pro display', sans-serif; font-size: 16px; } body{ max-height:100vh; } input, button, a{ outline: none; font-size: 1rem; } a{ text-decoration: none; } .global-nav{ background: #000; width: 100%; height: 50px; position: relative; } .global-nav__content{ max-width: 990px; display: flex; justify-content: space-between; align-items: center; width: 100%; margin:0 auto; } .global-nav__link{ text-decoration: none; color: #fff; transition: opacity 200ms; margin: 0 10px; } .global-nav__link:hover{ opacity: 0.65; } .content-nav{ width: 100%; background: #F7F7F7; height: 110px; } .content-nav__content{ max-width: 800px; height: 100px; display: flex; justify-content: space-between; margin:0 auto; align-items: center; } .content-nav__link{ margin:0 10px; color: rgba(0,0,0,0.6); } .content-nav__link > img{ margin:0 auto; display: block; } .content-nav__title{ text-align: center; display: block; font-size: 0.7rem; margin-top: 5px; } .content-nav__title:hover{ color: #3F7ECA; } .new{ color:#EF5602; font-size: 0.5rem; font-weight: 100; text-align: center; display: block; } .content-nav__link:nth-child(1), .content-nav__link:nth-child(2){ margin-top: 8px; } .main__content{ background: #F7F7F7; margin-top: 10px; padding-top: 50px; padding-bottom: 50px; } .main__content_offer{ max-width: 990px; margin:0 auto 40px; text-align: center; } h1{ font-size: 3.5rem; } h2{ font-size: 2.5rem; } p{ color: #888888; font-weight: 100; margin-top: 15px; margin-bottom: 20px; } .space{ margin-left: 30px; } .main__content_img{ background: url(../../assets/images/lesson_6/iphone_x_medium.jpg) ; width: 981px; height: 206px; background-size: 981px 206px; margin:0 auto; } .iphone__pink{ background: #F9F0EB; margin-top: 10px; padding-top: 50px; } .iphone__pink_title{ max-width: 990px; margin:0 auto; text-align: center; } .more{ font-size: 1.3rem; font-weight: 100; color: #0070C9; } .iphone__pink_img{ background: url(../../assets/images/lesson_6/iphone_8_medium_2x.jpg) ; width: 611px; height: 498px; background-size: 611px 498px; margin:0 auto; } .iphone__pink_title a{ margin-bottom: 0px; } .compare__section{ max-width: 1400px; display: flex; align-items: center; margin:10px auto; background: #FAFAFA; } .compare__section_img{ background: url(../../assets/images/lesson_6/compare_medium_2x.jpg) no-repeat center; width:587px; height: 449px; background-size: 587px 449px; margin:20px 100px 0 20px; } .compare__section_content{ text-align: center; width: 600px; } .step__section{ max-width: 1400px; display: flex; align-items: center; margin:30px auto; background: #FAFAFA; justify-content: space-between; padding:80px 0; } .explanation{ font-size: 1.3rem; color: #000; padding-left: 40px; } .bigStep_img{ background: url(../../assets/images/lesson_6/ios_large.jpg) no-repeat left; width:700px; height: 527px; background-size: 828px 527px; align-self: flex-end; } .twoBlocks{ max-width: 1400px; width:100%; margin:0 auto; display: flex; justify-content: space-between; margin-bottom: 30px; padding:0 2%; } .accesoires{ width: 49%; height: 520px; text-align: center; background: #FAFAFA ; background-size: 660px 500px; padding-top: 50px; position: relative; overflow: hidden; } .text{ position: absolute; top:0; left:0; z-index: 1; text-align: center; width: 100%; padding: 50px 50px; } .text h3{ font-size: 2.5rem; } .text h4{ font-size: 1.7rem; } .accesoires img{ position: absolute; max-width: 660px ; height: 500px; left: 0; top: 170px; z-index: 0; width:100%; } .accesoires .picTwo{ top:100px; } .bigPicture{ background:url(../../assets/images/lesson_6/howtoshoot_large_2x.jpg)no-repeat center center; min-height:800px; background-size: 1400px 800px; display: flex; align-items: center; justify-content: center; text-align: center; margin-bottom: 30px; } .compareHeader{ color: #fff; font-size: 3.5rem; } .twoBlocks__block{ position: relative; width:49%; height: 750px; text-align: center; background: #FAFAFA ; padding-top: 50px; position: relative; overflow: hidden; } .applePay{ position: absolute; left:0; top: 360px; max-width: 660px; width: 100%; } .icloud{ position: absolute; left:15px; top: 370px; max-width: 624px; width: 100%; } .footer{ max-width: 1400px; background:#F2F2F2; height: 100px; padding-top: 5px; margin:0 auto; } .footer p{ color: #9B9B9B; font-size: 0.9rem; } .footer__link{ color:#555555; padding-right: 20px; padding-left: 15px; border-right: 1px solid #D6D6D6; font-weight: 100; } .footer__link:first-child{ padding-left: 0; } .footer__link:hover{ text-decoration:underline; } .controls{ display: none; } /*Mobile devices*/ @media (max-width: 575px){ .controls{ display: flex; align-items: center; height: inherit; padding:20px; justify-content: space-between; width:100%; } .switcher{ width:20px; height: 20px; background: transparent; position: relative; cursor: pointer; font-size: 1rem; outline: none; border:none; transition: opacity 100ms; } .switcher:hover{ opacity: 0.9; } .switcher:before{ content: ""; height:1px; position: absolute; left:0; top:5px; width: 100%; background: #fff; } .switcher:after{ content: ""; height:1px; position: absolute; left:0; bottom:5px; width: 100%; background: #fff; } .global-nav__content { display:none; } .global-nav.opened .global-nav__content{ position: absolute; top:50px; left:0; width: 100vw; min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-start; background: #000; border-top:1px solid #282828; align-items: flex-start; /*visibility: hidden;*/ padding:10px 80px 10px 30px; } .global-nav.opened .global-nav__link:nth-child(1){ display: none;} .global-nav.opened .global-nav__link:nth-child(9){ display: none;} .global-nav.opened .global-nav__link:nth-child(10){ display: none;} .global-nav.opened .global-nav__link:nth-child(8){ border: 0px;} .global-nav.opened .global-nav__link{ padding: 12px 0; border-bottom: 1px solid #282828; width: 100%; } .main_logo:hover{ opacity: 0.65; transition: opacity 200ms; } .Cart_mini_menu:hover{ opacity: 0.65; transition: opacity 200ms; } .global-nav.opened .switcher:before{ transform: translateY(5px) rotate(45deg); } .global-nav.opened .switcher:after{ transform: translateY(-4px) rotate(-45deg); } .content-nav{ display: none; } .more{ font-size:0.8rem; } .main__content_img{ background: url(../../assets/images/lesson_6/iphone_x_medium.jpg) no-repeat; width: 360px; height: 75px; background-size: 360px 75px; margin:0 auto; } .main__content h1{ font-size:2.6rem; } .main__content h2{ font-size:1.7rem; } .main__content p{ font-size:0.9rem; } .iphone__pink_img{ background: url(../../assets/images/lesson_6/iphone_8_medium_2x.jpg) ; width: 340px; height: 240px; background-size: 340px 240px; margin:0 auto; } .iphone__pink h1{ font-size:2.6rem; } .iphone__pink h2{ font-size:1.7rem; } .iphone__pink p{ font-size:0.9rem; } .compare__section{ max-width: 575px; display: flex; flex-direction:column-reverse; justify-content: center; margin:10px auto; background: #FAFAFA; padding-top:20px; } .compare__section_img{ background: url(../../assets/images/lesson_6/compare_medium_2x.jpg) no-repeat center; width:350px; height: 270px; background-size: 350px 270px; margin:10px auto 0 auto; } .compare__section_content{ text-align: center; width: 350px; margin:0 auto; } .compare__section h2{ font-size: 2rem; } .step__section h2{ font-size: 2rem; } .step__section{ max-width:575px; display: flex; flex-direction: column; margin:20px auto; background: #FAFAFA; padding:30px 0; } .explanation{ font-size: 1.1rem; color: #000; margin:10px auto; padding:0; } .predzakaz{ font-size: 0.9rem; } .bigStep_img{ background: url(../../assets/images/lesson_6/ios_large.jpg) no-repeat left; width: 350px; height: 270px; background-size: 350px 270px; margin:20px auto 0px auto; } .twoBlocks{ max-width: 575px; margin:0 auto; display: flex; flex-direction: column; margin-bottom: 10px; background: #FAFAFA ; } .accesoires{ width: 350px; height: 270px; background: #FAFAFA ; background-size: 350px 270px; padding-top: 20px; position: relative; overflow: hidden; margin:0 auto 20px auto; } .text{ position: absolute; top:0; left:0; z-index: 1; text-align: center; width: 350px; padding: 20px; margin:0 auto; } .text h3{ font-size: 1.4rem; } .text h4{ font-size: 1rem; } .accesoires img{ position: absolute; max-width: 350px ; height: 270px; left: 0; top: 90px; z-index: 0; width:100%; } .accesoires .picTwo{ top:50px; } .bigPicture{ background:url(../../assets/images/lesson_6/howtoshoot_large_2x.jpg)no-repeat center center; background-size: 575px 370px; width:100%; min-height:270px; margin-bottom: 30px; } .compareHeader{ color: #fff; font-size: 2rem; } .twoBlocks__block{ position: relative; max-width: 575px; height: 540px; text-align: center; background: #FAFAFA ; overflow: hidden; width: 350px; margin:0 auto; } .twoBlocks__block .text{ top:0; left:50%; transform:translateX(-50%); } .applePay{ position: absolute; left:0; top: 290px; max-width: 575px; width: 100%; } .icloud{ position: absolute; left:15px; top: 300px; max-width: 575px; width: 100%; } .footer{ max-width: 1400px; background:#F2F2F2; height: 120px; text-align:center; } .footer p{ color: #9B9B9B; font-size: 0.7rem; } .footer__link{ color:#555555; padding-right: 8px; padding-left: 3px; border-right: 1px solid #D6D6D6; font-weight: 100; font-size: 0.7rem; } .footer__link:first-child{ padding-left: 0; } .footer__link:last-child{ border: 0; } .footer__link:hover{ text-decoration:underline; } } /* phablets*/ @media (min-width: 576px) and (max-width: 767px){ .more{ font-size:0.9rem; } .main__content_img{ background: url(../../assets/images/lesson_6/iphone_x_medium.jpg) no-repeat; width: 520px; height: 106px; background-size: 520px 106px; margin:0 auto; } .main__content h1{ font-size:3rem; } .main__content h2{ font-size:2rem; } .main__content p{ font-size:0.9rem; } .iphone__pink_img{ background: url(../../assets/images/lesson_6/iphone_8_medium_2x.jpg) ; width: 420px; height: 320px; background-size: 420px 320px; margin:0 auto; } .iphone__pink h1{ font-size:3rem; } .iphone__pink h2{ font-size:2rem; } .iphone__pink p{ font-size:0.9rem; } .compare__section_img{ background: url(../../assets/images/lesson_6/compare_medium_2x.jpg) no-repeat bottom; width:520px; height: 240px; background-size: 280px 220px; margin:20px 0 0 0; } .compare__section_content h2{ margin-right: 10px; } .step__section{ max-width: 1400px; display: flex; align-items: center; margin:10px auto; background: #FAFAFA; justify-content: none; padding:30px 0; } .explanation{ color: #000; padding-left: 20px; font-size:0.9rem; } .compare__section_content h1{ font-size:3rem; } .compare__section_content{ width: 320px; } .bigStep_img{ background: url(../../assets/images/lesson_6/ios_large.jpg) no-repeat left top ; width:320px; height:280px; background-size: 370px 280px; } .compare__section_content h2{ font-size:2rem; } .predzakaz{ font-size: 0.7rem; } .twoBlocks{ max-width: 766px; width:100%; margin:0 auto; display: flex; justify-content: space-between; margin-bottom: 10px; padding:0 8px; } .accesoires{ width: 49%; height: 280px; text-align: center; background: #FAFAFA ; background-size: 330px 280px; padding-top: 20px; position: relative; overflow: hidden; } .text{ position: absolute; top:0; left:0; z-index: 1; text-align: center; width:100%; padding:10px; } .text h3{ font-size: 1.2rem; } .text h4{ font-size: 0.9rem; } .accesoires img{ position: absolute; width:100%; height: 100%; left: 0; top: 85px; z-index: 0; } .accesoires .picTwo{ top:50px; } .bigPicture{ background:url(../../assets/images/lesson_6/howtoshoot_medium_2x.jpg)no-repeat center center; min-height: 400px; width:100%; background-size: 767px 400px; display: flex; align-items: center; justify-content: center; text-align: center; margin-bottom: 30px; } .compareHeader{ font-size: 2rem; } .twoBlocks__block{ position: relative; width: 49%; text-align: center; background: #FAFAFA ; padding-top: 15px; position: relative; overflow: hidden; height:400px; background: #FAFAFA url(../../assets/images/lesson_6/apple_pay_medium_2x.jpg) no-repeat bottom / cover; background-size: 100% 40%; } .twoBlocks__block:nth-child(2){ background: #FAFAFA url(../../assets/images/lesson_6/icloud_medium_2x.jpg) no-repeat bottom / cover; background-size: 100% 40%; } .applePay{ display: none; } .icloud{ display: none; } .footer{ max-width: 1400px; background:#F2F2F2; height: 100px; padding-top: 2.5px; text-align: center; } .footer p{ color: #9B9B9B; font-size: 0.7rem; } .footer__link{ color:#555555; padding-right: 5px; padding-left: 3px; border-right: 1px solid #D6D6D6; font-weight: 100; font-size: 0.7rem; } .footer__link:first-child{ padding-left: 0; } .footer__link:hover{ text-decoration:underline; } } /*tablets*/ @media (min-width: 768px) and (max-width: 991px){ .more{ font-size:0.9rem; } .main__content_img{ background: url(../../assets/images/lesson_6/iphone_x_medium.jpg) no-repeat; width: 620px; height: 140px; background-size: 620px 140px; margin:0 auto; } .main__content h1{ font-size:3rem; } .main__content h2{ font-size:2rem; } .main__content p{ font-size:0.9rem; } .iphone__pink_img{ background: url(../../assets/images/lesson_6/iphone_8_medium_2x.jpg) ; width: 420px; height: 320px; background-size: 420px 320px; margin:0 auto; } .iphone__pink h1{ font-size:3rem; } .iphone__pink h2{ font-size:2rem; } .iphone__pink p{ font-size:0.9rem; } .compare__section_content{ margin-right: 30px; } .compare__section_content h2{ font-size: 1.8rem; } .compare__section_img{ background: url(../../assets/images/lesson_6/compare_medium_2x.jpg) no-repeat bottom; width:49%; height: 300px; background-size: 380px 240px; margin: 0 10px; } .step__section{ max-width: 1400px; display: flex; align-items: center; margin:10px auto; background: #FAFAFA; justify-content: none; padding:20px 0; } .explanation{ color: #000; padding-left: 10px; font-size:0.9rem; } .compare__section_content{ width: 320px; } .bigStep_img{ background: url(../../assets/images/lesson_6/ios_large.jpg) no-repeat left top ; width:340px; height:280px; background-size: 410px 280px; } .predzakaz{ font-size: 0.7rem; } .twoBlocks{ width:100%; max-width:990px; display: flex; margin-bottom: 15px; padding:0 10px; } .accesoires{ width: 49%; height:450px; text-align: center; background: #FAFAFA ; padding-top: 50px; position: relative; overflow: hidden; } .text{ position: absolute; top:0; left:0; z-index: 1; text-align: center; width: 100%; padding:30px 30px; } .text h3{ font-size: 1.2rem; } .text h4{ font-size: 0.9rem; } .accesoires img{ position: absolute; width:100%; height: 100%; left: 0; top: 85px; z-index: 0; } .accesoires .picTwo{ top:85px; } .bigPicture{ background:url(../../assets/images/lesson_6/howtoshoot_medium_2x.jpg)no-repeat center center; min-height: 400px; width:100%; background-size: 990px 500px; display: flex; align-items: center; justify-content: center; text-align: center; margin-bottom: 10px; } .compareHeader{ font-size: 2rem; } .twoBlocks__block{ position: relative; width: 49%; text-align: center; background: #FAFAFA ; padding-top: 15px; position: relative; overflow: hidden; height:400px; } .twoBlocks__block:first-child{ background: #FAFAFA url(../../assets/images/lesson_6/apple_pay_medium_2x.jpg) no-repeat bottom / cover; background-size: 100% 40%; } .applePay{ display: none; } .icloud{ position: absolute; left:45px; top:240px; width: 75%; } .footer{ max-width: 1400px; background:#F2F2F2; height: 100px; padding-top: 2.5px; text-align: center; } .footer p{ color: #9B9B9B; font-size: 0.7rem; } .footer__link{ color:#555555; padding-right: 5px; padding-left: 3px; border-right: 1px solid #D6D6D6; font-weight: 100; font-size: 0.7rem; } .footer__link:first-child{ padding-left: 0; } .footer__link:hover{ text-decoration:underline; } } /*laptop*/ @media (min-width: 992px) and (max-width:1199px){ .main__content{ background: #F7F7F7; margin-top: 10px; padding-top: 50px; padding-bottom: 50px; } .main__content_offer{ max-width: 990px; margin:0 auto 40px; text-align: center; } h1{ font-size: 3.3rem; } h2{ font-size: 2.2rem; } p{ color: #888888; font-weight: 100; margin-top: 15px; margin-bottom: 20px; } .space{ margin-left: 30px; } .main__content_img{ background: url(../../assets/images/lesson_6/iphone_x_medium.jpg) ; width: 800px; height: 180px; background-size: 800px 180px; margin:0 auto; } .iphone__pink{ background: #F9F0EB; margin-top: 10px; padding-top: 50px; } .iphone__pink_title{ max-width: 990px; margin:0 auto; text-align: center; } .more{ font-size: 1.3rem; font-weight: 100; color: #0070C9; } .iphone__pink_img{ background: url(../../assets/images/lesson_6/iphone_8_medium_2x.jpg) ; width: 580px; height: 460px; background-size: 580px 460px; margin:0 auto; } .iphone__pink_title a{ margin-bottom: 0px; } .compare__section{ max-width: 1400px; display: flex; align-items: center; margin:10px auto; background: #FAFAFA; } .compare__section_img{ background: url(../../assets/images/lesson_6/compare_medium_2x.jpg) no-repeat center; width:460px; height:300px; background-size: 400px 300px; margin:40px 0 0 50px; } .compare__section_content{ text-align: center; width: 400px; margin-right:50px; } .step__section{ max-width: 1400px; display: flex; align-items: center; margin:10px auto; background: #FAFAFA; justify-content: space-between; padding:40px 0 40px 40px; } .explanation{ font-size: 1.1rem; color: #000; padding-left: 40px; } .bigStep_img{ background: url(../../assets/images/lesson_6/ios_large.jpg) no-repeat left; width:500px; height: 400px; background-size: 600px 400px; align-self: flex-end; } .twoBlocks{ max-width: 1199px; width:100%; margin:0 auto; display: flex; justify-content: space-between; margin-bottom: 10px; padding:0 10px; } .accesoires{ width: 49%; height: 520px; text-align: center; background: #FAFAFA ; padding-top: 30px; position: relative; overflow: hidden; } .text{ position: absolute; top:0; left:0; z-index: 1; text-align: center; width: 100%; padding: 50px 50px; } .text h3{ font-size: 2.2rem; } .text h4{ font-size: 1.4rem; } .accesoires img{ position: absolute; max-width: 660px ; height: 500px; left: 0; top: 170px; z-index: 0; width:100%; } .accesoires .picTwo{ top:100px; } .bigPicture{ background:url(../../assets/images/lesson_6/howtoshoot_large_2x.jpg)no-repeat center center; min-height: 100vh; background-size: 1400px 800px; display: flex; align-items: center; justify-content: center; text-align: center; margin-bottom: 10px; } .compareHeader{ color: #fff; font-size: 3.5rem; } .twoBlocks{ padding:0 10px; } .twoBlocks__block .text{ padding:20px 0 0 0; } .twoBlocks__block{ position: relative; max-width: 600px; width: 49%; height: 640px; text-align: center; background: #FAFAFA ; padding-top: 50px; position: relative; overflow: hidden; } .applePay{ position: absolute; left:0; top: 360px; max-width: 660px; width: 100%; } .icloud{ position: absolute; left:15px; top: 370px; max-width: 624px; width: 100%; } .footer{ max-width: 1400px; background:#F2F2F2; height: 200px; padding-top: 5px; } .footer p{ color: #9B9B9B; font-size: 0.9rem; } .footer__link{ color:#555555; padding-right: 20px; padding-left: 15px; border-right: 1px solid #D6D6D6; font-weight: 100; } .footer__link:first-child{ padding-left: 0; } .footer__link:hover{ text-decoration:underline; } }
src/apple_site_sample/apple_site_sample.css
*{ box-sizing: border-box; padding: 0; margin:0; } html{ font-family:'SF Pro display', sans-serif; font-size: 16px; } body{ max-height:100vh; } input, button, a{ outline: none; font-size: 1rem; } a{ text-decoration: none; } .global-nav{ background: #000; width: 100%; height: 50px; position: relative; } .global-nav__content{ max-width: 990px; display: flex; justify-content: space-between; align-items: center; width: 100%; margin:0 auto; } .global-nav__link{ text-decoration: none; color: #fff; transition: opacity 200ms; margin: 0 10px; } .global-nav__link:hover{ opacity: 0.65; } .content-nav{ width: 100%; background: #F7F7F7; height: 110px; } .content-nav__content{ max-width: 800px; height: 100px; display: flex; justify-content: space-between; margin:0 auto; align-items: center; } .content-nav__link{ margin:0 10px; color: rgba(0,0,0,0.6); } .content-nav__link > img{ margin:0 auto; display: block; } .content-nav__title{ text-align: center; display: block; font-size: 0.7rem; margin-top: 5px; } .content-nav__title:hover{ color: #3F7ECA; } .new{ color:#EF5602; font-size: 0.5rem; font-weight: 100; text-align: center; display: block; } .content-nav__link:nth-child(1), .content-nav__link:nth-child(2){ margin-top: 8px; } .main__content{ background: #F7F7F7; margin-top: 10px; padding-top: 50px; padding-bottom: 50px; } .main__content_offer{ max-width: 990px; margin:0 auto 40px; text-align: center; } h1{ font-size: 3.5rem; } h2{ font-size: 2.5rem; } p{ color: #888888; font-weight: 100; margin-top: 15px; margin-bottom: 20px; } .space{ margin-left: 30px; } .main__content_img{ background: url(../../assets/images/lesson_6/iphone_x_medium.jpg) ; width: 981px; height: 206px; background-size: 981px 206px; margin:0 auto; } .iphone__pink{ background: #F9F0EB; margin-top: 10px; padding-top: 50px; } .iphone__pink_title{ max-width: 990px; margin:0 auto; text-align: center; } .more{ font-size: 1.3rem; font-weight: 100; color: #0070C9; } .iphone__pink_img{ background: url(../../assets/images/lesson_6/iphone_8_medium_2x.jpg) ; width: 611px; height: 498px; background-size: 611px 498px; margin:0 auto; } .iphone__pink_title a{ margin-bottom: 0px; } .compare__section{ max-width: 1400px; display: flex; align-items: center; margin:10px auto; background: #FAFAFA; } .compare__section_img{ background: url(../../assets/images/lesson_6/compare_medium_2x.jpg) no-repeat center; width:587px; height: 449px; background-size: 587px 449px; margin:20px 100px 0 20px; } .compare__section_content{ text-align: center; width: 600px; } .step__section{ max-width: 1400px; display: flex; align-items: center; margin:30px auto; background: #FAFAFA; justify-content: space-between; padding:80px 0; } .explanation{ font-size: 1.3rem; color: #000; padding-left: 40px; } .bigStep_img{ background: url(../../assets/images/lesson_6/ios_large.jpg) no-repeat left; width:700px; height: 527px; background-size: 828px 527px; align-self: flex-end; } .twoBlocks{ max-width: 1400px; width:100%; margin:0 auto; display: flex; justify-content: space-between; margin-bottom: 30px; padding:0 2%; } .accesoires{ width: 49%; height: 520px; text-align: center; background: #FAFAFA ; background-size: 660px 500px; padding-top: 50px; position: relative; overflow: hidden; } .text{ position: absolute; top:0; left:0; z-index: 1; text-align: center; width: 100%; padding: 50px 50px; } .text h3{ font-size: 2.5rem; } .text h4{ font-size: 1.7rem; } .accesoires img{ position: absolute; max-width: 660px ; height: 500px; left: 0; top: 170px; z-index: 0; width:100%; } .accesoires .picTwo{ top:100px; } .bigPicture{ background:url(../../assets/images/lesson_6/howtoshoot_large_2x.jpg)no-repeat center center; min-height:800px; background-size: 1400px 800px; display: flex; align-items: center; justify-content: center; text-align: center; margin-bottom: 30px; } .compareHeader{ color: #fff; font-size: 3.5rem; } .twoBlocks__block{ position: relative; width:49%; height: 750px; text-align: center; background: #FAFAFA ; padding-top: 50px; position: relative; overflow: hidden; } .applePay{ position: absolute; left:0; top: 360px; max-width: 660px; width: 100%; } .icloud{ position: absolute; left:15px; top: 370px; max-width: 624px; width: 100%; } .footer{ max-width: 1400px; background:#F2F2F2; height: 100px; padding-top: 5px; margin:0 auto; } .footer p{ color: #9B9B9B; font-size: 0.9rem; } .footer__link{ color:#555555; padding-right: 20px; padding-left: 15px; border-right: 1px solid #D6D6D6; font-weight: 100; } .footer__link:first-child{ padding-left: 0; } .footer__link:hover{ text-decoration:underline; } .controls{ display: none; } /*Mobile devices*/ @media (max-width: 575px){ .controls{ display: flex; align-items: center; height: inherit; padding:20px; justify-content: space-between; width:100%; } .switcher{ width:20px; height: 20px; background: transparent; position: relative; cursor: pointer; font-size: 1rem; outline: none; border:none; transition: opacity 100ms; } .switcher:hover{ opacity: 0.9; } .switcher:before{ content: ""; height:1px; position: absolute; left:0; top:5px; width: 100%; background: #fff; } .switcher:after{ content: ""; height:1px; position: absolute; left:0; bottom:5px; width: 100%; background: #fff; } .global-nav__content { display:none; } .global-nav.opened .global-nav__content{ position: absolute; top:50px; left:0; width: 100vw; min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-start; background: #000; border-top:1px solid #282828; align-items: flex-start; /*visibility: hidden;*/ padding:10px 80px 10px 30px; } .global-nav.opened .global-nav__link:nth-child(1){ display: none;} .global-nav.opened .global-nav__link:nth-child(9){ display: none;} .global-nav.opened .global-nav__link:nth-child(10){ display: none;} .global-nav.opened .global-nav__link:nth-child(8){ border: 0px;} .global-nav.opened .global-nav__link{ padding: 12px 0; border-bottom: 1px solid #282828; width: 100%; } .main_logo:hover{ opacity: 0.65; transition: opacity 200ms; } .Cart_mini_menu:hover{ opacity: 0.65; transition: opacity 200ms; } .global-nav.opened .switcher:before{ transform: translateY(5px) rotate(45deg); } .global-nav.opened .switcher:after{ transform: translateY(-4px) rotate(-45deg); } .content-nav{ display: none; } .more{ font-size:0.8rem; } .main__content_img{ background: url(../../assets/images/lesson_6/iphone_x_medium.jpg) no-repeat; width: 360px; height: 75px; background-size: 360px 75px; margin:0 auto; } .main__content h1{ font-size:2.6rem; } .main__content h2{ font-size:1.7rem; } .main__content p{ font-size:0.9rem; } .iphone__pink_img{ background: url(../../assets/images/lesson_6/iphone_8_medium_2x.jpg) ; width: 340px; height: 240px; background-size: 340px 240px; margin:0 auto; } .iphone__pink h1{ font-size:2.6rem; } .iphone__pink h2{ font-size:1.7rem; } .iphone__pink p{ font-size:0.9rem; } .compare__section{ max-width: 575px; display: flex; flex-direction:column-reverse; justify-content: center; margin:10px auto; background: #FAFAFA; padding-top:20px; } .compare__section_img{ background: url(../../assets/images/lesson_6/compare_medium_2x.jpg) no-repeat center; width:350px; height: 270px; background-size: 350px 270px; margin:10px auto 0 auto; } .compare__section_content{ text-align: center; width: 350px; margin:0 auto; } .compare__section h2{ font-size: 2rem; } .step__section h2{ font-size: 2rem; } .step__section{ max-width:575px; display: flex; flex-direction: column; margin:20px auto; background: #FAFAFA; padding:30px 0; } .explanation{ font-size: 1.1rem; color: #000; margin:10px auto; padding:0; } .predzakaz{ font-size: 0.9rem; } .bigStep_img{ background: url(../../assets/images/lesson_6/ios_large.jpg) no-repeat left; width: 350px; height: 270px; background-size: 350px 270px; margin:20px auto 0px auto; } .twoBlocks{ max-width: 575px; margin:0 auto; display: flex; flex-direction: column; margin-bottom: 10px; background: #FAFAFA ; } .accesoires{ width: 350px; height: 270px; background: #FAFAFA ; background-size: 350px 270px; padding-top: 20px; position: relative; overflow: hidden; margin:0 auto 20px auto; } .text{ position: absolute; top:0; left:0; z-index: 1; text-align: center; width: 350px; padding: 20px; margin:0 auto; } .text h3{ font-size: 1.4rem; } .text h4{ font-size: 1rem; } .accesoires img{ position: absolute; max-width: 350px ; height: 270px; left: 0; top: 90px; z-index: 0; width:100%; } .accesoires .picTwo{ top:50px; } .bigPicture{ background:url(../../assets/images/lesson_6/howtoshoot_large_2x.jpg)no-repeat center center; background-size: 575px 370px; width:100%; min-height:270px; margin-bottom: 30px; } .compareHeader{ color: #fff; font-size: 2rem; } .twoBlocks__block{ position: relative; max-width: 575px; height: 540px; text-align: center; background: #FAFAFA ; overflow: hidden; width: 350px; margin:0 auto; } .twoBlocks__block .text{ top:0; left:50%; transform:translateX(-50%); } .applePay{ position: absolute; left:0; top: 290px; max-width: 575px; width: 100%; } .icloud{ position: absolute; left:15px; top: 300px; max-width: 575px; width: 100%; } .footer{ max-width: 1400px; background:#F2F2F2; height: 120px; text-align:center; } .footer p{ color: #9B9B9B; font-size: 0.7rem; } .footer__link{ color:#555555; padding-right: 8px; padding-left: 3px; border-right: 1px solid #D6D6D6; font-weight: 100; font-size: 0.7rem; } .footer__link:first-child{ padding-left: 0; } .footer__link:last-child{ border: 0; } .footer__link:hover{ text-decoration:underline; } } /* phablets*/ @media (min-width: 576px) and (max-width: 767px){ .more{ font-size:0.9rem; } .main__content_img{ background: url(../../assets/images/lesson_6/iphone_x_medium.jpg) no-repeat; width: 520px; height: 106px; background-size: 520px 106px; margin:0 auto; } .main__content h1{ font-size:3rem; } .main__content h2{ font-size:2rem; } .main__content p{ font-size:0.9rem; } .iphone__pink_img{ background: url(../../assets/images/lesson_6/iphone_8_medium_2x.jpg) ; width: 420px; height: 320px; background-size: 420px 320px; margin:0 auto; } .iphone__pink h1{ font-size:3rem; } .iphone__pink h2{ font-size:2rem; } .iphone__pink p{ font-size:0.9rem; } .compare__section_img{ background: url(../../assets/images/lesson_6/compare_medium_2x.jpg) no-repeat bottom; width:520px; height: 240px; background-size: 280px 220px; margin:20px 0 0 0; } .compare__section_content h2{ margin-right: 10px; } .step__section{ max-width: 1400px; display: flex; align-items: center; margin:10px auto; background: #FAFAFA; justify-content: none; padding:30px 0; } .explanation{ color: #000; padding-left: 20px; font-size:0.9rem; } .compare__section_content h1{ font-size:3rem; } .compare__section_content{ width: 320px; } .bigStep_img{ background: url(../../assets/images/lesson_6/ios_large.jpg) no-repeat left top ; width:320px; height:280px; background-size: 370px 280px; } .compare__section_content h2{ font-size:2rem; } .predzakaz{ font-size: 0.7rem; } .twoBlocks{ max-width: 766px; width:100%; margin:0 auto; display: flex; justify-content: space-between; margin-bottom: 10px; padding:0 8px; } .accesoires{ width: 49%; height: 280px; text-align: center; background: #FAFAFA ; background-size: 330px 280px; padding-top: 20px; position: relative; overflow: hidden; } .text{ position: absolute; top:0; left:0; z-index: 1; text-align: center; width:100%; padding:10px; } .text h3{ font-size: 1.2rem; } .text h4{ font-size: 0.9rem; } .accesoires img{ position: absolute; width:100%; height: 100%; left: 0; top: 85px; z-index: 0; } .accesoires .picTwo{ top:50px; } .bigPicture{ background:url(../../assets/images/lesson_6/howtoshoot_medium_2x.jpg)no-repeat center center; min-height: 400px; width:100%; background-size: 767px 400px; display: flex; align-items: center; justify-content: center; text-align: center; margin-bottom: 30px; } .compareHeader{ font-size: 2rem; } .twoBlocks__block{ position: relative; width: 49%; text-align: center; background: #FAFAFA ; padding-top: 15px; position: relative; overflow: hidden; height:400px; background: #FAFAFA url(../../assets/images/lesson_6/apple_pay_medium_2x.jpg) no-repeat bottom / cover; background-size: 100% 40%; } .twoBlocks__block:nth-child(2){ background: #FAFAFA url(../../assets/images/lesson_6/icloud_medium_2x.jpg) no-repeat bottom / cover; background-size: 100% 40%; } .applePay{ display: none; } .icloud{ display: none; } .footer{ max-width: 1400px; background:#F2F2F2; height: 100px; padding-top: 2.5px; text-align: center; } .footer p{ color: #9B9B9B; font-size: 0.7rem; } .footer__link{ color:#555555; padding-right: 5px; padding-left: 3px; border-right: 1px solid #D6D6D6; font-weight: 100; font-size: 0.7rem; } .footer__link:first-child{ padding-left: 0; } .footer__link:hover{ text-decoration:underline; } } /*tablets*/ @media (min-width: 768px) and (max-width: 991px){ .more{ font-size:0.9rem; } .main__content_img{ background: url(../../assets/images/lesson_6/iphone_x_medium.jpg) no-repeat; width: 620px; height: 140px; background-size: 620px 140px; margin:0 auto; } .main__content h1{ font-size:3rem; } .main__content h2{ font-size:2rem; } .main__content p{ font-size:0.9rem; } .iphone__pink_img{ background: url(../../assets/images/lesson_6/iphone_8_medium_2x.jpg) ; width: 420px; height: 320px; background-size: 420px 320px; margin:0 auto; } .iphone__pink h1{ font-size:3rem; } .iphone__pink h2{ font-size:2rem; } .iphone__pink p{ font-size:0.9rem; } .compare__section_content{ margin-right: 30px; } .compare__section_content h2{ font-size: 1.8rem; } .compare__section_img{ background: url(../../assets/images/lesson_6/compare_medium_2x.jpg) no-repeat bottom; width:49%; height: 300px; background-size: 380px 240px; margin: 0 10px; } .step__section{ max-width: 1400px; display: flex; align-items: center; margin:10px auto; background: #FAFAFA; justify-content: none; padding:20px 0; } .explanation{ color: #000; padding-left: 10px; font-size:0.9rem; } .compare__section_content{ width: 320px; } .bigStep_img{ background: url(../../assets/images/lesson_6/ios_large.jpg) no-repeat left top ; width:340px; height:280px; background-size: 410px 280px; } .predzakaz{ font-size: 0.7rem; } .twoBlocks{ width:100%; max-width:990px; display: flex; margin-bottom: 15px; padding:0 10px; } .accesoires{ width: 49%; height:450px; text-align: center; background: #FAFAFA ; padding-top: 50px; position: relative; overflow: hidden; } .text{ position: absolute; top:0; left:0; z-index: 1; text-align: center; width: 100%; padding:30px 30px; } .text h3{ font-size: 1.2rem; } .text h4{ font-size: 0.9rem; } .accesoires img{ position: absolute; width:100%; height: 100%; left: 0; top: 85px; z-index: 0; } .accesoires .picTwo{ top:85px; } .bigPicture{ background:url(../../assets/images/lesson_6/howtoshoot_medium_2x.jpg)no-repeat center center; min-height: 400px; width:100%; background-size: 990px 500px; display: flex; align-items: center; justify-content: center; text-align: center; margin-bottom: 10px; } .compareHeader{ font-size: 2rem; } .twoBlocks__block{ position: relative; width: 49%; text-align: center; background: #FAFAFA ; padding-top: 15px; position: relative; overflow: hidden; height:400px; } .twoBlocks__block:first-child{ background: #FAFAFA url(../../assets/images/lesson_6/apple_pay_medium_2x.jpg) no-repeat bottom / cover; background-size: 100% 40%; } .applePay{ display: none; } .icloud{ position: absolute; left:45px; top:240px; width: 75%; } .footer{ max-width: 1400px; background:#F2F2F2; height: 100px; padding-top: 2.5px; text-align: center; } .footer p{ color: #9B9B9B; font-size: 0.7rem; } .footer__link{ color:#555555; padding-right: 5px; padding-left: 3px; border-right: 1px solid #D6D6D6; font-weight: 100; font-size: 0.7rem; } .footer__link:first-child{ padding-left: 0; } .footer__link:hover{ text-decoration:underline; } } /*laptop*/ @media (min-width: 992px) and (max-width:1199px){ .main__content{ background: #F7F7F7; margin-top: 10px; padding-top: 50px; padding-bottom: 50px; } .main__content_offer{ max-width: 990px; margin:0 auto 40px; text-align: center; } h1{ font-size: 3.3rem; } h2{ font-size: 2.2rem; } p{ color: #888888; font-weight: 100; margin-top: 15px; margin-bottom: 20px; } .space{ margin-left: 30px; } .main__content_img{ background: url(../../assets/images/lesson_6/iphone_x_medium.jpg) ; width: 800px; height: 180px; background-size: 800px 180px; margin:0 auto; } .iphone__pink{ background: #F9F0EB; margin-top: 10px; padding-top: 50px; } .iphone__pink_title{ max-width: 990px; margin:0 auto; text-align: center; } .more{ font-size: 1.3rem; font-weight: 100; color: #0070C9; } .iphone__pink_img{ background: url(../../assets/images/lesson_6/iphone_8_medium_2x.jpg) ; width: 580px; height: 460px; background-size: 580px 460px; margin:0 auto; } .iphone__pink_title a{ margin-bottom: 0px; } .compare__section{ max-width: 1400px; display: flex; align-items: center; margin:10px auto; background: #FAFAFA; } .compare__section_img{ background: url(../../assets/images/lesson_6/compare_medium_2x.jpg) no-repeat center; width:460px; height:300px; background-size: 400px 300px; margin:40px 0 0 50px; } .compare__section_content{ text-align: center; width: 400px; margin-right:50px; } .step__section{ max-width: 1400px; display: flex; align-items: center; margin:10px auto; background: #FAFAFA; justify-content: space-between; padding:40px 0 40px 40px; } .explanation{ font-size: 1.1rem; color: #000; padding-left: 40px; } .bigStep_img{ background: url(../../assets/images/lesson_6/ios_large.jpg) no-repeat left; width:500px; height: 400px; background-size: 600px 400px; align-self: flex-end; } .twoBlocks{ max-width: 1199px; width:100%; margin:0 auto; display: flex; justify-content: space-between; margin-bottom: 10px; padding:0 10px; } .accesoires{ width: 49%; height: 520px; text-align: center; background: #FAFAFA ; padding-top: 30px; position: relative; overflow: hidden; } .text{ position: absolute; top:0; left:0; z-index: 1; text-align: center; width: 100%; padding: 50px 50px; } .text h3{ font-size: 2.2rem; } .text h4{ font-size: 1.4rem; } .accesoires img{ position: absolute; max-width: 660px ; height: 500px; left: 0; top: 170px; z-index: 0; width:100%; } .accesoires .picTwo{ top:100px; } .bigPicture{ background:url(../../assets/images/lesson_6/howtoshoot_large_2x.jpg)no-repeat center center; min-height: 100vh; background-size: 1400px 800px; display: flex; align-items: center; justify-content: center; text-align: center; margin-bottom: 10px; } .compareHeader{ color: #fff; font-size: 3.5rem; } .twoBlocks{ padding:0 10px; } .twoBlocks__block .text{ padding:20px 0 0 0; } .twoBlocks__block{ position: relative; max-width: 600px; width: 49%; height: 640px; text-align: center; background: #FAFAFA ; padding-top: 50px; position: relative; overflow: hidden; } .applePay{ position: absolute; left:0; top: 360px; max-width: 660px; width: 100%; } .icloud{ position: absolute; left:15px; top: 370px; max-width: 624px; width: 100%; } .footer{ max-width: 1400px; background:#F2F2F2; height: 200px; padding-top: 5px; } .footer p{ color: #9B9B9B; font-size: 0.9rem; } .footer__link{ color:#555555; padding-right: 20px; padding-left: 15px; border-right: 1px solid #D6D6D6; font-weight: 100; } .footer__link:first-child{ padding-left: 0; } .footer__link:hover{ text-decoration:underline; } }
0.332852
0.031321
.txt-block{ p{ margin-bottom: 10px; font-size: 16px; } } .txt{ padding:30px 0 50px 0; color: #777; font-size: 16px; min-width: $wrapper-width; h1{ position: relative; color: #25383B; font-weight: bold; font-size: 20px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 25px; &:after { content: ''; display: block; position: absolute; background-color: $gold; bottom: -7px; left: 0; width: 25px; height: 2px; } } h2{ position: relative; color: $gold; font-size: 18px; letter-spacing: 0.1em; font-weight: bold; margin-bottom: 20px; &:after { content: ''; display: block; position: absolute; background-color: $gold; bottom: -7px; left: 0; width: 25px; height: 2px; } } a{ text-decoration: none; color: $dark-sky-blue; transition:color 0.5s; &:hover{ color: $green; } } p{ color: #777; font-size: 16px; font-weight: normal; margin-bottom: 10px; line-height: 25px; text-align: justify; } ul{ list-style: none; padding-left: 0; margin-bottom: 20px; li:before{ content: ""; display: inline-block; vertical-align: middle; width: 5px; height: 5px; background-color: $gold; border: 1px solid $gold; margin-right: 10px; transform: rotate(45deg); } } ol{ } } .link-list{ padding: 70px 0; &__title{ font-size: 36px; font-weight: bold; line-height: 1.17; letter-spacing: 0.8px; color: $greyish-brown; } &__sub-title{ font-size: 24px; font-weight: normal; line-height: 1.75; letter-spacing: 0.5px; color: $greyish-brown; margin-bottom: 50px; } &__img{ img{ width: 100%; } } .left-list{ margin-left: 20px; } ol{ margin: 0; padding: 0; li{ margin-bottom: 20px; font-size: 18px; font-weight: normal; a{ line-height: 1.17; color: $greyish-brown; transition: color 0.5s; &:hover{ color:$dark-sky-blue; } } } } } .see-more{ padding: 40px 0; &__title{ @mixin title; } ul{ margin: 0; padding: 0; font-size: 0; li{ display: inline-block; vertical-align: middle; width: 33%; margin-bottom: 7px; a{ text-decoration: none; color: $greyish-brown; font-size: 15px; transition:color 0.5s; &:hover{ color: $dark-sky-blue; } } } } &--2{ ul{ li{ width: 50%; } } } } .four-o-four{ padding: 50px 0; p{ margin: 0; font-size: 17px; color: #000; } }
generators/app/templates/src/css/modules/components/txt.css
.txt-block{ p{ margin-bottom: 10px; font-size: 16px; } } .txt{ padding:30px 0 50px 0; color: #777; font-size: 16px; min-width: $wrapper-width; h1{ position: relative; color: #25383B; font-weight: bold; font-size: 20px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 25px; &:after { content: ''; display: block; position: absolute; background-color: $gold; bottom: -7px; left: 0; width: 25px; height: 2px; } } h2{ position: relative; color: $gold; font-size: 18px; letter-spacing: 0.1em; font-weight: bold; margin-bottom: 20px; &:after { content: ''; display: block; position: absolute; background-color: $gold; bottom: -7px; left: 0; width: 25px; height: 2px; } } a{ text-decoration: none; color: $dark-sky-blue; transition:color 0.5s; &:hover{ color: $green; } } p{ color: #777; font-size: 16px; font-weight: normal; margin-bottom: 10px; line-height: 25px; text-align: justify; } ul{ list-style: none; padding-left: 0; margin-bottom: 20px; li:before{ content: ""; display: inline-block; vertical-align: middle; width: 5px; height: 5px; background-color: $gold; border: 1px solid $gold; margin-right: 10px; transform: rotate(45deg); } } ol{ } } .link-list{ padding: 70px 0; &__title{ font-size: 36px; font-weight: bold; line-height: 1.17; letter-spacing: 0.8px; color: $greyish-brown; } &__sub-title{ font-size: 24px; font-weight: normal; line-height: 1.75; letter-spacing: 0.5px; color: $greyish-brown; margin-bottom: 50px; } &__img{ img{ width: 100%; } } .left-list{ margin-left: 20px; } ol{ margin: 0; padding: 0; li{ margin-bottom: 20px; font-size: 18px; font-weight: normal; a{ line-height: 1.17; color: $greyish-brown; transition: color 0.5s; &:hover{ color:$dark-sky-blue; } } } } } .see-more{ padding: 40px 0; &__title{ @mixin title; } ul{ margin: 0; padding: 0; font-size: 0; li{ display: inline-block; vertical-align: middle; width: 33%; margin-bottom: 7px; a{ text-decoration: none; color: $greyish-brown; font-size: 15px; transition:color 0.5s; &:hover{ color: $dark-sky-blue; } } } } &--2{ ul{ li{ width: 50%; } } } } .four-o-four{ padding: 50px 0; p{ margin: 0; font-size: 17px; color: #000; } }
0.374448
0.088741
blockquote p { font-size: inherit; font-weight: inherit; line-height: inherit; } /* readability: darken the alert colour for contrast with background */ .alert { color: rgb(0, 0, 0); } /* Container for page contents. */ .container { background-color: white; } .hero-unit { padding: 20px; } .navbar .container { background-color: inherit; } .navbar-inner { min-height: 40px; padding-right: 20px; padding-left: 20px; background-color: #F4F4F4; background-image: none; border: 1px solid #d4d4d4; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; } code { color: #333333; } .navbar-inverse .navbar-inner { background-color: #20267D; background-image: none; border-color: #20267D; } .navbar-inverse .nav .active > a, .navbar-inverse .nav .active > a:hover, .navbar-inverse .nav .active > a:focus { color: #ffffff; background-color: #20267D; } .navbar-inverse .nav li.dropdown.open > .dropdown-toggle, .navbar-inverse .nav li.dropdown.active > .dropdown-toggle, .navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle { color: #ffffff; background-color: #20267D; } .navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret { border-top-color: #999999; border-bottom-color: #999999; } .navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret { border-top-color: #ffffff; border-bottom-color: #ffffff; } /* GitHub Ribbon */ #github-ribbon a { background: #000; color: #fff; text-decoration: none; font-family: arial, sans-serif; text-align: center; font-weight: bold; padding: 5px 40%; font-size: 0.8rem; line-height: 1.6rem; position: relative; transition: 0.5s; width: 100%; margin: 0 auto; white-space: nowrap; z-index: 10; } #github-ribbon a:hover { background: #600; color: #fff; } #github-ribbon a::before, #github-ribbon a::after { content: ""; width: 100%; display: block; position: absolute; top: 1px; left: 0; height: 1px; background: #fff; } #github-ribbon a::after { bottom: 1px; top: auto; } /* github ribbon breaking point */ @media screen and (min-width: 600px) { .navbar .btn-navbar { margin-right: 150px; } #github-ribbon { position: absolute; display: block; top: 0; right: 0; width: 150px; overflow: hidden; height: 150px; } #github-ribbon a { width: 200px; position: absolute; padding: 5px 40px; top: 40px; right: -80px; transform: rotate(45deg); -webkit-transform: rotate(45deg); box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8); } } @media (max-width: 599px) { .header h1 { font-size: 20pt; } #header-text { font-size: 16pt; } #github-ribbon { width: 100%; } #github-ribbon a { display: block; padding: 0px 0px; margin: 0px 0px; } }
css/swc-bootstrap.css
blockquote p { font-size: inherit; font-weight: inherit; line-height: inherit; } /* readability: darken the alert colour for contrast with background */ .alert { color: rgb(0, 0, 0); } /* Container for page contents. */ .container { background-color: white; } .hero-unit { padding: 20px; } .navbar .container { background-color: inherit; } .navbar-inner { min-height: 40px; padding-right: 20px; padding-left: 20px; background-color: #F4F4F4; background-image: none; border: 1px solid #d4d4d4; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; } code { color: #333333; } .navbar-inverse .navbar-inner { background-color: #20267D; background-image: none; border-color: #20267D; } .navbar-inverse .nav .active > a, .navbar-inverse .nav .active > a:hover, .navbar-inverse .nav .active > a:focus { color: #ffffff; background-color: #20267D; } .navbar-inverse .nav li.dropdown.open > .dropdown-toggle, .navbar-inverse .nav li.dropdown.active > .dropdown-toggle, .navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle { color: #ffffff; background-color: #20267D; } .navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret { border-top-color: #999999; border-bottom-color: #999999; } .navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret { border-top-color: #ffffff; border-bottom-color: #ffffff; } /* GitHub Ribbon */ #github-ribbon a { background: #000; color: #fff; text-decoration: none; font-family: arial, sans-serif; text-align: center; font-weight: bold; padding: 5px 40%; font-size: 0.8rem; line-height: 1.6rem; position: relative; transition: 0.5s; width: 100%; margin: 0 auto; white-space: nowrap; z-index: 10; } #github-ribbon a:hover { background: #600; color: #fff; } #github-ribbon a::before, #github-ribbon a::after { content: ""; width: 100%; display: block; position: absolute; top: 1px; left: 0; height: 1px; background: #fff; } #github-ribbon a::after { bottom: 1px; top: auto; } /* github ribbon breaking point */ @media screen and (min-width: 600px) { .navbar .btn-navbar { margin-right: 150px; } #github-ribbon { position: absolute; display: block; top: 0; right: 0; width: 150px; overflow: hidden; height: 150px; } #github-ribbon a { width: 200px; position: absolute; padding: 5px 40px; top: 40px; right: -80px; transform: rotate(45deg); -webkit-transform: rotate(45deg); box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8); } } @media (max-width: 599px) { .header h1 { font-size: 20pt; } #header-text { font-size: 16pt; } #github-ribbon { width: 100%; } #github-ribbon a { display: block; padding: 0px 0px; margin: 0px 0px; } }
0.443359
0.12544
@media screen and (max-width: 1200px) { .container { width: 90%; } #menu-big { display: none; } #menu{ display: block; background: rgba(51,51,51,0.9); width: 20rem; height: 100vh; position: fixed; flex-direction: column; padding-top: 5rem; left: 0; top: 0; transform: translateX(-20rem); z-index: 0; transition: transform .6s; } #menu li { padding: 1rem 0; } #menu li>a { color: #fff; } #menu-burger { display: none; } #menu-burger:checked ~ #menu { transform: translateX(0rem); } #menu>li>a:hover { color:red; } #burger { position: absolute; cursor: pointer; width: 2rem; height: 2rem; left: 1rem; top: 1.5rem; display: flex; justify-content: space-between; flex-direction: column; } #burger > div { height: 2px; background-color: #000; transition: 0.5s; z-index: 999; } #menu-burger:checked ~ #burger > div { background-color: #fff; } #menu-burger:checked ~ #burger > div:nth-child(1) { transform: translateY(15px) rotate(45deg); } #menu-burger:checked ~ #burger > div:nth-child(2) { opacity: 0; } #menu-burger:checked ~ #burger > div:nth-child(3) { transform: translateY(-15px) rotate(-45deg); } .contact-form { padding: 1.5rem; } .input-form { width: 95%; } footer { height: 100%; } .banner { font-size: 1.6rem; text-align: center; } } @media screen and (max-width: 768px) { .container { width: 90%; } footer{ /* height: 100%; */ flex-direction: column; } .slider img { height: 100%; width: auto; } .main-heading h1 { font-size: 2rem; } .main-heading h2, .button-main-heading { font-size: .75rem; } #about{ flex-direction: column; } .progress-bar { width: 100%; } .banner h2 { margin: 0 auto; } .services { flex-wrap: wrap; margin: 0; } .card { min-width: 30%; } #price{ flex-wrap: wrap; } .price-cards { min-width: 30%; } } @media screen and (max-width: 576px) { .main-heading h1 { font-size: 1.8rem; } .main-heading h2, .button-main-heading { font-size: .7rem; } .logo { margin-left:auto; } .social-navigation { margin: 0 1rem; } #mission, .services, #price{ flex-direction: column; } .input-form { width: 100%; } .input-form input { display: block; width: 100%; padding: .5rem; margin-bottom: 1rem; } .contact-form { padding: 1rem; } h2#about-us { text-align: center; } .contacts p { float: none; } .contacts p:nth-child(2) { margin-bottom: .6rem; } .privacy { font-size: .9rem; } }
css/menu-queries.css
@media screen and (max-width: 1200px) { .container { width: 90%; } #menu-big { display: none; } #menu{ display: block; background: rgba(51,51,51,0.9); width: 20rem; height: 100vh; position: fixed; flex-direction: column; padding-top: 5rem; left: 0; top: 0; transform: translateX(-20rem); z-index: 0; transition: transform .6s; } #menu li { padding: 1rem 0; } #menu li>a { color: #fff; } #menu-burger { display: none; } #menu-burger:checked ~ #menu { transform: translateX(0rem); } #menu>li>a:hover { color:red; } #burger { position: absolute; cursor: pointer; width: 2rem; height: 2rem; left: 1rem; top: 1.5rem; display: flex; justify-content: space-between; flex-direction: column; } #burger > div { height: 2px; background-color: #000; transition: 0.5s; z-index: 999; } #menu-burger:checked ~ #burger > div { background-color: #fff; } #menu-burger:checked ~ #burger > div:nth-child(1) { transform: translateY(15px) rotate(45deg); } #menu-burger:checked ~ #burger > div:nth-child(2) { opacity: 0; } #menu-burger:checked ~ #burger > div:nth-child(3) { transform: translateY(-15px) rotate(-45deg); } .contact-form { padding: 1.5rem; } .input-form { width: 95%; } footer { height: 100%; } .banner { font-size: 1.6rem; text-align: center; } } @media screen and (max-width: 768px) { .container { width: 90%; } footer{ /* height: 100%; */ flex-direction: column; } .slider img { height: 100%; width: auto; } .main-heading h1 { font-size: 2rem; } .main-heading h2, .button-main-heading { font-size: .75rem; } #about{ flex-direction: column; } .progress-bar { width: 100%; } .banner h2 { margin: 0 auto; } .services { flex-wrap: wrap; margin: 0; } .card { min-width: 30%; } #price{ flex-wrap: wrap; } .price-cards { min-width: 30%; } } @media screen and (max-width: 576px) { .main-heading h1 { font-size: 1.8rem; } .main-heading h2, .button-main-heading { font-size: .7rem; } .logo { margin-left:auto; } .social-navigation { margin: 0 1rem; } #mission, .services, #price{ flex-direction: column; } .input-form { width: 100%; } .input-form input { display: block; width: 100%; padding: .5rem; margin-bottom: 1rem; } .contact-form { padding: 1rem; } h2#about-us { text-align: center; } .contacts p { float: none; } .contacts p:nth-child(2) { margin-bottom: .6rem; } .privacy { font-size: .9rem; } }
0.40592
0.115361
* { margin: 0; } /* @media screen and (min-width: 700px){ */ body { /* background: linear-gradient(#565656, #bebebe); */ background-color: black !important; background-size: cover; margin: 0 auto; display: flex; flex-direction: column; content: center; align-items: center; width: 1200px; height: 115vh !important; } .cabecalho { background: url(../images/fundo1.jpg); background-size: cover; background-position: center; height: 250px; } .menu-navegacao { display: flex; justify-content: space-around; align-items: center; transform: translateY(65px); list-style: none; margin-right: 40px; } .menu-navegacao a { font-family: 'Times New Roman', Times, serif; color: #ffffff; text-decoration: none; font-weight: bold; font-size: 25px; } .menu-navegacao a:hover { color: white; background-color: #363636; border: 1px solid #363636; padding: 1px 2px; } .linkLogo a:hover { background-color: transparent; border: 0; padding: 0px 0px; } .logo { transform: translateY(10px); width: 230px; } .conteudo { /* background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.6)), url(../images/fundo3.jpg); */ background: linear-gradient(#565656, #bebebe); width: 1200px; /* background-size: cover; background-position: center; background-repeat: no-repeat; */ height: 130vh !important; } #slider { text-align: center; margin-top: 150px; } .lista-imagens { margin-top: 100px; list-style: none; padding: 0; display: flex; align-items: center; flex-wrap: wrap; } .causas { margin-top: 110px !important; text-align: center !important; font-family: 'Times New Roman', Times, serif !important; color: white !important; font-size: 50px !important; font-weight: bolder !important; /* text-shadow: 1px 0px 0px black, -1px 0px 0px black, 0px 1px 0px black, 0px -1px 0px black; */ } /* Página "área de atuação" */ .conteudo-atuacao { background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)), url(../images/fundo5.jpg); background-size: cover; background-position: center center; width: 1200px !important; height: 125vh !important; margin: auto auto; } h1 { margin-top: 85px !important; text-align: center !important; font-size: 60px !important; font-weight: bolder !important; color: white; font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif !important; /* text-shadow: 1px 0px 0px black, -1px 0px 0px black, 0px 1px 0px black, 0px -1px 0px black; */ } p { text-indent: 2.5em; } .descricao li { text-align: left; text-align: justify; list-style: none; font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; color: white; font-size: 30px; font-weight: bolder; padding: 5px; /* text-shadow: 1px 0px 0px black, -1px 0px 0px black, 0px 1px 0px black, 0px -1px 0px black; */ } #escritorio { margin-top: 50px; line-height: 1.5; } /* Página "quem somos */ .conteudo-quem-somos { background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)), url(../images/fundo4.jpg); background-size: cover; background-position: center center; width: 1200px !important; height: 143vh !important; } .sobre-escritorio { font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; color: white; font-size: 28px; font-weight: bolder; text-align: center; text-align: justify; padding: 25px; /* text-shadow: 2px 0px 0px black, -1px 0px 0px black, 0px 2px 0px black, 0px -1px 0px black; */ margin-top: 40px; margin: center center; } /* Página Contato*/ .conteudo-contato { background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)), url(../images/fundo2.jpg); background-size: cover; background-position: center center; width: 1200px !important; height: 190vh !important; } .contato { text-align: center !important; text-align: justify; list-style: none; font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; color: white; font-size: 25px; font-weight: bolder; padding: 10px !important; margin-top: 50px; } #mapa { align-items: center; margin-top: 100px; margin-right: 43px; text-align: center; list-style: none; } form { font-size: 16px; background: #ccc; max-width: 500px; margin-top: 250px; margin: 0 auto; padding: 0px 10px 10px 10px; } .formulario { margin-top: 80px; } .form { color: #1C1C1C; } input { width: 420px; padding: 10px; } .enviar input { background-color: DeepSkyBlue; height: 40px; width: 150px; font-weight: bold; border-radius: 5px; border: 1px solid; color: white; cursor: pointer; } .enviar input:hover{ background: LightSkyBlue; } textarea { line-height: 20px; } .rodape { text-align: center; margin-top: 20%; color: white; font-size: 19px; font-weight: bolder; border: 1px; background-color: grey; } /* } */
css/style.css
* { margin: 0; } /* @media screen and (min-width: 700px){ */ body { /* background: linear-gradient(#565656, #bebebe); */ background-color: black !important; background-size: cover; margin: 0 auto; display: flex; flex-direction: column; content: center; align-items: center; width: 1200px; height: 115vh !important; } .cabecalho { background: url(../images/fundo1.jpg); background-size: cover; background-position: center; height: 250px; } .menu-navegacao { display: flex; justify-content: space-around; align-items: center; transform: translateY(65px); list-style: none; margin-right: 40px; } .menu-navegacao a { font-family: 'Times New Roman', Times, serif; color: #ffffff; text-decoration: none; font-weight: bold; font-size: 25px; } .menu-navegacao a:hover { color: white; background-color: #363636; border: 1px solid #363636; padding: 1px 2px; } .linkLogo a:hover { background-color: transparent; border: 0; padding: 0px 0px; } .logo { transform: translateY(10px); width: 230px; } .conteudo { /* background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.6)), url(../images/fundo3.jpg); */ background: linear-gradient(#565656, #bebebe); width: 1200px; /* background-size: cover; background-position: center; background-repeat: no-repeat; */ height: 130vh !important; } #slider { text-align: center; margin-top: 150px; } .lista-imagens { margin-top: 100px; list-style: none; padding: 0; display: flex; align-items: center; flex-wrap: wrap; } .causas { margin-top: 110px !important; text-align: center !important; font-family: 'Times New Roman', Times, serif !important; color: white !important; font-size: 50px !important; font-weight: bolder !important; /* text-shadow: 1px 0px 0px black, -1px 0px 0px black, 0px 1px 0px black, 0px -1px 0px black; */ } /* Página "área de atuação" */ .conteudo-atuacao { background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)), url(../images/fundo5.jpg); background-size: cover; background-position: center center; width: 1200px !important; height: 125vh !important; margin: auto auto; } h1 { margin-top: 85px !important; text-align: center !important; font-size: 60px !important; font-weight: bolder !important; color: white; font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif !important; /* text-shadow: 1px 0px 0px black, -1px 0px 0px black, 0px 1px 0px black, 0px -1px 0px black; */ } p { text-indent: 2.5em; } .descricao li { text-align: left; text-align: justify; list-style: none; font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; color: white; font-size: 30px; font-weight: bolder; padding: 5px; /* text-shadow: 1px 0px 0px black, -1px 0px 0px black, 0px 1px 0px black, 0px -1px 0px black; */ } #escritorio { margin-top: 50px; line-height: 1.5; } /* Página "quem somos */ .conteudo-quem-somos { background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)), url(../images/fundo4.jpg); background-size: cover; background-position: center center; width: 1200px !important; height: 143vh !important; } .sobre-escritorio { font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; color: white; font-size: 28px; font-weight: bolder; text-align: center; text-align: justify; padding: 25px; /* text-shadow: 2px 0px 0px black, -1px 0px 0px black, 0px 2px 0px black, 0px -1px 0px black; */ margin-top: 40px; margin: center center; } /* Página Contato*/ .conteudo-contato { background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)), url(../images/fundo2.jpg); background-size: cover; background-position: center center; width: 1200px !important; height: 190vh !important; } .contato { text-align: center !important; text-align: justify; list-style: none; font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; color: white; font-size: 25px; font-weight: bolder; padding: 10px !important; margin-top: 50px; } #mapa { align-items: center; margin-top: 100px; margin-right: 43px; text-align: center; list-style: none; } form { font-size: 16px; background: #ccc; max-width: 500px; margin-top: 250px; margin: 0 auto; padding: 0px 10px 10px 10px; } .formulario { margin-top: 80px; } .form { color: #1C1C1C; } input { width: 420px; padding: 10px; } .enviar input { background-color: DeepSkyBlue; height: 40px; width: 150px; font-weight: bold; border-radius: 5px; border: 1px solid; color: white; cursor: pointer; } .enviar input:hover{ background: LightSkyBlue; } textarea { line-height: 20px; } .rodape { text-align: center; margin-top: 20%; color: white; font-size: 19px; font-weight: bolder; border: 1px; background-color: grey; } /* } */
0.279435
0.06489
* { margin: 0; padding: 0; outline: none; } dt { font-weight: normal; } body { -webkit-font-smoothing: antialiased; background: #FFF; font: normal 14px "Helvetica Neue", "HelveticaNeue", Helvetica, Arial, sans-serif; color: #444; overflow-y: scroll; } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { line-height: inherit; } .modal-dialog { margin-top: 60px; } .page-header { padding-bottom: 9px; margin: 10px 0 20px; border-bottom: 1px solid #eee } .breadcrumb { margin-bottom: 15px; list-style: none; background-color: transparent; padding: 5px 0 0 0; } .breadcrumb > li { display: inline-block; *display:inline; zoom:1; } .breadcrumb > li + li:before { padding: 0 5px; color: #ccc; content: "›" } .breadcrumb > .active { color: #999 } .btn { border-radius: 3px; } .btn-small, .btn-mini { padding: 5px 10px; font-size: 12px; } .btn-mini { padding: 3px 5px } .btn-white { background-color: #FFF; color: #737373; border-color: rgba(0,0,0,0.17); text-shadow: none; } .btn-gray { background-color: #f5f5f5; color: #333; border-color: #bcc1c8; text-shadow: none; } a.btn.btn-gray { color: #737373; } a.btn.btn-white { color: #737373; } .btn-white:hover, .btn-white:focus, .btn-white:active, .btn-white.active { background-color: #FAFAFA; border-color: rgba(20, 20, 20, 0.17); color: #737373; } .btn-gray:hover, .btn-gray:focus, .btn-gray:active, .btn-gray.active { background-color: #e0e3e8; border-color: rgba(20, 20, 20, 0.17); color: #737373; } .btn-white.disabled, .btn-white[disabled], fieldset[disabled] .btn-white, .btn-white.disabled:hover, .btn-white[disabled]:hover, fieldset[disabled] .btn-white:hover, .btn-white.disabled:focus, .btn-white[disabled]:focus, fieldset[disabled] .btn-white:focus, .btn-white.disabled:active, .btn-white[disabled]:active, fieldset[disabled] .btn-white:active, .btn-white.disabled.active, .btn-white[disabled].active, fieldset[disabled] .btn-white.active { background-color: #FAFAFA; border-color: rgba(20, 20, 20, 0.17); color: #737373; } .btn-yellow { background-color: #f3d078; color: #333; border-color: #cba957; text-shadow: none; } a.btn.btn-yellow { color: #333; } .btn-yellow:hover, .btn-yellow:focus, .btn-yellow:active, .btn-yellow.active { background-color: #f0c14b; border-color: #c59f43; color: #333; } .btn-yellow.disabled, .btn-yellow[disabled], fieldset[disabled] .btn-yellow, .btn-yellow.disabled:hover, .btn-yellow[disabled]:hover, fieldset[disabled] .btn-yellow:hover, .btn-yellow.disabled:focus, .btn-yellow[disabled]:focus, fieldset[disabled] .btn-yellow:focus, .btn-yellow.disabled:active, .btn-yellow[disabled]:active, fieldset[disabled] .btn-yellow:active, .btn-yellow.disabled.active, .btn-yellow[disabled].active, fieldset[disabled] .btn-yellow.active { background-color: #f0c14b; border-color: #c59f43; color: #333; } /*.btn-default { color: #fff; background-color: #474949; } .btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active { background-color: #3a3c3c; border-color: #2e2f2f; color: #fff; } .btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active { background-color: #fafafa; border-color: #474949 } */ .btn-radius { -webkit-border-radius: 2px; border-radius: 2px; } .btn-large { padding: 14px 14px; font-size: 18px; border-radius: 3px } .btn-primary { color: #ffffff; background-color: #e74c3c; border-color: #DF311F; } .btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { color: #ffffff; background-color: #EE4018; border-color: #DF311F; } .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { background-image: none; } .btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active { background-color: #eee; border-color: #aaa; color: #bebebe; } .btn-primary { color: #fff; background-color: #e74c3c; border-color: #DF311F; } .btn-primary:hover { background-color: #EE4018; border-color: #DF311F; } .btn-warning { color: #fff; background-color: #f0ad4e; border-color: #f0ad4e } .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active { background-color: #eea236; border-color: #ec971f } .btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active { background-color: #f0ad4e; border-color: #f0ad4e } .btn-danger { color: #fff; background-color: #e74c3c; } .btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active { background-color: #d43f3a; border-color: #c9302c } .btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active { background-color: #d9534f; border-color: #d9534f } .btn-success { color: #fff; background-color: #5cb85c; border-color: #5cb85c } .btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active { background-color: #4cae4c; border-color: #449d44 } .btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active { background-color: #5cb85c; border-color: #5cb85c } .btn-info { color: #fff; background-color: #5bc0de; border-color: #5bc0de } .btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active { background-color: #46b8da; border-color: #31b0d5 } .btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active { background-color: #5bc0de; border-color: #5bc0de } .btn-link { font-weight: normal; color: #428bca; cursor: pointer; border-radius: 0 } .btn-link, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link { background-color: transparent; -webkit-box-shadow: none; box-shadow: none } .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { border-color: transparent } .btn-link:hover, .btn-link:focus { color: #2a6496; text-decoration: underline; background-color: transparent } .btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus { color: #333; text-decoration: none } .glyphicon.top2px { position: relative; top: 1px; } .category-sort, .category-filter { font-size: 13px; float: right !important; display: inline; } .category-sort .like-share { margin-top: -6px; } .category-sort .active, .category-filter .active { color: #f60; } .category-sort .glyphicon { margin-left: 5px; } h1.title { font-size: 15px; } .clear { clear: both !important } a, a:visited, a:active { color: #333; text-decoration: none; } a:hover { color: #f60; text-decoration: none; } a:focus, a:hover, a:active { outline: none; } a img { border: none; } img { border: none; } ol, ul { list-style: none outside none; } body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea/*, p*/, blockquote, th, td { margin: 0px; padding: 0px; } table { border-collapse: collapse; border-spacing: 0px; } tr { vertical-align: top; } fieldset, img { border: 0px; } abbr, acronym { border: 0px; } address, caption, cite, code, dfn, th, var { font-style: normal; font-weight: normal; } h1, h2, h3, h4, h5, h6 { font-size: 100%; font-weight: normal; } ol, ul { list-style: none; } caption, th { text-align: left; } q:before, q:after { content: ''; } .right { float: right; } .left { float: left; } input, select, textarea { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; outline: 0; } .wrap { width: auto; min-width: 990px; max-width: 1200px; margin: 0 auto; } .wrap.wrap-large { width: 90%; } .fixed-navbar { top: 0; position: fixed; width: 100%; z-index: 99998; box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 1px 0 0 rgba(0, 0, 0, 0.1); } .navbar-two { height: 30px; background-color: rgb(250, 250, 250); border-bottom: 1px solid rgba(0, 0, 0, 0.0980392); margin-bottom: 8px; color: #333; font-size: 10pt; } .navbar-two a { color: #333; } .navbar-two ul { margin-top: 7px; white-space: nowrap; } .navbar-two ul li { display: inline; margin-right: 15px; } .navbar-two li { margin-top: 6px; padding: 0 7px 7px 7px; } .navbar-two li:hover { border-bottom: 1px solid #f60; -webkit-transition: all 200ms ease-out; -o-transition: all 200ms ease-out; -moz-transition: all 200ms ease-out; } .nopad { padding: 0px !important; } .nomar { margin: 0px !important; } .nobg { background: none !important; } .mb10 { margin-bottom: 10px !important; } .mb20 { margin-bottom: 20px !important; } .mg60 { margin-top: 60px !important; } .mg45 { margin-top: 45px !important; } .mg15 { margin-top: 15px; } .mg10 { margin-top: 10px; } .mg5 { margin-top: 5px; } .mg20 { margin-top: 20px; } .mb15 { margin-bottom: 15px !important; } .mb5 { margin-bottom: 5px !important; } .mb40 { margin-bottom: 40px !important; } .mr10 { margin-right: 10px; } .co1 { color: #196d91; } .co2 { color: #b92c28; } /* TOP MENU */ .pA { background: #333; height: 45px; border-bottom: #000; } .menul { float: left; } .imenu > li { float: left; padding: 13px 8px 0; height: 64px; text-align: center; white-space: nowrap; } .imenu > li:hover { background-color: #272727; } .imenu > li.logo { padding-top: 0; background-color: transparent; margin-left: -14px; } .imenu > li.logo > a { background-image: url("../images/logo-1.png?v=3"); background-repeat: no-repeat; background-size: 90px 35px; display: block; height: 45px; text-indent: -9999px; background-position: center; } .imenu > li > a { font-size: 14px; text-transform: uppercase; color: #FFF; font-weight: bold; } .logo { width: 110px; } .thoitrang { background-position: -103px 0; width: 100px; } .giaydep { background-position: -201px 0; width: 85px; } .phukien { background-position: -282px 0; width: 90px; } .imenu > li:hover .submenu { display: block; } .submenu { background-color: #FFFFFF; border-color: #BE5A7B; border-style: none solid solid; border-width: 0 1px 3px; position: absolute; width: 400px; z-index: 9999; display: none; top: 45px; margin-left: -9px; } .submenu ul { float: left; font-size: 12px; padding: 10px; width: 180px; } .submenu .head { background: none repeat scroll 0 0 #3491BA; border-radius: 5px 5px 5px 5px; font-weight: bold; margin: 0 0 5px; padding: 5px 0; text-align: center; text-transform: uppercase; } .submenu .head.gender { color: #FFF; } .submenu .head a { color: #FFF; } .submenu .parent { background: url("../images/list.jpg") no-repeat scroll 3px 7px transparent; border-left: 0 none; margin-left: 5px; padding-left: 10px; } .submenu li { /*border-left:1px solid #EBF0F4;margin-left:20px;*/ padding: 2px 5px; } .submenu .snu .head { background: none repeat scroll 0 0 #EF7977; } .menur { float: right; } .listloadmore { text-align: center } .menur .location { background: url("../images/location.jpg") no-repeat scroll 0 0 transparent; float: left; height: 32px; overflow: hidden; width: 100px; margin-top: 5px; } .menur .location select { background: transparent; border: 0 none; color: #FFF; font-size: 12px; padding: 9px 5px; width: 103px; -webkit-appearance: none; } .menur .search { float: left; height: 32px; overflow: hidden; width: 300px; margin-top: 5px; margin-left: 10px; margin-right: 10px; border: 1px solid #585858; -webkit-border-radius: 20px; padding: 0 4px 0 10px; -moz-border-radius: 20px; } .menur .search:hover { border-color: #C0C0C0 !important; } .menur .search input { background: none repeat scroll 0 0 transparent; border: medium none; color: #FFF; } .btn-follow { padding: 5px !important; line-height: 10px !important; color: #fff !important; } .menur .search .btnsearch { color: #FFF; font-size: 12pt; cursor: pointer; line-height: 1; top: 4px; position: relative; } .menur .search .btnsearch:hover { color: #f60; } .menur .search form { font-size: 11px; line-height: 33px; padding-left: 5px; } .searchinputcontainer { width: 253px; top: 1px; position: relative; font-size: 12px; } .searchinputcontainer::-webkit-input-placeholder { color: #999; } .searchinputcontainer:-moz-placeholder { color: #999; } .searchinputcontainer:-ms-input-placeholder { /* IE10+*/ color: #999; } .searchbuttoncontainer { height: 20px; text-indent: -999px; width: 20px; cursor: pointer; } .select-search { position: relative; } .menur .open-shop { float: left; line-height: 44px; padding: 0 10px; } .menur .open-shop a { color: #F0F0F0; } .menur .open-shop > a > span { vertical-align: middle; } .menur .user { float: left; padding: 6px 9px 0 21px; height: 38px; } .menur .user a { display: block; float: left; } .ucp a:hover { color: #000 !important; } .menur .user a:hover, .menur .user a:visited, .menur .user a:active { color: #F0F0F0; } .btn-login { /*color: !important;*/ } .menur .user .ava > img { border-radius: 100% 100% 100% 100%; height: 30px; } .mes, .noti { background: url("../images/fb.png") no-repeat scroll 0 0 transparent; height: 23px; margin-top: 5px; overflow: hidden; text-indent: -999px; width: 23px; } .noti { background-position: -27px 0; } .noti:hover { background-position: -27px -27px; } .mes:hover { background-position: 0px -27px; } .usHover:hover .ucp { display: block; } .usHover { float: left; position: relative; margin-right: 5px; height: 40px; } .ucp { background: none repeat scroll 0 0 #FFFFFF; border: 1px solid #CECECE; box-shadow: 0 0 9px #CECECE; left: 0; position: absolute; top: 25px; width: 70px; z-index: 999; display: none; } .ucp > li { border-bottom: 1px dashed #CECECE; font-size: 11px; height: 15px; line-height: 15px; margin: 5px 5px 0; padding-bottom: 5px; } .ucp > li:last-child { border-bottom: none; } .pS .hS { border-bottom: 2px solid #2C3E50; height: 33px; overflow: hidden; } .pS .hS .head li { float: left; line-height: 32px; margin: 0 10px; } .pS .hS .head .xuhuong, .pS .hS .head .moinhat, .pS .hS .head .timkiem { margin-right: 0; font-weight: bold; } .pS .hS .head .moinhat > a, .pS .hS .head .moinhat { color: #333 !important; font-size: 17px; line-height: 32px; margin-right: 10px; } .pS .hS .head .timkiem { background: none repeat scroll 0 0 #146D93; text-align: center; width: 230px; } .pS .hS .head .xuhuong a, .pS .hS .head .moinhat, .pS .hS .head .timkiem a { color: #FFF; text-transform: uppercase; } .pS .hS span.more { float: right; margin-right: 10px; line-height: 31px; } .pS .hS span.more > a > i { font-size: 11px; } .pS .hS span.more > a > i { top: 0; } .mc1 { float: left; width: 250px; } .mc2 { float: left; width: 750px; } .pS .mS .search { height: auto !important; } .pS .mS .none { padding: 10px; } .pS .mS .search .searchbox { background: url("../images/searchbox.jpg") no-repeat scroll 0 0 transparent; height: 34px; margin: 10px auto; width: 219px; } .pS .mS .search .searchinputcontainer { background: none repeat scroll 0 0 transparent; border: 0 none; height: 34px; padding-left: 10px; width: 177px; } .pS .mS .search .searchbuttoncontainer { background: none repeat scroll 0 0 transparent; border: 0 none; } .pS .mS .search .bs_row { height: 22px; margin-bottom: 10px; overflow: hidden; padding: 0 10px; font-size: 11px; } .pS .mS .search .bs_row select, .pS .mS .search .bs_row input { border: 1px solid #E4E4E4; float: right; height: 22px; padding: 2px; width: 131px; font-size: 11px; } .pS .mS .search .bs_row input { height: 16px; width: 125px; } .pS .mS .search .bnt-cover-now { background: url(../images/btn-min.jpg) no-repeat; width: 98px; height: 28px; display: block; margin: 0 auto; margin-bottom: 10px; text-align: center; line-height: 28px; color: #FFF; } .pS .mS .item { background: none repeat scroll 0 0 #FFFFFF; height: 350px; margin: 10px; overflow: hidden; width: 270px; position: absolute; border: 1px solid #FFF; } .pS .mS .item.vip { background: #fff8e7; border: 1px solid #f60; } .mS .product-item { float: left; width: 25%; min-height: 380px; } .mS .product-item .time-ago { font-size: 8pt; width: 130px; position: absolute; right: 10px; margin-top: 16px; color: #666; text-align: right; } .mS .product-item.shop-item { width: 33%; } .pS .mS .item a { display: block; cursor: pointer; position: relative; color: #666; } .pS .mS .item .shop-name a { display: inline; } .pS .mS .item .vip-icon { margin-right: 3px; } .pS .mS .item a:hover { color: #F60; } .pS .mS .item img { width: 100%; height: 270px; } .pS .mS .item h2 { height: 18px; line-height: 18px; overflow: hidden; text-align: center; position: relative; margin-bottom: 2px; margin-top: 5px; padding: 0 10px; } .pS .mS .item p { color: #f60; font-weight: bold; overflow: hidden; text-align: center; position: relative; } .pS .mS .item .cover { background: none repeat scroll 0 0 rgba(0, 0, 0, 0.7); height: 230px; left: 0; position: absolute; top: 0; width: 230px; display: none; } .pS .mS .item .cover .info { background: url("../images/info.png") repeat scroll 0 0 transparent; height: 30px; overflow: hidden; width: 230px; } .pS .mS .item .cover .info .location { color: #FFF; line-height: 26px; margin-left: 21px; float: left; } .pS .mS .item .cover .info .shop { color: #FFF; float: right; line-height: 26px; margin-right: 10px; } .pS .mS .item .cover .info a { color: #FFF; text-transform: uppercase; } .pS .mS .item .cover div.btn { margin-top: 38px; } .pS .mS .item .cover .btn { display: block; margin: 26px 28px 0; width: 70px; } .pS .mS .item .cover .xem { background: url("../images/btn.png") repeat scroll 0 -5px transparent; display: block; float: left; height: 56px; width: 142px; } .pS .mS .item .cover .wili { background: url("../images/btn.png") repeat scroll 0 -64px transparent; display: block; float: left; height: 63px; width: 142px; } .pS .mS .item:hover { border: 1px solid #ccc; height: 360px; box-shadow: 2px 2px 4px rgba(0, 0, 0, .13); overflow: visible; z-index: 10; } .pS .mS .item:hover .cover { display: block; cursor: pointer; } .pS .mS .item2 { background: none repeat scroll 0 0 #FFFFFF; box-shadow: 0 0 9px #F0F0F0; height: 340px; margin: 10px; overflow: hidden; width: 230px; position: relative; float: left; } .pS .mS .item2 .bigthumb { height: 210px; width: 210px; display: block; margin: 10px; } .pS .mS .item2 .bigthumb img { height: 210px; width: 210px; } .smallthumb > img { height: 60px; width: 60px; } .collection-thumb-list { text-align: center; } .pS .mS .item2 h2 { height: 40px; line-height: 40px; overflow: hidden; text-align: center; position: relative; font-size: 10px; } .pS .mS .item2 h2 a { color: #3391B9; font-weight: bold; font-size: 14px; text-transform: capitalize; } .pS .mS .item2:hover { box-shadow: 0 0 3px #666666; } .pS .mS .item2 .cover { background: none repeat scroll 0 0 rgba(0, 0, 0, 0.7); height: 210px; left: 0; margin: 10px 0 0 10px; position: absolute; top: 0; width: 210px; display: none; } .pS .mS .item2 .cover .info { background: url("../images/info.png") repeat scroll 0 0 transparent; height: 30px; overflow: hidden; width: 210px; } .pS .mS .item2 .cover .info .location { color: #FFF; line-height: 26px; margin-left: 21px; float: left; } .pS .mS .item2 .cover .info .shop { color: #FFF; float: right; line-height: 26px; margin-right: 10px; } .pS .mS .item2 .cover .info a { color: #FFF; text-transform: uppercase; } .pS .mS .item2 .cover div.btn { margin-top: 38px; } .pS .mS .item2 .cover .btn { display: block; margin: 4px 23px 0; width: 70px; } .pS .mS .item2 .cover .xem { background: url("../images/btn.png") repeat scroll 0 -5px transparent; display: block; float: left; height: 56px; width: 142px; } .pS .mS .item2 .cover .wili { background: url("../images/btn.png") repeat scroll 0 -64px transparent; display: block; float: left; height: 63px; width: 142px; } .pS .mS .item2 .bigthumb:hover .cover { display: block; } .item.category .head { border-bottom: 2px solid #3391B9; height: 30px; margin: 10px 10px 0; } .item.category .head li { background-color: #EBF0F4; float: left; height: 30px; line-height: 30px; margin-right: 2px; padding: 0 5px; } .item.category .head li:hover, .item.category .head li.active { background: #3391B9; } .item.category .head li.active > a { color: #FFF !important; } .head li a { color: #333; } .head li a:hover { color: #f60; } .item.category { height: auto !important; } .item.category .head .home { background: url("../images/home.png") no-repeat scroll 3px 5px #3391B9; text-indent: -999px; width: 22px; } .item.category .head .home.notactive { background: url("../images/home.png") no-repeat scroll 3px 5px #EBF0F4; } .item.category .head .nam, .item.category .head .nu { text-align: center; width: 50px; } .item.category .head .nam a, .item.category .head .nu a { color: #333; } .item.category .head .nam:hover a, .item.category .head .nu:hover a { color: #FFF; } .item.category .cat { padding: 10px; } .namcat.category .cat li { background: url("../images/list.jpg") no-repeat scroll 4px 12px transparent; border-bottom: 1px solid #EBF0F4; font-size: 12px; height: 20px; line-height: 20px; margin-left: 20px; padding: 2px 5px 2px 10px; } .namcat.category .cat .parent { margin-left: 5px; } .pB { margin: 0 auto; width: auto; min-width: 990px; max-width: 1200px; } .shopava { padding: 5px 26px 0; position: relative; width: 168px; float: left; } .shopava .avatar { background: none repeat scroll 0 0 #FFFFFF; border-radius: 10px 10px 10px 10px; box-shadow: 0 0 9px #F0F0F0; height: 147px; padding: 10px; position: relative; width: 147px; } .shopava .avatar img { border-radius: 10px 10px 10px 10px; height: 147px; width: 147px; } .shopava .shoptic { background: url("../images/shop.png") no-repeat scroll 0 0 transparent; display: block; height: 45px; left: 0; position: absolute; top: 115px; width: 220px; } .uinfo { height: 178px; } .c1 { float: left; margin: 30px 20px 0 50px; overflow: hidden; width: 280px; } .cname > li { font-size: 12px; margin-bottom: 5px; } .name { font-size: 20px !important; font-weight: bold; margin-bottom: 10px; } .c2 { float: left; font-size: 12px; margin: 30px 0 0 10px; width: 140px; } .c2 li { margin-bottom: 5px; } .c2 span { float: right; } .c3 { float: left; margin-left: 50px; margin-top: 50px; width: 130px; } .c3 a.theodoi { background: url("../images/theodoi.jpg") no-repeat scroll 0 0 transparent; color: #FFF; display: block; font-weight: bold; height: 38px; line-height: 37px; text-align: center; text-transform: uppercase; width: 133px; } .c3 a.theodoi:hover { opacity: 0.9; filter: alpha(opacity=90); -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; -moz-opacity: 0.9; -khtml-opacity: 0.9; zoom: 1; } .c3 a.count { background: url("../images/theodoi.jpg") no-repeat scroll 0 -47px transparent; display: block; font-size: 13px; height: 42px; line-height: 49px; margin-top: 5px; text-align: center; width: 133px; } .uava { float: left; margin: 5px 20px 30px 30px; width: 168px; } .uava .avatar { background: none repeat scroll 0 0 #FFFFFF; border-radius: 140px 140px 140px 140px; box-shadow: 0 0 9px #F0F0F0; height: 147px; padding: 10px; position: relative; width: 147px; } .uava .avatar img { border-radius: 100px 100px 100px 100px; height: 147px; width: 147px; } /* .item2:hover .mask{display: block;}*/ .mask { background: none repeat scroll 0 0 rgba(0, 0, 0, 0.9); height: 100%; left: 0; position: fixed; top: 0; width: 100%; z-index: 999; } .addtudo { display: block; margin: 100px auto 0; width: 600px; } .addtudo .item { background: none repeat scroll 0 0 #FFFFFF; box-shadow: 0 0 9px #000000; float: left; height: 325px; margin-right: 10px; overflow: hidden; position: relative; width: 230px; } .addtudo .item img { height: 230px; display: block; margin: 5px auto; position: relative; } .addtudo .item h2 { height: 40px; line-height: 40px; overflow: hidden; text-align: center; position: relative; } .addtudo .item p { color: #146E93; font-weight: bold; height: 20px; line-height: 20px; overflow: hidden; text-align: center; position: relative; } .chontudo { background: none repeat scroll 0 0 #FFFFFF; display: block; float: left; width: 290px; } .chontudo .head { background: none repeat scroll 0 0 #3491BA; padding: 7px 0 0 5px; color: #FFF; height: 23px; } .chontudo li { height: 30px; line-height: 30px; padding: 0 20px; } .chontudo li:hover { background: none repeat scroll 0 0 #3491BA; color: #FFF; cursor: pointer; } .chontudo span { color: #FFF; float: right; font-size: 10px; } .chontudo li.selected { background-color: #146C92; color: #FFF; } .chontudo .add-closet-button { float: right; padding: 5px; } #closetlist { height: 200px; overflow-y: scroll; } .addnew { background: url("../images/addnew.jpg") no-repeat scroll 0 0 transparent; height: 40px; margin: 0 auto 5px; padding-left: 20px; width: 260px; } .addnew input { background: none repeat scroll 0 0 transparent; border: 0 none; float: left; height: 35px; width: 220px; } .addnew .searchbuttoncontainer { float: left; height: 40px; width: 30px; } .pN { height: 25px; line-height: 25px; } .pN li { background: url("../images/bredum.jpg") no-repeat scroll 0 -18px transparent; float: left; padding-left: 20px; } .pN li.home { background: url("../images/bredum.jpg") no-repeat scroll 0 2px transparent !important; } .pSP { margin: 0 auto; } .pSP .slide { float: left; margin: 0 60px; width: 400px; } .pSP .slide .bigimg { margin-bottom: 11px; position: relative; margin-left: 33px; } .pSP .bigimg { text-align: center; position: relative; border: 1px solid #E8E8E8; } .pSP .bigimg img { width: 100%; cursor: pointer; } .pSP .slide .bigimg .imgdetail { } .pSP .slide .bigimg div.desc { font-size: 13px; text-align: center; padding-top: 4px; font-style: italic; } .pSP .slide .navimg > li { float: left; height: 64px; margin: 0 5px; } .pSP .slide .navimg img { height: 65px; width: 65px; } .pSP .infosp { float: left; margin-left: 39px; width: 370px; } .pSP .infosp .option { margin-left: 55px; border: none; } .pSP .infosp div { border-bottom: 1px solid #F5F3F4; margin-bottom: 10px; padding-bottom: 10px; } .pSP .infosp div a { color: #3491ba; } .pSP .infosp h1 { font-size: 25px; } .pSP .infosp .local { background: url("../images/bredum.jpg") no-repeat scroll 0 -49px transparent; padding-left: 20px; } .pSP .infosp .fblike { float: right; margin-top: -45px; margin: -39px 0 0; border-bottom: none !important; } .pSP .infosp .fblike > div { border-bottom: none; } .pSP .infosp .price { height: 34px; text-align: center; } .pSP .infosp .price > p { font-size: 30px; } .pSP .infosp .price p.stockstatus { position: relative; font-size: 13px; left: 93px; top: -40px; } .pSP .infosp .price p.stockstatus .instock { color: #3491ba; } .pSP .infosp .price p.stockstatus .outstock { color: red; } .red { color: red; } .pSP .infosp .wili > p { margin: 0 110px 5px; width: 258px; } .pSP .infosp .btn_datmua { background: url("../images/bredum.jpg") repeat scroll 0 -191px transparent; display: block; height: 49px; margin: 0 auto; width: 171px; float: left; border: none; } .pSP .infosp .btn_wili { background: url("../images/bredum.jpg") repeat scroll 0 -254px transparent; display: block; height: 49px; margin: 0 auto; width: 171px; float: left; } .pSP .infosp .btn_wili:hover, .btn_datmua:hover { opacity: 0.9; filter: alpha(opacity=90); -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; -moz-opacity: 0.9; -khtml-opacity: 0.9; zoom: 1; } .pSP .infosp .count { background: url("../images/bredum.jpg") repeat scroll 0 -131px transparent; display: block; float: left; font-size: 15px; height: 49px; line-height: 46px; padding-left: 9px; width: 65px; text-align: center; } .pSP .infosp .loikhuyen { background: url("../images/bredum.jpg") no-repeat scroll 0 -77px transparent; height: 45px; line-height: 45px; padding-left: 56px; } .pSP .infosp .loikhuyen .rate { color: #146D93; font-weight: bold; } .pSPB { background: url('../images/que.jpg') no-repeat top center; padding-top: 30px; } .pSPB .p1 { float: left; width: 100%; } .pSPB .p1 .csbs li { border-bottom: 1px solid #F5F3F4; margin-bottom: 10px; padding-bottom: 10px; } .pSPB .p1 .head { border-bottom: 5px solid #EBF0F6; color: #3491BA; font-weight: bold; height: 15px; margin-bottom: 10px; padding-bottom: 5px; text-transform: uppercase; } .pSPB .chititetsp li { border-bottom: 1px solid #EBF0F4; margin-bottom: 5px; padding-bottom: 2px; } .pSPB .chititetsp span { display: block; float: left; font-weight: bold; width: 100px; } .pSPB .boxcomment p { margin-bottom: 10px; } .pSPB .boxcomment span { font-size: 13px; } .pSPB .boxcomment textarea { border: 1px solid #CACACA; height: 100px; width: 100%; resize: none; padding: 5px; } .pSPB .boxcomment input { margin: 0 5px; } .btn_send_comment:hover { background-color: #357ae8; background-image: -webkit-linear-gradient(top, #4d90fe, #357ae8); background-image: linear-gradient(top, #4d90fe, #357ae8); border: 1px solid #2f5bb7; border-bottom-color: #2f5bb7; } .btn_send_comment:active { background: #357ae8; -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3); border: 1px solid #2f5bb7; border-top: 1px solid #2f5bb7; } .btn_send_comment { -webkit-box-shadow: none; box-shadow: none; background-color: #4d90fe; background-image: -webkit-linear-gradient(top, #4d90fe, #4787ed); background-image: linear-gradient(top, #4d90fe, #4787ed); border: 1px solid #3079ed; color: #fff; -webkit-border-radius: 2px; border-radius: 2px; cursor: default; font-size: 11px; font-weight: bold; text-align: center; white-space: nowrap; margin-right: 16px; height: 27px; line-height: 27px; min-width: 54px; outline: 0; padding: 0 8px; } .pSPB .boxcomment .gui { float: right; } .ykien > li { margin-top: 20px; } .ykien .avatar { float: left; margin-right: 10px; width: 45px; } .ykien .avatar img { width: 45px; } .ykien .text { float: left; width: 490px; } .ykien .text > p { padding-bottom: 5px; } .ykien .time { color: #A3A3A3; font-size: 11px; } .ykien .noidung { text-align: justify; } .ykien .huuich { float: right; font-size: 11px; margin-right: 15px; width: 65px; } .ykien .huuich > a { border: 1px solid #888; border-radius: 3px 3px 3px 3px; color: #888; display: block; margin-top: 5px; padding: 3px; text-align: center; width: 60px; } .ykien .huuich > a:hover { border-color: #b2b2b2; color: #141414; } .thaoluan li { border-bottom: 1px solid #EBF0F6; clear: both; margin-top: 20px; padding-bottom: 10px; } .thaoluan li.none { border: none; } .thaoluan .avatar { float: left; margin-right: 10px; width: 45px; } .thaoluan .avatar img { width: 45px; } .thaoluan .text > a { font-weight: bold; } .thaoluan .text > span { color: #888; font-size: 11px; } .thaoluan .reply { background: url("../images/bredum.jpg") repeat scroll 0 -314px transparent; color: #888; float: right; font-size: 10px; padding-left: 26px; } .thaoluan .reply:hover { color: #3d3d3d; } .subcomment { margin-left: 57px; margin-top: 20px; } .subcomment > li { border-bottom: 1px solid #EBF0F6; margin-bottom: 5px; padding-bottom: 5px; font-size: 12px; } .subcomment img { float: left; margin-right: 7px; width: 35px; } .inputcomment { clear: both; height: 80px; } .inputcomment > textarea { border: 1px solid #CACACA; float: left; height: 50px; margin-right: 10px; width: 570px; resize: none; padding: 5px; } .inputcomment > input { float: left; height: 50px; width: 80px; } .p2 { box-shadow: 0 0 9px #F0F0F0; float: left; margin-left: 35px; padding: 10px; width: 222px; font-size: 12px; } .p2 > img { float: right; } .p2 > span { display: block; text-align: justify; width: 150px; } .p2 > p { margin-top: 10px; } .nenmua { background: url("../images/mua.jpg") no-repeat scroll -3px 0 transparent; color: #196D91; display: block; float: left; font-size: 18px; font-weight: bold; height: 55px; margin-left: 32px; padding-top: 23px; text-align: center; width: 78px; cursor: pointer; } .konenmua { background: url("../images/mua.jpg") no-repeat scroll -93px 0 transparent; color: #196D91; display: block; float: left; font-size: 18px; font-weight: bold; height: 55px; margin-left: 10px; padding-top: 23px; text-align: center; width: 78px; cursor: pointer; } #slider-code { float: left; height: 1%; overflow: hidden; margin-left: -80px; margin-top: 20px; } #slider-code .viewport { width: 70px; height: 357px; overflow: hidden; position: relative; } #slider-code .disable { visibility: hidden; } #slider-code .overview { list-style: none; position: absolute; width: 70px; left: 0 top : 0; } #slider-code .overview li { float: left; padding: 1px; height: 70px; width: 70px; } #slider-code .buttons { margin: 0 28px; } .addcloset-button { background-color: #B71E19 !important; border-color: #B82D2A !important; width: 214px; } .addcloset-button[disabled] { background-color: #428bca !important; border-color: #428bca !important; } .purchase-form { margin: 0 auto; } .purchase-form td { padding: 0 10px 0 10px; } .purchase-form label { margin-right: 5px; } .purchase-form input { width: 200px; float: right; margin-left: 6px; } .purchase-form select { margin-left: 6px; } .purchase-form tr { height: 40px; } .purchase-form label { font-weight: normal !important; } .purchase-form-modal { width: 800px; margin-left: -110px; } .new-message { margin-right: 15px; margin-top: -6px; } .new-message span { vertical-align: middle; padding-right: 4px; } .message-body { height: 180px; overflow-x: hidden; overflow-y: scroll \9; background-color: #f5f8fa; } .message-body > ul { padding: 10px; } .message-body > ul > li { margin-bottom: 10px; } .message-body .username { font-weight: bold; } .message-body .time { color: #bfbfbf; float: right; font-size: 11px; margin-top: 7px; } .message-list { max-height: 342px; overflow-y: auto; } .message-list li { cursor: pointer; position: relative; display: block; padding: 12px 15px; border-bottom: 1px solid #e8e8e8; } .message-list img { vertical-align: top; float: left; padding-right: 5px; } .message-list .name { font-size: 14px !important; } .message-list p { margin: 0; } .message-list .pull-right { margin-top: -25px; } .message-list li:hover { text-decoration: none; background-color: #f5f5f5; background-repeat: repeat-x; background-image: -moz-linear-gradient(top, #f9f9f9 0, #f5f5f5 100%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f9f9f9), color-stop(100%, #f5f5f5)); background-image: -webkit-linear-gradient(top, #f9f9f9 0, #f5f5f5 100%); background-image: -ms-linear-gradient(top, #f9f9f9 0, #f5f5f5 100%); background-image: -o-linear-gradient(top, #f9f9f9 0, #f5f5f5 100%); background-image: linear-gradient(top, #f9f9f9 0, #f5f5f5 100%); } .img32 { width: 32px; height: 32px; } .img26 { width: 26px; height: 26px; } .cm-reply .input-small { height: 26px; } .cm-reply .input-group { width: 600px; margin-left: 57px; } .cm-reply .btn-xs { height: 26px; } .sub-cm-list { margin-left: 57px; } .sub-cm-list .name { font-size: 13px !important; } .sub-cm-list .content { font-size: 12px; } .sub-cm-list li { border-bottom-color: #F0F4F8; margin: 0; padding: 0; margin-bottom: 5px; padding-bottom: 5px; } .sub-cm-list li:last-child { border-bottom: none; } .ui-autocomplete * { text-decoration: none; } .ui-autocomplete { position: fixed; margin-top: 28px; color: #428bca; width: 478px !important; z-index: 10000; padding: 8px 0; background-color: #fff; border: 1px solid #ccc; } .ui-autocomplete ul li { list-style-type: none; } .ui-autocomplete ul { margin: 0; padding: 0; } .ui-autocomplete ul:hover, .ui-state-focus { background-color: #0097cf; cursor: pointer; color: #FFF !important; text-decoration: none !important; } .ui-autocomplete li { height: 32px; padding: 4px 15px 4px 12px; margin-top: 5px; } .ui-autocomplete .picture { margin-right: 5px; float: left; } .ui-autocomplete .username { font-weight: bold; display: block; } .ui-autocomplete .address { display: block; } .ui-helper-hidden-accessible { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } .mention-user { color: #3b5998 !important; font-weight: normal !important; } .errornotfound { text-align: center; padding-top: 100px; } .paging { text-align: center; } .fbf { float: left; margin: 14px 7px 0 7px; } .fbfGridItem { height: 210px; position: relative; width: 236px; border-radius: 3px; box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33); background: #ffffff; } .fbfGridItem .userWrapper { display: block; padding: 10px; bottom: 0; left: 0; right: 0; top: 0; position: absolute; } .fbfGridItem .username { -webkit-font-smoothing: antialiased; white-space: nowrap; overflow: hidden; -ms-text-overflow: ellipsis; text-overflow: ellipsis; color: #555555; display: block; font-size: 14px; font-weight: bold; height: 18px; margin: 0 3px 6px; position: relative; color: #333333; margin-bottom: 0; } .fbfGridItem .userStats { color: #777777; line-height: 14px; margin: 2px 0 10px 3px; } .fbfGridItem .userThumbs { overflow: hidden; } .fbfGridItem .userThumbs { margin-bottom: 7px; } .fbfGridItem .focusThumbContainer { margin-right: 3px; } .fbfGridItem .focusThumbContainer { position: relative; background: #eeeeee; height: 106px; float: left; width: 106px; } .fbfGridItem .focusThumbContainer:after { border-radius: 3px; box-shadow: 0 0 3px rgba(0, 0, 0, 0.33) inset; content: " "; height: 106px; left: 0; position: absolute; top: 0; width: 106px; } .fbfGridItem .focusThumbContainer img { border-radius: 3px; height: 106px; width: 106px; } .fbfGridItem .userFocusImage { display: block; height: 106px; width: 106px; float: left; margin: 0 3px 3px 0; } .fbfGridItem .hoverMask { border-radius: 3px; box-shadow: 0 0 3px rgba(0, 0, 0, 0.33) inset; bottom: 0; left: 0; position: absolute; right: 0; top: 0; z-index: 100; } .fbfGridItem .thumbContainer img { border-radius: 3px; height: 51px; width: 51px; } .fbfGridItem .userPin { display: block; height: 51px; width: 51px; max-width: none; } .fbfGridItem .thumbContainer.rightWrap { margin-right: 0; } .fbfGridItem .thumbContainer { position: relative; background-color: #eeeeee; float: left; margin: 0 3px 3px 0; } .fbfGridItem .thumbContainer:after { border-radius: 3px; box-shadow: 0 0 3px rgba(0, 0, 0, 0.33) inset; content: " "; height: 51px; left: 0; position: absolute; top: 0; width: 51px; } .fbfGridItem button { bottom: 10px; display: block; left: 10px; position: absolute; width: 216px; border-radius: 3px; } .cart-nav { margin-top: 3px; background-color: #FFF; padding: 4px 5px 3px; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .cart-nav > i { font-size: 16px; vertical-align: middle; } /*a.btn { color: #FFF; }*/ .cart-dialog { width: 800px !important; } .cart-count { font-weight: bold; } .cart-subtotal { width: 250px; margin: 10px 0 0 508px; text-align: right; } .cart-productlist { margin-top: 10px; border: 2px solid #ddd; max-height: 350px; overflow-y: auto; } .cart-total-text { text-align: right; } .cart-total-noboder { border: none !important; } .cart-total-money { font-weight: bold; } .text-center { text-align: center !important; } .cart-dialog .modal-body { padding-bottom: 0; } .addshopform { margin: 0 auto; width: 500px; } .addshopform input { } .addshopform .citydistrict { margin-top: 5px; } .addshopform select.form-control { width: 133px; display: inline; } .addshopform .province { width: 700px; } .addshopform .province input { width: 12px; } .addshopform .province .item { float: left; padding-right: 20px; width: 140px; } .add-product { margin: 0 auto; } .add-product .price-with-quantity table { margin-top: 15px; } .add-product .price-with-quantity .quantity-input { width: 150px; } .add-product .price-with-quantity .quantity-price { width: 200px; } .add-product .price-with-quantity label { width: 25px; } .add-product .select-category { margin-bottom: 10px; font-weight: bold; } .add-product .select-category .note { font-size: 9pt; font-weight: normal; margin: 0; } .add-product .product-name label.error { margin-left: 126px; } .add-product .categorylist label.error { vertical-align: top; } .add-product .categorylist label.valid { display: none !important; } .add-product .note { font-size: 9pt; margin-left: 133px; margin-top: 5px; } .add-product textarea { } .add-product label.top { vertical-align: top; } .add-product .form-group { margin-bottom: 10px; border-bottom: 1px solid #eee; padding: 5px 0 15px; } .add-product .form-group.error .form-control { border-color: rgba(236, 82, 82, 0.8); outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(236, 82, 82, 0.6); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(236, 82, 82, 0.6); } .add-product label { width: 130px; font-weight: normal; } .add-product .submit-input { border: none; } .add-product-page .col-sm-7 { border: 1px solid #eee; margin-left: 15px; padding-top: 20px; } .add-product-page .col-sm-4 { width: 34%; } .add-product input { width: 400px; display: inline; border-radius: 5px; } .add-product .image-list { display: inline-block; } .add-product .image-list li { margin-top: 6px !important; height: 100px; } .add-product .image-list li img { width: 100px; float: left; } .add-product .image-description { float: left; margin-left: 4px; font-size: 8pt; } .add-product .image-description .feature-image { width: 13px; } .add-product .image-description .form-control { width: 296px; height: 83px; resize: none; } .add-product .image-list .glyphicon-plus-sign { font-size: 2em; color: #ccc; } .add-product .image-list .glyphicon-plus-sign:hover { font-size: 2em; color: #3391b9; cursor: pointer; } .add-product .price { width: 143px; } .add-product .uploadbyurl .form-control { width: 334px;; } .add-product .category { display: inline-block; } .add-product .category .choosecategory { padding-right: 5px; } .add-product .category .category-list { margin-top: 10px; } .add-product .category .category-list h2 { font-weight: bold; } .add-product .category .category-list .gender { margin-right: 50px; float: left; } .add-product .category .category-list input { width: 12px; } .add-product .categorylist { float: left; margin-right: 5px; } .add-product .categorylist select { min-width: 150px; max-width: 300px; font-size: 14px; padding: 4px; border-radius: 5px; border: 1px solid #ccc; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; } .add-product .submit { margin-top: 10px; text-align: center; } .add-product .submit input { width: 160px; } .add-retail { width: 500px; margin: 0 auto; } .add-retail .add-more { line-height: 30px; vertical-align: middle; } .add-retail .more-area > input, .add-retail .more-area > div { margin-top: 10px; } .add-retail .extra { margin-top: 10px; } .register-form { width: 1000px; margin: 0 auto; } .register-form .form-group { margin-left: 10px; } .register-form .basicinfo { float: left; width: 380px; } .register-form input[type=text], .register-form input[type=password] { width: 450px; } .register-form .basicinfo input[type=text], .register-form .basicinfo input[type=password] { width: 300px; } .register-form .basicinfo input[type=password] { padding: 0 12px; } .register-form .addshopform { float: left; width: 540px; margin-left: 80px; } .register.choose_type { margin: 0 auto; width: 300px; text-align: center; margin-top: 30px; } .register .btn { width: 200px; margin-bottom: 5px; display: block; } .admin_product { height: 40px; } .fileinput-button { position: relative; overflow: hidden; border-radius: 5px; } .fileinput-button input { position: absolute; top: 0; right: 0; margin: 0; opacity: 0; -ms-filter: 'alpha(opacity=0)'; font-size: 200px; direction: ltr; cursor: pointer; } .fileinput-button2 { position: relative; overflow: hidden; } .fileinput-button2 input { position: absolute; top: 0; right: 0; margin: 0; opacity: 0; -ms-filter: 'alpha(opacity=0)'; font-size: 200px; direction: ltr; cursor: pointer; } .home-header { width: auto; min-width: 990px; max-width: 1200px; margin: 0 auto; margin-bottom: 20px; } .homecategory { float: left; width: 190px; } .rightside { margin-left: 195px; } .homecategory .header { height: 40px; background-color: #333; color: #FFF; } .homecategory .header h2 { font-size: 15px; font-weight: bold; line-height: 40px; text-indent: 6px; text-transform: uppercase; } .categorylist .catitem { line-height: 42px; text-indent: 10px; background: #ededed; border-bottom: 1px solid rgba(216, 216, 216, 0.26); border-left: 1px solid rgba(216, 216, 216, 0.26); -webkit-transition: all 200ms ease-out; -o-transition: all 200ms ease-out; -moz-transition: all 200ms ease-out; } .categorylist .catitem:hover { background-color: #d8d8d8; } .categorylist .catitem > a { width: 100px; overflow: hidden; display: block; text-align: left; } .categorylist .catitem:after { content: ''; position: absolute; margin: -23px 0 0 175px; width: 5px; height: 5px; background: url("../images/sprite.png") no-repeat 0px -33px; } .categorylist.innavbar .catitem:after { margin-left: 95px; margin-top: -23px; } .categorylist .catitem > a:hover { text-indent: 16px; cursor: pointer; } .sub-cate { position: absolute; display: none; top: 170px; margin-left: 189px; padding: 17px 10px 20px 20px; min-height: 334px; border: 3px solid #d8d8d8; box-shadow: 5px 5px 10px rgba(0, 0, 0, .3); font-size: 0; background: #fff; white-space: nowrap; z-index: 1000; } .sub-cate.index-no-login { top: 136px; } .sub-cate dl { position: relative; z-index: 1000; display: inline-block; zoom: 1; vertical-align: top; padding-right: 5px; width: 200px; font-size: 12px; float: left; } .sub-cate a:hover { text-decoration: underline; color: #f60; } .sub-cate a { color: #333; } .cate-list a { text-decoration: none; color: #333; } .sub-cate dt { font-weight: 700; font-size: 14px; margin-bottom: 5px; } .sub-cate dt a { color: #f60; } .sub-cate dd a { display: block; line-height: 26px; } .scp-banner { display: none; zoom: 1; width: 150px; } .sc-promotion { padding-top: 21px; display: none; } .category-menu li { text-align: left; } .category-menu { color: #FFF; cursor: default; } .category-menu i.glyphicon { margin-left: 5px; } .menur .notificationbar { padding: 3px; background-color: #f60; font-size: 10px; position: relative; margin-left: 4px; color: #fff; min-height: 13px; padding: 1px 3px; text-shadow: 0 -1px 0 rgba(0, 0, 0, .4); -webkit-border-radius: 2px; border-radius: 2px; } .navbar-category { margin-top: 15px; text-align: left; width: 100px; margin-left: -8px; } .navbar-category .catitem { width: 110px; border-bottom: 1px solid rgba(216, 216, 216, 0.26); } .navbar-shop-addproduct { float: left; padding-top: 8px; padding-right: 30px; height: 30px; color: #FFF; } .navbar-shop { float: left; padding-top: 8px; padding-right: 30px; height: 30px; } .navbar-shop-control { position: absolute; background-color: #FFF; padding: 3px 10px 10px; top: 45px; margin-left: -23px; width: 177px; font-size: 9pt; border-top: none; -moz-box-shadow: rgba(0, 0, 0, .5) 0 0 3px 0px; -webkit-box-shadow: rgba(0, 0, 0, .5) 0 0 3px 0px; box-shadow: rgba(0, 0, 0, .5) 0 0 3px 0px; -moz-border-radius: 0px 0px 2px 2px; -webkit-border-radius: 0px 0px 2px 2px; border-radius: 0px 0px 2px 2px; } .navbar-shop-control ul { margin-top: 8px; } .navbar-shop-control ul > li { padding-bottom: 22px; } .navbar-shop-control li i { width: 16px; display: inline-block; } .navbar-shop-control li a, .navbar-shop-control li a:hover { color: #333 !important; } .navbar-shop a { color: #F0F0F0 !important; } .navbar-shop a:hover, .navbar-shop-addproduct a:hover { color: #FFF !important; } .navbar-category li:after { margin: -19px 0 0 142px; } .navbar-category .sub-cate { top: 45px; margin-left: 108px; } .help-open-shop { word-spacing: -1px; font-size: 8pt; display: block; width: 100px; white-space: normal; margin-top: 4px; text-align: left; color: #FFF; margin-right: 10px; } .help-method-buy { word-spacing: -1px; font-size: 10pt; display: block; width: 65px; white-space: normal; text-align: left; color: #f60 !important; margin-right: 10px; } .jssort11 { font-family: Arial, Helvetica, sans-serif; } .jssort11 .i, .jssort11 .pav:hover .i { position: absolute; top: 3px; left: 3px; width: 60px; height: 30px; border: white 1px dashed; } .jssort11 .pav .i { border: white 1px solid; } .jssort11 .t, .jssort11 .pav:hover .t { position: absolute; top: 3px; left: 68px; width: 129px; height: 32px; line-height: 32px; text-align: left; color: #fc9835; font-size: 13px; font-weight: 700; } .jssort11 .pav .t, .jssort11 .phv .t, .jssort11 .p:hover .t { color: #fff; } .jssort11 .c, .jssort11 .pav:hover .c { position: absolute; top: 38px; left: 3px; width: 197px; height: 31px; line-height: 31px; color: #fff; font-size: 11px; font-weight: 400; overflow: hidden; } .jssort11 .pav .c, .jssort11 .phv .c, .jssort11 .p:hover .c { color: #fc9835; } .jssort11 .t, .jssort11 .c { transition: color 2s; -moz-transition: color 2s; -webkit-transition: color 2s; -o-transition: color 2s; } .jssort11 .p:hover .t, .jssort11 .phv .t, .jssort11 .pav:hover .t, .jssort11 .p:hover .c, .jssort11 .phv .c, .jssort11 .pav:hover .c { transition: none; -moz-transition: none; -webkit-transition: none; -o-transition: none; } .jssort11 .p { background: #181818; } .jssort11 .pav, .jssort11 .pdn { background: #462300; } .jssort11 .p:hover, .jssort11 .phv, .jssort11 .pav:hover { background: #333; } #slider1_container { position: relative; top: 0px; left: 190px; width: 810px; height: 300px; background: #191919; } .slider_loading { position: absolute; top: 0px; left: 0px; } .slider_loading .loading1 { filter: alpha(opacity=70); opacity: 0.7; position: absolute; display: block; background-color: #000000; top: 0px; left: 0px; width: 100%; height: 100%; } .slider_loading .loading2 { position: absolute; display: block; background: url(../images/loading_medium.gif) no-repeat center center; top: 0px; left: 0px; width: 100%; height: 100%; } .category-page { /*max-width:1240px !important;*/ } .leftside { width: 180px; float: left; } .mainside { margin-left: 200px; } #refine-category { margin-bottom: 10px; } #refine-category-list { border-right: 1px solid #ddd; border-bottom: 1px solid #ddd; padding-bottom: 20px; } #refine-category-list .category-list { border-bottom: 1px solid #ddd; } #refine-category-list .category-list { padding: 0 0 10px; } #refine-category-list dl { overflow: hidden; } #refine-category-list .cate-title { font-weight: 700; font-family: Arial; font-size: 16px; color: #333; padding-bottom: 0; padding-top: 0; } #refine-category-list dt { line-height: 20px; padding-top: 5px; color: #333; } #refine-category-list dd { line-height: 24px; margin-left: 0; } #refine-category-list .son-category { border-bottom: none; } #refine-category-list .son-category dt { background: none; } #refine-category-list .sn-parent-title { line-height: 16px; padding: 5px 10px 0 0; } #refine-category-list .son-category a { color: #333; } #refine-category-list .back-icon { width: 10px; display: inline-block; } #refine-category-list .son-category dd { padding-left: 10px; } .common-select span { font-size: 12px; color: #888; display: inline-block; } #refine-category-list li a { font-size: 12px; font-family: Arial; color: #333; } .breadcrumb { border-radius: 0; } .breadcrumbg { font-size: 12px; } .breadcrumbg h1 { font-size: 12px; display: inline; font-weight: bold; } .countresult { margin-left: 5px; display: inline-block; } .countresult .search-count { color: #f26522; font-weight: normal; } .category-filter { background-color: #eee; padding: 10px; height: 26px; } .category-filter div { display: inline; float: left; margin-right: 5px; } .category-filter .submit { background-color: #888; color: #fff; border: 1px solid #707070; } .category-filter .filter { float: right; margin-top: 5px; } .category-filter input { padding: 5px 4px; font-family: Arial; font-weight: 400; font-size: 12px; line-height: 14px; color: #333; background-color: #fff; border: 1px solid #ccc; -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); -webkit-transition: border linear .2s; -moz-transition: border linear .2s; -ms-transition: border linear .2s; -o-transition: border linear .2s; transition: border linear .2s; } .category-filter .price { width: 100px; } .category-filter label { font-weight: normal; } .category-page .itemlist { width: 800px; margin-top: 10px; overflow: hidden; } .category-page .item { width: 33% !important; margin: 0 !important; height: 320px !important; } .category-page .item .itemdetail { padding: 19px 19px !important; } .category-page .item h2 { line-height: 20px !important; height: auto !important; } .category-page .item p { margin-top: 10px; } .category-page .item:hover { -webkit-transition: box-shadow .25s linear, min-height .35s linear; transition: box-shadow .25s linear, min-height .35s linear; } .productdetail-page { margin-top: 10px; } .productdetail-page .product-desc { margin-top: 30px; } .productdetail-page .product-desc .product-desc-content { padding: 10px; overflow: hidden; } .productdetail-page .product-desc .product-desc-content p { line-height: 27px; } .productdetail-page .product-desc .product-desc-content li { list-style-type: disc; margin-left: 14px; } .productdetail-page .product-desc-expand { margin-left: 10px; } .productdetail-page .product-desc .product-desc-header { font-size: 16px; padding: 6px; border-bottom: 1px solid #eee; } .product-specifics { background: #fafafa; } .product-specifics .attribute { width: 100px; display: inline-block; color: #747474; } .product-specifics ul li { list-style-type: none !important; } .col-sub { width: 400px; margin-left: -100%; float: left; } .col-main { float: left; width: 100%; } .util-clearfix:after { visibility: hidden; display: block; height: 0; font-size: 0; content: '\0020'; clear: both; } .util-clearfix { zoom: 1; } .product-picture { } .ui-image-viewer-loading { position: absolute; top: 0; z-index: 2; } .ui-image-viewer-loading-mask { z-index: 1; background: #FFF; opacity: .4; filter: alpha(opacity=40); } .ui-image-viewer-loading-mask, .ui-image-viewer-loading-whirl { position: absolute; display: block; width: 100%; height: 100%; } .ui-image-viewer-loading-whirl { z-index: 2; background: url('../images/loading_medium.gif') 50% 50% no-repeat; } .product-picture > img { border: 1px solid #888; } .product-picture .tip { text-align: center; color: #888; font-size: 12px; line-height: 24px; font-style: italic; } .product-picture .pic-thumbnail { text-align: center; } .product-picture .pic-thumbnail .image-nav-item { margin: 0 2px 0 0; padding-top: 4px; width: 56px; height: 56px; cursor: pointer; overflow: hidden; display: inline-block; } .product-picture .pic-thumbnail .image-nav-item.current { background: url(../images/thumb_arrow.gif) no-repeat 22px 0; } .product-picture .pic-thumbnail .image-nav-item.current span { background: #FFF; border-color: #FCAB42; border-width: 2px; } .product-picture .pic-thumbnail .image-nav-item span { display: block; width: 52px; height: 52px; border: 1px solid #dedede; display: table-cell; vertical-align: middle; } .product-picture .pic-thumbnail .image-nav-item img { border: 1px solid transparent; max-width: 50px; max-height: 50px; } .product-info-wrap { float: left; width: 75%; margin-top: 10px; } .product-info-main { padding-top: 18px; border-top: 1px solid #ddd; } .product-info { margin-left: 420px; } .product-info .by-shop { border-bottom: 2px solid #f60; margin-right: 5px; max-width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: inline-block; position: relative; top: 5px; margin-top: -1px; } .product-info .product-title { font-size: 23px; color: #333; line-height: 28px; margin-bottom: 6px; } .product-info .price { padding-left: 15px; } .product-info .price-number { color: #F60; font-size: 22px; } .product-info dl { display: block; margin-bottom: 20px; } .product-info-current { line-height: 18px; } .product-info-current { margin-bottom: 18px; } .product-info dt { float: left; width: 100px; padding: 0 10px 0 0; color: #888; line-height: 13px; word-wrap: break-word; } .product-info dd { margin-left: 101px; } .current-price { position: relative; line-height: 9px; } .ui-cost, .ui-primary-color { color: #F60 !important; } .current-price b { font-size: 22px; } .product-info-detail { margin-right: 15px; border-top: 1px solid #ddd; margin-bottom: 23px; padding-top: 20px; } .seller-wrap .warn { padding: 8px 0 8px 15px; background-color: #FFF7BD; font-size: 9pt; } .share-social .g-plus { position: relative; display: inline; top: 3px; } .share-social .fb-like-box { display: inline; } .share-social { border-top: 1px solid #ddd; height: 30px; margin-right: 15px; padding-top: 10px; margin-bottom: 20px; } .share-social hr { margin-bottom: 9px; } .share-social .wili { margin-top: -2px; } #wiliModal .modal-footer { text-align: center; } #wiliModal .dowili { width: 100px; } #wiliModal .modal-dialog { width: 400px; } .products-selected-collection-name-container { padding: 20px 0; width: 100%; text-align: left; background-color: #f7f7f7; color: #777; text-transform: none; font-family: "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif; font-size: 18px; border: 1px solid #ccc; letter-spacing: 0; } .products-selected-collection-name-container { padding: 20px 0; width: 100%; text-align: left; background-color: #f7f7f7; color: #777; text-transform: none; font-family: "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif; font-size: 18px; border: 1px solid #ccc; letter-spacing: 0; } .products-selected-collection-caret { float: right; margin-right: 20px; top: 3px !important; } .select-collection { cursor: pointer; } .products-collection-dropdown { position: relative; } .products-collection-dropdown > div li { line-height: 25px } .products-collection-dropdown > div li:hover { background-color: #fafafa; } .products-collection-dropdown > div ul a { padding: 6px 5px 6px 20px; color: #777; } .products-collection-dropdown .dropdown-menu { width: 100%; border-radius: 0; border: 0; padding-bottom: 0; min-width: 160px; padding: 5px 0; margin: 2px 0 0; list-style: none; background-color: #fff; -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); -webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box; } .products-collection-dropdown > div ul { list-style-type: none; margin: 0px; text-align: left; max-height: 270px; overflow-y: scroll; } .products-select-collection-add-collection { text-align: left; } .products-collection-dropdown > div .products-select-collection-add-collection { padding: 5px; } .products-collection-dropdown > div .products-select-collection-add-collection-button { width: 65px; height: 40px; float: right; } .products-select-collection-add-collection-name-container { margin-right: 65px; } .products-collection-dropdown > div .products-select-collection-add-collection input { margin-bottom: 0; width: 280px; padding: 4px 4px 4px 10px; height: 40px; font-size: 12px; } .products-selected-collection-name { padding-left: 20px; padding-right: 5px; font-weight: bold; } .product-info-detail .product-unit { color: #333; } .product-info-detail dd { line-height: 13px; } .add-to-wishlist { text-align: center; } .seller { font-size: 14px; } .seller .chat-now { border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 6px 0 15px 10px; background: #fafafa; color: red; margin-top: 10px; font-weight: bold; } .seller .ordernow { font-size: 11pt; margin-bottom: 5px; } .seller .seller-name > a { font-size: 15pt; font-weight: bold; color: #F54; } .seller .seller-name .vip-icon { position: relative; top: -2px; } .seller .dl { color: #777; width: 75px; display: inline-block; } .seller .attribute { display: block; line-height: 23px; } .footer { text-align: center; margin-bottom: 30px; } .footer .links > ul li { display: inline; } .footer .links > ul > li { padding-right: 10px; } .footer .copyright { padding-top: 10px; } .store-head { height: 57px; border: 1px solid #ddd; padding: 0 20px; margin-bottom: 10px; box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .15); } .store-head h1 { line-height: 55px; font-weight: bold; } .store-head .store-head-info { float: left; } .store-head .store-contact { line-height: 55px; float: right; } .store-head .store-contact a { margin-left: 10px; } .store-head .store-settings { line-height: 55px; float: left; } .store-head .store-settings a { margin-left: 10px; font-size: 10px; } .store-cover { margin-top: 5px; margin-bottom: 10px; } .store-cover .cover-wrap { height: 240px; overflow: hidden; } .store-cover img { background-size: cover; position: relative; width: 100%; } .store-cover .cover-control { position: relative; margin-left: 5px; top: -35px; } .store-container { margin-top: 10px; width: 100%; } .store-container .left-side { width: 210px; margin-left: -100%; display: inline; overflow: visible; float: left; } .store-container .left-side .widget { width: 250px; margin-bottom: 16px; } .store-container .left-side .title { background: #1abc9c; font-size: 14px; color: #fff; padding-left: 20px; line-height: 35px; box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .15); } .store-container .left-side .body { font-size: 12px; padding: 7px 11px; background: #fff; border: 1px solid #ddd; margin-top: -1px; } .store-container .left-side .body ul { padding-left: 15px; } .store-container .left-side .body ul.child { padding-left: 2px; padding-top: 5px; } .store-container .left-side .body ul.child.level3 { padding-left: 10px; } .store-container .left-side .body ul.child > li { padding-left: 10px; color: #666; background: url("../images/treechild.png") no-repeat left; } .store-container .left-side .body li { margin-bottom: 5px; } .store-container .main-side { float: left; width: 100%; } .store-container .main-wrap { margin-left: 265px; } .store-container .title .pull-right a { color: #fff; } .store-container .main-wrap .box .title { background: #1abc9c; display: block; padding-left: 20px; margin-bottom: 0; font-size: 14px; color: #fff; line-height: 35px; box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .15); } .store-container .main-wrap .box .title .pull-right { margin-right: 10px; } .colorpicker { width: 356px; height: 176px; overflow: hidden; position: absolute; background: url(../images/colorpicker_background.png); font-family: Arial, Helvetica, sans-serif; display: none; } .colorpicker_color { width: 150px; height: 150px; left: 14px; top: 13px; position: absolute; background: #f00; overflow: hidden; cursor: crosshair; } .colorpicker_color div { position: absolute; top: 0; left: 0; width: 150px; height: 150px; background: url(../images/colorpicker_overlay.png); } .colorpicker_color div div { position: absolute; top: 0; left: 0; width: 11px; height: 11px; overflow: hidden; background: url(../images/colorpicker_select.gif); margin: -5px 0 0 -5px; } .colorpicker_hue { position: absolute; top: 13px; left: 171px; width: 35px; height: 150px; cursor: n-resize; } .colorpicker_hue div { position: absolute; width: 35px; height: 9px; overflow: hidden; background: url(../images/colorpicker_indic.gif) left top; margin: -4px 0 0 0; left: 0px; } .colorpicker_new_color { position: absolute; width: 60px; height: 30px; left: 213px; top: 13px; background: #f00; } .colorpicker_current_color { position: absolute; width: 60px; height: 30px; left: 283px; top: 13px; background: #f00; } .colorpicker input { background-color: transparent; border: 1px solid transparent; position: absolute; font-size: 10px; font-family: Arial, Helvetica, sans-serif; color: #898989; top: 4px; right: 11px; text-align: right; margin: 0; padding: 0; height: 11px; } .colorpicker_hex { position: absolute; width: 72px; height: 22px; background: url(../images/colorpicker_hex.png) top; left: 212px; top: 142px; } .colorpicker_hex input { right: 6px; } .colorpicker_field { height: 22px; width: 62px; background-position: top; position: absolute; } .colorpicker_field span { position: absolute; width: 12px; height: 22px; overflow: hidden; top: 0; right: 0; cursor: n-resize; } .colorpicker_rgb_r { background-image: url(../images/colorpicker_rgb_r.png); top: 52px; left: 212px; } .colorpicker_rgb_g { background-image: url(../images/colorpicker_rgb_g.png); top: 82px; left: 212px; } .colorpicker_rgb_b { background-image: url(../images/colorpicker_rgb_b.png); top: 112px; left: 212px; } .colorpicker_hsb_h { background-image: url(../images/colorpicker_hsb_h.png); top: 52px; left: 282px; } .colorpicker_hsb_s { background-image: url(../images/colorpicker_hsb_s.png); top: 82px; left: 282px; } .colorpicker_hsb_b { background-image: url(../images/colorpicker_hsb_b.png); top: 112px; left: 282px; } .colorpicker_submit { position: absolute; width: 22px; height: 22px; background: url(../images/colorpicker_submit.png) top; left: 322px; top: 142px; overflow: hidden; } .colorpicker_focus { background-position: center; } .colorpicker_hex.colorpicker_focus { background-position: bottom; } .colorpicker_submit.colorpicker_focus { background-position: bottom; } .colorpicker_slider { background-position: bottom; } #notification { color: #707070; text-align: center; position: fixed; bottom: 0; width: 100%; display: none; } #notification p { margin: 0; background-color: #E0E0E0; padding: 10px 20px; } .contact-form { padding-left: 20px; } .contact-form .attr { margin-bottom: 15px; } .contact-form .form-label { float: left; width: 100px; font-weight: bold; } .contact-form textarea { width: 500px; height: 200px; border: 1px solid #ccc; resize: none; padding: 5px; } .contact-form .btn { position: relative; margin-left: 100px; } .contact-form .refinfo { position: relative; margin-left: 100px; background-color: #EBF5FE; width: 490px; height: 70px; padding: 5px; font-size: 10pt; } .contact-form .refinfo img { float: left; width: 70px; } .contact-form .productinfo { margin-left: 5px; float: left; } .contact-form .productinfo a { color: #06c; } .login-page { width: 840px !important; margin: 0 auto; position: relative; height: 600px; margin-top: 100px; } .login-page .login-banner { float: left; margin-top: 60px; max-width: 524px; font-size: 14pt; } .login-page .login-register { margin-top: 20px; } .login-page .login-box { float: right; padding: 25px; margin-top: 20px; width: 262px !important; border: 2px solid rgb(153, 153, 153); border: 2px solid rgba(153, 153, 153, 0.75); border-radius: 2px; -moz-border-radius: 2px; -webkit-border-radius: 2px; -khtml-border-radius: 2px; -o-border-radius: 2px; font-size: 13px !important; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; background-color: #ffffff; } .login-page .login-box .btn-primary { width: 100% !important; } .login-page .or { text-align: center; margin: 20px 0 20px; } .login-page .register { text-align: center; } .login-page .register .btn { width: 100%; } .login-page .forgot { margin-top: 5px; } .topinhour ul li { list-style: none; } .topinhour li { float: left; width: 197px; height: 294px; overflow: hidden; margin-right: 4px; text-align: center; } .topinhour li > div.timeago { position: absolute; margin-left: 111px; margin-top: 5px; font-size: 10px; background-color: rgba(0, 0, 0, 0.5); color: #FFF; padding: 5px; width: 76px; } .topinhour li > p { font-size: 10pt; text-align: center; color: #f60; } .topinhour li > h2 { font-size: 9pt; margin-top: 5px; text-align: center; width: 200px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; } .topinhour img { max-height: 226px; } .topinhour .topinhour-intro { height: 40px; text-transform: uppercase; background-color: #333; color: #FFF; font-size: 14px; font-weight: bold; line-height: 40px; padding-left: 10px; } .topinhour .topinhour-intro .view-more { text-transform: none; } .topinhour .topinhour-intro .view-more { float: right; padding-right: 12px; color: #FFF; font-weight: normal; } td.product-status .label:hover { cursor: pointer; } .shop-unapprove { position: fixed; margin: 0 auto; width: 100%; height: 100%; z-index: 10000; background-color: #FFF; opacity: 0.9; } .shop-unapprove > div { width: 40%; margin: 0 auto; text-align: center; margin-top: 100px; border: 1px solid; padding: 50px; color: #f63; } .tagcloud { clear: both; margin-top: 15px; } .tagcloud strong { float: left; margin-right: 2px; } .tagcloud ul li { list-style: none; display: inline; } .tagcloud li:after { content: ', '; } .tagcloud li:last-child:after { content: none; } .alert-page .form { float: left; width: 400px; } .alert-page .form td { height: 35px; } .alert-page .form .input-small { width: 240px; } .alert-page .formlabel { padding-right: 10px; } .alert-page .alert-intro { font-size: 10pt; width: 400px; float: left; } .alert-page .alert-intro ul { margin-left: 40px; } .alert-page .alert-intro li { list-style-type: disc; } .category-intro { background-color: #F8F8F8; padding: 10px; border-top: 1px solid #000; } .category-keyword { margin-top: 5px; padding: 3px 8px 8px 11px; border: 1px solid #E2E2E2; } .category-keyword > ul { overflow: hidden; } .category-keyword > ul > li { float: left; padding-right: 15px; overflow: hidden; display: inline-block; line-height: 27px; } .category-keyword .count { font-weight: bold; color: #c00; } .category-keyword-control { background: #fff; border: 1px solid #ddd; border-top: none; width: 100px; height: 10px; margin: -1px auto; } .category-keyword-control .expand { display: block; width: 100%; height: 100%; background-image: url("../images/arrow2.png"); background-repeat: no-repeat; background-position: 41px -139px; } .category-keyword-control .expand:hover { background-position: 41px -159px; } .category-keyword-control .collapse { background-position: 41px -119px; } .category-keyword-control .collapse:hover { background-position: 41px -99px; } /*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */ .fancybox-wrap, .fancybox-skin, .fancybox-outer, .fancybox-inner, .fancybox-image, .fancybox-wrap iframe, .fancybox-wrap object, .fancybox-nav, .fancybox-nav span, .fancybox-tmp { padding: 0; margin: 0; border: 0; outline: none; vertical-align: top; } .fancybox-wrap { position: absolute; top: 0; left: 0; z-index: 8020; } .fancybox-skin { position: relative; background: #f9f9f9; color: #444; text-shadow: none; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .fancybox-opened { z-index: 8030; } .fancybox-opened .fancybox-skin { -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); } .fancybox-outer, .fancybox-inner { position: relative; } .fancybox-inner { overflow: hidden; } .fancybox-type-iframe .fancybox-inner { -webkit-overflow-scrolling: touch; } .fancybox-error { color: #444; font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif; margin: 0; padding: 15px; white-space: nowrap; } .fancybox-image, .fancybox-iframe { display: block; width: 100%; height: 100%; } .fancybox-image { max-width: 100%; max-height: 100%; } #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span { background-image: url('../images/fancybox/fancybox_sprite.png'); } #fancybox-loading { position: fixed; top: 50%; left: 50%; margin-top: -22px; margin-left: -22px; background-position: 0 -108px; opacity: 0.8; cursor: pointer; z-index: 8060; } #fancybox-loading div { width: 44px; height: 44px; background: url('../images/fancybox/fancybox_loading.gif') center center no-repeat; } .fancybox-close { position: absolute; top: -10px; right: -10px; width: 36px; height: 36px; cursor: pointer; z-index: 8040; } .fancybox-nav { position: absolute; top: 0; width: 40%; height: 100%; cursor: pointer; text-decoration: none; background: transparent url('../images/fancybox/blank.gif'); /* helps IE */ -webkit-tap-highlight-color: rgba(0, 0, 0, 0); z-index: 8040; } .fancybox-prev { left: 0; } .fancybox-next { right: 0; } .fancybox-nav span { position: absolute; top: 50%; width: 36px; height: 34px; margin-top: -18px; cursor: pointer; z-index: 8040; visibility: hidden; } .fancybox-prev span { left: 10px; background-position: 0 -36px; } .fancybox-next span { right: 10px; background-position: 0 -72px; } .fancybox-nav:hover span { visibility: visible; } .fancybox-tmp { position: absolute; top: -99999px; left: -99999px; visibility: hidden; max-width: 99999px; max-height: 99999px; overflow: visible !important; } /* Overlay helper */ .fancybox-lock { overflow: hidden !important; width: auto; } .fancybox-lock body { overflow: hidden !important; } .fancybox-lock-test { overflow-y: hidden !important; } .fancybox-overlay { position: absolute; top: 0; left: 0; overflow: hidden; display: none; z-index: 8010; background: url('../images/fancybox/fancybox_overlay.png'); } .fancybox-overlay-fixed { position: fixed; bottom: 0; right: 0; top: 40px; } .fancybox-lock .fancybox-overlay { overflow: auto; overflow-y: scroll; } /* Title helper */ .fancybox-title { visibility: hidden; font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif; position: relative; text-shadow: none; z-index: 8050; } .fancybox-opened .fancybox-title { visibility: visible; } .fancybox-title-float-wrap { position: absolute; bottom: 0; right: 50%; margin-bottom: -35px; z-index: 8050; text-align: center; } .fancybox-title-float-wrap .child { display: inline-block; margin-right: -100%; padding: 2px 20px; background: transparent; background: rgba(0, 0, 0, 0.8); -webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px; text-shadow: 0 1px 2px #222; color: #FFF; font-weight: bold; line-height: 24px; max-width: 1000px; } .fancybox-title-outside-wrap { position: relative; margin-top: 10px; color: #fff; } .fancybox-title-inside-wrap { padding-top: 10px; } .fancybox-title-over-wrap { position: absolute; bottom: 0; left: 0; color: #fff; padding: 10px; background: #000; background: rgba(0, 0, 0, .8); } /*Retina graphics!*/ @media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) { #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span { background-image: url('../images/fancybox/fancybox_sprite@2x.png'); background-size: 44px 152px; /*The size of the normal image,half the size of the hi-res image*/ } #fancybox-loading div { background-image: url('../images/fancybox/fancybox_loading@2x.gif'); background-size: 24px 24px; /*The size of the normal image,half the size of the hi-res image*/ } } #fancybox-thumbs { position: fixed; left: 0; width: 100%; overflow: hidden; z-index: 8050; } #fancybox-thumbs.bottom { bottom: 2px; } #fancybox-thumbs.top { top: 2px; } #fancybox-thumbs ul { position: relative; list-style: none; margin: 0; padding: 0; } #fancybox-thumbs ul li { float: left; padding: 1px; opacity: 0.5; } #fancybox-thumbs ul li.active { opacity: 0.75; padding: 0; border: 1px solid #fff; } #fancybox-thumbs ul li:hover { opacity: 1; } #fancybox-thumbs ul li a { display: block; position: relative; overflow: hidden; border: 1px solid #222; background: #111; outline: none; } #fancybox-thumbs ul li img { display: block; position: relative; border: 0; padding: 0; max-width: none; } .wrap-manage { width: 100%; min-width: 990px; max-width: 1200px; margin: 0 auto; } .manage-product-list .page-header h1 { margin-top: 10px; } .manage-product-list .pagination { float: left; margin: 0 !important; } .manage-product-list .product-running { float: right; margin-top: 6px; margin-right: 10px; } .manage-product-list .search { float: right; margin-right: 10px; } .manage-product-list .search .keyword { float: left; width: 300px; border-radius: 3px 0 0 3px !important; height: 29px; border-right: none; } .manage-product-list .search .dosearch { border-radius: 0 3px 3px 0 !important; } .table thead > tr > th { font-weight: bold; } #create-gift .form-horizontal input { width: auto; height: auto; } #create-gift .page-header { margin-top: 0; padding-bottom: 0; } #create-gift .page-header h1 { font-size: 20px; } #create-gift .page-header h1 small { font-size: 14px; } #create-gift label { font-weight: normal; } #create-gift .description { width: 455px; } #create-gift .form-horizontal .control-label { } #create-gift .form-control { width: 319px !important; float: left; } #create-gift .selectbox { width: 481px !important; } label.valid { width: 24px !important; height: 24px; background: url(../images/valid.png) center center no-repeat; display: inline-block; text-indent: -9999px; } label.error { color: red; padding: 2px 8px; width: auto; font-weight: normal !important; } .user-following .table { margin: 0 auto; width: 600px; } .user-following .table tr > td { border-top: none; } .user-following .address { font-size: 13px !important; color: #8899a6 !important; } .user-following .address a { font-size: 13px !important; color: #8899a6 !important; } .user-following .followname { font-size: 15px; } .index-header { height: 34px; padding-top: 12px; margin-bottom: 10px; } .index-header .left { float: left; } .index-header .right { float: right; } .index-header .right .support-phone { color: #f60; margin-right: 5px; } .shop-notice { font-size: 10pt; color: #000; margin: 5px 0 5px; word-wrap: break-word; background-color: #f5f5f5; padding: 10px; } .userlastname { color: #F0F0F0; margin-top: 7px; } .usHover:hover .userlastname { color: #FFF !important; } .chat-now { font-size: 10pt; } .chat-now .glyphicon { position: relative; top: 7px; font-size: 15pt; } .chat-now .glyphicon.online, .shop-chat .glyphicon-comment.online { color: #f60 !important; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .chat-now .glyphicon.offline { color: #888; } .header-banner { width: 1000px; margin: 50px auto; margin-bottom: -40px; } .header-banner .title { width: 155px; display: inline-block; } .header-banner p { display: inline; } .header-banner .step { font-weight: bold; } .xchart .line { stroke-width: 3px; fill: none } .xchart .fill { stroke-width: 0 } .xchart circle { stroke: #FFF; stroke-width: 3px } .xchart .axis .domain { fill: none } .xchart .axis .tick line { stroke: #EEE; stroke-width: 1px } .xchart .axis text { color: #666; font-size: 7px } .xchart .color0 .line { stroke: #3880aa } .xchart .color0 .line .fill { pointer-events: none } .xchart .color0 rect, .xchart .color0 circle { fill: #3880aa } .xchart .color0 .fill { fill: rgba(56, 128, 170, 0.1) } .xchart .color0.comp .line { stroke: #89bbd8 } .xchart .color0.comp rect { fill: #89bbd8 } .xchart .color0.comp .fill { display: none } .xchart .color0.comp circle, .xchart .color0.comp .pointer { fill: #89bbd8 } .xchart .color1 .line { stroke: #4da944 } .xchart .color1 .line .fill { pointer-events: none } .xchart .color1 rect, .xchart .color1 circle { fill: #4da944 } .xchart .color1 .fill { fill: rgba(77, 169, 68, 0.1) } .xchart .color1.comp .line { stroke: #9dd597 } .xchart .color1.comp rect { fill: #9dd597 } .xchart .color1.comp .fill { display: none } .xchart .color1.comp circle, .xchart .color1.comp .pointer { fill: #9dd597 } .xchart .color2 .line { stroke: #f26522 } .xchart .color2 .line .fill { pointer-events: none } .xchart .color2 rect, .xchart .color2 circle { fill: #f26522 } .xchart .color2 .fill { fill: rgba(242, 101, 34, 0.1) } .xchart .color2.comp .line { stroke: #f9b99a } .xchart .color2.comp rect { fill: #f9b99a } .xchart .color2.comp .fill { display: none } .xchart .color2.comp circle, .xchart .color2.comp .pointer { fill: #f9b99a } .xchart .color3 .line { stroke: #c6080d } .xchart .color3 .line .fill { pointer-events: none } .xchart .color3 rect, .xchart .color3 circle { fill: #c6080d } .xchart .color3 .fill { fill: rgba(198, 8, 13, 0.1) } .xchart .color3.comp .line { stroke: #f8555a } .xchart .color3.comp rect { fill: #f8555a } .xchart .color3.comp .fill { display: none } .xchart .color3.comp circle, .xchart .color3.comp .pointer { fill: #f8555a } .xchart .color4 .line { stroke: #672d8b } .xchart .color4 .line .fill { pointer-events: none } .xchart .color4 rect, .xchart .color4 circle { fill: #672d8b } .xchart .color4 .fill { fill: rgba(103, 45, 139, 0.1) } .xchart .color4.comp .line { stroke: #a869ce } .xchart .color4.comp rect { fill: #a869ce } .xchart .color4.comp .fill { display: none } .xchart .color4.comp circle, .xchart .color4.comp .pointer { fill: #a869ce } .xchart .color5 .line { stroke: #ce1797 } .xchart .color5 .line .fill { pointer-events: none } .xchart .color5 rect, .xchart .color5 circle { fill: #ce1797 } .xchart .color5 .fill { fill: rgba(206, 23, 151, 0.1) } .xchart .color5.comp .line { stroke: #f075cb } .xchart .color5.comp rect { fill: #f075cb } .xchart .color5.comp .fill { display: none } .xchart .color5.comp circle, .xchart .color5.comp .pointer { fill: #f075cb } .xchart .color6 .line { stroke: #d9ce00 } .xchart .color6 .line .fill { pointer-events: none } .xchart .color6 rect, .xchart .color6 circle { fill: #d9ce00 } .xchart .color6 .fill { fill: rgba(217, 206, 0, 0.1) } .xchart .color6.comp .line { stroke: #fff75a } .xchart .color6.comp rect { fill: #fff75a } .xchart .color6.comp .fill { display: none } .xchart .color6.comp circle, .xchart .color6.comp .pointer { fill: #fff75a } .xchart .color7 .line { stroke: #754c24 } .xchart .color7 .line .fill { pointer-events: none } .xchart .color7 rect, .xchart .color7 circle { fill: #754c24 } .xchart .color7 .fill { fill: rgba(117, 76, 36, 0.1) } .xchart .color7.comp .line { stroke: #c98c50 } .xchart .color7.comp rect { fill: #c98c50 } .xchart .color7.comp .fill { display: none } .xchart .color7.comp circle, .xchart .color7.comp .pointer { fill: #c98c50 } .xchart .color8 .line { stroke: #2eb9b4 } .xchart .color8 .line .fill { pointer-events: none } .xchart .color8 rect, .xchart .color8 circle { fill: #2eb9b4 } .xchart .color8 .fill { fill: rgba(46, 185, 180, 0.1) } .xchart .color8.comp .line { stroke: #86e1de } .xchart .color8.comp rect { fill: #86e1de } .xchart .color8.comp .fill { display: none } .xchart .color8.comp circle, .xchart .color8.comp .pointer { fill: #86e1de } .xchart .color9 .line { stroke: #0e2e42 } .xchart .color9 .line .fill { pointer-events: none } .xchart .color9 rect, .xchart .color9 circle { fill: #0e2e42 } .xchart .color9 .fill { fill: rgba(14, 46, 66, 0.1) } .xchart .color9.comp .line { stroke: #2477ab } .xchart .color9.comp rect { fill: #2477ab } .xchart .color9.comp .fill { display: none } .xchart .color9.comp circle, .xchart .color9.comp .pointer { fill: #2477ab } #viewchart { height: 100px; } .border-none:first-child { border: none; } .followerlist { max-height: 400px; overflow-y: scroll; } #followerlist li { height: 25px; margin-bottom: 10px; } .gray { color: #888; } .page-header h1 { font-weight: normal; font-size: 22px; } .alert-bar { background-color: #f9edbe; border: 1px solid #f0c36d; width: 500px; padding: 7px 6px 3px 10px; height: 32px; position: relative; margin-top: -6px; margin-left: -11px; overflow: hidden; box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); } .alert-bar .glyphicon { font-size: 12pt; } .alert-bar .alert-content { max-width: 500px; overflow: hidden; display: inline-block; white-space: nowrap; text-overflow: ellipsis; font-size: 10pt; } .alert-bar .alert-content:hover { overflow: visible; } .alert-bar .fixnow { float: right; color: #f60; } .partnerlist { margin: 40px auto; overflow: hidden; white-space: nowrap; } .partnerlist.full { overflow: visible; white-space: normal; margin: 0 auto !important; } .partnerlist .more-partner-link { float: right; } .partnerlist li { display: inline-block; white-space: nowrap; } .partnerlist .full2 { padding: 5px; } .mS .product-item > .item:hover .product-more-info { display: block; } .product-more-info { display: none; padding: 5px 10px; border-top: 1px solid #eee; margin-top: 8px; background-color: #f4f4f4; height: 38px; } .product-more-info .pull-left { width: 150px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .product-more-info .shop-address { display: block; color: #888; font-size: 8pt; } .product-more-info .shop-name a { color: #f60 !important; font-weight: bold; } .product-more-info .shop-chat .glyphicon { position: relative; top: 2px; } .new-shop-widget { margin-top: 20px; margin-bottom: 30px; font-size: 13pt; background-color: #f9edbe; padding: 10px; width: 980px; height: 20px; overflow: hidden; box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .15); } .new-shop-widget .head { margin-right: 5px; } .new-shop-widget .more { float: right; font-size: 11pt; margin-top: 3px; } .new-shop-widget .glyphicon { position: relative; top: 1px; } .new-shop-widget .new-shop-list { width: 795px; } .new-shop-widget .new-shop-list, .new-shop-widget .new-shop-list ul li { display: inline-block; overflow: hidden; } .statistic-widget { margin-bottom: 20px; font-size: 13pt; background-color: #ECF0F1; padding: 10px; width: auto; min-width: 990px; max-width: 1180px; box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .15); } .statistic-widget span.item { margin-left: 20px; } .statistic-widget span.item strong { color: #f60; } .category-follow { background-color: #f9edbe; border: 1px solid #f0c36d; padding: 5px 10px 5px 10px; } .category-follow .help { font-size: 9pt; width: 380px; text-align: right; } .report-button { margin-top: -16px; margin-right: 15px; position: relative; color: red; } #reportModal .modal-dialog { width: 350px; } #reportModal .radio input[type="radio"] { margin-top: 1px; } .follow-category-list { } .follow-category-list li { float: left; margin-right: 10px; margin-bottom: 10px; position: relative; } .follow-category-list li .topic { padding: 1px 10px 4px 5px; vertical-align: middle; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .follow-category-list li .topic.deselected { color: #b8afc9; background-color: #fff; border-color: #e1e3ef; } .follow-category-list .topic { zoom: 1; border: 1px solid; border-radius: 16px; text-align: center; cursor: default; padding: 0 12px; } .follow-category-list .topic-check-container { display: inline-block; padding-right: 5px; line-height: 1; margin-top: 4px; } .follow-category-list li .topic-check { height: 16px; width: 16px; border-radius: 50%; display: inline-block; vertical-align: middle; position: relative; } .topic.deselected .topic-check { border: 1px solid #a49bac; background: #fff; fill: none; } .topic:not(.deselected) { color: #8e7c9b; background-color: #efeff9; border-color: #d4cfdc; } .topic:not(.deselected) .topic-check { background: #6d6372; border: 1px solid #6d6372; fill: #fff; } .follow-category-list li:hover .topic-check { fill: #000; } .follow-category-list li .topic-check svg { position: absolute; top: 4px; left: 3px; } .follow-category-list li .topic .topic-name { position: relative; display: inline-block; vertical-align: middle; } .product-vote { margin-bottom: 70px; } .product-vote .voted.good { background-color: #C53B37; } .product-vote .voted.bad { background-color: #000; } .product-vote .vote-bar { width: 160px; margin-top: 2px; } .product-vote .vote-bar .good { height: 3px; background-color: #d9534f; float: left; } .product-vote .vote-bar .bad { height: 3px; background-color: #474949; float: left; } .product-vote .vote-stat { font-size: 9pt; display: inline; float: left; margin-left: 10px; margin-top: 4px; } .product-vote .vote-action { float: left; } #vote-stat-none { position: relative; top: -4px; } .filter-choose { color: #146D93 !important; } .filter-list-shop-city { min-height: 15px; } .filter-list-shop-city li { float: left; width: 33%; } .modal-body.visiblecontent { overflow: auto; } .sub-category-list { width: 440px; display: inline-block; } .search-header-left { width: 285px; display: inline-block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 10pt; } .add-product .select-unit { width: auto; display: inline; border-radius: 0 !important; -webkit-border-radius: 0px; } .add-product .select-unit-label { width: 90px; margin-left: 10px; } .add-product .category .curent-category { margin-bottom: 5px; } .add-product #add-image-by-url { margin-left: 5px; top: 1px; position: relative; } .add-product .uploadbyurl { margin-top: 5px; } .add-product-page .alert { font-size: 10pt; line-height: 20px; } .text-gray { color: #727272; } hr { background-color: transparent; display: block; border-width: 0; border-top: 1px solid #e7e7e7 !important; margin-bottom: 14px; margin-top: 14px; } .shop-action { font-size: 10pt; margin-top: 13px; } .notification-navbar { float: left; padding: 8px 10px 0; height: 30px; position: relative; } .notification-navbar .glyphicon { color: #F0F0F0; position: relative; font-size: 13pt; } .notification-count { position: relative; top: -29px; left: 10px; color: #FFF; background-color: #F60; border: 1px solid #5A5959; border-radius: 7px; text-align: center; font-size: 11px; min-width: 16px; height: 16px; line-height: 16px; font-weight: bold; padding: 1px; display: none; } .notification-center { position: absolute; background-color: #FFF; top: 39px; right: 0; margin-right: -11px; width: 340px; font-size: 10pt; border-top: none; -moz-box-shadow: rgba(0, 0, 0, 0.5) 0 0 3px 0px; -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0 0 3px 0px; box-shadow: rgba(0, 0, 0, 0.5) 0 0 3px 0px; -moz-border-radius: 0px 0px 2px 2px; -webkit-border-radius: 0px 0px 2px 2px; border-radius: 0px 0px 2px 2px; } .notification-center ul { list-style: none; margin: 0; } .notification-center a { border-top: 1px solid #e8e9eb; overflow: hidden; color: #4d4d4d; line-height: 16px; min-height: 16px; padding: 10px; text-shadow: none; cursor: pointer; } .notification-center li img { float: left; width: 50px; margin-right: 10px; } .notification-center li.unread_false:hover { background: #f7f6f6; } .notification-center li a { color: #4d4d4d !important; float: none !important; display: block !important; } .notification-center li.unread_true { background: #fff0cc; } .notification-center li:first-child { border: none; } .notification-center .object { font-weight: bold; } .show { display: block !important; } .notification-navbar .glyphicon:hover { color: #FFF; } #notificationsSeeAll { background: #f7f6f6; border-top: 1px solid #e8e9eb; text-align: center; -moz-border-radius: 0px 0px 2px 2px; -webkit-border-radius: 0px 0px 2px 2px; border-radius: 0px 0px 2px 2px; } #notificationsSeeAll a { color: #f60; font-size: 11px; min-height: inherit; padding: 6px 0 7px; float: none; } #notificationsPage ul { margin: 0 0 20px 0; } #notificationsPage .object { font-weight: bold; } #notificationsPage { width: 700px; } #notificationsPage ul > div, #notificationsPage ul > li { border-bottom: 1px solid #eee; list-style-type: none; line-height: 16px; padding: 10px 0 10px; } #notificationsPage ul > li:hover { background: #f6f7f8; } #notificationsPage ul > div a, #notificationsPage ul > li a { color: #4d4d4d; font-weight: normal; overflow: auto; overflow-x: auto; overflow-y: auto; -moz-transition-duration: 0.33s; -moz-transition-property: background, border, color, opacity, box-shadow; -webkit-transition-duration: 0.33s; -webkit-transition-property: background, border, color, opacity, box-shadow; transition-duration: 0.33s; transition-property: background, border, color, opacity, box-shadow; } #searchshop .shop-list h2 { font-size: 21px; height: 25px; overflow: hidden; width: 375px; text-overflow: ellipsis; white-space: nowrap; } #searchshop .shop-list .info { display: inline; font-size: 11px; color: #999; } #searchshop .shop-list > li { padding: 10px; width: 47%; height: 173px; float: left; border: 1px solid rgba(0, 0, 0, 0.25); border-radius: 4px; margin: 10px 0 0 10px; cursor: pointer; } #searchshop .shop-list > li:hover { border: 1px solid rgba(0, 0, 0, 0.50); } #searchshop .shop-list .picture { padding: 10px 0 10px; } #searchshop .shop-list .shop-info { margin-left: 5px; } #searchshop .shop-list .category { line-height: 10px; width: 400px; height: 20px; } #searchshop .shop-list .category ul li { display: inline; } #searchshop .shop-list .info-area { margin-top: 10px; } #searchshop .shop-list .category li { margin-right: 5px; font-size: 11px; color: #666; } #searchshop .shop-list .picture ul { display: block; } #searchshop .shop-list .picture ul li { float: left; } #notificationsPage .time { display: inline; color: #898f9c; font-size: 9pt; float: right; padding-right: 10px; } #recommendation-list { width: 285px; margin-left: 15px; } #recommendation-list h2 { font-weight: bold; margin-bottom: 15px; border-bottom: 1px solid #999; padding: 4px; } #recommendation-list .re-product { clear: both; height: 90px; border-bottom: 1px solid #eee; padding-top: 10px; } #recommendation-list .re-product a.product_name { vertical-align: top; font-weight: bold; } #recommendation-list .re-product .info { width: 200px; font-size: 9pt; margin-left: 5px; } #recommendation-list .re-product-list .re-product:first-child { padding-top: 0; } #recommendation-list .re-product-list .re-product:last-child { border: none; } .contact-action { display: inline; margin: 0 10px; border-left: 1px solid #e7e7e7; padding-left: 10px; } .ex-tooltip { position: absolute; background: #EEE; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; padding: 5px; -webkit-box-shadow: 0 1px 3px #000; -moz-box-shadow: 0 1px 3px #000; -ms-box-shadow: 0 1px 3px #000; -o-box-shadow: 0 1px 3px #000; box-shadow: 0 1px 3px #000; border-collapse: separate; display: none } .category-breadcrumb-right { font-size: 10pt; float: right; } .category-breadcrumb-right .btn { display: inline; } .alert-header-page { margin: 50px auto 0 auto; width: 100%; margin-bottom: 10px; } .glyphicon.top3px { top: 3px; } #filterPriceModal .modal-dialog { width: 300px; } #filterPriceModal .btn-submit { margin-top: 10px; width: 100px; } #filterPriceModal .to { display: block; margin: 10px 0 10px; } #filterPriceModal #filter-price-status { color: red; margin: 5px 0 5px; } .glyphicon { top: 2px; } .recommend-filter-price { padding: 10px; background-color: #f7f7f7; border: 1px solid #eee; margin: 5px 0; } .recommend-filter-price input { padding: 5px; } .recommend-filter-price input[type="submit"] { width: 60px; padding: 2px; margin-top: -2px; } .shop-list-page h2 { font-weight: bold; } .shop-list-page > ul > li { height: 192px !important; border-radius: 0 !important; width: 478px; background-color: #fafafa; } .shop-list-page .product_image { width: 105px; height: 105px; padding: 5px; } .ui-gray-color { color: #777; } .category-shop-list { padding: 10px; margin-top: 10px; } .category-shop-list .category { display: inline; padding: 5px; margin-right: 5px; border: 1px solid #ccc; box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); border-radius: 3px; } .shop-list-page .category { margin-top: 2px; height: 5px !important; } .follow-box-shop-list { float: right; margin-top: -65px; } .table-border { border: 1px solid #e1e8ed; border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 5px; width: 600px; margin: 0 auto; padding: 10px; } .new-stamp { font-size: 10px; color: #FFAD00; position: relative; top: -40px; right: -60px; display: block; } .link-to-shoplist { display: block; width: 104px; height: 45px; margin-top: -13px; line-height: 44px; font-size: 13px !important; } .login-view-more-shop { width: 300px; margin: 0 auto; position: relative; top: 26px; padding-bottom: 40px; } .product-list .product-category-list li { display: inline; margin-right: 5px; } .profile_page .account_type { display: inline; color: #aaa; } .profile_page .chat-button { float: right; position: relative; margin-top: -34px; } .profile_page .attribute { color: #292f33; } .profile_page .attribute .name { display: inline-block; font-size: 10pt !important; font-weight: normal; width: 170px; } .profile_page .productlistviewed ul li { display: inline; } .profile_page .productlistviewed ul { margin-top: 10px; } .profile_page .productlistviewed li img { padding: 5px; border: 1px solid #fafafa; } #lhc_status_container { width: 240px !important; } .comment-box h2 { font-size: 16px; padding: 6px; border-bottom: 1px solid #eee; } .product-sim-lastviewed { background-color: #fafafa; } .product-sim-lastviewed .lastviewed { float: left; } .product-sim-lastviewed .title { margin-bottom: 5px; font-weight: bold; color: #f60; border-bottom: 2px solid #f60; padding-bottom: 5px; } .product-sim-lastviewed .sim-list { float: left; margin-left: 20px; } .product-sim-lastviewed .sim-list .item { display: inline; margin-right: 12px; } .product-sim-lastviewed .sim-list .item:last-child { margin-right: 0; } .shop-list-none-follow { text-align: center; padding: 15px; font-weight: bold; border-top: 1px solid #f60; border-bottom: 1px solid #f60; width: 850px; margin: 20px auto; } .time-ago .ui-primary-color { font-weight: bold; } .user-online { background: url("../images/user_online.png") center no-repeat; width: 12px; height: 14px; margin-right: 2px; display: inline-block; background-size: 8px; } .ok-color { color: #63a924; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; -o-transition: all 1s ease; transition: all 1s ease; } .collection-page .list { padding: 10px; } .profile_page .collection-page .list { padding: 0; } .collection-page h1 { font-size: 22pt; letter-spacing: -1px; line-height: 50px; } .collection-page .collection { background: #fff; border: 1px solid #d5d5d5; width: 468px; height: 508px; padding: 10px 0 10px 10px; margin-right: 20px; margin-bottom: 20px; float: left; position: relative; } .profile_page .collection-page .collection { width: 478px; } .collection-page .collection:hover { -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 0 14px; -moz-box-shadow: rgba(0, 0, 0, 0.15) 0 0 14px; box-shadow: rgba(0, 0, 0, 0.15) 0 0 14px; transition: all 0.2s ease-in-out } .collection:nth-child(2n) { margin-right: 0; } .collection-page .collection-name { font-weight: bold; font-size: 22px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; line-height: 1.3em; } .collection-page .collection-product-count { color: #aaa; margin-bottom: 10px; } .collection-page .collection-item-list { } .collection-page .collection-item { float: left; margin: 0px 9px 9px 0; } .collection-page .collection-item img { width: 225px; height: 225px; } .product-wili-box-a:hover { background-color: #e67e22; opacity: 1; } .product-wili-box-a { font-size: 8pt; color: #fff !important; text-align: center; display: none !important; position: absolute !important; width: 70px; height: 53px; right: 10px; top: 10px; background-color: #f39c12; padding: 10px; opacity: .9; -webkit-transition: all 200ms ease-out; -o-transition: all 200ms ease-out; -moz-transition: all 200ms ease-out; border-radius: 2px; box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.15); } .mS .product-item > .item:hover .product-wili-box-a { display: block !important; } .add-success { color: #fff; display: none; } .hr-shop-line { border-top: 2px solid #FF8B3D !important; margin-top: 5px; margin-bottom: 10px; } .productdetail { margin-top: 14px; } h1.category-name { font-weight: bold; font-size: 16px; } .cate-head { margin: 0 !important; } .letter { background: #f7f6f1; padding: 20px; border: 1px solid #f7f6f1; margin: 0 auto; -webkit-box-shadow: 6px 6px 4px -4px rgba(0, 0, 0, 0.22); -moz-box-shadow: 6px 6px 4px -4px rgba(0, 0, 0, 0.22); box-shadow: 6px 6px 4px -4px rgba(0, 0, 0, 0.22); } .letter p { margin-bottom: 15px; line-height: 20px; } .ifind { padding: 13px 10px 12px 20px; background-color: #fafafa; color: #333; font-size: 16px; text-align: center; letter-spacing: -1px; box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.15); } .ifind a { color: #fafafa; font-weight: bold; margin-left: 3px; margin-right: 3px; padding-bottom: 1px; opacity: 0.8; text-transform: lowercase; } .ifind .form-control { width: 100px; display: inline; border: none; height: 36px; color: #f60; background-color: #e7e7e7; box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.15); } .ifind a:hover { opacity: 1; } .ifind .btn { margin-left: 15px; border: none; background-color: #34495e; } .ifind .btn:hover { background-color: #2c3e50; } .ifind .select { display: inline; padding: 20px 0 20px; } .ifind .select > a { width: 80px; display: inline-block; text-align: center; vertical-align: middle; margin-top: -3px; color: #f60; } .ifind .select:hover .list-option { display: block; } .ifind .select .list-option { position: absolute; z-index: 1000; padding: 10px; background-color: #34495e; border-radius: 2px; text-align: left; display: none; margin-top: -5px; box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.15); } .ifind .select .list-option a { border: none; line-height: 1.4; font-size: 14px; font-weight: normal; text-transform: lowercase; } .ifind .select .list-option.category { margin-left: 179px; } .ifind .select .list-option.searchby { margin-left: 73px; } .ifind .select .list-option.child-category { margin-left: 270px; } .ifind .select .list-option.location { margin-left: 700px; } .ifind .primary-category a { color: #f1c40f; font-weight: bold !important; text-decoration: underline; } .ifind .glyphicon-chevron-down { font-size: 10pt; left: -6px; } .input-autoup { margin-bottom: 5px; } .auto-up-control { padding: 5px 10px 5px; float: right; text-align: right; line-height: 2; } .auto-up-control .schedule-start { display: inline !important; width: 150px } .vipwrap { margin: 0 auto; } .gray-wrapper { background-color: #f2f2f1; } .vipplan { padding: 20px 20px; margin-top: 45px; } .vipplan h1 { font-size: 34px; text-align: center; letter-spacing: -1px; color: #333; } .vipplan h2 { color: #333; letter-spacing: -1px; font-size: 22px; text-align: center; padding-top: 10px; } .vipplan .line { bottom: auto; left: 50%; height: 3px; width: 30px; margin: 0 auto; margin-top: 15px; display: block; background-color: #ebb129; border: none !important; } .vipplan .reason { background: rgba(0, 0, 0, 0.7); color: white; width: 80%; margin: 0 auto; margin-top: 20px; border-radius: 5px; padding: 20px; } .vipplan .reason td { border-top: 1px solid rgba(255, 255, 255, 0.25); } .vipplan .reason .view-detail { color: white; background: #f1c40f; border-radius: 6px; padding: 13px 18px; font-size: 15px; letter-spacing: 0px; box-shadow: none; text-shadow: none; } .vip-register { margin: 0 auto; text-align: center; margin-top: 20px; } .vip-register h2 { color: white; } .vip-register .vip-register-now { font-size: 35px; color: white; text-align: center; letter-spacing: -1px; } .vip-register .price { margin-top: 20px; } .vip-register #thutien p { margin-top: 20px; } .vip-register #thutien .form-control { width: 250px; display: inline; margin-top: 5px; } .vip-register #thutien label { margin-top: 5px; width: 120px; text-align: left; } .vip-register .line { background-color: #368aa9 !important; } .vip-register .method_list .line { margin-bottom: 15px; } .checkout-method label { margin-right: 15px; } .vipplan .glyphicon-ok { color: #7ab55c; } .vipplan .glyphicon-remove { color: #e74c3c; } .register-to-amazing { padding: 20px; height: 75px; background-color: #f1c40f; box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .15); margin-bottom: 15px; } .register-to-amazing .text { font-size: 22px; line-height: 36px; letter-spacing: -1px; color: #434343; margin-bottom: 15px; } .mgl20 { margin-left: 20px; } /* Make clicks pass-through */ #nprogress { pointer-events: none; } #nprogress .bar { background: #1abc9c; position: fixed; z-index: 99999; top: 0; left: 0; width: 100%; height: 2px; } /* Fancy blur effect */ #nprogress .peg { display: block; position: absolute; right: 0px; width: 100px; height: 100%; box-shadow: 0 0 10px #1abc9c, 0 0 5px #1abc9c; opacity: 1.0; -webkit-transform: rotate(3deg) translate(0px, -4px); -ms-transform: rotate(3deg) translate(0px, -4px); transform: rotate(3deg) translate(0px, -4px); } /* Remove these to get rid of the spinner */ #nprogress .spinner { display: block; position: fixed; z-index: 99999; top: 15px; right: 15px; } #nprogress .spinner-icon { width: 18px; height: 18px; box-sizing: border-box; border: solid 2px transparent; border-top-color: #1abc9c; border-left-color: #1abc9c; border-radius: 50%; -webkit-animation: nprogress-spinner 400ms linear infinite; animation: nprogress-spinner 400ms linear infinite; } .nprogress-custom-parent { overflow: hidden; position: relative; } .nprogress-custom-parent #nprogress .spinner, .nprogress-custom-parent #nprogress .bar { position: absolute; } @-webkit-keyframes nprogress-spinner { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); } } @keyframes nprogress-spinner { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .sys-reply-list li { border-bottom: 1px solid #ecf0f1; padding: 18px 0 18px; } .sys-reply-list li:last-child { border: none; } .sys-reply-list .name { font-size: 11pt !important; } .sys-reply-list .name.admin { color: red; } .sys-reply-list .resp-text { color: #95a5a6; } .sys-reply-list .time { display: block; margin-top: 5px; color: #95a5a6; font-size: 8pt !important; } .shop-vip-index .hS { border-color: #f39c12; } .shop-vip-index .title > a { color: #f39c12 !important; font-size: 12pt; font-weight: bold; } .shop-vip-index .shop-vip-list { padding: 5px 0 10px 8px; overflow: hidden; } .shop-vip-index .shop-item { float: left; width: 48.5%; margin: 10px 10px 0 0; height: 180px; border: 1px solid #eee; } .shop-vip-index .border-vip { border: 1px solid #f39c12; border-top: none; } .shop-vip-index .shop-item .shop-name { margin-left: 10px; margin-top: 10px; font-size: 16pt; float: left; max-width: 350px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; letter-spacing: -1px; } .shop-vip-index .shop-item .follow-box { margin-top: 9px; margin-right: 10px; float: right; } .shop-vip-index .shop-item .follow-box a { font-size: 8pt; } .shop-vip-index .shop-item .shop-category { clear: both; margin-left: 10px; padding-top: 4px; color: #95a5a6; font-size: 10pt; } .shop-vip-index .shop-item .picture-list { margin-left: 10px; margin-top: 5px; } .shop-vip-index .shop-item .picture-list li { display: inline; } .shop-vip-index .shop-item .picture-list li img { width: 84px; padding: 3px; } #ads-shop-index-area { display: none; } .shop-vip-index li.title { text-transform: uppercase; } .vip-color { color: #f1c40f !important; } .vip-border-color { border-color: #f39c12 !important; } .vip-border-bottom-width { border-bottom-width: 2px !important; } .related-interest { margin-top: 20px; margin-bottom: 20px; } .related-interest { text-align: center; } .related-interest .related-item { display: inline-block; width: 100px; height: 100px; padding: 8px; } .related-interest .interestWrapper { overflow: hidden; box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.25); cursor: pointer; display: block; height: 100%; position: relative; width: 100%; *display: inline; zoom: 1; } .related-interest .interestWrapper .interestImage { opacity: 0.7; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; background-color: #fff; background-position: center; background-size: cover; display: block; height: 100%; position: relative; -webkit-transition: opacity 0.1s ease-in-out; transition: opacity 0.1s ease-in-out; width: 100%; } .related-interest .interestWrapper .interestLabel { bottom: 0; position: absolute; width: 100%; } .related-interest .interestWrapper .interestLabel h2 { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; color: #fff; font-size: 13px; line-height: 1.1; padding: 8px; text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3); text-transform: capitalize; font-weight: bold; } .related-interest .interestWrapper:hover > .interestImage { overflow: hidden; opacity: 1; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; } .related-interest .interestWrapper:active { -ms-transform: scale(0.95, 0.95); -webkit-transform: scale(0.95, 0.95); transform: scale(0.95, 0.95); } .Interest .interestWrapper:active > .interestImage { overflow: hidden; opacity: 0.5; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; background-color: #000; } .vip-icon { width: auto !important; height: 15px !important; } .vip_stamp { margin-top: -25px; margin-right: -20px; float: right; } .vip_stamp img { height: 60px; width: 60px; } .shop-vip-notice-header { background-color: #f39c12; color: #fff; } .shop-vip-notice-header a { color: #fff; } .register_vip_floating a { background: url('../images/register_vip_floating_hover.png?v=2') no-repeat center top; background-size: 50px 200px; height: 200px; width: 50px; display: block; position: fixed; top: 30%; } .register_vip_floating a:hover { background: url('../images/register_vip_floating.png') no-repeat center top; background-size: 50px 200px; } #productStatisticModal .modal-dialog, #shopStatisticModal .modal-dialog { width: 900px; } #cartModal .modal-dialog { width: 800px; } .add-to-cart { margin-bottom: 22px; } .add-to-cart .btn { margin-right: 10px; } .cart-product-quantity { width: 50px; } .shop-analytics { margin-top: 20px; } .shop-analytics .analytics-module { width: 50%; float: left; } .shop-analytics .analytics-module .module-header { font-size: 16px; line-height: 20px; margin-bottom: 14px; } .survey-single-page label { cursor: pointer; } .survey-modal-body { line-height: 24px; } .survey-modal-body p { margin-top: 10px; } .product_availability { color: #41B600; } .product_unavailability { color: red; } .source-page h1 { font-size: 22pt; } .source-page-request { margin: 0 auto; width: 600px; } .source-page-request .image-list { display: inline-block; } .source-page-request .image-list li { margin-top: 6px !important; height: 100px; float: left; margin-right: 5px; } .source-page-request .image-list li img { width: 100px; float: left; } .source-page-request .quantity { width: 150px; } .source-page-request .price { width: 150px; } .form-group.inline-form { float: left; margin-right: 50px; } .source-page-request .categorylist { float: left; margin-right: 5px; } .source-page-request .categorylist select { min-width: 150px; max-width: 300px; font-size: 14px; padding: 4px; border-radius: 5px; border: 1px solid #ccc; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; } .sticky-wrapper.is-sticky > #stick-manage-tool { background: #f9f9f9; z-index: 10000; font-size: 9pt; padding-top: 6px; -webkit-box-shadow: 0 2px 1px #e0e0e0; -moz-box-shadow: 0 2px 1px #e0e0e0; box-shadow: 0 2px 1px #e0e0e0; } .sticky-wrapper.is-sticky > #stick-manage-tool .pagination { padding-left: 5px; } #requestToBuyModal > .modal-dialog { width: 400px; } #requestToBuyModal label { width: 150px; } .form-control.quantity { width: 204px; display: inline; } .request-to-buy-form-success { display: none; } .form-control.input-hidden { outline: 0; border: 0; box-shadow: none; border-color: #ccc; width: auto; } .product-item:hover .input-hidden { border: 1px solid #ccc; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; } .app-widget { margin-top: 5px; } .partnerlist > .fb_iframe_widget, .partnerlist > .fb_iframe_widget span, .partnerlist > .fb_iframe_widget span iframe[style] { width: 100% !important; } .icon { background-image: url('../images/icon.png'); background-repeat: no-repeat; } .icon.android { display: inline-block; width: 35px; height: 26px; background-position: 2px -1795px; } .btn-no-shadow { box-shadow: none; padding-bottom: 4px; } .noti-app { background-color: #ECF0F1; margin-bottom: 20px; padding: 20px; } .seller-wrap { margin-top: 10px; width: 25%; float: right; } .seller-wrap .seller-info { border: 1px solid #ddd; padding: 15px; } .seller-wrap .seller-contact { border: 1px solid #ddd; border-top: none; padding: 15px; } .seller-wrap .seller-contact .btn { width: 100%; } .seller-wrap .seller-info .seller-name { margin-top: 5px; } .seller-wrap .seller-info .seller-name > a { color: #f60; font-weight: bold; } .seller-wrap .seller-info .seller-address { color: #999; margin-top: 10px; font-size: 9pt; } .seller-wrap .seller-info .seller-join-date { margin-top: 10px; font-size: 9pt; } .seller-wrap .seller-info .seller-phone, .seller-email { margin-top: 10px; } .seller-wrap .seller-info .seller-phone li, .seller-email li { margin-top: 3px; } .btn-super-small { font-size: 11px; } .btn.contact-now { text-shadow: none; font-size: 11pt; background-color: #f60; border: 1px solid #e87b0e; vertical-align: initial; color: #fff; } .btn.contact-now:hover { background-color: #FC7318 } .contact-phone { font-size: 13pt; } .product-contact { margin: 30px 0 30px; } span.middle { vertical-align: middle; } .required:after { content: "*"; color: red; }
public/static/muadambao/css/screen.css
* { margin: 0; padding: 0; outline: none; } dt { font-weight: normal; } body { -webkit-font-smoothing: antialiased; background: #FFF; font: normal 14px "Helvetica Neue", "HelveticaNeue", Helvetica, Arial, sans-serif; color: #444; overflow-y: scroll; } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { line-height: inherit; } .modal-dialog { margin-top: 60px; } .page-header { padding-bottom: 9px; margin: 10px 0 20px; border-bottom: 1px solid #eee } .breadcrumb { margin-bottom: 15px; list-style: none; background-color: transparent; padding: 5px 0 0 0; } .breadcrumb > li { display: inline-block; *display:inline; zoom:1; } .breadcrumb > li + li:before { padding: 0 5px; color: #ccc; content: "›" } .breadcrumb > .active { color: #999 } .btn { border-radius: 3px; } .btn-small, .btn-mini { padding: 5px 10px; font-size: 12px; } .btn-mini { padding: 3px 5px } .btn-white { background-color: #FFF; color: #737373; border-color: rgba(0,0,0,0.17); text-shadow: none; } .btn-gray { background-color: #f5f5f5; color: #333; border-color: #bcc1c8; text-shadow: none; } a.btn.btn-gray { color: #737373; } a.btn.btn-white { color: #737373; } .btn-white:hover, .btn-white:focus, .btn-white:active, .btn-white.active { background-color: #FAFAFA; border-color: rgba(20, 20, 20, 0.17); color: #737373; } .btn-gray:hover, .btn-gray:focus, .btn-gray:active, .btn-gray.active { background-color: #e0e3e8; border-color: rgba(20, 20, 20, 0.17); color: #737373; } .btn-white.disabled, .btn-white[disabled], fieldset[disabled] .btn-white, .btn-white.disabled:hover, .btn-white[disabled]:hover, fieldset[disabled] .btn-white:hover, .btn-white.disabled:focus, .btn-white[disabled]:focus, fieldset[disabled] .btn-white:focus, .btn-white.disabled:active, .btn-white[disabled]:active, fieldset[disabled] .btn-white:active, .btn-white.disabled.active, .btn-white[disabled].active, fieldset[disabled] .btn-white.active { background-color: #FAFAFA; border-color: rgba(20, 20, 20, 0.17); color: #737373; } .btn-yellow { background-color: #f3d078; color: #333; border-color: #cba957; text-shadow: none; } a.btn.btn-yellow { color: #333; } .btn-yellow:hover, .btn-yellow:focus, .btn-yellow:active, .btn-yellow.active { background-color: #f0c14b; border-color: #c59f43; color: #333; } .btn-yellow.disabled, .btn-yellow[disabled], fieldset[disabled] .btn-yellow, .btn-yellow.disabled:hover, .btn-yellow[disabled]:hover, fieldset[disabled] .btn-yellow:hover, .btn-yellow.disabled:focus, .btn-yellow[disabled]:focus, fieldset[disabled] .btn-yellow:focus, .btn-yellow.disabled:active, .btn-yellow[disabled]:active, fieldset[disabled] .btn-yellow:active, .btn-yellow.disabled.active, .btn-yellow[disabled].active, fieldset[disabled] .btn-yellow.active { background-color: #f0c14b; border-color: #c59f43; color: #333; } /*.btn-default { color: #fff; background-color: #474949; } .btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active { background-color: #3a3c3c; border-color: #2e2f2f; color: #fff; } .btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active { background-color: #fafafa; border-color: #474949 } */ .btn-radius { -webkit-border-radius: 2px; border-radius: 2px; } .btn-large { padding: 14px 14px; font-size: 18px; border-radius: 3px } .btn-primary { color: #ffffff; background-color: #e74c3c; border-color: #DF311F; } .btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { color: #ffffff; background-color: #EE4018; border-color: #DF311F; } .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { background-image: none; } .btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active { background-color: #eee; border-color: #aaa; color: #bebebe; } .btn-primary { color: #fff; background-color: #e74c3c; border-color: #DF311F; } .btn-primary:hover { background-color: #EE4018; border-color: #DF311F; } .btn-warning { color: #fff; background-color: #f0ad4e; border-color: #f0ad4e } .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active { background-color: #eea236; border-color: #ec971f } .btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active { background-color: #f0ad4e; border-color: #f0ad4e } .btn-danger { color: #fff; background-color: #e74c3c; } .btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active { background-color: #d43f3a; border-color: #c9302c } .btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active { background-color: #d9534f; border-color: #d9534f } .btn-success { color: #fff; background-color: #5cb85c; border-color: #5cb85c } .btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active { background-color: #4cae4c; border-color: #449d44 } .btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active { background-color: #5cb85c; border-color: #5cb85c } .btn-info { color: #fff; background-color: #5bc0de; border-color: #5bc0de } .btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active { background-color: #46b8da; border-color: #31b0d5 } .btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active { background-color: #5bc0de; border-color: #5bc0de } .btn-link { font-weight: normal; color: #428bca; cursor: pointer; border-radius: 0 } .btn-link, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link { background-color: transparent; -webkit-box-shadow: none; box-shadow: none } .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { border-color: transparent } .btn-link:hover, .btn-link:focus { color: #2a6496; text-decoration: underline; background-color: transparent } .btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus { color: #333; text-decoration: none } .glyphicon.top2px { position: relative; top: 1px; } .category-sort, .category-filter { font-size: 13px; float: right !important; display: inline; } .category-sort .like-share { margin-top: -6px; } .category-sort .active, .category-filter .active { color: #f60; } .category-sort .glyphicon { margin-left: 5px; } h1.title { font-size: 15px; } .clear { clear: both !important } a, a:visited, a:active { color: #333; text-decoration: none; } a:hover { color: #f60; text-decoration: none; } a:focus, a:hover, a:active { outline: none; } a img { border: none; } img { border: none; } ol, ul { list-style: none outside none; } body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea/*, p*/, blockquote, th, td { margin: 0px; padding: 0px; } table { border-collapse: collapse; border-spacing: 0px; } tr { vertical-align: top; } fieldset, img { border: 0px; } abbr, acronym { border: 0px; } address, caption, cite, code, dfn, th, var { font-style: normal; font-weight: normal; } h1, h2, h3, h4, h5, h6 { font-size: 100%; font-weight: normal; } ol, ul { list-style: none; } caption, th { text-align: left; } q:before, q:after { content: ''; } .right { float: right; } .left { float: left; } input, select, textarea { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; outline: 0; } .wrap { width: auto; min-width: 990px; max-width: 1200px; margin: 0 auto; } .wrap.wrap-large { width: 90%; } .fixed-navbar { top: 0; position: fixed; width: 100%; z-index: 99998; box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 1px 0 0 rgba(0, 0, 0, 0.1); } .navbar-two { height: 30px; background-color: rgb(250, 250, 250); border-bottom: 1px solid rgba(0, 0, 0, 0.0980392); margin-bottom: 8px; color: #333; font-size: 10pt; } .navbar-two a { color: #333; } .navbar-two ul { margin-top: 7px; white-space: nowrap; } .navbar-two ul li { display: inline; margin-right: 15px; } .navbar-two li { margin-top: 6px; padding: 0 7px 7px 7px; } .navbar-two li:hover { border-bottom: 1px solid #f60; -webkit-transition: all 200ms ease-out; -o-transition: all 200ms ease-out; -moz-transition: all 200ms ease-out; } .nopad { padding: 0px !important; } .nomar { margin: 0px !important; } .nobg { background: none !important; } .mb10 { margin-bottom: 10px !important; } .mb20 { margin-bottom: 20px !important; } .mg60 { margin-top: 60px !important; } .mg45 { margin-top: 45px !important; } .mg15 { margin-top: 15px; } .mg10 { margin-top: 10px; } .mg5 { margin-top: 5px; } .mg20 { margin-top: 20px; } .mb15 { margin-bottom: 15px !important; } .mb5 { margin-bottom: 5px !important; } .mb40 { margin-bottom: 40px !important; } .mr10 { margin-right: 10px; } .co1 { color: #196d91; } .co2 { color: #b92c28; } /* TOP MENU */ .pA { background: #333; height: 45px; border-bottom: #000; } .menul { float: left; } .imenu > li { float: left; padding: 13px 8px 0; height: 64px; text-align: center; white-space: nowrap; } .imenu > li:hover { background-color: #272727; } .imenu > li.logo { padding-top: 0; background-color: transparent; margin-left: -14px; } .imenu > li.logo > a { background-image: url("../images/logo-1.png?v=3"); background-repeat: no-repeat; background-size: 90px 35px; display: block; height: 45px; text-indent: -9999px; background-position: center; } .imenu > li > a { font-size: 14px; text-transform: uppercase; color: #FFF; font-weight: bold; } .logo { width: 110px; } .thoitrang { background-position: -103px 0; width: 100px; } .giaydep { background-position: -201px 0; width: 85px; } .phukien { background-position: -282px 0; width: 90px; } .imenu > li:hover .submenu { display: block; } .submenu { background-color: #FFFFFF; border-color: #BE5A7B; border-style: none solid solid; border-width: 0 1px 3px; position: absolute; width: 400px; z-index: 9999; display: none; top: 45px; margin-left: -9px; } .submenu ul { float: left; font-size: 12px; padding: 10px; width: 180px; } .submenu .head { background: none repeat scroll 0 0 #3491BA; border-radius: 5px 5px 5px 5px; font-weight: bold; margin: 0 0 5px; padding: 5px 0; text-align: center; text-transform: uppercase; } .submenu .head.gender { color: #FFF; } .submenu .head a { color: #FFF; } .submenu .parent { background: url("../images/list.jpg") no-repeat scroll 3px 7px transparent; border-left: 0 none; margin-left: 5px; padding-left: 10px; } .submenu li { /*border-left:1px solid #EBF0F4;margin-left:20px;*/ padding: 2px 5px; } .submenu .snu .head { background: none repeat scroll 0 0 #EF7977; } .menur { float: right; } .listloadmore { text-align: center } .menur .location { background: url("../images/location.jpg") no-repeat scroll 0 0 transparent; float: left; height: 32px; overflow: hidden; width: 100px; margin-top: 5px; } .menur .location select { background: transparent; border: 0 none; color: #FFF; font-size: 12px; padding: 9px 5px; width: 103px; -webkit-appearance: none; } .menur .search { float: left; height: 32px; overflow: hidden; width: 300px; margin-top: 5px; margin-left: 10px; margin-right: 10px; border: 1px solid #585858; -webkit-border-radius: 20px; padding: 0 4px 0 10px; -moz-border-radius: 20px; } .menur .search:hover { border-color: #C0C0C0 !important; } .menur .search input { background: none repeat scroll 0 0 transparent; border: medium none; color: #FFF; } .btn-follow { padding: 5px !important; line-height: 10px !important; color: #fff !important; } .menur .search .btnsearch { color: #FFF; font-size: 12pt; cursor: pointer; line-height: 1; top: 4px; position: relative; } .menur .search .btnsearch:hover { color: #f60; } .menur .search form { font-size: 11px; line-height: 33px; padding-left: 5px; } .searchinputcontainer { width: 253px; top: 1px; position: relative; font-size: 12px; } .searchinputcontainer::-webkit-input-placeholder { color: #999; } .searchinputcontainer:-moz-placeholder { color: #999; } .searchinputcontainer:-ms-input-placeholder { /* IE10+*/ color: #999; } .searchbuttoncontainer { height: 20px; text-indent: -999px; width: 20px; cursor: pointer; } .select-search { position: relative; } .menur .open-shop { float: left; line-height: 44px; padding: 0 10px; } .menur .open-shop a { color: #F0F0F0; } .menur .open-shop > a > span { vertical-align: middle; } .menur .user { float: left; padding: 6px 9px 0 21px; height: 38px; } .menur .user a { display: block; float: left; } .ucp a:hover { color: #000 !important; } .menur .user a:hover, .menur .user a:visited, .menur .user a:active { color: #F0F0F0; } .btn-login { /*color: !important;*/ } .menur .user .ava > img { border-radius: 100% 100% 100% 100%; height: 30px; } .mes, .noti { background: url("../images/fb.png") no-repeat scroll 0 0 transparent; height: 23px; margin-top: 5px; overflow: hidden; text-indent: -999px; width: 23px; } .noti { background-position: -27px 0; } .noti:hover { background-position: -27px -27px; } .mes:hover { background-position: 0px -27px; } .usHover:hover .ucp { display: block; } .usHover { float: left; position: relative; margin-right: 5px; height: 40px; } .ucp { background: none repeat scroll 0 0 #FFFFFF; border: 1px solid #CECECE; box-shadow: 0 0 9px #CECECE; left: 0; position: absolute; top: 25px; width: 70px; z-index: 999; display: none; } .ucp > li { border-bottom: 1px dashed #CECECE; font-size: 11px; height: 15px; line-height: 15px; margin: 5px 5px 0; padding-bottom: 5px; } .ucp > li:last-child { border-bottom: none; } .pS .hS { border-bottom: 2px solid #2C3E50; height: 33px; overflow: hidden; } .pS .hS .head li { float: left; line-height: 32px; margin: 0 10px; } .pS .hS .head .xuhuong, .pS .hS .head .moinhat, .pS .hS .head .timkiem { margin-right: 0; font-weight: bold; } .pS .hS .head .moinhat > a, .pS .hS .head .moinhat { color: #333 !important; font-size: 17px; line-height: 32px; margin-right: 10px; } .pS .hS .head .timkiem { background: none repeat scroll 0 0 #146D93; text-align: center; width: 230px; } .pS .hS .head .xuhuong a, .pS .hS .head .moinhat, .pS .hS .head .timkiem a { color: #FFF; text-transform: uppercase; } .pS .hS span.more { float: right; margin-right: 10px; line-height: 31px; } .pS .hS span.more > a > i { font-size: 11px; } .pS .hS span.more > a > i { top: 0; } .mc1 { float: left; width: 250px; } .mc2 { float: left; width: 750px; } .pS .mS .search { height: auto !important; } .pS .mS .none { padding: 10px; } .pS .mS .search .searchbox { background: url("../images/searchbox.jpg") no-repeat scroll 0 0 transparent; height: 34px; margin: 10px auto; width: 219px; } .pS .mS .search .searchinputcontainer { background: none repeat scroll 0 0 transparent; border: 0 none; height: 34px; padding-left: 10px; width: 177px; } .pS .mS .search .searchbuttoncontainer { background: none repeat scroll 0 0 transparent; border: 0 none; } .pS .mS .search .bs_row { height: 22px; margin-bottom: 10px; overflow: hidden; padding: 0 10px; font-size: 11px; } .pS .mS .search .bs_row select, .pS .mS .search .bs_row input { border: 1px solid #E4E4E4; float: right; height: 22px; padding: 2px; width: 131px; font-size: 11px; } .pS .mS .search .bs_row input { height: 16px; width: 125px; } .pS .mS .search .bnt-cover-now { background: url(../images/btn-min.jpg) no-repeat; width: 98px; height: 28px; display: block; margin: 0 auto; margin-bottom: 10px; text-align: center; line-height: 28px; color: #FFF; } .pS .mS .item { background: none repeat scroll 0 0 #FFFFFF; height: 350px; margin: 10px; overflow: hidden; width: 270px; position: absolute; border: 1px solid #FFF; } .pS .mS .item.vip { background: #fff8e7; border: 1px solid #f60; } .mS .product-item { float: left; width: 25%; min-height: 380px; } .mS .product-item .time-ago { font-size: 8pt; width: 130px; position: absolute; right: 10px; margin-top: 16px; color: #666; text-align: right; } .mS .product-item.shop-item { width: 33%; } .pS .mS .item a { display: block; cursor: pointer; position: relative; color: #666; } .pS .mS .item .shop-name a { display: inline; } .pS .mS .item .vip-icon { margin-right: 3px; } .pS .mS .item a:hover { color: #F60; } .pS .mS .item img { width: 100%; height: 270px; } .pS .mS .item h2 { height: 18px; line-height: 18px; overflow: hidden; text-align: center; position: relative; margin-bottom: 2px; margin-top: 5px; padding: 0 10px; } .pS .mS .item p { color: #f60; font-weight: bold; overflow: hidden; text-align: center; position: relative; } .pS .mS .item .cover { background: none repeat scroll 0 0 rgba(0, 0, 0, 0.7); height: 230px; left: 0; position: absolute; top: 0; width: 230px; display: none; } .pS .mS .item .cover .info { background: url("../images/info.png") repeat scroll 0 0 transparent; height: 30px; overflow: hidden; width: 230px; } .pS .mS .item .cover .info .location { color: #FFF; line-height: 26px; margin-left: 21px; float: left; } .pS .mS .item .cover .info .shop { color: #FFF; float: right; line-height: 26px; margin-right: 10px; } .pS .mS .item .cover .info a { color: #FFF; text-transform: uppercase; } .pS .mS .item .cover div.btn { margin-top: 38px; } .pS .mS .item .cover .btn { display: block; margin: 26px 28px 0; width: 70px; } .pS .mS .item .cover .xem { background: url("../images/btn.png") repeat scroll 0 -5px transparent; display: block; float: left; height: 56px; width: 142px; } .pS .mS .item .cover .wili { background: url("../images/btn.png") repeat scroll 0 -64px transparent; display: block; float: left; height: 63px; width: 142px; } .pS .mS .item:hover { border: 1px solid #ccc; height: 360px; box-shadow: 2px 2px 4px rgba(0, 0, 0, .13); overflow: visible; z-index: 10; } .pS .mS .item:hover .cover { display: block; cursor: pointer; } .pS .mS .item2 { background: none repeat scroll 0 0 #FFFFFF; box-shadow: 0 0 9px #F0F0F0; height: 340px; margin: 10px; overflow: hidden; width: 230px; position: relative; float: left; } .pS .mS .item2 .bigthumb { height: 210px; width: 210px; display: block; margin: 10px; } .pS .mS .item2 .bigthumb img { height: 210px; width: 210px; } .smallthumb > img { height: 60px; width: 60px; } .collection-thumb-list { text-align: center; } .pS .mS .item2 h2 { height: 40px; line-height: 40px; overflow: hidden; text-align: center; position: relative; font-size: 10px; } .pS .mS .item2 h2 a { color: #3391B9; font-weight: bold; font-size: 14px; text-transform: capitalize; } .pS .mS .item2:hover { box-shadow: 0 0 3px #666666; } .pS .mS .item2 .cover { background: none repeat scroll 0 0 rgba(0, 0, 0, 0.7); height: 210px; left: 0; margin: 10px 0 0 10px; position: absolute; top: 0; width: 210px; display: none; } .pS .mS .item2 .cover .info { background: url("../images/info.png") repeat scroll 0 0 transparent; height: 30px; overflow: hidden; width: 210px; } .pS .mS .item2 .cover .info .location { color: #FFF; line-height: 26px; margin-left: 21px; float: left; } .pS .mS .item2 .cover .info .shop { color: #FFF; float: right; line-height: 26px; margin-right: 10px; } .pS .mS .item2 .cover .info a { color: #FFF; text-transform: uppercase; } .pS .mS .item2 .cover div.btn { margin-top: 38px; } .pS .mS .item2 .cover .btn { display: block; margin: 4px 23px 0; width: 70px; } .pS .mS .item2 .cover .xem { background: url("../images/btn.png") repeat scroll 0 -5px transparent; display: block; float: left; height: 56px; width: 142px; } .pS .mS .item2 .cover .wili { background: url("../images/btn.png") repeat scroll 0 -64px transparent; display: block; float: left; height: 63px; width: 142px; } .pS .mS .item2 .bigthumb:hover .cover { display: block; } .item.category .head { border-bottom: 2px solid #3391B9; height: 30px; margin: 10px 10px 0; } .item.category .head li { background-color: #EBF0F4; float: left; height: 30px; line-height: 30px; margin-right: 2px; padding: 0 5px; } .item.category .head li:hover, .item.category .head li.active { background: #3391B9; } .item.category .head li.active > a { color: #FFF !important; } .head li a { color: #333; } .head li a:hover { color: #f60; } .item.category { height: auto !important; } .item.category .head .home { background: url("../images/home.png") no-repeat scroll 3px 5px #3391B9; text-indent: -999px; width: 22px; } .item.category .head .home.notactive { background: url("../images/home.png") no-repeat scroll 3px 5px #EBF0F4; } .item.category .head .nam, .item.category .head .nu { text-align: center; width: 50px; } .item.category .head .nam a, .item.category .head .nu a { color: #333; } .item.category .head .nam:hover a, .item.category .head .nu:hover a { color: #FFF; } .item.category .cat { padding: 10px; } .namcat.category .cat li { background: url("../images/list.jpg") no-repeat scroll 4px 12px transparent; border-bottom: 1px solid #EBF0F4; font-size: 12px; height: 20px; line-height: 20px; margin-left: 20px; padding: 2px 5px 2px 10px; } .namcat.category .cat .parent { margin-left: 5px; } .pB { margin: 0 auto; width: auto; min-width: 990px; max-width: 1200px; } .shopava { padding: 5px 26px 0; position: relative; width: 168px; float: left; } .shopava .avatar { background: none repeat scroll 0 0 #FFFFFF; border-radius: 10px 10px 10px 10px; box-shadow: 0 0 9px #F0F0F0; height: 147px; padding: 10px; position: relative; width: 147px; } .shopava .avatar img { border-radius: 10px 10px 10px 10px; height: 147px; width: 147px; } .shopava .shoptic { background: url("../images/shop.png") no-repeat scroll 0 0 transparent; display: block; height: 45px; left: 0; position: absolute; top: 115px; width: 220px; } .uinfo { height: 178px; } .c1 { float: left; margin: 30px 20px 0 50px; overflow: hidden; width: 280px; } .cname > li { font-size: 12px; margin-bottom: 5px; } .name { font-size: 20px !important; font-weight: bold; margin-bottom: 10px; } .c2 { float: left; font-size: 12px; margin: 30px 0 0 10px; width: 140px; } .c2 li { margin-bottom: 5px; } .c2 span { float: right; } .c3 { float: left; margin-left: 50px; margin-top: 50px; width: 130px; } .c3 a.theodoi { background: url("../images/theodoi.jpg") no-repeat scroll 0 0 transparent; color: #FFF; display: block; font-weight: bold; height: 38px; line-height: 37px; text-align: center; text-transform: uppercase; width: 133px; } .c3 a.theodoi:hover { opacity: 0.9; filter: alpha(opacity=90); -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; -moz-opacity: 0.9; -khtml-opacity: 0.9; zoom: 1; } .c3 a.count { background: url("../images/theodoi.jpg") no-repeat scroll 0 -47px transparent; display: block; font-size: 13px; height: 42px; line-height: 49px; margin-top: 5px; text-align: center; width: 133px; } .uava { float: left; margin: 5px 20px 30px 30px; width: 168px; } .uava .avatar { background: none repeat scroll 0 0 #FFFFFF; border-radius: 140px 140px 140px 140px; box-shadow: 0 0 9px #F0F0F0; height: 147px; padding: 10px; position: relative; width: 147px; } .uava .avatar img { border-radius: 100px 100px 100px 100px; height: 147px; width: 147px; } /* .item2:hover .mask{display: block;}*/ .mask { background: none repeat scroll 0 0 rgba(0, 0, 0, 0.9); height: 100%; left: 0; position: fixed; top: 0; width: 100%; z-index: 999; } .addtudo { display: block; margin: 100px auto 0; width: 600px; } .addtudo .item { background: none repeat scroll 0 0 #FFFFFF; box-shadow: 0 0 9px #000000; float: left; height: 325px; margin-right: 10px; overflow: hidden; position: relative; width: 230px; } .addtudo .item img { height: 230px; display: block; margin: 5px auto; position: relative; } .addtudo .item h2 { height: 40px; line-height: 40px; overflow: hidden; text-align: center; position: relative; } .addtudo .item p { color: #146E93; font-weight: bold; height: 20px; line-height: 20px; overflow: hidden; text-align: center; position: relative; } .chontudo { background: none repeat scroll 0 0 #FFFFFF; display: block; float: left; width: 290px; } .chontudo .head { background: none repeat scroll 0 0 #3491BA; padding: 7px 0 0 5px; color: #FFF; height: 23px; } .chontudo li { height: 30px; line-height: 30px; padding: 0 20px; } .chontudo li:hover { background: none repeat scroll 0 0 #3491BA; color: #FFF; cursor: pointer; } .chontudo span { color: #FFF; float: right; font-size: 10px; } .chontudo li.selected { background-color: #146C92; color: #FFF; } .chontudo .add-closet-button { float: right; padding: 5px; } #closetlist { height: 200px; overflow-y: scroll; } .addnew { background: url("../images/addnew.jpg") no-repeat scroll 0 0 transparent; height: 40px; margin: 0 auto 5px; padding-left: 20px; width: 260px; } .addnew input { background: none repeat scroll 0 0 transparent; border: 0 none; float: left; height: 35px; width: 220px; } .addnew .searchbuttoncontainer { float: left; height: 40px; width: 30px; } .pN { height: 25px; line-height: 25px; } .pN li { background: url("../images/bredum.jpg") no-repeat scroll 0 -18px transparent; float: left; padding-left: 20px; } .pN li.home { background: url("../images/bredum.jpg") no-repeat scroll 0 2px transparent !important; } .pSP { margin: 0 auto; } .pSP .slide { float: left; margin: 0 60px; width: 400px; } .pSP .slide .bigimg { margin-bottom: 11px; position: relative; margin-left: 33px; } .pSP .bigimg { text-align: center; position: relative; border: 1px solid #E8E8E8; } .pSP .bigimg img { width: 100%; cursor: pointer; } .pSP .slide .bigimg .imgdetail { } .pSP .slide .bigimg div.desc { font-size: 13px; text-align: center; padding-top: 4px; font-style: italic; } .pSP .slide .navimg > li { float: left; height: 64px; margin: 0 5px; } .pSP .slide .navimg img { height: 65px; width: 65px; } .pSP .infosp { float: left; margin-left: 39px; width: 370px; } .pSP .infosp .option { margin-left: 55px; border: none; } .pSP .infosp div { border-bottom: 1px solid #F5F3F4; margin-bottom: 10px; padding-bottom: 10px; } .pSP .infosp div a { color: #3491ba; } .pSP .infosp h1 { font-size: 25px; } .pSP .infosp .local { background: url("../images/bredum.jpg") no-repeat scroll 0 -49px transparent; padding-left: 20px; } .pSP .infosp .fblike { float: right; margin-top: -45px; margin: -39px 0 0; border-bottom: none !important; } .pSP .infosp .fblike > div { border-bottom: none; } .pSP .infosp .price { height: 34px; text-align: center; } .pSP .infosp .price > p { font-size: 30px; } .pSP .infosp .price p.stockstatus { position: relative; font-size: 13px; left: 93px; top: -40px; } .pSP .infosp .price p.stockstatus .instock { color: #3491ba; } .pSP .infosp .price p.stockstatus .outstock { color: red; } .red { color: red; } .pSP .infosp .wili > p { margin: 0 110px 5px; width: 258px; } .pSP .infosp .btn_datmua { background: url("../images/bredum.jpg") repeat scroll 0 -191px transparent; display: block; height: 49px; margin: 0 auto; width: 171px; float: left; border: none; } .pSP .infosp .btn_wili { background: url("../images/bredum.jpg") repeat scroll 0 -254px transparent; display: block; height: 49px; margin: 0 auto; width: 171px; float: left; } .pSP .infosp .btn_wili:hover, .btn_datmua:hover { opacity: 0.9; filter: alpha(opacity=90); -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; -moz-opacity: 0.9; -khtml-opacity: 0.9; zoom: 1; } .pSP .infosp .count { background: url("../images/bredum.jpg") repeat scroll 0 -131px transparent; display: block; float: left; font-size: 15px; height: 49px; line-height: 46px; padding-left: 9px; width: 65px; text-align: center; } .pSP .infosp .loikhuyen { background: url("../images/bredum.jpg") no-repeat scroll 0 -77px transparent; height: 45px; line-height: 45px; padding-left: 56px; } .pSP .infosp .loikhuyen .rate { color: #146D93; font-weight: bold; } .pSPB { background: url('../images/que.jpg') no-repeat top center; padding-top: 30px; } .pSPB .p1 { float: left; width: 100%; } .pSPB .p1 .csbs li { border-bottom: 1px solid #F5F3F4; margin-bottom: 10px; padding-bottom: 10px; } .pSPB .p1 .head { border-bottom: 5px solid #EBF0F6; color: #3491BA; font-weight: bold; height: 15px; margin-bottom: 10px; padding-bottom: 5px; text-transform: uppercase; } .pSPB .chititetsp li { border-bottom: 1px solid #EBF0F4; margin-bottom: 5px; padding-bottom: 2px; } .pSPB .chititetsp span { display: block; float: left; font-weight: bold; width: 100px; } .pSPB .boxcomment p { margin-bottom: 10px; } .pSPB .boxcomment span { font-size: 13px; } .pSPB .boxcomment textarea { border: 1px solid #CACACA; height: 100px; width: 100%; resize: none; padding: 5px; } .pSPB .boxcomment input { margin: 0 5px; } .btn_send_comment:hover { background-color: #357ae8; background-image: -webkit-linear-gradient(top, #4d90fe, #357ae8); background-image: linear-gradient(top, #4d90fe, #357ae8); border: 1px solid #2f5bb7; border-bottom-color: #2f5bb7; } .btn_send_comment:active { background: #357ae8; -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3); border: 1px solid #2f5bb7; border-top: 1px solid #2f5bb7; } .btn_send_comment { -webkit-box-shadow: none; box-shadow: none; background-color: #4d90fe; background-image: -webkit-linear-gradient(top, #4d90fe, #4787ed); background-image: linear-gradient(top, #4d90fe, #4787ed); border: 1px solid #3079ed; color: #fff; -webkit-border-radius: 2px; border-radius: 2px; cursor: default; font-size: 11px; font-weight: bold; text-align: center; white-space: nowrap; margin-right: 16px; height: 27px; line-height: 27px; min-width: 54px; outline: 0; padding: 0 8px; } .pSPB .boxcomment .gui { float: right; } .ykien > li { margin-top: 20px; } .ykien .avatar { float: left; margin-right: 10px; width: 45px; } .ykien .avatar img { width: 45px; } .ykien .text { float: left; width: 490px; } .ykien .text > p { padding-bottom: 5px; } .ykien .time { color: #A3A3A3; font-size: 11px; } .ykien .noidung { text-align: justify; } .ykien .huuich { float: right; font-size: 11px; margin-right: 15px; width: 65px; } .ykien .huuich > a { border: 1px solid #888; border-radius: 3px 3px 3px 3px; color: #888; display: block; margin-top: 5px; padding: 3px; text-align: center; width: 60px; } .ykien .huuich > a:hover { border-color: #b2b2b2; color: #141414; } .thaoluan li { border-bottom: 1px solid #EBF0F6; clear: both; margin-top: 20px; padding-bottom: 10px; } .thaoluan li.none { border: none; } .thaoluan .avatar { float: left; margin-right: 10px; width: 45px; } .thaoluan .avatar img { width: 45px; } .thaoluan .text > a { font-weight: bold; } .thaoluan .text > span { color: #888; font-size: 11px; } .thaoluan .reply { background: url("../images/bredum.jpg") repeat scroll 0 -314px transparent; color: #888; float: right; font-size: 10px; padding-left: 26px; } .thaoluan .reply:hover { color: #3d3d3d; } .subcomment { margin-left: 57px; margin-top: 20px; } .subcomment > li { border-bottom: 1px solid #EBF0F6; margin-bottom: 5px; padding-bottom: 5px; font-size: 12px; } .subcomment img { float: left; margin-right: 7px; width: 35px; } .inputcomment { clear: both; height: 80px; } .inputcomment > textarea { border: 1px solid #CACACA; float: left; height: 50px; margin-right: 10px; width: 570px; resize: none; padding: 5px; } .inputcomment > input { float: left; height: 50px; width: 80px; } .p2 { box-shadow: 0 0 9px #F0F0F0; float: left; margin-left: 35px; padding: 10px; width: 222px; font-size: 12px; } .p2 > img { float: right; } .p2 > span { display: block; text-align: justify; width: 150px; } .p2 > p { margin-top: 10px; } .nenmua { background: url("../images/mua.jpg") no-repeat scroll -3px 0 transparent; color: #196D91; display: block; float: left; font-size: 18px; font-weight: bold; height: 55px; margin-left: 32px; padding-top: 23px; text-align: center; width: 78px; cursor: pointer; } .konenmua { background: url("../images/mua.jpg") no-repeat scroll -93px 0 transparent; color: #196D91; display: block; float: left; font-size: 18px; font-weight: bold; height: 55px; margin-left: 10px; padding-top: 23px; text-align: center; width: 78px; cursor: pointer; } #slider-code { float: left; height: 1%; overflow: hidden; margin-left: -80px; margin-top: 20px; } #slider-code .viewport { width: 70px; height: 357px; overflow: hidden; position: relative; } #slider-code .disable { visibility: hidden; } #slider-code .overview { list-style: none; position: absolute; width: 70px; left: 0 top : 0; } #slider-code .overview li { float: left; padding: 1px; height: 70px; width: 70px; } #slider-code .buttons { margin: 0 28px; } .addcloset-button { background-color: #B71E19 !important; border-color: #B82D2A !important; width: 214px; } .addcloset-button[disabled] { background-color: #428bca !important; border-color: #428bca !important; } .purchase-form { margin: 0 auto; } .purchase-form td { padding: 0 10px 0 10px; } .purchase-form label { margin-right: 5px; } .purchase-form input { width: 200px; float: right; margin-left: 6px; } .purchase-form select { margin-left: 6px; } .purchase-form tr { height: 40px; } .purchase-form label { font-weight: normal !important; } .purchase-form-modal { width: 800px; margin-left: -110px; } .new-message { margin-right: 15px; margin-top: -6px; } .new-message span { vertical-align: middle; padding-right: 4px; } .message-body { height: 180px; overflow-x: hidden; overflow-y: scroll \9; background-color: #f5f8fa; } .message-body > ul { padding: 10px; } .message-body > ul > li { margin-bottom: 10px; } .message-body .username { font-weight: bold; } .message-body .time { color: #bfbfbf; float: right; font-size: 11px; margin-top: 7px; } .message-list { max-height: 342px; overflow-y: auto; } .message-list li { cursor: pointer; position: relative; display: block; padding: 12px 15px; border-bottom: 1px solid #e8e8e8; } .message-list img { vertical-align: top; float: left; padding-right: 5px; } .message-list .name { font-size: 14px !important; } .message-list p { margin: 0; } .message-list .pull-right { margin-top: -25px; } .message-list li:hover { text-decoration: none; background-color: #f5f5f5; background-repeat: repeat-x; background-image: -moz-linear-gradient(top, #f9f9f9 0, #f5f5f5 100%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f9f9f9), color-stop(100%, #f5f5f5)); background-image: -webkit-linear-gradient(top, #f9f9f9 0, #f5f5f5 100%); background-image: -ms-linear-gradient(top, #f9f9f9 0, #f5f5f5 100%); background-image: -o-linear-gradient(top, #f9f9f9 0, #f5f5f5 100%); background-image: linear-gradient(top, #f9f9f9 0, #f5f5f5 100%); } .img32 { width: 32px; height: 32px; } .img26 { width: 26px; height: 26px; } .cm-reply .input-small { height: 26px; } .cm-reply .input-group { width: 600px; margin-left: 57px; } .cm-reply .btn-xs { height: 26px; } .sub-cm-list { margin-left: 57px; } .sub-cm-list .name { font-size: 13px !important; } .sub-cm-list .content { font-size: 12px; } .sub-cm-list li { border-bottom-color: #F0F4F8; margin: 0; padding: 0; margin-bottom: 5px; padding-bottom: 5px; } .sub-cm-list li:last-child { border-bottom: none; } .ui-autocomplete * { text-decoration: none; } .ui-autocomplete { position: fixed; margin-top: 28px; color: #428bca; width: 478px !important; z-index: 10000; padding: 8px 0; background-color: #fff; border: 1px solid #ccc; } .ui-autocomplete ul li { list-style-type: none; } .ui-autocomplete ul { margin: 0; padding: 0; } .ui-autocomplete ul:hover, .ui-state-focus { background-color: #0097cf; cursor: pointer; color: #FFF !important; text-decoration: none !important; } .ui-autocomplete li { height: 32px; padding: 4px 15px 4px 12px; margin-top: 5px; } .ui-autocomplete .picture { margin-right: 5px; float: left; } .ui-autocomplete .username { font-weight: bold; display: block; } .ui-autocomplete .address { display: block; } .ui-helper-hidden-accessible { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } .mention-user { color: #3b5998 !important; font-weight: normal !important; } .errornotfound { text-align: center; padding-top: 100px; } .paging { text-align: center; } .fbf { float: left; margin: 14px 7px 0 7px; } .fbfGridItem { height: 210px; position: relative; width: 236px; border-radius: 3px; box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33); background: #ffffff; } .fbfGridItem .userWrapper { display: block; padding: 10px; bottom: 0; left: 0; right: 0; top: 0; position: absolute; } .fbfGridItem .username { -webkit-font-smoothing: antialiased; white-space: nowrap; overflow: hidden; -ms-text-overflow: ellipsis; text-overflow: ellipsis; color: #555555; display: block; font-size: 14px; font-weight: bold; height: 18px; margin: 0 3px 6px; position: relative; color: #333333; margin-bottom: 0; } .fbfGridItem .userStats { color: #777777; line-height: 14px; margin: 2px 0 10px 3px; } .fbfGridItem .userThumbs { overflow: hidden; } .fbfGridItem .userThumbs { margin-bottom: 7px; } .fbfGridItem .focusThumbContainer { margin-right: 3px; } .fbfGridItem .focusThumbContainer { position: relative; background: #eeeeee; height: 106px; float: left; width: 106px; } .fbfGridItem .focusThumbContainer:after { border-radius: 3px; box-shadow: 0 0 3px rgba(0, 0, 0, 0.33) inset; content: " "; height: 106px; left: 0; position: absolute; top: 0; width: 106px; } .fbfGridItem .focusThumbContainer img { border-radius: 3px; height: 106px; width: 106px; } .fbfGridItem .userFocusImage { display: block; height: 106px; width: 106px; float: left; margin: 0 3px 3px 0; } .fbfGridItem .hoverMask { border-radius: 3px; box-shadow: 0 0 3px rgba(0, 0, 0, 0.33) inset; bottom: 0; left: 0; position: absolute; right: 0; top: 0; z-index: 100; } .fbfGridItem .thumbContainer img { border-radius: 3px; height: 51px; width: 51px; } .fbfGridItem .userPin { display: block; height: 51px; width: 51px; max-width: none; } .fbfGridItem .thumbContainer.rightWrap { margin-right: 0; } .fbfGridItem .thumbContainer { position: relative; background-color: #eeeeee; float: left; margin: 0 3px 3px 0; } .fbfGridItem .thumbContainer:after { border-radius: 3px; box-shadow: 0 0 3px rgba(0, 0, 0, 0.33) inset; content: " "; height: 51px; left: 0; position: absolute; top: 0; width: 51px; } .fbfGridItem button { bottom: 10px; display: block; left: 10px; position: absolute; width: 216px; border-radius: 3px; } .cart-nav { margin-top: 3px; background-color: #FFF; padding: 4px 5px 3px; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .cart-nav > i { font-size: 16px; vertical-align: middle; } /*a.btn { color: #FFF; }*/ .cart-dialog { width: 800px !important; } .cart-count { font-weight: bold; } .cart-subtotal { width: 250px; margin: 10px 0 0 508px; text-align: right; } .cart-productlist { margin-top: 10px; border: 2px solid #ddd; max-height: 350px; overflow-y: auto; } .cart-total-text { text-align: right; } .cart-total-noboder { border: none !important; } .cart-total-money { font-weight: bold; } .text-center { text-align: center !important; } .cart-dialog .modal-body { padding-bottom: 0; } .addshopform { margin: 0 auto; width: 500px; } .addshopform input { } .addshopform .citydistrict { margin-top: 5px; } .addshopform select.form-control { width: 133px; display: inline; } .addshopform .province { width: 700px; } .addshopform .province input { width: 12px; } .addshopform .province .item { float: left; padding-right: 20px; width: 140px; } .add-product { margin: 0 auto; } .add-product .price-with-quantity table { margin-top: 15px; } .add-product .price-with-quantity .quantity-input { width: 150px; } .add-product .price-with-quantity .quantity-price { width: 200px; } .add-product .price-with-quantity label { width: 25px; } .add-product .select-category { margin-bottom: 10px; font-weight: bold; } .add-product .select-category .note { font-size: 9pt; font-weight: normal; margin: 0; } .add-product .product-name label.error { margin-left: 126px; } .add-product .categorylist label.error { vertical-align: top; } .add-product .categorylist label.valid { display: none !important; } .add-product .note { font-size: 9pt; margin-left: 133px; margin-top: 5px; } .add-product textarea { } .add-product label.top { vertical-align: top; } .add-product .form-group { margin-bottom: 10px; border-bottom: 1px solid #eee; padding: 5px 0 15px; } .add-product .form-group.error .form-control { border-color: rgba(236, 82, 82, 0.8); outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(236, 82, 82, 0.6); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(236, 82, 82, 0.6); } .add-product label { width: 130px; font-weight: normal; } .add-product .submit-input { border: none; } .add-product-page .col-sm-7 { border: 1px solid #eee; margin-left: 15px; padding-top: 20px; } .add-product-page .col-sm-4 { width: 34%; } .add-product input { width: 400px; display: inline; border-radius: 5px; } .add-product .image-list { display: inline-block; } .add-product .image-list li { margin-top: 6px !important; height: 100px; } .add-product .image-list li img { width: 100px; float: left; } .add-product .image-description { float: left; margin-left: 4px; font-size: 8pt; } .add-product .image-description .feature-image { width: 13px; } .add-product .image-description .form-control { width: 296px; height: 83px; resize: none; } .add-product .image-list .glyphicon-plus-sign { font-size: 2em; color: #ccc; } .add-product .image-list .glyphicon-plus-sign:hover { font-size: 2em; color: #3391b9; cursor: pointer; } .add-product .price { width: 143px; } .add-product .uploadbyurl .form-control { width: 334px;; } .add-product .category { display: inline-block; } .add-product .category .choosecategory { padding-right: 5px; } .add-product .category .category-list { margin-top: 10px; } .add-product .category .category-list h2 { font-weight: bold; } .add-product .category .category-list .gender { margin-right: 50px; float: left; } .add-product .category .category-list input { width: 12px; } .add-product .categorylist { float: left; margin-right: 5px; } .add-product .categorylist select { min-width: 150px; max-width: 300px; font-size: 14px; padding: 4px; border-radius: 5px; border: 1px solid #ccc; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; } .add-product .submit { margin-top: 10px; text-align: center; } .add-product .submit input { width: 160px; } .add-retail { width: 500px; margin: 0 auto; } .add-retail .add-more { line-height: 30px; vertical-align: middle; } .add-retail .more-area > input, .add-retail .more-area > div { margin-top: 10px; } .add-retail .extra { margin-top: 10px; } .register-form { width: 1000px; margin: 0 auto; } .register-form .form-group { margin-left: 10px; } .register-form .basicinfo { float: left; width: 380px; } .register-form input[type=text], .register-form input[type=password] { width: 450px; } .register-form .basicinfo input[type=text], .register-form .basicinfo input[type=password] { width: 300px; } .register-form .basicinfo input[type=password] { padding: 0 12px; } .register-form .addshopform { float: left; width: 540px; margin-left: 80px; } .register.choose_type { margin: 0 auto; width: 300px; text-align: center; margin-top: 30px; } .register .btn { width: 200px; margin-bottom: 5px; display: block; } .admin_product { height: 40px; } .fileinput-button { position: relative; overflow: hidden; border-radius: 5px; } .fileinput-button input { position: absolute; top: 0; right: 0; margin: 0; opacity: 0; -ms-filter: 'alpha(opacity=0)'; font-size: 200px; direction: ltr; cursor: pointer; } .fileinput-button2 { position: relative; overflow: hidden; } .fileinput-button2 input { position: absolute; top: 0; right: 0; margin: 0; opacity: 0; -ms-filter: 'alpha(opacity=0)'; font-size: 200px; direction: ltr; cursor: pointer; } .home-header { width: auto; min-width: 990px; max-width: 1200px; margin: 0 auto; margin-bottom: 20px; } .homecategory { float: left; width: 190px; } .rightside { margin-left: 195px; } .homecategory .header { height: 40px; background-color: #333; color: #FFF; } .homecategory .header h2 { font-size: 15px; font-weight: bold; line-height: 40px; text-indent: 6px; text-transform: uppercase; } .categorylist .catitem { line-height: 42px; text-indent: 10px; background: #ededed; border-bottom: 1px solid rgba(216, 216, 216, 0.26); border-left: 1px solid rgba(216, 216, 216, 0.26); -webkit-transition: all 200ms ease-out; -o-transition: all 200ms ease-out; -moz-transition: all 200ms ease-out; } .categorylist .catitem:hover { background-color: #d8d8d8; } .categorylist .catitem > a { width: 100px; overflow: hidden; display: block; text-align: left; } .categorylist .catitem:after { content: ''; position: absolute; margin: -23px 0 0 175px; width: 5px; height: 5px; background: url("../images/sprite.png") no-repeat 0px -33px; } .categorylist.innavbar .catitem:after { margin-left: 95px; margin-top: -23px; } .categorylist .catitem > a:hover { text-indent: 16px; cursor: pointer; } .sub-cate { position: absolute; display: none; top: 170px; margin-left: 189px; padding: 17px 10px 20px 20px; min-height: 334px; border: 3px solid #d8d8d8; box-shadow: 5px 5px 10px rgba(0, 0, 0, .3); font-size: 0; background: #fff; white-space: nowrap; z-index: 1000; } .sub-cate.index-no-login { top: 136px; } .sub-cate dl { position: relative; z-index: 1000; display: inline-block; zoom: 1; vertical-align: top; padding-right: 5px; width: 200px; font-size: 12px; float: left; } .sub-cate a:hover { text-decoration: underline; color: #f60; } .sub-cate a { color: #333; } .cate-list a { text-decoration: none; color: #333; } .sub-cate dt { font-weight: 700; font-size: 14px; margin-bottom: 5px; } .sub-cate dt a { color: #f60; } .sub-cate dd a { display: block; line-height: 26px; } .scp-banner { display: none; zoom: 1; width: 150px; } .sc-promotion { padding-top: 21px; display: none; } .category-menu li { text-align: left; } .category-menu { color: #FFF; cursor: default; } .category-menu i.glyphicon { margin-left: 5px; } .menur .notificationbar { padding: 3px; background-color: #f60; font-size: 10px; position: relative; margin-left: 4px; color: #fff; min-height: 13px; padding: 1px 3px; text-shadow: 0 -1px 0 rgba(0, 0, 0, .4); -webkit-border-radius: 2px; border-radius: 2px; } .navbar-category { margin-top: 15px; text-align: left; width: 100px; margin-left: -8px; } .navbar-category .catitem { width: 110px; border-bottom: 1px solid rgba(216, 216, 216, 0.26); } .navbar-shop-addproduct { float: left; padding-top: 8px; padding-right: 30px; height: 30px; color: #FFF; } .navbar-shop { float: left; padding-top: 8px; padding-right: 30px; height: 30px; } .navbar-shop-control { position: absolute; background-color: #FFF; padding: 3px 10px 10px; top: 45px; margin-left: -23px; width: 177px; font-size: 9pt; border-top: none; -moz-box-shadow: rgba(0, 0, 0, .5) 0 0 3px 0px; -webkit-box-shadow: rgba(0, 0, 0, .5) 0 0 3px 0px; box-shadow: rgba(0, 0, 0, .5) 0 0 3px 0px; -moz-border-radius: 0px 0px 2px 2px; -webkit-border-radius: 0px 0px 2px 2px; border-radius: 0px 0px 2px 2px; } .navbar-shop-control ul { margin-top: 8px; } .navbar-shop-control ul > li { padding-bottom: 22px; } .navbar-shop-control li i { width: 16px; display: inline-block; } .navbar-shop-control li a, .navbar-shop-control li a:hover { color: #333 !important; } .navbar-shop a { color: #F0F0F0 !important; } .navbar-shop a:hover, .navbar-shop-addproduct a:hover { color: #FFF !important; } .navbar-category li:after { margin: -19px 0 0 142px; } .navbar-category .sub-cate { top: 45px; margin-left: 108px; } .help-open-shop { word-spacing: -1px; font-size: 8pt; display: block; width: 100px; white-space: normal; margin-top: 4px; text-align: left; color: #FFF; margin-right: 10px; } .help-method-buy { word-spacing: -1px; font-size: 10pt; display: block; width: 65px; white-space: normal; text-align: left; color: #f60 !important; margin-right: 10px; } .jssort11 { font-family: Arial, Helvetica, sans-serif; } .jssort11 .i, .jssort11 .pav:hover .i { position: absolute; top: 3px; left: 3px; width: 60px; height: 30px; border: white 1px dashed; } .jssort11 .pav .i { border: white 1px solid; } .jssort11 .t, .jssort11 .pav:hover .t { position: absolute; top: 3px; left: 68px; width: 129px; height: 32px; line-height: 32px; text-align: left; color: #fc9835; font-size: 13px; font-weight: 700; } .jssort11 .pav .t, .jssort11 .phv .t, .jssort11 .p:hover .t { color: #fff; } .jssort11 .c, .jssort11 .pav:hover .c { position: absolute; top: 38px; left: 3px; width: 197px; height: 31px; line-height: 31px; color: #fff; font-size: 11px; font-weight: 400; overflow: hidden; } .jssort11 .pav .c, .jssort11 .phv .c, .jssort11 .p:hover .c { color: #fc9835; } .jssort11 .t, .jssort11 .c { transition: color 2s; -moz-transition: color 2s; -webkit-transition: color 2s; -o-transition: color 2s; } .jssort11 .p:hover .t, .jssort11 .phv .t, .jssort11 .pav:hover .t, .jssort11 .p:hover .c, .jssort11 .phv .c, .jssort11 .pav:hover .c { transition: none; -moz-transition: none; -webkit-transition: none; -o-transition: none; } .jssort11 .p { background: #181818; } .jssort11 .pav, .jssort11 .pdn { background: #462300; } .jssort11 .p:hover, .jssort11 .phv, .jssort11 .pav:hover { background: #333; } #slider1_container { position: relative; top: 0px; left: 190px; width: 810px; height: 300px; background: #191919; } .slider_loading { position: absolute; top: 0px; left: 0px; } .slider_loading .loading1 { filter: alpha(opacity=70); opacity: 0.7; position: absolute; display: block; background-color: #000000; top: 0px; left: 0px; width: 100%; height: 100%; } .slider_loading .loading2 { position: absolute; display: block; background: url(../images/loading_medium.gif) no-repeat center center; top: 0px; left: 0px; width: 100%; height: 100%; } .category-page { /*max-width:1240px !important;*/ } .leftside { width: 180px; float: left; } .mainside { margin-left: 200px; } #refine-category { margin-bottom: 10px; } #refine-category-list { border-right: 1px solid #ddd; border-bottom: 1px solid #ddd; padding-bottom: 20px; } #refine-category-list .category-list { border-bottom: 1px solid #ddd; } #refine-category-list .category-list { padding: 0 0 10px; } #refine-category-list dl { overflow: hidden; } #refine-category-list .cate-title { font-weight: 700; font-family: Arial; font-size: 16px; color: #333; padding-bottom: 0; padding-top: 0; } #refine-category-list dt { line-height: 20px; padding-top: 5px; color: #333; } #refine-category-list dd { line-height: 24px; margin-left: 0; } #refine-category-list .son-category { border-bottom: none; } #refine-category-list .son-category dt { background: none; } #refine-category-list .sn-parent-title { line-height: 16px; padding: 5px 10px 0 0; } #refine-category-list .son-category a { color: #333; } #refine-category-list .back-icon { width: 10px; display: inline-block; } #refine-category-list .son-category dd { padding-left: 10px; } .common-select span { font-size: 12px; color: #888; display: inline-block; } #refine-category-list li a { font-size: 12px; font-family: Arial; color: #333; } .breadcrumb { border-radius: 0; } .breadcrumbg { font-size: 12px; } .breadcrumbg h1 { font-size: 12px; display: inline; font-weight: bold; } .countresult { margin-left: 5px; display: inline-block; } .countresult .search-count { color: #f26522; font-weight: normal; } .category-filter { background-color: #eee; padding: 10px; height: 26px; } .category-filter div { display: inline; float: left; margin-right: 5px; } .category-filter .submit { background-color: #888; color: #fff; border: 1px solid #707070; } .category-filter .filter { float: right; margin-top: 5px; } .category-filter input { padding: 5px 4px; font-family: Arial; font-weight: 400; font-size: 12px; line-height: 14px; color: #333; background-color: #fff; border: 1px solid #ccc; -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); -webkit-transition: border linear .2s; -moz-transition: border linear .2s; -ms-transition: border linear .2s; -o-transition: border linear .2s; transition: border linear .2s; } .category-filter .price { width: 100px; } .category-filter label { font-weight: normal; } .category-page .itemlist { width: 800px; margin-top: 10px; overflow: hidden; } .category-page .item { width: 33% !important; margin: 0 !important; height: 320px !important; } .category-page .item .itemdetail { padding: 19px 19px !important; } .category-page .item h2 { line-height: 20px !important; height: auto !important; } .category-page .item p { margin-top: 10px; } .category-page .item:hover { -webkit-transition: box-shadow .25s linear, min-height .35s linear; transition: box-shadow .25s linear, min-height .35s linear; } .productdetail-page { margin-top: 10px; } .productdetail-page .product-desc { margin-top: 30px; } .productdetail-page .product-desc .product-desc-content { padding: 10px; overflow: hidden; } .productdetail-page .product-desc .product-desc-content p { line-height: 27px; } .productdetail-page .product-desc .product-desc-content li { list-style-type: disc; margin-left: 14px; } .productdetail-page .product-desc-expand { margin-left: 10px; } .productdetail-page .product-desc .product-desc-header { font-size: 16px; padding: 6px; border-bottom: 1px solid #eee; } .product-specifics { background: #fafafa; } .product-specifics .attribute { width: 100px; display: inline-block; color: #747474; } .product-specifics ul li { list-style-type: none !important; } .col-sub { width: 400px; margin-left: -100%; float: left; } .col-main { float: left; width: 100%; } .util-clearfix:after { visibility: hidden; display: block; height: 0; font-size: 0; content: '\0020'; clear: both; } .util-clearfix { zoom: 1; } .product-picture { } .ui-image-viewer-loading { position: absolute; top: 0; z-index: 2; } .ui-image-viewer-loading-mask { z-index: 1; background: #FFF; opacity: .4; filter: alpha(opacity=40); } .ui-image-viewer-loading-mask, .ui-image-viewer-loading-whirl { position: absolute; display: block; width: 100%; height: 100%; } .ui-image-viewer-loading-whirl { z-index: 2; background: url('../images/loading_medium.gif') 50% 50% no-repeat; } .product-picture > img { border: 1px solid #888; } .product-picture .tip { text-align: center; color: #888; font-size: 12px; line-height: 24px; font-style: italic; } .product-picture .pic-thumbnail { text-align: center; } .product-picture .pic-thumbnail .image-nav-item { margin: 0 2px 0 0; padding-top: 4px; width: 56px; height: 56px; cursor: pointer; overflow: hidden; display: inline-block; } .product-picture .pic-thumbnail .image-nav-item.current { background: url(../images/thumb_arrow.gif) no-repeat 22px 0; } .product-picture .pic-thumbnail .image-nav-item.current span { background: #FFF; border-color: #FCAB42; border-width: 2px; } .product-picture .pic-thumbnail .image-nav-item span { display: block; width: 52px; height: 52px; border: 1px solid #dedede; display: table-cell; vertical-align: middle; } .product-picture .pic-thumbnail .image-nav-item img { border: 1px solid transparent; max-width: 50px; max-height: 50px; } .product-info-wrap { float: left; width: 75%; margin-top: 10px; } .product-info-main { padding-top: 18px; border-top: 1px solid #ddd; } .product-info { margin-left: 420px; } .product-info .by-shop { border-bottom: 2px solid #f60; margin-right: 5px; max-width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: inline-block; position: relative; top: 5px; margin-top: -1px; } .product-info .product-title { font-size: 23px; color: #333; line-height: 28px; margin-bottom: 6px; } .product-info .price { padding-left: 15px; } .product-info .price-number { color: #F60; font-size: 22px; } .product-info dl { display: block; margin-bottom: 20px; } .product-info-current { line-height: 18px; } .product-info-current { margin-bottom: 18px; } .product-info dt { float: left; width: 100px; padding: 0 10px 0 0; color: #888; line-height: 13px; word-wrap: break-word; } .product-info dd { margin-left: 101px; } .current-price { position: relative; line-height: 9px; } .ui-cost, .ui-primary-color { color: #F60 !important; } .current-price b { font-size: 22px; } .product-info-detail { margin-right: 15px; border-top: 1px solid #ddd; margin-bottom: 23px; padding-top: 20px; } .seller-wrap .warn { padding: 8px 0 8px 15px; background-color: #FFF7BD; font-size: 9pt; } .share-social .g-plus { position: relative; display: inline; top: 3px; } .share-social .fb-like-box { display: inline; } .share-social { border-top: 1px solid #ddd; height: 30px; margin-right: 15px; padding-top: 10px; margin-bottom: 20px; } .share-social hr { margin-bottom: 9px; } .share-social .wili { margin-top: -2px; } #wiliModal .modal-footer { text-align: center; } #wiliModal .dowili { width: 100px; } #wiliModal .modal-dialog { width: 400px; } .products-selected-collection-name-container { padding: 20px 0; width: 100%; text-align: left; background-color: #f7f7f7; color: #777; text-transform: none; font-family: "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif; font-size: 18px; border: 1px solid #ccc; letter-spacing: 0; } .products-selected-collection-name-container { padding: 20px 0; width: 100%; text-align: left; background-color: #f7f7f7; color: #777; text-transform: none; font-family: "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif; font-size: 18px; border: 1px solid #ccc; letter-spacing: 0; } .products-selected-collection-caret { float: right; margin-right: 20px; top: 3px !important; } .select-collection { cursor: pointer; } .products-collection-dropdown { position: relative; } .products-collection-dropdown > div li { line-height: 25px } .products-collection-dropdown > div li:hover { background-color: #fafafa; } .products-collection-dropdown > div ul a { padding: 6px 5px 6px 20px; color: #777; } .products-collection-dropdown .dropdown-menu { width: 100%; border-radius: 0; border: 0; padding-bottom: 0; min-width: 160px; padding: 5px 0; margin: 2px 0 0; list-style: none; background-color: #fff; -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); -webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box; } .products-collection-dropdown > div ul { list-style-type: none; margin: 0px; text-align: left; max-height: 270px; overflow-y: scroll; } .products-select-collection-add-collection { text-align: left; } .products-collection-dropdown > div .products-select-collection-add-collection { padding: 5px; } .products-collection-dropdown > div .products-select-collection-add-collection-button { width: 65px; height: 40px; float: right; } .products-select-collection-add-collection-name-container { margin-right: 65px; } .products-collection-dropdown > div .products-select-collection-add-collection input { margin-bottom: 0; width: 280px; padding: 4px 4px 4px 10px; height: 40px; font-size: 12px; } .products-selected-collection-name { padding-left: 20px; padding-right: 5px; font-weight: bold; } .product-info-detail .product-unit { color: #333; } .product-info-detail dd { line-height: 13px; } .add-to-wishlist { text-align: center; } .seller { font-size: 14px; } .seller .chat-now { border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 6px 0 15px 10px; background: #fafafa; color: red; margin-top: 10px; font-weight: bold; } .seller .ordernow { font-size: 11pt; margin-bottom: 5px; } .seller .seller-name > a { font-size: 15pt; font-weight: bold; color: #F54; } .seller .seller-name .vip-icon { position: relative; top: -2px; } .seller .dl { color: #777; width: 75px; display: inline-block; } .seller .attribute { display: block; line-height: 23px; } .footer { text-align: center; margin-bottom: 30px; } .footer .links > ul li { display: inline; } .footer .links > ul > li { padding-right: 10px; } .footer .copyright { padding-top: 10px; } .store-head { height: 57px; border: 1px solid #ddd; padding: 0 20px; margin-bottom: 10px; box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .15); } .store-head h1 { line-height: 55px; font-weight: bold; } .store-head .store-head-info { float: left; } .store-head .store-contact { line-height: 55px; float: right; } .store-head .store-contact a { margin-left: 10px; } .store-head .store-settings { line-height: 55px; float: left; } .store-head .store-settings a { margin-left: 10px; font-size: 10px; } .store-cover { margin-top: 5px; margin-bottom: 10px; } .store-cover .cover-wrap { height: 240px; overflow: hidden; } .store-cover img { background-size: cover; position: relative; width: 100%; } .store-cover .cover-control { position: relative; margin-left: 5px; top: -35px; } .store-container { margin-top: 10px; width: 100%; } .store-container .left-side { width: 210px; margin-left: -100%; display: inline; overflow: visible; float: left; } .store-container .left-side .widget { width: 250px; margin-bottom: 16px; } .store-container .left-side .title { background: #1abc9c; font-size: 14px; color: #fff; padding-left: 20px; line-height: 35px; box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .15); } .store-container .left-side .body { font-size: 12px; padding: 7px 11px; background: #fff; border: 1px solid #ddd; margin-top: -1px; } .store-container .left-side .body ul { padding-left: 15px; } .store-container .left-side .body ul.child { padding-left: 2px; padding-top: 5px; } .store-container .left-side .body ul.child.level3 { padding-left: 10px; } .store-container .left-side .body ul.child > li { padding-left: 10px; color: #666; background: url("../images/treechild.png") no-repeat left; } .store-container .left-side .body li { margin-bottom: 5px; } .store-container .main-side { float: left; width: 100%; } .store-container .main-wrap { margin-left: 265px; } .store-container .title .pull-right a { color: #fff; } .store-container .main-wrap .box .title { background: #1abc9c; display: block; padding-left: 20px; margin-bottom: 0; font-size: 14px; color: #fff; line-height: 35px; box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .15); } .store-container .main-wrap .box .title .pull-right { margin-right: 10px; } .colorpicker { width: 356px; height: 176px; overflow: hidden; position: absolute; background: url(../images/colorpicker_background.png); font-family: Arial, Helvetica, sans-serif; display: none; } .colorpicker_color { width: 150px; height: 150px; left: 14px; top: 13px; position: absolute; background: #f00; overflow: hidden; cursor: crosshair; } .colorpicker_color div { position: absolute; top: 0; left: 0; width: 150px; height: 150px; background: url(../images/colorpicker_overlay.png); } .colorpicker_color div div { position: absolute; top: 0; left: 0; width: 11px; height: 11px; overflow: hidden; background: url(../images/colorpicker_select.gif); margin: -5px 0 0 -5px; } .colorpicker_hue { position: absolute; top: 13px; left: 171px; width: 35px; height: 150px; cursor: n-resize; } .colorpicker_hue div { position: absolute; width: 35px; height: 9px; overflow: hidden; background: url(../images/colorpicker_indic.gif) left top; margin: -4px 0 0 0; left: 0px; } .colorpicker_new_color { position: absolute; width: 60px; height: 30px; left: 213px; top: 13px; background: #f00; } .colorpicker_current_color { position: absolute; width: 60px; height: 30px; left: 283px; top: 13px; background: #f00; } .colorpicker input { background-color: transparent; border: 1px solid transparent; position: absolute; font-size: 10px; font-family: Arial, Helvetica, sans-serif; color: #898989; top: 4px; right: 11px; text-align: right; margin: 0; padding: 0; height: 11px; } .colorpicker_hex { position: absolute; width: 72px; height: 22px; background: url(../images/colorpicker_hex.png) top; left: 212px; top: 142px; } .colorpicker_hex input { right: 6px; } .colorpicker_field { height: 22px; width: 62px; background-position: top; position: absolute; } .colorpicker_field span { position: absolute; width: 12px; height: 22px; overflow: hidden; top: 0; right: 0; cursor: n-resize; } .colorpicker_rgb_r { background-image: url(../images/colorpicker_rgb_r.png); top: 52px; left: 212px; } .colorpicker_rgb_g { background-image: url(../images/colorpicker_rgb_g.png); top: 82px; left: 212px; } .colorpicker_rgb_b { background-image: url(../images/colorpicker_rgb_b.png); top: 112px; left: 212px; } .colorpicker_hsb_h { background-image: url(../images/colorpicker_hsb_h.png); top: 52px; left: 282px; } .colorpicker_hsb_s { background-image: url(../images/colorpicker_hsb_s.png); top: 82px; left: 282px; } .colorpicker_hsb_b { background-image: url(../images/colorpicker_hsb_b.png); top: 112px; left: 282px; } .colorpicker_submit { position: absolute; width: 22px; height: 22px; background: url(../images/colorpicker_submit.png) top; left: 322px; top: 142px; overflow: hidden; } .colorpicker_focus { background-position: center; } .colorpicker_hex.colorpicker_focus { background-position: bottom; } .colorpicker_submit.colorpicker_focus { background-position: bottom; } .colorpicker_slider { background-position: bottom; } #notification { color: #707070; text-align: center; position: fixed; bottom: 0; width: 100%; display: none; } #notification p { margin: 0; background-color: #E0E0E0; padding: 10px 20px; } .contact-form { padding-left: 20px; } .contact-form .attr { margin-bottom: 15px; } .contact-form .form-label { float: left; width: 100px; font-weight: bold; } .contact-form textarea { width: 500px; height: 200px; border: 1px solid #ccc; resize: none; padding: 5px; } .contact-form .btn { position: relative; margin-left: 100px; } .contact-form .refinfo { position: relative; margin-left: 100px; background-color: #EBF5FE; width: 490px; height: 70px; padding: 5px; font-size: 10pt; } .contact-form .refinfo img { float: left; width: 70px; } .contact-form .productinfo { margin-left: 5px; float: left; } .contact-form .productinfo a { color: #06c; } .login-page { width: 840px !important; margin: 0 auto; position: relative; height: 600px; margin-top: 100px; } .login-page .login-banner { float: left; margin-top: 60px; max-width: 524px; font-size: 14pt; } .login-page .login-register { margin-top: 20px; } .login-page .login-box { float: right; padding: 25px; margin-top: 20px; width: 262px !important; border: 2px solid rgb(153, 153, 153); border: 2px solid rgba(153, 153, 153, 0.75); border-radius: 2px; -moz-border-radius: 2px; -webkit-border-radius: 2px; -khtml-border-radius: 2px; -o-border-radius: 2px; font-size: 13px !important; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; background-color: #ffffff; } .login-page .login-box .btn-primary { width: 100% !important; } .login-page .or { text-align: center; margin: 20px 0 20px; } .login-page .register { text-align: center; } .login-page .register .btn { width: 100%; } .login-page .forgot { margin-top: 5px; } .topinhour ul li { list-style: none; } .topinhour li { float: left; width: 197px; height: 294px; overflow: hidden; margin-right: 4px; text-align: center; } .topinhour li > div.timeago { position: absolute; margin-left: 111px; margin-top: 5px; font-size: 10px; background-color: rgba(0, 0, 0, 0.5); color: #FFF; padding: 5px; width: 76px; } .topinhour li > p { font-size: 10pt; text-align: center; color: #f60; } .topinhour li > h2 { font-size: 9pt; margin-top: 5px; text-align: center; width: 200px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; } .topinhour img { max-height: 226px; } .topinhour .topinhour-intro { height: 40px; text-transform: uppercase; background-color: #333; color: #FFF; font-size: 14px; font-weight: bold; line-height: 40px; padding-left: 10px; } .topinhour .topinhour-intro .view-more { text-transform: none; } .topinhour .topinhour-intro .view-more { float: right; padding-right: 12px; color: #FFF; font-weight: normal; } td.product-status .label:hover { cursor: pointer; } .shop-unapprove { position: fixed; margin: 0 auto; width: 100%; height: 100%; z-index: 10000; background-color: #FFF; opacity: 0.9; } .shop-unapprove > div { width: 40%; margin: 0 auto; text-align: center; margin-top: 100px; border: 1px solid; padding: 50px; color: #f63; } .tagcloud { clear: both; margin-top: 15px; } .tagcloud strong { float: left; margin-right: 2px; } .tagcloud ul li { list-style: none; display: inline; } .tagcloud li:after { content: ', '; } .tagcloud li:last-child:after { content: none; } .alert-page .form { float: left; width: 400px; } .alert-page .form td { height: 35px; } .alert-page .form .input-small { width: 240px; } .alert-page .formlabel { padding-right: 10px; } .alert-page .alert-intro { font-size: 10pt; width: 400px; float: left; } .alert-page .alert-intro ul { margin-left: 40px; } .alert-page .alert-intro li { list-style-type: disc; } .category-intro { background-color: #F8F8F8; padding: 10px; border-top: 1px solid #000; } .category-keyword { margin-top: 5px; padding: 3px 8px 8px 11px; border: 1px solid #E2E2E2; } .category-keyword > ul { overflow: hidden; } .category-keyword > ul > li { float: left; padding-right: 15px; overflow: hidden; display: inline-block; line-height: 27px; } .category-keyword .count { font-weight: bold; color: #c00; } .category-keyword-control { background: #fff; border: 1px solid #ddd; border-top: none; width: 100px; height: 10px; margin: -1px auto; } .category-keyword-control .expand { display: block; width: 100%; height: 100%; background-image: url("../images/arrow2.png"); background-repeat: no-repeat; background-position: 41px -139px; } .category-keyword-control .expand:hover { background-position: 41px -159px; } .category-keyword-control .collapse { background-position: 41px -119px; } .category-keyword-control .collapse:hover { background-position: 41px -99px; } /*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */ .fancybox-wrap, .fancybox-skin, .fancybox-outer, .fancybox-inner, .fancybox-image, .fancybox-wrap iframe, .fancybox-wrap object, .fancybox-nav, .fancybox-nav span, .fancybox-tmp { padding: 0; margin: 0; border: 0; outline: none; vertical-align: top; } .fancybox-wrap { position: absolute; top: 0; left: 0; z-index: 8020; } .fancybox-skin { position: relative; background: #f9f9f9; color: #444; text-shadow: none; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .fancybox-opened { z-index: 8030; } .fancybox-opened .fancybox-skin { -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); } .fancybox-outer, .fancybox-inner { position: relative; } .fancybox-inner { overflow: hidden; } .fancybox-type-iframe .fancybox-inner { -webkit-overflow-scrolling: touch; } .fancybox-error { color: #444; font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif; margin: 0; padding: 15px; white-space: nowrap; } .fancybox-image, .fancybox-iframe { display: block; width: 100%; height: 100%; } .fancybox-image { max-width: 100%; max-height: 100%; } #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span { background-image: url('../images/fancybox/fancybox_sprite.png'); } #fancybox-loading { position: fixed; top: 50%; left: 50%; margin-top: -22px; margin-left: -22px; background-position: 0 -108px; opacity: 0.8; cursor: pointer; z-index: 8060; } #fancybox-loading div { width: 44px; height: 44px; background: url('../images/fancybox/fancybox_loading.gif') center center no-repeat; } .fancybox-close { position: absolute; top: -10px; right: -10px; width: 36px; height: 36px; cursor: pointer; z-index: 8040; } .fancybox-nav { position: absolute; top: 0; width: 40%; height: 100%; cursor: pointer; text-decoration: none; background: transparent url('../images/fancybox/blank.gif'); /* helps IE */ -webkit-tap-highlight-color: rgba(0, 0, 0, 0); z-index: 8040; } .fancybox-prev { left: 0; } .fancybox-next { right: 0; } .fancybox-nav span { position: absolute; top: 50%; width: 36px; height: 34px; margin-top: -18px; cursor: pointer; z-index: 8040; visibility: hidden; } .fancybox-prev span { left: 10px; background-position: 0 -36px; } .fancybox-next span { right: 10px; background-position: 0 -72px; } .fancybox-nav:hover span { visibility: visible; } .fancybox-tmp { position: absolute; top: -99999px; left: -99999px; visibility: hidden; max-width: 99999px; max-height: 99999px; overflow: visible !important; } /* Overlay helper */ .fancybox-lock { overflow: hidden !important; width: auto; } .fancybox-lock body { overflow: hidden !important; } .fancybox-lock-test { overflow-y: hidden !important; } .fancybox-overlay { position: absolute; top: 0; left: 0; overflow: hidden; display: none; z-index: 8010; background: url('../images/fancybox/fancybox_overlay.png'); } .fancybox-overlay-fixed { position: fixed; bottom: 0; right: 0; top: 40px; } .fancybox-lock .fancybox-overlay { overflow: auto; overflow-y: scroll; } /* Title helper */ .fancybox-title { visibility: hidden; font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif; position: relative; text-shadow: none; z-index: 8050; } .fancybox-opened .fancybox-title { visibility: visible; } .fancybox-title-float-wrap { position: absolute; bottom: 0; right: 50%; margin-bottom: -35px; z-index: 8050; text-align: center; } .fancybox-title-float-wrap .child { display: inline-block; margin-right: -100%; padding: 2px 20px; background: transparent; background: rgba(0, 0, 0, 0.8); -webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px; text-shadow: 0 1px 2px #222; color: #FFF; font-weight: bold; line-height: 24px; max-width: 1000px; } .fancybox-title-outside-wrap { position: relative; margin-top: 10px; color: #fff; } .fancybox-title-inside-wrap { padding-top: 10px; } .fancybox-title-over-wrap { position: absolute; bottom: 0; left: 0; color: #fff; padding: 10px; background: #000; background: rgba(0, 0, 0, .8); } /*Retina graphics!*/ @media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) { #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span { background-image: url('../images/fancybox/fancybox_sprite@2x.png'); background-size: 44px 152px; /*The size of the normal image,half the size of the hi-res image*/ } #fancybox-loading div { background-image: url('../images/fancybox/fancybox_loading@2x.gif'); background-size: 24px 24px; /*The size of the normal image,half the size of the hi-res image*/ } } #fancybox-thumbs { position: fixed; left: 0; width: 100%; overflow: hidden; z-index: 8050; } #fancybox-thumbs.bottom { bottom: 2px; } #fancybox-thumbs.top { top: 2px; } #fancybox-thumbs ul { position: relative; list-style: none; margin: 0; padding: 0; } #fancybox-thumbs ul li { float: left; padding: 1px; opacity: 0.5; } #fancybox-thumbs ul li.active { opacity: 0.75; padding: 0; border: 1px solid #fff; } #fancybox-thumbs ul li:hover { opacity: 1; } #fancybox-thumbs ul li a { display: block; position: relative; overflow: hidden; border: 1px solid #222; background: #111; outline: none; } #fancybox-thumbs ul li img { display: block; position: relative; border: 0; padding: 0; max-width: none; } .wrap-manage { width: 100%; min-width: 990px; max-width: 1200px; margin: 0 auto; } .manage-product-list .page-header h1 { margin-top: 10px; } .manage-product-list .pagination { float: left; margin: 0 !important; } .manage-product-list .product-running { float: right; margin-top: 6px; margin-right: 10px; } .manage-product-list .search { float: right; margin-right: 10px; } .manage-product-list .search .keyword { float: left; width: 300px; border-radius: 3px 0 0 3px !important; height: 29px; border-right: none; } .manage-product-list .search .dosearch { border-radius: 0 3px 3px 0 !important; } .table thead > tr > th { font-weight: bold; } #create-gift .form-horizontal input { width: auto; height: auto; } #create-gift .page-header { margin-top: 0; padding-bottom: 0; } #create-gift .page-header h1 { font-size: 20px; } #create-gift .page-header h1 small { font-size: 14px; } #create-gift label { font-weight: normal; } #create-gift .description { width: 455px; } #create-gift .form-horizontal .control-label { } #create-gift .form-control { width: 319px !important; float: left; } #create-gift .selectbox { width: 481px !important; } label.valid { width: 24px !important; height: 24px; background: url(../images/valid.png) center center no-repeat; display: inline-block; text-indent: -9999px; } label.error { color: red; padding: 2px 8px; width: auto; font-weight: normal !important; } .user-following .table { margin: 0 auto; width: 600px; } .user-following .table tr > td { border-top: none; } .user-following .address { font-size: 13px !important; color: #8899a6 !important; } .user-following .address a { font-size: 13px !important; color: #8899a6 !important; } .user-following .followname { font-size: 15px; } .index-header { height: 34px; padding-top: 12px; margin-bottom: 10px; } .index-header .left { float: left; } .index-header .right { float: right; } .index-header .right .support-phone { color: #f60; margin-right: 5px; } .shop-notice { font-size: 10pt; color: #000; margin: 5px 0 5px; word-wrap: break-word; background-color: #f5f5f5; padding: 10px; } .userlastname { color: #F0F0F0; margin-top: 7px; } .usHover:hover .userlastname { color: #FFF !important; } .chat-now { font-size: 10pt; } .chat-now .glyphicon { position: relative; top: 7px; font-size: 15pt; } .chat-now .glyphicon.online, .shop-chat .glyphicon-comment.online { color: #f60 !important; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .chat-now .glyphicon.offline { color: #888; } .header-banner { width: 1000px; margin: 50px auto; margin-bottom: -40px; } .header-banner .title { width: 155px; display: inline-block; } .header-banner p { display: inline; } .header-banner .step { font-weight: bold; } .xchart .line { stroke-width: 3px; fill: none } .xchart .fill { stroke-width: 0 } .xchart circle { stroke: #FFF; stroke-width: 3px } .xchart .axis .domain { fill: none } .xchart .axis .tick line { stroke: #EEE; stroke-width: 1px } .xchart .axis text { color: #666; font-size: 7px } .xchart .color0 .line { stroke: #3880aa } .xchart .color0 .line .fill { pointer-events: none } .xchart .color0 rect, .xchart .color0 circle { fill: #3880aa } .xchart .color0 .fill { fill: rgba(56, 128, 170, 0.1) } .xchart .color0.comp .line { stroke: #89bbd8 } .xchart .color0.comp rect { fill: #89bbd8 } .xchart .color0.comp .fill { display: none } .xchart .color0.comp circle, .xchart .color0.comp .pointer { fill: #89bbd8 } .xchart .color1 .line { stroke: #4da944 } .xchart .color1 .line .fill { pointer-events: none } .xchart .color1 rect, .xchart .color1 circle { fill: #4da944 } .xchart .color1 .fill { fill: rgba(77, 169, 68, 0.1) } .xchart .color1.comp .line { stroke: #9dd597 } .xchart .color1.comp rect { fill: #9dd597 } .xchart .color1.comp .fill { display: none } .xchart .color1.comp circle, .xchart .color1.comp .pointer { fill: #9dd597 } .xchart .color2 .line { stroke: #f26522 } .xchart .color2 .line .fill { pointer-events: none } .xchart .color2 rect, .xchart .color2 circle { fill: #f26522 } .xchart .color2 .fill { fill: rgba(242, 101, 34, 0.1) } .xchart .color2.comp .line { stroke: #f9b99a } .xchart .color2.comp rect { fill: #f9b99a } .xchart .color2.comp .fill { display: none } .xchart .color2.comp circle, .xchart .color2.comp .pointer { fill: #f9b99a } .xchart .color3 .line { stroke: #c6080d } .xchart .color3 .line .fill { pointer-events: none } .xchart .color3 rect, .xchart .color3 circle { fill: #c6080d } .xchart .color3 .fill { fill: rgba(198, 8, 13, 0.1) } .xchart .color3.comp .line { stroke: #f8555a } .xchart .color3.comp rect { fill: #f8555a } .xchart .color3.comp .fill { display: none } .xchart .color3.comp circle, .xchart .color3.comp .pointer { fill: #f8555a } .xchart .color4 .line { stroke: #672d8b } .xchart .color4 .line .fill { pointer-events: none } .xchart .color4 rect, .xchart .color4 circle { fill: #672d8b } .xchart .color4 .fill { fill: rgba(103, 45, 139, 0.1) } .xchart .color4.comp .line { stroke: #a869ce } .xchart .color4.comp rect { fill: #a869ce } .xchart .color4.comp .fill { display: none } .xchart .color4.comp circle, .xchart .color4.comp .pointer { fill: #a869ce } .xchart .color5 .line { stroke: #ce1797 } .xchart .color5 .line .fill { pointer-events: none } .xchart .color5 rect, .xchart .color5 circle { fill: #ce1797 } .xchart .color5 .fill { fill: rgba(206, 23, 151, 0.1) } .xchart .color5.comp .line { stroke: #f075cb } .xchart .color5.comp rect { fill: #f075cb } .xchart .color5.comp .fill { display: none } .xchart .color5.comp circle, .xchart .color5.comp .pointer { fill: #f075cb } .xchart .color6 .line { stroke: #d9ce00 } .xchart .color6 .line .fill { pointer-events: none } .xchart .color6 rect, .xchart .color6 circle { fill: #d9ce00 } .xchart .color6 .fill { fill: rgba(217, 206, 0, 0.1) } .xchart .color6.comp .line { stroke: #fff75a } .xchart .color6.comp rect { fill: #fff75a } .xchart .color6.comp .fill { display: none } .xchart .color6.comp circle, .xchart .color6.comp .pointer { fill: #fff75a } .xchart .color7 .line { stroke: #754c24 } .xchart .color7 .line .fill { pointer-events: none } .xchart .color7 rect, .xchart .color7 circle { fill: #754c24 } .xchart .color7 .fill { fill: rgba(117, 76, 36, 0.1) } .xchart .color7.comp .line { stroke: #c98c50 } .xchart .color7.comp rect { fill: #c98c50 } .xchart .color7.comp .fill { display: none } .xchart .color7.comp circle, .xchart .color7.comp .pointer { fill: #c98c50 } .xchart .color8 .line { stroke: #2eb9b4 } .xchart .color8 .line .fill { pointer-events: none } .xchart .color8 rect, .xchart .color8 circle { fill: #2eb9b4 } .xchart .color8 .fill { fill: rgba(46, 185, 180, 0.1) } .xchart .color8.comp .line { stroke: #86e1de } .xchart .color8.comp rect { fill: #86e1de } .xchart .color8.comp .fill { display: none } .xchart .color8.comp circle, .xchart .color8.comp .pointer { fill: #86e1de } .xchart .color9 .line { stroke: #0e2e42 } .xchart .color9 .line .fill { pointer-events: none } .xchart .color9 rect, .xchart .color9 circle { fill: #0e2e42 } .xchart .color9 .fill { fill: rgba(14, 46, 66, 0.1) } .xchart .color9.comp .line { stroke: #2477ab } .xchart .color9.comp rect { fill: #2477ab } .xchart .color9.comp .fill { display: none } .xchart .color9.comp circle, .xchart .color9.comp .pointer { fill: #2477ab } #viewchart { height: 100px; } .border-none:first-child { border: none; } .followerlist { max-height: 400px; overflow-y: scroll; } #followerlist li { height: 25px; margin-bottom: 10px; } .gray { color: #888; } .page-header h1 { font-weight: normal; font-size: 22px; } .alert-bar { background-color: #f9edbe; border: 1px solid #f0c36d; width: 500px; padding: 7px 6px 3px 10px; height: 32px; position: relative; margin-top: -6px; margin-left: -11px; overflow: hidden; box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); } .alert-bar .glyphicon { font-size: 12pt; } .alert-bar .alert-content { max-width: 500px; overflow: hidden; display: inline-block; white-space: nowrap; text-overflow: ellipsis; font-size: 10pt; } .alert-bar .alert-content:hover { overflow: visible; } .alert-bar .fixnow { float: right; color: #f60; } .partnerlist { margin: 40px auto; overflow: hidden; white-space: nowrap; } .partnerlist.full { overflow: visible; white-space: normal; margin: 0 auto !important; } .partnerlist .more-partner-link { float: right; } .partnerlist li { display: inline-block; white-space: nowrap; } .partnerlist .full2 { padding: 5px; } .mS .product-item > .item:hover .product-more-info { display: block; } .product-more-info { display: none; padding: 5px 10px; border-top: 1px solid #eee; margin-top: 8px; background-color: #f4f4f4; height: 38px; } .product-more-info .pull-left { width: 150px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .product-more-info .shop-address { display: block; color: #888; font-size: 8pt; } .product-more-info .shop-name a { color: #f60 !important; font-weight: bold; } .product-more-info .shop-chat .glyphicon { position: relative; top: 2px; } .new-shop-widget { margin-top: 20px; margin-bottom: 30px; font-size: 13pt; background-color: #f9edbe; padding: 10px; width: 980px; height: 20px; overflow: hidden; box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .15); } .new-shop-widget .head { margin-right: 5px; } .new-shop-widget .more { float: right; font-size: 11pt; margin-top: 3px; } .new-shop-widget .glyphicon { position: relative; top: 1px; } .new-shop-widget .new-shop-list { width: 795px; } .new-shop-widget .new-shop-list, .new-shop-widget .new-shop-list ul li { display: inline-block; overflow: hidden; } .statistic-widget { margin-bottom: 20px; font-size: 13pt; background-color: #ECF0F1; padding: 10px; width: auto; min-width: 990px; max-width: 1180px; box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .15); } .statistic-widget span.item { margin-left: 20px; } .statistic-widget span.item strong { color: #f60; } .category-follow { background-color: #f9edbe; border: 1px solid #f0c36d; padding: 5px 10px 5px 10px; } .category-follow .help { font-size: 9pt; width: 380px; text-align: right; } .report-button { margin-top: -16px; margin-right: 15px; position: relative; color: red; } #reportModal .modal-dialog { width: 350px; } #reportModal .radio input[type="radio"] { margin-top: 1px; } .follow-category-list { } .follow-category-list li { float: left; margin-right: 10px; margin-bottom: 10px; position: relative; } .follow-category-list li .topic { padding: 1px 10px 4px 5px; vertical-align: middle; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .follow-category-list li .topic.deselected { color: #b8afc9; background-color: #fff; border-color: #e1e3ef; } .follow-category-list .topic { zoom: 1; border: 1px solid; border-radius: 16px; text-align: center; cursor: default; padding: 0 12px; } .follow-category-list .topic-check-container { display: inline-block; padding-right: 5px; line-height: 1; margin-top: 4px; } .follow-category-list li .topic-check { height: 16px; width: 16px; border-radius: 50%; display: inline-block; vertical-align: middle; position: relative; } .topic.deselected .topic-check { border: 1px solid #a49bac; background: #fff; fill: none; } .topic:not(.deselected) { color: #8e7c9b; background-color: #efeff9; border-color: #d4cfdc; } .topic:not(.deselected) .topic-check { background: #6d6372; border: 1px solid #6d6372; fill: #fff; } .follow-category-list li:hover .topic-check { fill: #000; } .follow-category-list li .topic-check svg { position: absolute; top: 4px; left: 3px; } .follow-category-list li .topic .topic-name { position: relative; display: inline-block; vertical-align: middle; } .product-vote { margin-bottom: 70px; } .product-vote .voted.good { background-color: #C53B37; } .product-vote .voted.bad { background-color: #000; } .product-vote .vote-bar { width: 160px; margin-top: 2px; } .product-vote .vote-bar .good { height: 3px; background-color: #d9534f; float: left; } .product-vote .vote-bar .bad { height: 3px; background-color: #474949; float: left; } .product-vote .vote-stat { font-size: 9pt; display: inline; float: left; margin-left: 10px; margin-top: 4px; } .product-vote .vote-action { float: left; } #vote-stat-none { position: relative; top: -4px; } .filter-choose { color: #146D93 !important; } .filter-list-shop-city { min-height: 15px; } .filter-list-shop-city li { float: left; width: 33%; } .modal-body.visiblecontent { overflow: auto; } .sub-category-list { width: 440px; display: inline-block; } .search-header-left { width: 285px; display: inline-block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 10pt; } .add-product .select-unit { width: auto; display: inline; border-radius: 0 !important; -webkit-border-radius: 0px; } .add-product .select-unit-label { width: 90px; margin-left: 10px; } .add-product .category .curent-category { margin-bottom: 5px; } .add-product #add-image-by-url { margin-left: 5px; top: 1px; position: relative; } .add-product .uploadbyurl { margin-top: 5px; } .add-product-page .alert { font-size: 10pt; line-height: 20px; } .text-gray { color: #727272; } hr { background-color: transparent; display: block; border-width: 0; border-top: 1px solid #e7e7e7 !important; margin-bottom: 14px; margin-top: 14px; } .shop-action { font-size: 10pt; margin-top: 13px; } .notification-navbar { float: left; padding: 8px 10px 0; height: 30px; position: relative; } .notification-navbar .glyphicon { color: #F0F0F0; position: relative; font-size: 13pt; } .notification-count { position: relative; top: -29px; left: 10px; color: #FFF; background-color: #F60; border: 1px solid #5A5959; border-radius: 7px; text-align: center; font-size: 11px; min-width: 16px; height: 16px; line-height: 16px; font-weight: bold; padding: 1px; display: none; } .notification-center { position: absolute; background-color: #FFF; top: 39px; right: 0; margin-right: -11px; width: 340px; font-size: 10pt; border-top: none; -moz-box-shadow: rgba(0, 0, 0, 0.5) 0 0 3px 0px; -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0 0 3px 0px; box-shadow: rgba(0, 0, 0, 0.5) 0 0 3px 0px; -moz-border-radius: 0px 0px 2px 2px; -webkit-border-radius: 0px 0px 2px 2px; border-radius: 0px 0px 2px 2px; } .notification-center ul { list-style: none; margin: 0; } .notification-center a { border-top: 1px solid #e8e9eb; overflow: hidden; color: #4d4d4d; line-height: 16px; min-height: 16px; padding: 10px; text-shadow: none; cursor: pointer; } .notification-center li img { float: left; width: 50px; margin-right: 10px; } .notification-center li.unread_false:hover { background: #f7f6f6; } .notification-center li a { color: #4d4d4d !important; float: none !important; display: block !important; } .notification-center li.unread_true { background: #fff0cc; } .notification-center li:first-child { border: none; } .notification-center .object { font-weight: bold; } .show { display: block !important; } .notification-navbar .glyphicon:hover { color: #FFF; } #notificationsSeeAll { background: #f7f6f6; border-top: 1px solid #e8e9eb; text-align: center; -moz-border-radius: 0px 0px 2px 2px; -webkit-border-radius: 0px 0px 2px 2px; border-radius: 0px 0px 2px 2px; } #notificationsSeeAll a { color: #f60; font-size: 11px; min-height: inherit; padding: 6px 0 7px; float: none; } #notificationsPage ul { margin: 0 0 20px 0; } #notificationsPage .object { font-weight: bold; } #notificationsPage { width: 700px; } #notificationsPage ul > div, #notificationsPage ul > li { border-bottom: 1px solid #eee; list-style-type: none; line-height: 16px; padding: 10px 0 10px; } #notificationsPage ul > li:hover { background: #f6f7f8; } #notificationsPage ul > div a, #notificationsPage ul > li a { color: #4d4d4d; font-weight: normal; overflow: auto; overflow-x: auto; overflow-y: auto; -moz-transition-duration: 0.33s; -moz-transition-property: background, border, color, opacity, box-shadow; -webkit-transition-duration: 0.33s; -webkit-transition-property: background, border, color, opacity, box-shadow; transition-duration: 0.33s; transition-property: background, border, color, opacity, box-shadow; } #searchshop .shop-list h2 { font-size: 21px; height: 25px; overflow: hidden; width: 375px; text-overflow: ellipsis; white-space: nowrap; } #searchshop .shop-list .info { display: inline; font-size: 11px; color: #999; } #searchshop .shop-list > li { padding: 10px; width: 47%; height: 173px; float: left; border: 1px solid rgba(0, 0, 0, 0.25); border-radius: 4px; margin: 10px 0 0 10px; cursor: pointer; } #searchshop .shop-list > li:hover { border: 1px solid rgba(0, 0, 0, 0.50); } #searchshop .shop-list .picture { padding: 10px 0 10px; } #searchshop .shop-list .shop-info { margin-left: 5px; } #searchshop .shop-list .category { line-height: 10px; width: 400px; height: 20px; } #searchshop .shop-list .category ul li { display: inline; } #searchshop .shop-list .info-area { margin-top: 10px; } #searchshop .shop-list .category li { margin-right: 5px; font-size: 11px; color: #666; } #searchshop .shop-list .picture ul { display: block; } #searchshop .shop-list .picture ul li { float: left; } #notificationsPage .time { display: inline; color: #898f9c; font-size: 9pt; float: right; padding-right: 10px; } #recommendation-list { width: 285px; margin-left: 15px; } #recommendation-list h2 { font-weight: bold; margin-bottom: 15px; border-bottom: 1px solid #999; padding: 4px; } #recommendation-list .re-product { clear: both; height: 90px; border-bottom: 1px solid #eee; padding-top: 10px; } #recommendation-list .re-product a.product_name { vertical-align: top; font-weight: bold; } #recommendation-list .re-product .info { width: 200px; font-size: 9pt; margin-left: 5px; } #recommendation-list .re-product-list .re-product:first-child { padding-top: 0; } #recommendation-list .re-product-list .re-product:last-child { border: none; } .contact-action { display: inline; margin: 0 10px; border-left: 1px solid #e7e7e7; padding-left: 10px; } .ex-tooltip { position: absolute; background: #EEE; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; padding: 5px; -webkit-box-shadow: 0 1px 3px #000; -moz-box-shadow: 0 1px 3px #000; -ms-box-shadow: 0 1px 3px #000; -o-box-shadow: 0 1px 3px #000; box-shadow: 0 1px 3px #000; border-collapse: separate; display: none } .category-breadcrumb-right { font-size: 10pt; float: right; } .category-breadcrumb-right .btn { display: inline; } .alert-header-page { margin: 50px auto 0 auto; width: 100%; margin-bottom: 10px; } .glyphicon.top3px { top: 3px; } #filterPriceModal .modal-dialog { width: 300px; } #filterPriceModal .btn-submit { margin-top: 10px; width: 100px; } #filterPriceModal .to { display: block; margin: 10px 0 10px; } #filterPriceModal #filter-price-status { color: red; margin: 5px 0 5px; } .glyphicon { top: 2px; } .recommend-filter-price { padding: 10px; background-color: #f7f7f7; border: 1px solid #eee; margin: 5px 0; } .recommend-filter-price input { padding: 5px; } .recommend-filter-price input[type="submit"] { width: 60px; padding: 2px; margin-top: -2px; } .shop-list-page h2 { font-weight: bold; } .shop-list-page > ul > li { height: 192px !important; border-radius: 0 !important; width: 478px; background-color: #fafafa; } .shop-list-page .product_image { width: 105px; height: 105px; padding: 5px; } .ui-gray-color { color: #777; } .category-shop-list { padding: 10px; margin-top: 10px; } .category-shop-list .category { display: inline; padding: 5px; margin-right: 5px; border: 1px solid #ccc; box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); border-radius: 3px; } .shop-list-page .category { margin-top: 2px; height: 5px !important; } .follow-box-shop-list { float: right; margin-top: -65px; } .table-border { border: 1px solid #e1e8ed; border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 5px; width: 600px; margin: 0 auto; padding: 10px; } .new-stamp { font-size: 10px; color: #FFAD00; position: relative; top: -40px; right: -60px; display: block; } .link-to-shoplist { display: block; width: 104px; height: 45px; margin-top: -13px; line-height: 44px; font-size: 13px !important; } .login-view-more-shop { width: 300px; margin: 0 auto; position: relative; top: 26px; padding-bottom: 40px; } .product-list .product-category-list li { display: inline; margin-right: 5px; } .profile_page .account_type { display: inline; color: #aaa; } .profile_page .chat-button { float: right; position: relative; margin-top: -34px; } .profile_page .attribute { color: #292f33; } .profile_page .attribute .name { display: inline-block; font-size: 10pt !important; font-weight: normal; width: 170px; } .profile_page .productlistviewed ul li { display: inline; } .profile_page .productlistviewed ul { margin-top: 10px; } .profile_page .productlistviewed li img { padding: 5px; border: 1px solid #fafafa; } #lhc_status_container { width: 240px !important; } .comment-box h2 { font-size: 16px; padding: 6px; border-bottom: 1px solid #eee; } .product-sim-lastviewed { background-color: #fafafa; } .product-sim-lastviewed .lastviewed { float: left; } .product-sim-lastviewed .title { margin-bottom: 5px; font-weight: bold; color: #f60; border-bottom: 2px solid #f60; padding-bottom: 5px; } .product-sim-lastviewed .sim-list { float: left; margin-left: 20px; } .product-sim-lastviewed .sim-list .item { display: inline; margin-right: 12px; } .product-sim-lastviewed .sim-list .item:last-child { margin-right: 0; } .shop-list-none-follow { text-align: center; padding: 15px; font-weight: bold; border-top: 1px solid #f60; border-bottom: 1px solid #f60; width: 850px; margin: 20px auto; } .time-ago .ui-primary-color { font-weight: bold; } .user-online { background: url("../images/user_online.png") center no-repeat; width: 12px; height: 14px; margin-right: 2px; display: inline-block; background-size: 8px; } .ok-color { color: #63a924; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; -o-transition: all 1s ease; transition: all 1s ease; } .collection-page .list { padding: 10px; } .profile_page .collection-page .list { padding: 0; } .collection-page h1 { font-size: 22pt; letter-spacing: -1px; line-height: 50px; } .collection-page .collection { background: #fff; border: 1px solid #d5d5d5; width: 468px; height: 508px; padding: 10px 0 10px 10px; margin-right: 20px; margin-bottom: 20px; float: left; position: relative; } .profile_page .collection-page .collection { width: 478px; } .collection-page .collection:hover { -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 0 14px; -moz-box-shadow: rgba(0, 0, 0, 0.15) 0 0 14px; box-shadow: rgba(0, 0, 0, 0.15) 0 0 14px; transition: all 0.2s ease-in-out } .collection:nth-child(2n) { margin-right: 0; } .collection-page .collection-name { font-weight: bold; font-size: 22px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; line-height: 1.3em; } .collection-page .collection-product-count { color: #aaa; margin-bottom: 10px; } .collection-page .collection-item-list { } .collection-page .collection-item { float: left; margin: 0px 9px 9px 0; } .collection-page .collection-item img { width: 225px; height: 225px; } .product-wili-box-a:hover { background-color: #e67e22; opacity: 1; } .product-wili-box-a { font-size: 8pt; color: #fff !important; text-align: center; display: none !important; position: absolute !important; width: 70px; height: 53px; right: 10px; top: 10px; background-color: #f39c12; padding: 10px; opacity: .9; -webkit-transition: all 200ms ease-out; -o-transition: all 200ms ease-out; -moz-transition: all 200ms ease-out; border-radius: 2px; box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.15); } .mS .product-item > .item:hover .product-wili-box-a { display: block !important; } .add-success { color: #fff; display: none; } .hr-shop-line { border-top: 2px solid #FF8B3D !important; margin-top: 5px; margin-bottom: 10px; } .productdetail { margin-top: 14px; } h1.category-name { font-weight: bold; font-size: 16px; } .cate-head { margin: 0 !important; } .letter { background: #f7f6f1; padding: 20px; border: 1px solid #f7f6f1; margin: 0 auto; -webkit-box-shadow: 6px 6px 4px -4px rgba(0, 0, 0, 0.22); -moz-box-shadow: 6px 6px 4px -4px rgba(0, 0, 0, 0.22); box-shadow: 6px 6px 4px -4px rgba(0, 0, 0, 0.22); } .letter p { margin-bottom: 15px; line-height: 20px; } .ifind { padding: 13px 10px 12px 20px; background-color: #fafafa; color: #333; font-size: 16px; text-align: center; letter-spacing: -1px; box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.15); } .ifind a { color: #fafafa; font-weight: bold; margin-left: 3px; margin-right: 3px; padding-bottom: 1px; opacity: 0.8; text-transform: lowercase; } .ifind .form-control { width: 100px; display: inline; border: none; height: 36px; color: #f60; background-color: #e7e7e7; box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.15); } .ifind a:hover { opacity: 1; } .ifind .btn { margin-left: 15px; border: none; background-color: #34495e; } .ifind .btn:hover { background-color: #2c3e50; } .ifind .select { display: inline; padding: 20px 0 20px; } .ifind .select > a { width: 80px; display: inline-block; text-align: center; vertical-align: middle; margin-top: -3px; color: #f60; } .ifind .select:hover .list-option { display: block; } .ifind .select .list-option { position: absolute; z-index: 1000; padding: 10px; background-color: #34495e; border-radius: 2px; text-align: left; display: none; margin-top: -5px; box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.15); } .ifind .select .list-option a { border: none; line-height: 1.4; font-size: 14px; font-weight: normal; text-transform: lowercase; } .ifind .select .list-option.category { margin-left: 179px; } .ifind .select .list-option.searchby { margin-left: 73px; } .ifind .select .list-option.child-category { margin-left: 270px; } .ifind .select .list-option.location { margin-left: 700px; } .ifind .primary-category a { color: #f1c40f; font-weight: bold !important; text-decoration: underline; } .ifind .glyphicon-chevron-down { font-size: 10pt; left: -6px; } .input-autoup { margin-bottom: 5px; } .auto-up-control { padding: 5px 10px 5px; float: right; text-align: right; line-height: 2; } .auto-up-control .schedule-start { display: inline !important; width: 150px } .vipwrap { margin: 0 auto; } .gray-wrapper { background-color: #f2f2f1; } .vipplan { padding: 20px 20px; margin-top: 45px; } .vipplan h1 { font-size: 34px; text-align: center; letter-spacing: -1px; color: #333; } .vipplan h2 { color: #333; letter-spacing: -1px; font-size: 22px; text-align: center; padding-top: 10px; } .vipplan .line { bottom: auto; left: 50%; height: 3px; width: 30px; margin: 0 auto; margin-top: 15px; display: block; background-color: #ebb129; border: none !important; } .vipplan .reason { background: rgba(0, 0, 0, 0.7); color: white; width: 80%; margin: 0 auto; margin-top: 20px; border-radius: 5px; padding: 20px; } .vipplan .reason td { border-top: 1px solid rgba(255, 255, 255, 0.25); } .vipplan .reason .view-detail { color: white; background: #f1c40f; border-radius: 6px; padding: 13px 18px; font-size: 15px; letter-spacing: 0px; box-shadow: none; text-shadow: none; } .vip-register { margin: 0 auto; text-align: center; margin-top: 20px; } .vip-register h2 { color: white; } .vip-register .vip-register-now { font-size: 35px; color: white; text-align: center; letter-spacing: -1px; } .vip-register .price { margin-top: 20px; } .vip-register #thutien p { margin-top: 20px; } .vip-register #thutien .form-control { width: 250px; display: inline; margin-top: 5px; } .vip-register #thutien label { margin-top: 5px; width: 120px; text-align: left; } .vip-register .line { background-color: #368aa9 !important; } .vip-register .method_list .line { margin-bottom: 15px; } .checkout-method label { margin-right: 15px; } .vipplan .glyphicon-ok { color: #7ab55c; } .vipplan .glyphicon-remove { color: #e74c3c; } .register-to-amazing { padding: 20px; height: 75px; background-color: #f1c40f; box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .15); margin-bottom: 15px; } .register-to-amazing .text { font-size: 22px; line-height: 36px; letter-spacing: -1px; color: #434343; margin-bottom: 15px; } .mgl20 { margin-left: 20px; } /* Make clicks pass-through */ #nprogress { pointer-events: none; } #nprogress .bar { background: #1abc9c; position: fixed; z-index: 99999; top: 0; left: 0; width: 100%; height: 2px; } /* Fancy blur effect */ #nprogress .peg { display: block; position: absolute; right: 0px; width: 100px; height: 100%; box-shadow: 0 0 10px #1abc9c, 0 0 5px #1abc9c; opacity: 1.0; -webkit-transform: rotate(3deg) translate(0px, -4px); -ms-transform: rotate(3deg) translate(0px, -4px); transform: rotate(3deg) translate(0px, -4px); } /* Remove these to get rid of the spinner */ #nprogress .spinner { display: block; position: fixed; z-index: 99999; top: 15px; right: 15px; } #nprogress .spinner-icon { width: 18px; height: 18px; box-sizing: border-box; border: solid 2px transparent; border-top-color: #1abc9c; border-left-color: #1abc9c; border-radius: 50%; -webkit-animation: nprogress-spinner 400ms linear infinite; animation: nprogress-spinner 400ms linear infinite; } .nprogress-custom-parent { overflow: hidden; position: relative; } .nprogress-custom-parent #nprogress .spinner, .nprogress-custom-parent #nprogress .bar { position: absolute; } @-webkit-keyframes nprogress-spinner { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); } } @keyframes nprogress-spinner { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .sys-reply-list li { border-bottom: 1px solid #ecf0f1; padding: 18px 0 18px; } .sys-reply-list li:last-child { border: none; } .sys-reply-list .name { font-size: 11pt !important; } .sys-reply-list .name.admin { color: red; } .sys-reply-list .resp-text { color: #95a5a6; } .sys-reply-list .time { display: block; margin-top: 5px; color: #95a5a6; font-size: 8pt !important; } .shop-vip-index .hS { border-color: #f39c12; } .shop-vip-index .title > a { color: #f39c12 !important; font-size: 12pt; font-weight: bold; } .shop-vip-index .shop-vip-list { padding: 5px 0 10px 8px; overflow: hidden; } .shop-vip-index .shop-item { float: left; width: 48.5%; margin: 10px 10px 0 0; height: 180px; border: 1px solid #eee; } .shop-vip-index .border-vip { border: 1px solid #f39c12; border-top: none; } .shop-vip-index .shop-item .shop-name { margin-left: 10px; margin-top: 10px; font-size: 16pt; float: left; max-width: 350px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; letter-spacing: -1px; } .shop-vip-index .shop-item .follow-box { margin-top: 9px; margin-right: 10px; float: right; } .shop-vip-index .shop-item .follow-box a { font-size: 8pt; } .shop-vip-index .shop-item .shop-category { clear: both; margin-left: 10px; padding-top: 4px; color: #95a5a6; font-size: 10pt; } .shop-vip-index .shop-item .picture-list { margin-left: 10px; margin-top: 5px; } .shop-vip-index .shop-item .picture-list li { display: inline; } .shop-vip-index .shop-item .picture-list li img { width: 84px; padding: 3px; } #ads-shop-index-area { display: none; } .shop-vip-index li.title { text-transform: uppercase; } .vip-color { color: #f1c40f !important; } .vip-border-color { border-color: #f39c12 !important; } .vip-border-bottom-width { border-bottom-width: 2px !important; } .related-interest { margin-top: 20px; margin-bottom: 20px; } .related-interest { text-align: center; } .related-interest .related-item { display: inline-block; width: 100px; height: 100px; padding: 8px; } .related-interest .interestWrapper { overflow: hidden; box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.25); cursor: pointer; display: block; height: 100%; position: relative; width: 100%; *display: inline; zoom: 1; } .related-interest .interestWrapper .interestImage { opacity: 0.7; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; background-color: #fff; background-position: center; background-size: cover; display: block; height: 100%; position: relative; -webkit-transition: opacity 0.1s ease-in-out; transition: opacity 0.1s ease-in-out; width: 100%; } .related-interest .interestWrapper .interestLabel { bottom: 0; position: absolute; width: 100%; } .related-interest .interestWrapper .interestLabel h2 { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; color: #fff; font-size: 13px; line-height: 1.1; padding: 8px; text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3); text-transform: capitalize; font-weight: bold; } .related-interest .interestWrapper:hover > .interestImage { overflow: hidden; opacity: 1; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; } .related-interest .interestWrapper:active { -ms-transform: scale(0.95, 0.95); -webkit-transform: scale(0.95, 0.95); transform: scale(0.95, 0.95); } .Interest .interestWrapper:active > .interestImage { overflow: hidden; opacity: 0.5; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; background-color: #000; } .vip-icon { width: auto !important; height: 15px !important; } .vip_stamp { margin-top: -25px; margin-right: -20px; float: right; } .vip_stamp img { height: 60px; width: 60px; } .shop-vip-notice-header { background-color: #f39c12; color: #fff; } .shop-vip-notice-header a { color: #fff; } .register_vip_floating a { background: url('../images/register_vip_floating_hover.png?v=2') no-repeat center top; background-size: 50px 200px; height: 200px; width: 50px; display: block; position: fixed; top: 30%; } .register_vip_floating a:hover { background: url('../images/register_vip_floating.png') no-repeat center top; background-size: 50px 200px; } #productStatisticModal .modal-dialog, #shopStatisticModal .modal-dialog { width: 900px; } #cartModal .modal-dialog { width: 800px; } .add-to-cart { margin-bottom: 22px; } .add-to-cart .btn { margin-right: 10px; } .cart-product-quantity { width: 50px; } .shop-analytics { margin-top: 20px; } .shop-analytics .analytics-module { width: 50%; float: left; } .shop-analytics .analytics-module .module-header { font-size: 16px; line-height: 20px; margin-bottom: 14px; } .survey-single-page label { cursor: pointer; } .survey-modal-body { line-height: 24px; } .survey-modal-body p { margin-top: 10px; } .product_availability { color: #41B600; } .product_unavailability { color: red; } .source-page h1 { font-size: 22pt; } .source-page-request { margin: 0 auto; width: 600px; } .source-page-request .image-list { display: inline-block; } .source-page-request .image-list li { margin-top: 6px !important; height: 100px; float: left; margin-right: 5px; } .source-page-request .image-list li img { width: 100px; float: left; } .source-page-request .quantity { width: 150px; } .source-page-request .price { width: 150px; } .form-group.inline-form { float: left; margin-right: 50px; } .source-page-request .categorylist { float: left; margin-right: 5px; } .source-page-request .categorylist select { min-width: 150px; max-width: 300px; font-size: 14px; padding: 4px; border-radius: 5px; border: 1px solid #ccc; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; } .sticky-wrapper.is-sticky > #stick-manage-tool { background: #f9f9f9; z-index: 10000; font-size: 9pt; padding-top: 6px; -webkit-box-shadow: 0 2px 1px #e0e0e0; -moz-box-shadow: 0 2px 1px #e0e0e0; box-shadow: 0 2px 1px #e0e0e0; } .sticky-wrapper.is-sticky > #stick-manage-tool .pagination { padding-left: 5px; } #requestToBuyModal > .modal-dialog { width: 400px; } #requestToBuyModal label { width: 150px; } .form-control.quantity { width: 204px; display: inline; } .request-to-buy-form-success { display: none; } .form-control.input-hidden { outline: 0; border: 0; box-shadow: none; border-color: #ccc; width: auto; } .product-item:hover .input-hidden { border: 1px solid #ccc; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; } .app-widget { margin-top: 5px; } .partnerlist > .fb_iframe_widget, .partnerlist > .fb_iframe_widget span, .partnerlist > .fb_iframe_widget span iframe[style] { width: 100% !important; } .icon { background-image: url('../images/icon.png'); background-repeat: no-repeat; } .icon.android { display: inline-block; width: 35px; height: 26px; background-position: 2px -1795px; } .btn-no-shadow { box-shadow: none; padding-bottom: 4px; } .noti-app { background-color: #ECF0F1; margin-bottom: 20px; padding: 20px; } .seller-wrap { margin-top: 10px; width: 25%; float: right; } .seller-wrap .seller-info { border: 1px solid #ddd; padding: 15px; } .seller-wrap .seller-contact { border: 1px solid #ddd; border-top: none; padding: 15px; } .seller-wrap .seller-contact .btn { width: 100%; } .seller-wrap .seller-info .seller-name { margin-top: 5px; } .seller-wrap .seller-info .seller-name > a { color: #f60; font-weight: bold; } .seller-wrap .seller-info .seller-address { color: #999; margin-top: 10px; font-size: 9pt; } .seller-wrap .seller-info .seller-join-date { margin-top: 10px; font-size: 9pt; } .seller-wrap .seller-info .seller-phone, .seller-email { margin-top: 10px; } .seller-wrap .seller-info .seller-phone li, .seller-email li { margin-top: 3px; } .btn-super-small { font-size: 11px; } .btn.contact-now { text-shadow: none; font-size: 11pt; background-color: #f60; border: 1px solid #e87b0e; vertical-align: initial; color: #fff; } .btn.contact-now:hover { background-color: #FC7318 } .contact-phone { font-size: 13pt; } .product-contact { margin: 30px 0 30px; } span.middle { vertical-align: middle; } .required:after { content: "*"; color: red; }
0.282691
0.072472
@-moz-document domain("theoldreader.com") { /*Remove favicon, adjust alignment, correct counters, use Google fonts etc. Author: <NAME> ffd3e0 - rosino chiaro d2efff - azzurrino chiaro 15d71f - verde forte ff2a60 - geranio forte ff5939 - arancio forte fe3c33 - rosso forte 50c2ff - azzurro 168eff - blu e6e5eb - grigino chiaro 8c8b91 - grigio scuro */ @font-face { font-family: 'Source Sans Pro'; font-style: normal; font-weight: 400; src: url(http://themes.googleusercontent.com/static/fonts/sourcesanspro/v5/ODelI1aHBYDBqgeIAH2zlBM0YzuT7MdOe03otPbuUS0.woff) format('woff'); } /* inizio */ body{ background-color:#d2efff !important; border-width: 0px !important; padding: 0px 0px 0px 0px !important; font-family: Source Sans Pro, sans-serif !important; font-size: medium !important; opacity:0.8 !important; text-shadow: none !important; } div.well.sidebar-nav{ background-color: #e6e5eb !important; padding-top: 25px !important; } div.slide{ background-color: transparent !important; border-width: 0px !important; padding: 0px 0px 0px 0px !important; } #subscribe a, span{ background-image: none !important; background-color: transparent !important; color: #fe3c33 !important; font-size: small !important; border-width: 0px !important; padding: 0px 0px 0px 0px !important; } .bg { display: none !important; } .icon { display: none !important; } .btn-primary { box-shadow: 0px 0px 0px !important; padding: 0px 0px 0px 0px !important; border-style: none !important; width: 100% !important; display: table !important; } div [class="span3 subscribe-fixed-top"]{ height: auto !important; } .btn-large { border-radius: 0px 0px 0px 0px !important; border-style: none !important; font-size: medium !important; } /*badge stile contatore ios7*/ .badge { color: #fff !important; background-color: #fe3c33 !important; border-radius: 6px 6px 6px 6px !important; border-radius: 10px !important; padding: 2px !important; } .slider{ background-color: #fe3c33 !important; opacity: 0.7 !important; } .label-feed{ background-color: #50c2ff !important; } .label-social{ background-color: #50c2ff !important; } .sidebar-nav li{ line-height: normal !important; text-transform:uppercase !important; } .floating { background-color: #d2efff !important; } .page-header{ color: #8c8b91 !important; size: medium !important; border: none !important; } .page-header a{ color: #168eff !important; size: medium !important; text-shadow: none !important; } .post.unread { border-left: 4px solid #ff5939 !important; } .content-body { opacity: 0.9 !important; } i.icon.icon-list-alt, i.icon.icon-arrow-up, i.icon-chevron-down, i.icon-chevron-up, i.icon.icon-refresh, i.icon.icon-check, a.btn.btn-small{ display: inline !important; color: #168eff !important; } .btn-small { padding: 4px !important; font-size: small !important; background-image: none !important; } ul.nav.pull-right a{ size: medium !important; color: #168eff !important; } div.navbar-inner{ background-color: #e6e5eb !important; } /* no icone */ i{ background-image:none !important; } i.icon-chevron-down{ background-image:none !important; } i.icon-chevron-right{ background-image:none !important; } }
data/usercss/89373.user.css
@-moz-document domain("theoldreader.com") { /*Remove favicon, adjust alignment, correct counters, use Google fonts etc. Author: <NAME> ffd3e0 - rosino chiaro d2efff - azzurrino chiaro 15d71f - verde forte ff2a60 - geranio forte ff5939 - arancio forte fe3c33 - rosso forte 50c2ff - azzurro 168eff - blu e6e5eb - grigino chiaro 8c8b91 - grigio scuro */ @font-face { font-family: 'Source Sans Pro'; font-style: normal; font-weight: 400; src: url(http://themes.googleusercontent.com/static/fonts/sourcesanspro/v5/ODelI1aHBYDBqgeIAH2zlBM0YzuT7MdOe03otPbuUS0.woff) format('woff'); } /* inizio */ body{ background-color:#d2efff !important; border-width: 0px !important; padding: 0px 0px 0px 0px !important; font-family: Source Sans Pro, sans-serif !important; font-size: medium !important; opacity:0.8 !important; text-shadow: none !important; } div.well.sidebar-nav{ background-color: #e6e5eb !important; padding-top: 25px !important; } div.slide{ background-color: transparent !important; border-width: 0px !important; padding: 0px 0px 0px 0px !important; } #subscribe a, span{ background-image: none !important; background-color: transparent !important; color: #fe3c33 !important; font-size: small !important; border-width: 0px !important; padding: 0px 0px 0px 0px !important; } .bg { display: none !important; } .icon { display: none !important; } .btn-primary { box-shadow: 0px 0px 0px !important; padding: 0px 0px 0px 0px !important; border-style: none !important; width: 100% !important; display: table !important; } div [class="span3 subscribe-fixed-top"]{ height: auto !important; } .btn-large { border-radius: 0px 0px 0px 0px !important; border-style: none !important; font-size: medium !important; } /*badge stile contatore ios7*/ .badge { color: #fff !important; background-color: #fe3c33 !important; border-radius: 6px 6px 6px 6px !important; border-radius: 10px !important; padding: 2px !important; } .slider{ background-color: #fe3c33 !important; opacity: 0.7 !important; } .label-feed{ background-color: #50c2ff !important; } .label-social{ background-color: #50c2ff !important; } .sidebar-nav li{ line-height: normal !important; text-transform:uppercase !important; } .floating { background-color: #d2efff !important; } .page-header{ color: #8c8b91 !important; size: medium !important; border: none !important; } .page-header a{ color: #168eff !important; size: medium !important; text-shadow: none !important; } .post.unread { border-left: 4px solid #ff5939 !important; } .content-body { opacity: 0.9 !important; } i.icon.icon-list-alt, i.icon.icon-arrow-up, i.icon-chevron-down, i.icon-chevron-up, i.icon.icon-refresh, i.icon.icon-check, a.btn.btn-small{ display: inline !important; color: #168eff !important; } .btn-small { padding: 4px !important; font-size: small !important; background-image: none !important; } ul.nav.pull-right a{ size: medium !important; color: #168eff !important; } div.navbar-inner{ background-color: #e6e5eb !important; } /* no icone */ i{ background-image:none !important; } i.icon-chevron-down{ background-image:none !important; } i.icon-chevron-right{ background-image:none !important; } }
0.146575
0.052936
@import url("https://fonts.googleapis.com/css2?family=Karla:wght@400;700&display=swap"); @import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap"); * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: "Karla", sans-serif; font-size: 16px; } li { list-style: none; } a { text-decoration: none; } .container { width: 1200px; max-width: 100%; margin: 0 auto; padding: 0 30px; } nav { display: flex; justify-content: space-between; align-items: center; padding: 30px 0; } nav ul { display: flex; align-items: center; } nav li { margin: 0 20px; } nav a { text-transform: uppercase; font-size: 16px; font-weight: 700; color: hsl(273, 4%, 51%); } nav a:hover { color: hsl(270, 9%, 17%); } .hamburger { display: none; } .btn { background: transparent; padding: 10px 30px; text-transform: uppercase; font-family: "Karla", sans-serif; font-size: 16px; font-weight: 700; cursor: pointer; } .dark-btn { border: 2px solid black; color: hsl(270, 9%, 17%); } .dark-btn:hover { background-color: hsl(270, 9%, 17%); color: hsl(0, 0%, 98%); } .light-btn { border: 2px solid hsl(0, 0%, 98%); color: hsl(0, 0%, 98%); } .light-btn:hover { background-color: hsl(0, 0%, 98%); color: hsl(256, 26%, 20%); } #intro { background-color: hsl(256, 26%, 20%); color: hsl(0, 0%, 98%); position: relative; margin-bottom: 250px; } #intro .wrapper { padding-top: 80px; } #intro * { z-index: 1; } .wrapper { display: flex; justify-content: space-between; gap: 4rem; } .flex-start { align-items: flex-start; } .flex-center { align-items: center; } .intro-bg::before { content: ""; background-image: url("./images/bg-pattern-intro-right-desktop.svg"); background-repeat: no-repeat; background-position: top right; position: absolute; top: 0; right: 0; height: 100%; width: 50%; z-index: 2; } .intro-bg::after { content: ""; background-image: url("./images/bg-pattern-intro-left-desktop.svg"); background-repeat: no-repeat; background-position: bottom left; position: absolute; bottom: -50%; left: 0; height: 100%; width: 50%; z-index: 0; } .left { position: relative; padding: 50px 0; flex: 1; } .left::before { content: ""; background-color: hsl(0, 0%, 98%); border-radius: 10px; position: absolute; width: 150px; height: 1px; left: 0; top: 0; } h1 { font-family: "DM Serif Display", serif; font-size: 4rem; line-height: 1; } .left p { line-height: 1.5; margin: 40px 0; color: hsl(0, 0%, 98%); opacity: 0.8; } .right { flex: 1; } .right img { margin-bottom: -150px; max-width: 100%; } #different { margin-bottom: 150px; } h2 { font-family: "DM Serif Display", serif; font-size: 4rem; color: hsl(270, 9%, 17%); padding: 50px 0; position: relative; } h2::before { content: ""; background-color: hsl(273, 4%, 51%); border-radius: 10px; position: absolute; width: 150px; height: 1px; left: 0; top: 0; } .grid-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 3rem; } .tile img { margin: 30px 0; } .tile h4 { font-family: "DM Serif Display", serif; font-size: 2rem; color: hsl(270, 9%, 17%); margin-bottom: 20px; } .tile p { line-height: 1.5; opacity: 0.9; } #how-we-work .wrapper { background-color: hsl(256, 26%, 20%); color: hsl(0, 0%, 98%); position: relative; padding: 50px; } #how-we-work * { z-index: 1; } .how-we-work-bg::after { content: ""; background-image: url("./images/bg-pattern-how-we-work-desktop.svg"); background-repeat: no-repeat; background-position: top right; position: absolute; top: 0; right: 0; height: 100%; width: 50%; z-index: 0; } h3 { font-family: "DM Serif Display", serif; font-size: 3rem; max-width: 430px; line-height: 1; } footer { background-color: hsl(0, 0%, 98%); margin-top: 130px; padding: 60px 0; position: relative; } footer * { z-index: 1; } .footer-bg::after { content: ""; background-image: url("./images/bg-pattern-footer-desktop.svg"); background-repeat: no-repeat; background-position: top left; height: 100%; width: 100%; position: absolute; top: 0; left: 0; } .social { padding: 20px 0; align-items: center; border-bottom: 1px solid hsl(273, 4%, 51%); } .social ul { display: flex; align-items: center; justify-content: space-between; } .social ul li { margin: 0 10px; } .footer-links { text-transform: uppercase; font-weight: 700; justify-self: flex-start; } .footer-links > div { flex: 1; } .footer-links h5 { font-size: 16px; color: hsl(273, 4%, 51%); margin: 30px 0; } .footer-links li { margin-bottom: 10px; } .footer-links a { color: hsl(270, 9%, 17%); } .footer-links a:hover { text-decoration: underline; } @media screen and (max-width: 768px) { body { text-align: center; } nav ul { display: none; } nav ul li { margin: 20px 0; } nav .hamburger { background-color: transparent; border: 0; cursor: pointer; display: flex; } nav .hamburger .close { display: none; } nav .hamburger.show .open { display: none; } nav .hamburger.show .close { display: block; } nav ul.show { background-color: hsl(270, 9%, 17%); display: flex; flex-direction: column; position: fixed; padding-top: 30px; margin: 0; top: 90px; left: 0; width: 100vw; height: 100vh; z-index: 100; } .btn-reverse { border: 2px solid hsl(0, 0%, 98%); color: hsl(0, 0%, 98%); } .wrapper { flex-direction: column; } .intro-bg::after { background-image: url("./images/bg-pattern-intro-left-mobile.svg"); background-position: top left; top: 0; bottom: auto; } .intro-bg::before { background-image: url("./images/bg-pattern-intro-right-mobile.svg"); background-position: bottom right; bottom: -25%; top: auto; } .left::before { content: none; } .right img { display: none; } h2 { font-size: 3.3rem; } h2::before { transform: translateX(50%); left: auto; } .how-we-work-bg::after { background-image: url("./images/bg-pattern-how-we-work-mobile.svg"); } .footer-bg::after { background-image: url("./images/bg-pattern-footer-mobile.svg"); } }
insure-landing-page/style.css
@import url("https://fonts.googleapis.com/css2?family=Karla:wght@400;700&display=swap"); @import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap"); * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: "Karla", sans-serif; font-size: 16px; } li { list-style: none; } a { text-decoration: none; } .container { width: 1200px; max-width: 100%; margin: 0 auto; padding: 0 30px; } nav { display: flex; justify-content: space-between; align-items: center; padding: 30px 0; } nav ul { display: flex; align-items: center; } nav li { margin: 0 20px; } nav a { text-transform: uppercase; font-size: 16px; font-weight: 700; color: hsl(273, 4%, 51%); } nav a:hover { color: hsl(270, 9%, 17%); } .hamburger { display: none; } .btn { background: transparent; padding: 10px 30px; text-transform: uppercase; font-family: "Karla", sans-serif; font-size: 16px; font-weight: 700; cursor: pointer; } .dark-btn { border: 2px solid black; color: hsl(270, 9%, 17%); } .dark-btn:hover { background-color: hsl(270, 9%, 17%); color: hsl(0, 0%, 98%); } .light-btn { border: 2px solid hsl(0, 0%, 98%); color: hsl(0, 0%, 98%); } .light-btn:hover { background-color: hsl(0, 0%, 98%); color: hsl(256, 26%, 20%); } #intro { background-color: hsl(256, 26%, 20%); color: hsl(0, 0%, 98%); position: relative; margin-bottom: 250px; } #intro .wrapper { padding-top: 80px; } #intro * { z-index: 1; } .wrapper { display: flex; justify-content: space-between; gap: 4rem; } .flex-start { align-items: flex-start; } .flex-center { align-items: center; } .intro-bg::before { content: ""; background-image: url("./images/bg-pattern-intro-right-desktop.svg"); background-repeat: no-repeat; background-position: top right; position: absolute; top: 0; right: 0; height: 100%; width: 50%; z-index: 2; } .intro-bg::after { content: ""; background-image: url("./images/bg-pattern-intro-left-desktop.svg"); background-repeat: no-repeat; background-position: bottom left; position: absolute; bottom: -50%; left: 0; height: 100%; width: 50%; z-index: 0; } .left { position: relative; padding: 50px 0; flex: 1; } .left::before { content: ""; background-color: hsl(0, 0%, 98%); border-radius: 10px; position: absolute; width: 150px; height: 1px; left: 0; top: 0; } h1 { font-family: "DM Serif Display", serif; font-size: 4rem; line-height: 1; } .left p { line-height: 1.5; margin: 40px 0; color: hsl(0, 0%, 98%); opacity: 0.8; } .right { flex: 1; } .right img { margin-bottom: -150px; max-width: 100%; } #different { margin-bottom: 150px; } h2 { font-family: "DM Serif Display", serif; font-size: 4rem; color: hsl(270, 9%, 17%); padding: 50px 0; position: relative; } h2::before { content: ""; background-color: hsl(273, 4%, 51%); border-radius: 10px; position: absolute; width: 150px; height: 1px; left: 0; top: 0; } .grid-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 3rem; } .tile img { margin: 30px 0; } .tile h4 { font-family: "DM Serif Display", serif; font-size: 2rem; color: hsl(270, 9%, 17%); margin-bottom: 20px; } .tile p { line-height: 1.5; opacity: 0.9; } #how-we-work .wrapper { background-color: hsl(256, 26%, 20%); color: hsl(0, 0%, 98%); position: relative; padding: 50px; } #how-we-work * { z-index: 1; } .how-we-work-bg::after { content: ""; background-image: url("./images/bg-pattern-how-we-work-desktop.svg"); background-repeat: no-repeat; background-position: top right; position: absolute; top: 0; right: 0; height: 100%; width: 50%; z-index: 0; } h3 { font-family: "DM Serif Display", serif; font-size: 3rem; max-width: 430px; line-height: 1; } footer { background-color: hsl(0, 0%, 98%); margin-top: 130px; padding: 60px 0; position: relative; } footer * { z-index: 1; } .footer-bg::after { content: ""; background-image: url("./images/bg-pattern-footer-desktop.svg"); background-repeat: no-repeat; background-position: top left; height: 100%; width: 100%; position: absolute; top: 0; left: 0; } .social { padding: 20px 0; align-items: center; border-bottom: 1px solid hsl(273, 4%, 51%); } .social ul { display: flex; align-items: center; justify-content: space-between; } .social ul li { margin: 0 10px; } .footer-links { text-transform: uppercase; font-weight: 700; justify-self: flex-start; } .footer-links > div { flex: 1; } .footer-links h5 { font-size: 16px; color: hsl(273, 4%, 51%); margin: 30px 0; } .footer-links li { margin-bottom: 10px; } .footer-links a { color: hsl(270, 9%, 17%); } .footer-links a:hover { text-decoration: underline; } @media screen and (max-width: 768px) { body { text-align: center; } nav ul { display: none; } nav ul li { margin: 20px 0; } nav .hamburger { background-color: transparent; border: 0; cursor: pointer; display: flex; } nav .hamburger .close { display: none; } nav .hamburger.show .open { display: none; } nav .hamburger.show .close { display: block; } nav ul.show { background-color: hsl(270, 9%, 17%); display: flex; flex-direction: column; position: fixed; padding-top: 30px; margin: 0; top: 90px; left: 0; width: 100vw; height: 100vh; z-index: 100; } .btn-reverse { border: 2px solid hsl(0, 0%, 98%); color: hsl(0, 0%, 98%); } .wrapper { flex-direction: column; } .intro-bg::after { background-image: url("./images/bg-pattern-intro-left-mobile.svg"); background-position: top left; top: 0; bottom: auto; } .intro-bg::before { background-image: url("./images/bg-pattern-intro-right-mobile.svg"); background-position: bottom right; bottom: -25%; top: auto; } .left::before { content: none; } .right img { display: none; } h2 { font-size: 3.3rem; } h2::before { transform: translateX(50%); left: auto; } .how-we-work-bg::after { background-image: url("./images/bg-pattern-how-we-work-mobile.svg"); } .footer-bg::after { background-image: url("./images/bg-pattern-footer-mobile.svg"); } }
0.425367
0.074804
{{{body_font.styles}}} body { font-size: {{body_font.font_size}}px; line-height: {{body_font.line_height}}; font-family: {{{body_font.stack}}}; color: {{text_color}}; background: {{background_color}}; padding: 3em 4em 5em; word-wrap: break-word; /* for long words & urls */ } .container { max-width: 648px; min-width: 320px; margin: 4em 4em 2em 222px; } h1, h2, h3, h4, h5, h6 {font-size: inherit;} h2, h3 {margin-top: 2em} h1 {font-size: 21px;line-height: 1.4} a {color: {{link_color}};text-decoration: none;} a:hover {background: {{link_color}};color: white} .logo {float: left;} .nav {float: right;} .nav a {margin: 0 0 0 2em} .small, .light {color: {{text_color}}} .small {font-size: 12px} hr { width: 200px; margin: 1.5em auto; border: none; border-top: 1px solid {{text_color}}; display: block; } ul.task-list { list-style-type: none; } .caption, blockquote {color: {{text_color}}} blockquote {font-style: italic;margin:0;padding: 0 0 0 1em;border-left: 1px solid {{text_color}}} table { word-break: normal; word-break: keep-all; border-collapse: collapse; border-spacing: 0; box-sizing: border-box; font-size: 15px; line-height: 24px; } tr {box-sizing: border-box;border-top: 1px solid {{text_color}};padding: 0} th, td {box-sizing: border-box;border: 1px solid {{text_color}};padding: 5px 12px 6px} /* Date spacing for entry */ h1 + .light {margin-top: -0.75em;margin-bottom: 1.5em} input[type="text"], input[type="submit"] { font:inherit; font-size:20px;padding: 3px 6px; margin: 1em 0; border: 1px solid {{text_color}}; } input[type="text"] { background: none; max-width: 100%; min-width: 300px; box-shadow: inset 0 1px 2px 0 rgba(0,0,0,.075); } input[type="submit"] { padding: 3px 12px; color: {{link_color}}; background: none; border: 1px solid {{link_color}}; cursor: pointer; } {{> plugin}} .clear {width: 100%;clear: both;} .archive h2.margin, .archive h3.margin {margin: 0} .archive h2.margin.left {left: -45%;} /* Index page table-like layout */ .index-container { display: table;margin: 2rem auto } .index-row { display: table-row; } .index-cell { display: table-cell;padding: 0.7rem 1rem;max-width: 48rem } .index-cell.light { text-align: right; } @media screen and (max-width: 800px) { .index-container, .index-cell, .index-row { display: block; padding-left: 0 } .index-cell.light { text-align: left; } } /* MESSY RESPONSIVE BUSINESS */ @media screen and (max-width: 1200px) { .container {margin-left: 140px} } @media screen and (max-width: 1060px) { .container {margin: 2em 16px 16px} .archive h2.margin.left {left: auto} } @media screen and (max-width: 1060px) { .archive .margin {display: block;width: 100%} } @media screen and (max-width: 600px) { body {padding: 0.4em;} .container {margin: 1em 0 2em;padding-top:0.5em;border-top:1px solid rgba(0,0,0,0.1);min-width: auto} input {font-size: 1em;} input[type="text"] {min-width: 200px;} .nav {float: none;display: block;margin: 0;width: 100%} .nav a {margin: 0 1em 0 0;color:{{text_color}};} }
app/templates/past/essay-two/style.css
{{{body_font.styles}}} body { font-size: {{body_font.font_size}}px; line-height: {{body_font.line_height}}; font-family: {{{body_font.stack}}}; color: {{text_color}}; background: {{background_color}}; padding: 3em 4em 5em; word-wrap: break-word; /* for long words & urls */ } .container { max-width: 648px; min-width: 320px; margin: 4em 4em 2em 222px; } h1, h2, h3, h4, h5, h6 {font-size: inherit;} h2, h3 {margin-top: 2em} h1 {font-size: 21px;line-height: 1.4} a {color: {{link_color}};text-decoration: none;} a:hover {background: {{link_color}};color: white} .logo {float: left;} .nav {float: right;} .nav a {margin: 0 0 0 2em} .small, .light {color: {{text_color}}} .small {font-size: 12px} hr { width: 200px; margin: 1.5em auto; border: none; border-top: 1px solid {{text_color}}; display: block; } ul.task-list { list-style-type: none; } .caption, blockquote {color: {{text_color}}} blockquote {font-style: italic;margin:0;padding: 0 0 0 1em;border-left: 1px solid {{text_color}}} table { word-break: normal; word-break: keep-all; border-collapse: collapse; border-spacing: 0; box-sizing: border-box; font-size: 15px; line-height: 24px; } tr {box-sizing: border-box;border-top: 1px solid {{text_color}};padding: 0} th, td {box-sizing: border-box;border: 1px solid {{text_color}};padding: 5px 12px 6px} /* Date spacing for entry */ h1 + .light {margin-top: -0.75em;margin-bottom: 1.5em} input[type="text"], input[type="submit"] { font:inherit; font-size:20px;padding: 3px 6px; margin: 1em 0; border: 1px solid {{text_color}}; } input[type="text"] { background: none; max-width: 100%; min-width: 300px; box-shadow: inset 0 1px 2px 0 rgba(0,0,0,.075); } input[type="submit"] { padding: 3px 12px; color: {{link_color}}; background: none; border: 1px solid {{link_color}}; cursor: pointer; } {{> plugin}} .clear {width: 100%;clear: both;} .archive h2.margin, .archive h3.margin {margin: 0} .archive h2.margin.left {left: -45%;} /* Index page table-like layout */ .index-container { display: table;margin: 2rem auto } .index-row { display: table-row; } .index-cell { display: table-cell;padding: 0.7rem 1rem;max-width: 48rem } .index-cell.light { text-align: right; } @media screen and (max-width: 800px) { .index-container, .index-cell, .index-row { display: block; padding-left: 0 } .index-cell.light { text-align: left; } } /* MESSY RESPONSIVE BUSINESS */ @media screen and (max-width: 1200px) { .container {margin-left: 140px} } @media screen and (max-width: 1060px) { .container {margin: 2em 16px 16px} .archive h2.margin.left {left: auto} } @media screen and (max-width: 1060px) { .archive .margin {display: block;width: 100%} } @media screen and (max-width: 600px) { body {padding: 0.4em;} .container {margin: 1em 0 2em;padding-top:0.5em;border-top:1px solid rgba(0,0,0,0.1);min-width: auto} input {font-size: 1em;} input[type="text"] {min-width: 200px;} .nav {float: none;display: block;margin: 0;width: 100%} .nav a {margin: 0 1em 0 0;color:{{text_color}};} }
0.42179
0.201342
*{ font-family: "微软雅黑"; } .bg { background: #fafafa; } .display-inline-block { display: inline-block; vertical-align: top; } ul { list-style-type: none; margin-left:-7px; } .detail-con-top { margin-top: 22px; } .text-ellipse { overflow: hidden; /*超出的换成 ... */ text-overflow: ellipsis; /*不允许换行*/ white-space: nowrap; } .detail-main { background: url("../images/con-bg.jpg") repeat-x scroll 0 0 rgba(0, 0, 0, 0); } .detail-top { background: url("../images/top.jpg") no-repeat center center; height: 103px; } .detail-content { width: 1170px; min-height: 700px; margin: 0 auto; } .detail-con-shop { margin-top: 20px; height: 30px; list-style-type: none; } .detail-con-shop li { line-height: 30px; float: right; position: relative; } .detail-con-shop-show { cursor: pointer; } .detail-con-shop-show:hover .detail-con-hide { display: block; } .detail-con-num { color: deepskyblue; } .detail-con-hide { position: absolute; right: 0px; top: 30px; width: 338px; line-height: 30px; z-index: 999; padding: 18px; background-color: #fdfdfd; box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4); display: none; } .detail-con-an { margin-top: 10px; text-align: center; } .detail-con-gw { background-color: #31a5e7; color: #fff; display: inline-block; font-size: 12px; line-height: 36px; height: 36px; text-align: center; transition: background-color 0.3s ease 0s; width: 108px; vertical-align: top; } .detail-con-top { font-size: 0px; margin-top: 20px; background: #fff; border-radius: 8px; } .detail-con-top-left { width: 670px; position: relative; /*background: url("../images/product-bg.png") repeat-y;*/ padding-bottom: 30px; border-radius: 8px 0 0 8px; } .detail-con-image ul { margin-top: 10px; margin-left: 10px; list-style-type: none; } .detail-con-image-li { height: 500px; display: none; } .detail-con-image-li.on { display: block; } .detail-con-image-li img { height: 500px; vertical-align: top; } .detail-con-jt { background-image: url("../images/phone-turn-btn.gif"); background-repeat: no-repeat; width: 12px; height: 24px; margin: 18px 0 0 9px; } .detail-con-ljt { width: 32px; height: 61px; left: 38px; top: 250px; position: absolute; cursor: pointer; } .detail-con-rjt { width: 32px; height: 61px; right: 38px; top: 250px; position: absolute; cursor: pointer; } .detail-con-larrow { background-position: 0 -25px; } .detail-con-ljt:hover .detail-con-larrow { background-position: 0 0px; } .detail-con-rarrow { background-position: -16px -24px; } .detail-con-rjt:hover .detail-con-rarrow { background-position: -16px 0px; } .detail-con-circle { margin-top: 27px; } .detail-con-circle ul { text-align: center; font-size: 0; padding:0; } .detail-con-circle ul .detail-con-dot:first-child { margin-left: 0; } .detail-con-dot { border-radius: 50%; width: 10px; height: 10px; border: 1px solid #999999; margin-left: 10px; cursor: pointer; } .detail-con-dot.on { background: #999; cursor: default; } .detail-con-top-right { width: 450px; margin-left: 25px; padding-bottom: 20px; } .detail-con-gname h2 { margin-top: 20px; color: #000; font-size: 24px; border-bottom: 1px solid #d9d9d9; font-weight: 400; line-height: 34px; padding-bottom: 20px; } .detail-con-price { height: 40px; line-height: 40px; } .detail-con-price .price { font-weight: normal; margin-top: 15px; } .newer { font-size: 30px; color: #f56313; } .detail-con-zp { font-size: 0; } .detail-con-zping ul li:first-child { margin-top: 0; } .detail-con-zp .name { margin-top: 8px; } .detail-con-zp .name img { width: 33px; height: 33px; vertical-align: top; border: 1px solid #eee; } .detail-con-zp .name div { margin-left: 3px; height: 35px; line-height: 35px; } .detail-con-zp .name .zt { font-size: 12px; color: #0088cc; font-weight: bold; max-width: 200px; } .detail-con-zp .name .num { color: #db4437; font-size: 12px; font-weight: bold; } .detail-con-color, .detail-con-color ul { font-size: 0; } .detail-con-width-name { width: 60px; margin-right: 16px; line-height: 40px; } .detail-con-width-content { width: 374px; } .detail-con-ys-li { border: 1px solid #ccc; border-radius: 50%; width: 50px; height: 50px; margin-left: 14px; cursor: pointer; } .detail-con-ys-li.detail-con-ys-change { border: 2px solid #31a5e7; width: 50px; height: 49px; cursor: default; } .detail-con-yanse { margin: 3px; border-radius: 50%; width: 41px; height: 41px; } .detail-con-ys-li.detail-con-ys-change .detail-con-yanse { margin: 2px; } .detail-con-vsion { border-radius: 8px; border: 1px solid #999999; width: 80px; height: 40px; text-align: center; cursor: pointer; } .detail-con-vsion.detail-con-change { border: 2px solid #31a5e7; cursor: default; } .detail-con-banben ul { font-size: 0; } .detail-con-banben ul li { margin-left: 20px; } .detail-con-banben ul li:first-child { margin-left: 0; } .display-inline-block.detail-con-select.detail-con-width-name { margin-right: 2px; } .detail-con-number { font-size: 0; padding-top: 5px; } .detail-con-number a { text-decoration: none; width: 30px; height: 30px; border: 1px solid #ccc; text-align: center; line-height: 30px; border-radius: 2px; } .detail-con-number a:focus { outline: none; } .detail-con-number input { width: 40px; height: 30px; border: 1px solid #ccc; text-align: center; line-height: 30px; border-radius: 2px; } .bug_btn, .add_btn, .less_btn { width: 118px; height: 44px; line-height: 44px; text-align: center; text-decoration: none; font-size: 16px; color: #f6fbfe; margin-right: 14px; } .bug_btn { background-color: #ea5245; transition: background-color 0.3s ease 0s; } .bug_btn:hover { background: #d64b2b; text-decoration: none; color:#fff; } .add_btn { background-color: #31a5e7; transition: background-color 0.3s ease 0s; } .add_btn:hover { background: #1b88c6; text-decoration: none; color:#fff; } .less_btn { background: #afafaf; cursor: default; } .pro_desc { color: red; display: none; padding-bottom: 10px; } .detail-con-mon { color: #666; font-size: 15px; line-height: 22px; height: 22px; } .detail-con-vsion.detail-con-change { width: 78px; height: 41px; } .detail-con-vsion.detail-con-change .detail-con-mon { height: 20px; line-height: 20px; } .detail-con-vsion.detail-con-change .detail-con-money { margin-top: 1px; } .detail-con-money { font-size: 12px; line-height: 16px; height: 16px; color: #555; } .detail-con-bottom { width: 1170px; min-height: 700px; margin: 0 auto; background: #fff; border-radius: 8px; margin-top: 20px; } .detail-bottom-title { height: 60px; line-height: 60px; background: url("../images/bott-bg.jpg") repeat-x 0 0; border-radius: 8px 8px 0 0; overflow: hidden; } .detail-bott-bt { font-size: 0; } .detail-bott-bt li { font-size: 16px; color: #999999; width: 100px; text-align: center; cursor: pointer; } .detail-bott-bt li.active { background: #fff; cursor: default; } .detail-bott-js .detail-tab.on { display: block; } .detail-bott-js .detail-tab { display: none; position: relative; } .xlj-good-desc { padding-top: 20px; } .xlj-good-desc img { height: auto; width: 100%; } .tool-fixed { position: fixed; top: 0; z-index: 99999; } .left-side { background: none repeat scroll 0 0 #fff; border-right: 3px solid #e6e6e6; height: 100%; position: absolute; top: 0; width: 191px; z-index: 2; } .detail-cs-left-ul li a { color: #999; display: block; font-size: 14px; line-height: 36px; padding-right: 40px; text-decoration: none; text-align: right; } .detail-cs-left-ul li a:focus { outline: none; } .left-side { background: none repeat scroll 0 0 #fff; border-right: 3px solid #e6e6e6; height: 100%; position: absolute; top: 0; width: 191px; z-index: 2; } .info-i { border-bottom: 1px solid #ddd; padding: 45px 0; width: 850px; } .detail-cs-left-ul li.current a { color: #00a7ea; font-size: 20px; line-height: 46px; } .detail-cs-left-ul li.current { background: url("../images/circle_blue.png") no-repeat right center; } .detail-cs-right { margin-left: 260px; } .detail-cs-left-ul { margin-left: 13px; width: 100%; margin-top: 30px; } .detail-comm-list{ padding-left:40px; background:none repeat scroll 0 0 #fbfbfb; } .detail-comm-li{ border-right: 1px solid #dfdfdf; cursor: pointer; height: 24px; line-height: 24px; margin: 10px; text-align: center; width: 200px; color:#999; } .comm-color{ color:red; } .detail-comm-li span{ color:#999; } .comm-change{ color:red; } .last{ border:none; } .detail-pl{ height:120px; margin: 27px 10px 0px 10px; border-bottom: 1px solid #ccc; } .detail-pl:last-child{ border:none; } .detail-user-comm{ width:85%; font-size: 0px; } .icon-star{ background-image: url("../images/icon-star.png"); background-repeat: no-repeat; height: 14px; margin-top: 8px; overflow: hidden; width: 70px; } .icon-star-5{ background-position: 0px 1px; } .icon-star-4{ background-position: 0px -32px; } .icon-star-3{ background-position: 0px -67px; } .icon-star-2{ background-position: 0px -100px; } .icon-star-1{ background-position: 0px -132px; } .user-precent-left{ height: 100px; overflow: hidden; text-align: center; width: 12%; margin-left: 5px; } .np-avatar{ border-radius: 40px; display: block; height: 80px; margin: 0 auto; width: 80px; } .user-date{ float:right; } .user-precent-content{ margin-top: 7px; } .detail-page{ text-align: center; } .consulting { background: none repeat scroll 0 0 #fbfbfb; border: 1px solid #dfdfdf; height: 250px; padding-top: 20px; } .consulting table tr td { padding: 5px 0; } .consulting td.table-left { padding-right: 10px; text-align: right; width: 10%; } .consulting form{ border: medium none; list-style-type: none; margin: 0; padding: 0; } .star{ margin-top: 8px; } .consulting table { margin: 30px auto; width: 90%; } .consulting table tr td textarea { background: none repeat scroll 0 0 #fff; border: 1px solid #ccc; height: 100px; width: 72%; } input[type="submit"]{ border: 0 none; cursor: pointer; } .submit { background: none repeat scroll 0 0 #85c143; color: #fff; height: 38px; width: 137px; } .quotes{ margin: 3px; padding: 3px; text-align: center; } .quotes li{ display: inline-block; vertical-align: top; } .quotes .disabled{ border-color: #ddd; border-right: 1px solid #ddd; border-style: solid; border-width: 1px; color: #ccc; margin-right: 2px; padding: 2px 5px; } .quotes span.current{ background-color: #f0f0f0; border-color: #e0e0e0; border-right: 1px solid #e0e0e0; border-style: solid; border-width: 1px; color: #aaa; font-weight: bold; margin-right: 2px; padding: 2px 5px; } .quotes li a{ border-color: #ddd; border-right: 1px solid #ddd; border-style: solid; border-width: 1px; color: #aaa; margin-right: 2px; padding: 2px 5px; text-decoration: none; } .quotes li a:hover { border:#999 1px solid; margin-right:2px; } .quotes li a:active{ border:1px solid #999; margin-right: 2px; } .gl-response{ color:red; margin-right: 10px; text-align: right; }
Public/Home/css/detail.css
*{ font-family: "微软雅黑"; } .bg { background: #fafafa; } .display-inline-block { display: inline-block; vertical-align: top; } ul { list-style-type: none; margin-left:-7px; } .detail-con-top { margin-top: 22px; } .text-ellipse { overflow: hidden; /*超出的换成 ... */ text-overflow: ellipsis; /*不允许换行*/ white-space: nowrap; } .detail-main { background: url("../images/con-bg.jpg") repeat-x scroll 0 0 rgba(0, 0, 0, 0); } .detail-top { background: url("../images/top.jpg") no-repeat center center; height: 103px; } .detail-content { width: 1170px; min-height: 700px; margin: 0 auto; } .detail-con-shop { margin-top: 20px; height: 30px; list-style-type: none; } .detail-con-shop li { line-height: 30px; float: right; position: relative; } .detail-con-shop-show { cursor: pointer; } .detail-con-shop-show:hover .detail-con-hide { display: block; } .detail-con-num { color: deepskyblue; } .detail-con-hide { position: absolute; right: 0px; top: 30px; width: 338px; line-height: 30px; z-index: 999; padding: 18px; background-color: #fdfdfd; box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4); display: none; } .detail-con-an { margin-top: 10px; text-align: center; } .detail-con-gw { background-color: #31a5e7; color: #fff; display: inline-block; font-size: 12px; line-height: 36px; height: 36px; text-align: center; transition: background-color 0.3s ease 0s; width: 108px; vertical-align: top; } .detail-con-top { font-size: 0px; margin-top: 20px; background: #fff; border-radius: 8px; } .detail-con-top-left { width: 670px; position: relative; /*background: url("../images/product-bg.png") repeat-y;*/ padding-bottom: 30px; border-radius: 8px 0 0 8px; } .detail-con-image ul { margin-top: 10px; margin-left: 10px; list-style-type: none; } .detail-con-image-li { height: 500px; display: none; } .detail-con-image-li.on { display: block; } .detail-con-image-li img { height: 500px; vertical-align: top; } .detail-con-jt { background-image: url("../images/phone-turn-btn.gif"); background-repeat: no-repeat; width: 12px; height: 24px; margin: 18px 0 0 9px; } .detail-con-ljt { width: 32px; height: 61px; left: 38px; top: 250px; position: absolute; cursor: pointer; } .detail-con-rjt { width: 32px; height: 61px; right: 38px; top: 250px; position: absolute; cursor: pointer; } .detail-con-larrow { background-position: 0 -25px; } .detail-con-ljt:hover .detail-con-larrow { background-position: 0 0px; } .detail-con-rarrow { background-position: -16px -24px; } .detail-con-rjt:hover .detail-con-rarrow { background-position: -16px 0px; } .detail-con-circle { margin-top: 27px; } .detail-con-circle ul { text-align: center; font-size: 0; padding:0; } .detail-con-circle ul .detail-con-dot:first-child { margin-left: 0; } .detail-con-dot { border-radius: 50%; width: 10px; height: 10px; border: 1px solid #999999; margin-left: 10px; cursor: pointer; } .detail-con-dot.on { background: #999; cursor: default; } .detail-con-top-right { width: 450px; margin-left: 25px; padding-bottom: 20px; } .detail-con-gname h2 { margin-top: 20px; color: #000; font-size: 24px; border-bottom: 1px solid #d9d9d9; font-weight: 400; line-height: 34px; padding-bottom: 20px; } .detail-con-price { height: 40px; line-height: 40px; } .detail-con-price .price { font-weight: normal; margin-top: 15px; } .newer { font-size: 30px; color: #f56313; } .detail-con-zp { font-size: 0; } .detail-con-zping ul li:first-child { margin-top: 0; } .detail-con-zp .name { margin-top: 8px; } .detail-con-zp .name img { width: 33px; height: 33px; vertical-align: top; border: 1px solid #eee; } .detail-con-zp .name div { margin-left: 3px; height: 35px; line-height: 35px; } .detail-con-zp .name .zt { font-size: 12px; color: #0088cc; font-weight: bold; max-width: 200px; } .detail-con-zp .name .num { color: #db4437; font-size: 12px; font-weight: bold; } .detail-con-color, .detail-con-color ul { font-size: 0; } .detail-con-width-name { width: 60px; margin-right: 16px; line-height: 40px; } .detail-con-width-content { width: 374px; } .detail-con-ys-li { border: 1px solid #ccc; border-radius: 50%; width: 50px; height: 50px; margin-left: 14px; cursor: pointer; } .detail-con-ys-li.detail-con-ys-change { border: 2px solid #31a5e7; width: 50px; height: 49px; cursor: default; } .detail-con-yanse { margin: 3px; border-radius: 50%; width: 41px; height: 41px; } .detail-con-ys-li.detail-con-ys-change .detail-con-yanse { margin: 2px; } .detail-con-vsion { border-radius: 8px; border: 1px solid #999999; width: 80px; height: 40px; text-align: center; cursor: pointer; } .detail-con-vsion.detail-con-change { border: 2px solid #31a5e7; cursor: default; } .detail-con-banben ul { font-size: 0; } .detail-con-banben ul li { margin-left: 20px; } .detail-con-banben ul li:first-child { margin-left: 0; } .display-inline-block.detail-con-select.detail-con-width-name { margin-right: 2px; } .detail-con-number { font-size: 0; padding-top: 5px; } .detail-con-number a { text-decoration: none; width: 30px; height: 30px; border: 1px solid #ccc; text-align: center; line-height: 30px; border-radius: 2px; } .detail-con-number a:focus { outline: none; } .detail-con-number input { width: 40px; height: 30px; border: 1px solid #ccc; text-align: center; line-height: 30px; border-radius: 2px; } .bug_btn, .add_btn, .less_btn { width: 118px; height: 44px; line-height: 44px; text-align: center; text-decoration: none; font-size: 16px; color: #f6fbfe; margin-right: 14px; } .bug_btn { background-color: #ea5245; transition: background-color 0.3s ease 0s; } .bug_btn:hover { background: #d64b2b; text-decoration: none; color:#fff; } .add_btn { background-color: #31a5e7; transition: background-color 0.3s ease 0s; } .add_btn:hover { background: #1b88c6; text-decoration: none; color:#fff; } .less_btn { background: #afafaf; cursor: default; } .pro_desc { color: red; display: none; padding-bottom: 10px; } .detail-con-mon { color: #666; font-size: 15px; line-height: 22px; height: 22px; } .detail-con-vsion.detail-con-change { width: 78px; height: 41px; } .detail-con-vsion.detail-con-change .detail-con-mon { height: 20px; line-height: 20px; } .detail-con-vsion.detail-con-change .detail-con-money { margin-top: 1px; } .detail-con-money { font-size: 12px; line-height: 16px; height: 16px; color: #555; } .detail-con-bottom { width: 1170px; min-height: 700px; margin: 0 auto; background: #fff; border-radius: 8px; margin-top: 20px; } .detail-bottom-title { height: 60px; line-height: 60px; background: url("../images/bott-bg.jpg") repeat-x 0 0; border-radius: 8px 8px 0 0; overflow: hidden; } .detail-bott-bt { font-size: 0; } .detail-bott-bt li { font-size: 16px; color: #999999; width: 100px; text-align: center; cursor: pointer; } .detail-bott-bt li.active { background: #fff; cursor: default; } .detail-bott-js .detail-tab.on { display: block; } .detail-bott-js .detail-tab { display: none; position: relative; } .xlj-good-desc { padding-top: 20px; } .xlj-good-desc img { height: auto; width: 100%; } .tool-fixed { position: fixed; top: 0; z-index: 99999; } .left-side { background: none repeat scroll 0 0 #fff; border-right: 3px solid #e6e6e6; height: 100%; position: absolute; top: 0; width: 191px; z-index: 2; } .detail-cs-left-ul li a { color: #999; display: block; font-size: 14px; line-height: 36px; padding-right: 40px; text-decoration: none; text-align: right; } .detail-cs-left-ul li a:focus { outline: none; } .left-side { background: none repeat scroll 0 0 #fff; border-right: 3px solid #e6e6e6; height: 100%; position: absolute; top: 0; width: 191px; z-index: 2; } .info-i { border-bottom: 1px solid #ddd; padding: 45px 0; width: 850px; } .detail-cs-left-ul li.current a { color: #00a7ea; font-size: 20px; line-height: 46px; } .detail-cs-left-ul li.current { background: url("../images/circle_blue.png") no-repeat right center; } .detail-cs-right { margin-left: 260px; } .detail-cs-left-ul { margin-left: 13px; width: 100%; margin-top: 30px; } .detail-comm-list{ padding-left:40px; background:none repeat scroll 0 0 #fbfbfb; } .detail-comm-li{ border-right: 1px solid #dfdfdf; cursor: pointer; height: 24px; line-height: 24px; margin: 10px; text-align: center; width: 200px; color:#999; } .comm-color{ color:red; } .detail-comm-li span{ color:#999; } .comm-change{ color:red; } .last{ border:none; } .detail-pl{ height:120px; margin: 27px 10px 0px 10px; border-bottom: 1px solid #ccc; } .detail-pl:last-child{ border:none; } .detail-user-comm{ width:85%; font-size: 0px; } .icon-star{ background-image: url("../images/icon-star.png"); background-repeat: no-repeat; height: 14px; margin-top: 8px; overflow: hidden; width: 70px; } .icon-star-5{ background-position: 0px 1px; } .icon-star-4{ background-position: 0px -32px; } .icon-star-3{ background-position: 0px -67px; } .icon-star-2{ background-position: 0px -100px; } .icon-star-1{ background-position: 0px -132px; } .user-precent-left{ height: 100px; overflow: hidden; text-align: center; width: 12%; margin-left: 5px; } .np-avatar{ border-radius: 40px; display: block; height: 80px; margin: 0 auto; width: 80px; } .user-date{ float:right; } .user-precent-content{ margin-top: 7px; } .detail-page{ text-align: center; } .consulting { background: none repeat scroll 0 0 #fbfbfb; border: 1px solid #dfdfdf; height: 250px; padding-top: 20px; } .consulting table tr td { padding: 5px 0; } .consulting td.table-left { padding-right: 10px; text-align: right; width: 10%; } .consulting form{ border: medium none; list-style-type: none; margin: 0; padding: 0; } .star{ margin-top: 8px; } .consulting table { margin: 30px auto; width: 90%; } .consulting table tr td textarea { background: none repeat scroll 0 0 #fff; border: 1px solid #ccc; height: 100px; width: 72%; } input[type="submit"]{ border: 0 none; cursor: pointer; } .submit { background: none repeat scroll 0 0 #85c143; color: #fff; height: 38px; width: 137px; } .quotes{ margin: 3px; padding: 3px; text-align: center; } .quotes li{ display: inline-block; vertical-align: top; } .quotes .disabled{ border-color: #ddd; border-right: 1px solid #ddd; border-style: solid; border-width: 1px; color: #ccc; margin-right: 2px; padding: 2px 5px; } .quotes span.current{ background-color: #f0f0f0; border-color: #e0e0e0; border-right: 1px solid #e0e0e0; border-style: solid; border-width: 1px; color: #aaa; font-weight: bold; margin-right: 2px; padding: 2px 5px; } .quotes li a{ border-color: #ddd; border-right: 1px solid #ddd; border-style: solid; border-width: 1px; color: #aaa; margin-right: 2px; padding: 2px 5px; text-decoration: none; } .quotes li a:hover { border:#999 1px solid; margin-right:2px; } .quotes li a:active{ border:1px solid #999; margin-right: 2px; } .gl-response{ color:red; margin-right: 10px; text-align: right; }
0.362066
0.072145
.test{ width:200px; padding:20px; height: 150px; } .multiselect-container { position: absolute; list-style-type: none; margin: 5px 0 0 0; width: 100%; padding: 10px 0; border: none; -webkit-box-shadow: 0px 10px 23px -16px rgba(0, 0, 0, 0.14); -moz-box-shadow: 0px 10px 23px -16px rgba(0, 0, 0, 0.14); box-shadow: 0px 10px 23px -16px rgba(0, 0, 0, 0.14); } .multiselect-container .input-group { margin: 5px; } .multiselect-container > li { padding: 0; font-size: 14px; } .multiselect-container > li > a.multiselect-all label { font-weight: 700; color: gray; } .multiselect-container > li.multiselect-group label { margin: 0; padding: 3px 20px 3px 20px; height: 100%; font-weight: 700; } .multiselect-container > li.multiselect-group-clickable label { cursor: pointer; } .multiselect-container > li > a { padding: 5px 0; color: #000; display: block; } .multiselect-container > li > a > label { display: block; position: relative; padding-left: 20px; margin-bottom: 12px; cursor: pointer; font-size: 16px; font-weight: 500; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .multiselect-container > li > a > label:before { content: ""; display: inline-block; position: relative; height: 20px; width: 20px; border: 2px solid rgba(0, 0, 0, 0.2); border-radius: 4px; background-color: transparent; margin-right: 15px; vertical-align: middle; } .multiselect-container > li.active > a > label:before { font-family: 'fontAwesome'; content: "\f00c"; color: #fff; background-color: #52de97; border: 0; display: inline-block; padding: 0; line-height: 1.2; padding-left: 2px; } .multiselect-container > li > a > label.radio, .multiselect-container > li > a > label.checkbox { margin: 0; } .multiselect-container > li > a > label > input[type=checkbox] { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; } .btn-group > .btn-group:nth-child(2) > .multiselect.btn { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } .form-inline .multiselect-container label.checkbox, .form-inline .multiselect-container label.radio { padding: 3px 20px 3px 40px; } .form-inline .multiselect-container li a label.checkbox input[type=checkbox], .form-inline .multiselect-container li a label.radio input[type=radio] { margin-left: -20px; margin-right: 0; } .btn-group { height: 52px; width: calc(100% - 150px); } .btn-group button { border-radius: 4px; background: #fff; -webkit-box-shadow: 0px 10px 23px -16px rgba(0, 0, 0, 0.14); -moz-box-shadow: 0px 10px 23px -16px rgba(0, 0, 0, 0.14); box-shadow: 0px 10px 23px -16px rgba(0, 0, 0, 0.14); padding: 0 10px; text-align: right; position: relative; } .btn-group button:after { position: absolute; top: 50%; direction: rtl; left: 20px; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); color: #999999; } .btn-group button:focus { -webkit-box-shadow: 0px 10px 23px -16px rgba(0, 0, 0, 0.14); -moz-box-shadow: 0px 10px 23px -16px rgba(0, 0, 0, 0.14); box-shadow: 0px 10px 23px -16px rgba(0, 0, 0, 0.14); padding: 0 10px; } .sl { color: gray; width: 150px; } @media (min-width: 576px) { .select_permission{ width: 477px; } } @media (min-width: 768px) { } @media (min-width: 992px) { } @media (min-width: 1200px) { }
public/officepanal/css/multiselect.css
.test{ width:200px; padding:20px; height: 150px; } .multiselect-container { position: absolute; list-style-type: none; margin: 5px 0 0 0; width: 100%; padding: 10px 0; border: none; -webkit-box-shadow: 0px 10px 23px -16px rgba(0, 0, 0, 0.14); -moz-box-shadow: 0px 10px 23px -16px rgba(0, 0, 0, 0.14); box-shadow: 0px 10px 23px -16px rgba(0, 0, 0, 0.14); } .multiselect-container .input-group { margin: 5px; } .multiselect-container > li { padding: 0; font-size: 14px; } .multiselect-container > li > a.multiselect-all label { font-weight: 700; color: gray; } .multiselect-container > li.multiselect-group label { margin: 0; padding: 3px 20px 3px 20px; height: 100%; font-weight: 700; } .multiselect-container > li.multiselect-group-clickable label { cursor: pointer; } .multiselect-container > li > a { padding: 5px 0; color: #000; display: block; } .multiselect-container > li > a > label { display: block; position: relative; padding-left: 20px; margin-bottom: 12px; cursor: pointer; font-size: 16px; font-weight: 500; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .multiselect-container > li > a > label:before { content: ""; display: inline-block; position: relative; height: 20px; width: 20px; border: 2px solid rgba(0, 0, 0, 0.2); border-radius: 4px; background-color: transparent; margin-right: 15px; vertical-align: middle; } .multiselect-container > li.active > a > label:before { font-family: 'fontAwesome'; content: "\f00c"; color: #fff; background-color: #52de97; border: 0; display: inline-block; padding: 0; line-height: 1.2; padding-left: 2px; } .multiselect-container > li > a > label.radio, .multiselect-container > li > a > label.checkbox { margin: 0; } .multiselect-container > li > a > label > input[type=checkbox] { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; } .btn-group > .btn-group:nth-child(2) > .multiselect.btn { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } .form-inline .multiselect-container label.checkbox, .form-inline .multiselect-container label.radio { padding: 3px 20px 3px 40px; } .form-inline .multiselect-container li a label.checkbox input[type=checkbox], .form-inline .multiselect-container li a label.radio input[type=radio] { margin-left: -20px; margin-right: 0; } .btn-group { height: 52px; width: calc(100% - 150px); } .btn-group button { border-radius: 4px; background: #fff; -webkit-box-shadow: 0px 10px 23px -16px rgba(0, 0, 0, 0.14); -moz-box-shadow: 0px 10px 23px -16px rgba(0, 0, 0, 0.14); box-shadow: 0px 10px 23px -16px rgba(0, 0, 0, 0.14); padding: 0 10px; text-align: right; position: relative; } .btn-group button:after { position: absolute; top: 50%; direction: rtl; left: 20px; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); color: #999999; } .btn-group button:focus { -webkit-box-shadow: 0px 10px 23px -16px rgba(0, 0, 0, 0.14); -moz-box-shadow: 0px 10px 23px -16px rgba(0, 0, 0, 0.14); box-shadow: 0px 10px 23px -16px rgba(0, 0, 0, 0.14); padding: 0 10px; } .sl { color: gray; width: 150px; } @media (min-width: 576px) { .select_permission{ width: 477px; } } @media (min-width: 768px) { } @media (min-width: 992px) { } @media (min-width: 1200px) { }
0.352313
0.129155
body,.mz_header{background:none;background-color: #fff;} .file { width: 120px; filter: alpha(opacity : 0); opacity: 0; cursor: pointer; margin-bottom: 0px; } #save,#cancel{ width: 138px; height: 50px; line-height: 50px; font-size: 18px; text-align: center; margin-bottom: 0px; } #cancel{ margin-left: 25px; } .ftop{ margin-top: 28px; margin-bottom: 28px; height: 50px; } .divFloat{ position: absolute; } .display{ display: block; } .fontBig{ font-size: 18px; text-align: start; } .fright{ font-size:14px; text-align: start; } #userImg { width: 100px; height: 100px; margin-top: 15px; margin-bottom: 20px; } .instrunction{ font-size:14px; margin-right:60px; margin-bottom:10px; margin-top:-5px; float: left } .commonFrame{ float: left; } .marginBigFrame{ float: left; } .marginOrgFrame{ float: left; } .originalMaxWH{ max-width: 300px; max-height: 300px; } .bigImgTop{ width: 200px;margin-right: 35px; height:200px; overflow:hidden; margin-top:20px; position:absolute; top:380px; left:375px; } .middleImgTop{ width: 100px;margin-right: 35px; height:100px; overflow:hidden; margin-top:20px; position:absolute; top:380px; left:605px; } .smallImgTop{ width: 50px;margin-right: 35px; height:50px; overflow:hidden; margin-top:20px; position:absolute; top:380px; left:735px; } .bigImg{ width: 100%; height: 200px; } .middleImg{ width: 100%; height: 100px; } .smallImg{ width: 100%; height: 50px; } .originalImg{ width: 300px; height: 300px; margin-right: 70px; position: relative; } .originalImgW300H300{ width: 300px; height: 300px; } #origImg{ position: absolute; } .imgTip{ display: inline-block; text-align: center; height: 20px; margin-top: 20px; } .big{ width: 200px; } .common{ width: 100px; } .small{ width: 50px; margin-left: -1px; } .top-leftWrap { float: left; padding-top: 20px; } .leftWrap-bottom{ height: 33px; } .fbottom { margin-bottom: 20px; margin-right: 60px; } #chooseImg{ width: 120px; cursor: pointer; height: 30px; line-height:30px; display: block; text-align: center; border: solid 1px #e3e5e6; padding: 0px 0px; margin-bottom: 0px; } #chooseImg em i{ display: inline-block; vertical-align: -12px; *vertical-align: -5px; overflow: hidden; width: 30px; height: 30px; margin-left: 3px; margin-right:5px; margin-bottom: 3px; background: url("../images/act.png") -194px -325px no-repeat; } #chooseImg em{ font-style: normal; } #chooseImg input{ height: 30px; line-height: 30px; text-align: center; width: 80px; background: none; border: none; cursor: pointer; } #file{height: 30px;line-height: 30px; position:absolute; z-index:10; text-indent:-9999px;} #bg4chooseImg{z-index:9} #mainWrap { width: 1000px; margin: 0px auto; overflow: hidden; background: #ffffff; position: initial; /*max-height: 740px;*/ } .contain { height: 300px; width: 1000px; margin-top: 5px; } div.frame { border: solid 1px #ddd; /*overflow:hidden;*/ } #uploadForm{ position: relative; height: 32px; margin-top: 20px; margin-bottom: 20px; } .topWrap{ margin-bottom: 15px; } .top-leftWrap,.grayBorderB .fontBig,#upload{ padding-left: 17px; }
public/qiantai/ucenter/css/modifyicon.css
body,.mz_header{background:none;background-color: #fff;} .file { width: 120px; filter: alpha(opacity : 0); opacity: 0; cursor: pointer; margin-bottom: 0px; } #save,#cancel{ width: 138px; height: 50px; line-height: 50px; font-size: 18px; text-align: center; margin-bottom: 0px; } #cancel{ margin-left: 25px; } .ftop{ margin-top: 28px; margin-bottom: 28px; height: 50px; } .divFloat{ position: absolute; } .display{ display: block; } .fontBig{ font-size: 18px; text-align: start; } .fright{ font-size:14px; text-align: start; } #userImg { width: 100px; height: 100px; margin-top: 15px; margin-bottom: 20px; } .instrunction{ font-size:14px; margin-right:60px; margin-bottom:10px; margin-top:-5px; float: left } .commonFrame{ float: left; } .marginBigFrame{ float: left; } .marginOrgFrame{ float: left; } .originalMaxWH{ max-width: 300px; max-height: 300px; } .bigImgTop{ width: 200px;margin-right: 35px; height:200px; overflow:hidden; margin-top:20px; position:absolute; top:380px; left:375px; } .middleImgTop{ width: 100px;margin-right: 35px; height:100px; overflow:hidden; margin-top:20px; position:absolute; top:380px; left:605px; } .smallImgTop{ width: 50px;margin-right: 35px; height:50px; overflow:hidden; margin-top:20px; position:absolute; top:380px; left:735px; } .bigImg{ width: 100%; height: 200px; } .middleImg{ width: 100%; height: 100px; } .smallImg{ width: 100%; height: 50px; } .originalImg{ width: 300px; height: 300px; margin-right: 70px; position: relative; } .originalImgW300H300{ width: 300px; height: 300px; } #origImg{ position: absolute; } .imgTip{ display: inline-block; text-align: center; height: 20px; margin-top: 20px; } .big{ width: 200px; } .common{ width: 100px; } .small{ width: 50px; margin-left: -1px; } .top-leftWrap { float: left; padding-top: 20px; } .leftWrap-bottom{ height: 33px; } .fbottom { margin-bottom: 20px; margin-right: 60px; } #chooseImg{ width: 120px; cursor: pointer; height: 30px; line-height:30px; display: block; text-align: center; border: solid 1px #e3e5e6; padding: 0px 0px; margin-bottom: 0px; } #chooseImg em i{ display: inline-block; vertical-align: -12px; *vertical-align: -5px; overflow: hidden; width: 30px; height: 30px; margin-left: 3px; margin-right:5px; margin-bottom: 3px; background: url("../images/act.png") -194px -325px no-repeat; } #chooseImg em{ font-style: normal; } #chooseImg input{ height: 30px; line-height: 30px; text-align: center; width: 80px; background: none; border: none; cursor: pointer; } #file{height: 30px;line-height: 30px; position:absolute; z-index:10; text-indent:-9999px;} #bg4chooseImg{z-index:9} #mainWrap { width: 1000px; margin: 0px auto; overflow: hidden; background: #ffffff; position: initial; /*max-height: 740px;*/ } .contain { height: 300px; width: 1000px; margin-top: 5px; } div.frame { border: solid 1px #ddd; /*overflow:hidden;*/ } #uploadForm{ position: relative; height: 32px; margin-top: 20px; margin-bottom: 20px; } .topWrap{ margin-bottom: 15px; } .top-leftWrap,.grayBorderB .fontBig,#upload{ padding-left: 17px; }
0.204342
0.061003
.djangoql-sq-dialog { position: absolute; overflow: hidden; width: 350px; display: none; border: solid 1px #ccc; border-radius: 4px; background: white; min-width: 183px; font-size: 13px; } .djangoql-sq-dialog ul { padding: 2px 0; margin: 0; max-height: 295px; overflow: auto; } .djangoql-sq-dialog li { list-style: none; padding: 4px 10px; cursor: pointer; } .djangoql-sq-button { margin: 0 5px !important; } .djangoql-sq-actions li:last-child { border-bottom: 1px solid #ccc; padding-bottom: 8px; } .djangoql-sq-actions li { color: #447e9b; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .djangoql-sq-actions li:hover { color: #036; } .djangoql-sq-label { font-size: 12px; color: #666; display: none; margin-top: 10px; } #changelist-search .djangoql-sq-label { margin-left: 22px; } .djangoql-sq-query-row { display: flex; overflow: hidden; } .djangoql-sq-query-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex-grow: 1; cursor: pointer; } .djangoql-sq-query-name:hover { color: #000; } .djangoql-sq-ops { display: none; margin-left: 5px; } .djangoql-sq-query-row:hover .djangoql-sq-ops { display: block; white-space: nowrap; } .djangoql-sq-label-reset { width: 8px; height: 8px; background: url(../img/remove.svg); background-size: 100%; } .djangoql-sq-ops span, .djangoql-sq-label-reset { display: inline-block; margin: 0 3px; cursor: pointer; color: #666; } .djangoql-sq-ops span:hover { color: rgba(255, 255, 255, 0.7) !important; } .djangoql-sq-label:hover .djangoql-sq-label-reset { display: inline-block; } .django-sq-query-list-placeholder { color: #999; background: none !important; display: none; } .django-sq-query-list li:hover { background-color: #79aec8; } .django-sq-query-list li:hover .djangoql-sq-ops span { color: white; background-color: #79aec8; } .django-sq-query-list li:hover .djangoql-sq-ops span, .django-sq-query-list li:hover .djangoql-sq-query-name { color: white; background-color: #79aec8; } .djangoql-sq-button-container { display: inline-block; }
djangoql/static/djangoql/css/saved_queries.css
.djangoql-sq-dialog { position: absolute; overflow: hidden; width: 350px; display: none; border: solid 1px #ccc; border-radius: 4px; background: white; min-width: 183px; font-size: 13px; } .djangoql-sq-dialog ul { padding: 2px 0; margin: 0; max-height: 295px; overflow: auto; } .djangoql-sq-dialog li { list-style: none; padding: 4px 10px; cursor: pointer; } .djangoql-sq-button { margin: 0 5px !important; } .djangoql-sq-actions li:last-child { border-bottom: 1px solid #ccc; padding-bottom: 8px; } .djangoql-sq-actions li { color: #447e9b; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .djangoql-sq-actions li:hover { color: #036; } .djangoql-sq-label { font-size: 12px; color: #666; display: none; margin-top: 10px; } #changelist-search .djangoql-sq-label { margin-left: 22px; } .djangoql-sq-query-row { display: flex; overflow: hidden; } .djangoql-sq-query-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex-grow: 1; cursor: pointer; } .djangoql-sq-query-name:hover { color: #000; } .djangoql-sq-ops { display: none; margin-left: 5px; } .djangoql-sq-query-row:hover .djangoql-sq-ops { display: block; white-space: nowrap; } .djangoql-sq-label-reset { width: 8px; height: 8px; background: url(../img/remove.svg); background-size: 100%; } .djangoql-sq-ops span, .djangoql-sq-label-reset { display: inline-block; margin: 0 3px; cursor: pointer; color: #666; } .djangoql-sq-ops span:hover { color: rgba(255, 255, 255, 0.7) !important; } .djangoql-sq-label:hover .djangoql-sq-label-reset { display: inline-block; } .django-sq-query-list-placeholder { color: #999; background: none !important; display: none; } .django-sq-query-list li:hover { background-color: #79aec8; } .django-sq-query-list li:hover .djangoql-sq-ops span { color: white; background-color: #79aec8; } .django-sq-query-list li:hover .djangoql-sq-ops span, .django-sq-query-list li:hover .djangoql-sq-query-name { color: white; background-color: #79aec8; } .djangoql-sq-button-container { display: inline-block; }
0.535098
0.077797
* { box-sizing: border-box; } /* Clear fix hack */ .clearfix:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; } .clear { clear: both; } /****************************************** /* BASE STYLES /*******************************************/ html{ font-size: 12px; } body { line-height: 1.4; font-family: 'Lato', Arial, sans-serif; height: 100vh; color: white; } /****************************************** /* LAYOUT /*******************************************/ header { width: 100%; height: 8%; background:#800000; background-size: 400% 400%; animation: gradient 15s ease infinite; } h1{ font-size: 2.5rem; font-weight: bold; text-align: center; color: white; } header span{ display: flex; justify-content: center; color: white; font-size: 2.5rem; } main{ height: 84%; width: 100%; display: flex; } .patientInfo{ flex: 1; width: 20%; height: 100%; background: pink; display: flex; flex-direction: column; align-items: center; justify-content: center; color: black; } h2{ margin-bottom: 5%; font-size: 1.5rem; font-weight: bold; } h3{ margin-bottom: 3%; font-size: 1.3rem; } .subHead{ text-align: left; font-size: 2rem; color: white; margin: 0; margin-bottom: 2%; } .rightSection{ /* border: 1px solid black; */ flex: 2; width: 80%; background: #800000; display: flex; flex-direction: column; align-items: center; } .rateSelect{ width: 100%; height: 10%; display: flex; justify-content: center; } .rateSelect label, form label{ font-size: 1.5rem; } select{ width: 10%; height: 50%; border-radius: 5px; font-size: 1.2rem; } textarea{ width: 20%; height: 15%; min-width: 10%; min-height: 10%; max-width:70%; max-height:25%; color: black; } form{ display: flex; flex-direction: column; align-items: center; /* border: 1px solid black; */ height: 13%; } .insertDate{ margin-bottom: 5%; margin-top: 5%; } form button{ margin-top: 3%; width: 100%; height: 60%; } button{ width: 15%; height: 95%; margin-left: 1%; font-size: 1.2rem; background-color:rgb(254, 91, 118); background-size: 400% 400%; animation: gradient 15s ease infinite; border: none; color: white; border-radius: 5px; border-color: black; border: 1px solid white; } button:hover{ color:black; font-weight: bold; } .resetButton{ margin-left: 0; border: 1px solid white; } .prevRecordings{ margin: 0; margin-top: 1%; font-weight: bold; } .tableWrapper{ width: 75%; position: relative; margin-top: 1%; height: 50%; } .scrollAssist{ overflow: auto; height: 100%;; } .tableWrapper tr{ border-bottom: 1px solid lightgray; } .tBody tr{ border-bottom: 40px; display: flex; justify-content: space-evenly; border-bottom: 1px solid black; } .tBody td{ width: 100%; text-align: center; /* height: 20%; */ font-size: 1.5rem; padding-top: 1%; } table{ background-color: rgba(255, 255, 255, 0.55); margin-top: 2%; } table thead th{ background-color: white; width: 100%; display: block; color: black; } .headtr{ position: absolute; top: 0; left:0; display: flex; flex-direction: row; justify-content: space-evenly; width: 100%; /* margin-bottom: 2%; border-bottom: 2%; */ } /****************************************** /* ADDITIONAL STYLES /*******************************************/ .hideTable{ display: none; } #tableWrapper{ display: none; } @keyframes gradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } footer{ background-color: maroon; padding-bottom: 10%; }
public/css/style.css
* { box-sizing: border-box; } /* Clear fix hack */ .clearfix:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; } .clear { clear: both; } /****************************************** /* BASE STYLES /*******************************************/ html{ font-size: 12px; } body { line-height: 1.4; font-family: 'Lato', Arial, sans-serif; height: 100vh; color: white; } /****************************************** /* LAYOUT /*******************************************/ header { width: 100%; height: 8%; background:#800000; background-size: 400% 400%; animation: gradient 15s ease infinite; } h1{ font-size: 2.5rem; font-weight: bold; text-align: center; color: white; } header span{ display: flex; justify-content: center; color: white; font-size: 2.5rem; } main{ height: 84%; width: 100%; display: flex; } .patientInfo{ flex: 1; width: 20%; height: 100%; background: pink; display: flex; flex-direction: column; align-items: center; justify-content: center; color: black; } h2{ margin-bottom: 5%; font-size: 1.5rem; font-weight: bold; } h3{ margin-bottom: 3%; font-size: 1.3rem; } .subHead{ text-align: left; font-size: 2rem; color: white; margin: 0; margin-bottom: 2%; } .rightSection{ /* border: 1px solid black; */ flex: 2; width: 80%; background: #800000; display: flex; flex-direction: column; align-items: center; } .rateSelect{ width: 100%; height: 10%; display: flex; justify-content: center; } .rateSelect label, form label{ font-size: 1.5rem; } select{ width: 10%; height: 50%; border-radius: 5px; font-size: 1.2rem; } textarea{ width: 20%; height: 15%; min-width: 10%; min-height: 10%; max-width:70%; max-height:25%; color: black; } form{ display: flex; flex-direction: column; align-items: center; /* border: 1px solid black; */ height: 13%; } .insertDate{ margin-bottom: 5%; margin-top: 5%; } form button{ margin-top: 3%; width: 100%; height: 60%; } button{ width: 15%; height: 95%; margin-left: 1%; font-size: 1.2rem; background-color:rgb(254, 91, 118); background-size: 400% 400%; animation: gradient 15s ease infinite; border: none; color: white; border-radius: 5px; border-color: black; border: 1px solid white; } button:hover{ color:black; font-weight: bold; } .resetButton{ margin-left: 0; border: 1px solid white; } .prevRecordings{ margin: 0; margin-top: 1%; font-weight: bold; } .tableWrapper{ width: 75%; position: relative; margin-top: 1%; height: 50%; } .scrollAssist{ overflow: auto; height: 100%;; } .tableWrapper tr{ border-bottom: 1px solid lightgray; } .tBody tr{ border-bottom: 40px; display: flex; justify-content: space-evenly; border-bottom: 1px solid black; } .tBody td{ width: 100%; text-align: center; /* height: 20%; */ font-size: 1.5rem; padding-top: 1%; } table{ background-color: rgba(255, 255, 255, 0.55); margin-top: 2%; } table thead th{ background-color: white; width: 100%; display: block; color: black; } .headtr{ position: absolute; top: 0; left:0; display: flex; flex-direction: row; justify-content: space-evenly; width: 100%; /* margin-bottom: 2%; border-bottom: 2%; */ } /****************************************** /* ADDITIONAL STYLES /*******************************************/ .hideTable{ display: none; } #tableWrapper{ display: none; } @keyframes gradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } footer{ background-color: maroon; padding-bottom: 10%; }
0.457137
0.092196
@charset "UTF-8"; html { box-sizing: border-box; } *, *::after, *::before { box-sizing: inherit; } /*** BSP: @extend %reset;***/ /*** Mixins & Placeholders ***/ /**** caret ****/ /* Bsp. @include alpha-background-color(rgba(black, 0.35), white); */ /******* SVG *********/ /*** WP Specials ***/ /* Mediaqueries breakpoints */ /* Helper Classes */ .foo { border: 1px solid red; } /** Sticky Footer ***/ @media screen and (min-width: 768px) { body { min-height: 100vH; display: -webkit-box; display: -moz-box; display: box; display: -webkit-flex; display: -moz-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -moz-box-orient: vertical; box-orient: vertical; -webkit-box-direction: normal; -moz-box-direction: normal; box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; flex-direction: column; -ms-flex-direction: column; -webkit-box-pack: justify; -moz-box-pack: justify; box-pack: justify; -webkit-justify-content: space-between; -moz-justify-content: space-between; -ms-justify-content: space-between; -o-justify-content: space-between; justify-content: space-between; -ms-flex-pack: justify; } } @media screen and (max-width: 768px) { .wrapper { padding: 0 2em; } body > main > header .wrapper { padding: 2em; } } @media screen and (min-width: 769px) { .wrapper { max-width: 960px; margin-left: auto; margin-right: auto; } .wrapper::after { clear: both; content: ""; display: table; } } @media screen and (min-width: 600px) and (max-width: 768px) and (orientation: landscape) { body > main > header .wrapper h1 { float: left; display: block; margin-right: 2.35765%; width: 48.82117%; } body > main > header .wrapper h1:last-child { margin-right: 0; } body > main > header .wrapper .contact-data { float: left; display: block; margin-right: 2.35765%; width: 48.82117%; } body > main > header .wrapper .contact-data:last-child { margin-right: 0; } } @media screen and (min-width: 768px) { body > main > header .wrapper h1 { float: left; display: block; margin-right: 2.35765%; width: 31.76157%; } body > main > header .wrapper h1:last-child { margin-right: 0; } body > main > header .wrapper .contact-data { float: left; display: block; margin-right: 2.35765%; width: 65.88078%; } body > main > header .wrapper .contact-data:last-child { margin-right: 0; } } body > main > header .wrapper > h1 img { width: 255px; max-width: none; } .content { max-width: 1200px; margin-left: auto; margin-right: auto; padding-bottom: 42px; /* figure figure{ @include span-columns(4); }*/ } .content::after { clear: both; content: ""; display: table; } @media screen and (min-width: 480px) { .content > figure { display: -webkit-box; display: -moz-box; display: box; display: -webkit-flex; display: -moz-flex; display: -ms-flexbox; display: flex; -webkit-box-lines: multiple; -moz-box-lines: multiple; box-lines: multiple; -webkit-flex-wrap: wrap; -moz-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: start; -moz-box-pack: start; box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; -o-justify-content: flex-start; justify-content: flex-start; -ms-flex-pack: start; } .content > figure > figure { -webkit-flex-basis: 33%; -moz-flex-basis: 33%; flex-basis: 33%; -ms-flex-preferred-size: 33%; } } @media screen and (max-width: 480px) { .content > figure { -webkit-box-orient: vertical; -moz-box-orient: vertical; box-orient: vertical; -webkit-box-direction: normal; -moz-box-direction: normal; box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; flex-direction: column; -ms-flex-direction: column; } } @media screen and (min-width: 768px) { .content > figure { -webkit-box-orient: horizontal; -moz-box-orient: horizontal; box-orient: horizontal; -webkit-box-direction: normal; -moz-box-direction: normal; box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; flex-direction: row; -ms-flex-direction: row; } } .content > figure > figure { margin-right: 2em; } @media screen and (max-width: 480px) { .content > figure > figure { margin: 2em; display: block; } } @media screen and (min-width: 481px) and (max-width: 601px) { .content > figure > figure { -webkit-flex-basis: 40%; -moz-flex-basis: 40%; flex-basis: 40%; -ms-flex-preferred-size: 40%; } } @media screen and (min-width: 768px) { .content > figure > figure { -webkit-flex-basis: 30%; -moz-flex-basis: 30%; flex-basis: 30%; -ms-flex-preferred-size: 30%; } } .content > figure > figure img { width: 100%; height: auto; } .content > figure > figure figcaption { font-size: small; text-align: center; display: block; padding: 1em 0; color: #404040; } /*https://www.google.com/fonts#UsePlace:use/Collection:Lobster+Two|Yanone+Kaffeesatz|Bree+Serif|Basic|Oleo+Script|Sansita+One*/ @font-face { font-family: 'FontAwesome'; src: url("../fonts/fontawesome/fontawesome-webfont.eot?v=#4.1.0"); src: url("../fonts/fontawesome/fontawesome-webfont.eot?#iefix&v=#4.1.0") format("embedded-opentype"), url("../fonts/fontawesome/fontawesome-webfont.woff2?v=#4.1.0") format("woff2"), url("../fonts/fontawesome/fontawesome-webfont.woff?v=#4.1.0") format("woff"), url("../fonts/fontawesome/fontawesome-webfont.ttf?v=#4.1.0") format("truetype"), url("../fonts/fontawesome/fontawesome-webfont.svg?v=#4.1.0#fontawesomeregular") format("svg"); font-weight: normal; font-style: normal; } body { -ms-word-wrap: break-word; word-wrap: break-word; font-size: 14px; text-rendering: optimizeLegibility; } @media screen and (max-width: 992px) { body { moz-text-size-adjust: auto; -webkit-text-size-adjust: auto; -ms-text-size-adjust: auto; } } body, form *, button, input, textarea, address { color: #000000; font-family: "Lato", arial, helvetica, sans-serif; line-height: 1.618; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-style: normal; } select { color: initial; font-family: "Lato", arial, helvetica, sans-serif; } h1, h2, h3, h4, h5, h6, legend { font-family: "Lato", arial, helvetica, sans-serif; font-weight: 500 !important; clear: none; margin: 0 0 .618em; } h1 { font-size: 2.5em; text-transform: uppercase; letter-spacing: -1px; line-height: 1.214; font-weight: 300; } @media screen and (max-width: 480px) { h1 { font-size: 1.8em; } } @media screen and (min-width: 992px) { h1 { padding-top: .5em; } } h1 a { font-weight: 300; } h2 { font-size: 2em; } h3 { font-size: 1.714em; } h4 { font-size: 1.4em; } hr { background-color: #ccc; border: 0; height: 1px; margin: 0 0 14px; } @media screen and (max-width: 480px) { p { padding: 0 .5em 1em .5em; } } @media screen and (min-width: 992px) { p { padding: 0 0 14px; margin: 0 !important; } } ul, ol { margin: 0; padding: 0; } ul { list-style: none; } ol { list-style: decimal; } ul li { list-style-position: outside; } ul li:before { font-family: 'FontAwesome'; content: ""; padding-right: 1em; opacity: 1; margin-left: 0; font-size: 1em; color: #2ea724; } nav ul li:before, header ul li:before { content: ' '; padding: 0; } li > ul, li > ol { margin-bottom: 0; margin-left: 14px; } dt { font-weight: 700; } dd { margin: 0 0 1.618em; } b, strong { font-weight: 700; } dfn, cite, em, i { font-style: italic; } blockquote { border-left: 3px solid rgba(0, 0, 0, 0.05); font-style: italic; } @media screen and (max-width: 480px) { blockquote { margin: 0; } } @media screen and (min-width: 992px) { blockquote { padding: 0 14px; } } address { margin: 0 0 14px; } pre { background: #fff9c0; font-family: "Courier 10 Pitch", Courier, monospace; margin-bottom: 1.618em; padding: 1.618em; overflow: auto; max-width: 100%; } code, kbd, tt, var { font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace; background-color: rgba(0, 0, 0, 0.05); padding: .202em .53em; } abbr, acronym { border-bottom: 1px dotted #666; cursor: help; } mark, ins { text-decoration: none; font-weight: 700; background: transparent; } sup, sub { font-size: 75%; height: 0; line-height: 0; position: relative; vertical-align: baseline; } sup { bottom: 1ex; } sub { top: .5ex; } small { font-size: 75%; } big { font-size: 125%; } figure { margin: 0; } table { margin: 0 0 14px; width: 100%; } th { font-weight: bold; } tr:nth-child(even) td { background: #eee; } img { height: auto; max-width: 100%; display: block; } a { color: #2ea724; text-decoration: none; font-weight: normal; } a:visited { color: #2ea724; } a:hover { color: #2ea724; } a:focus { outline: none !important; } a:active { outline: none; } .main-nav { position: absolute; z-index: 99; } body:not(.kontakt) .main-nav { bottom: 0; } body.kontakt .main-nav, body.error404 .main-nav { top: 100px; } body.kontakt .main-nav ~ div, body.error404 .main-nav ~ div { margin-left: 283px; } .main-nav ul { background: #2ea724; width: 255px; padding: 42px 28px; } .main-nav ul * { color: white; } .main-nav ul li { font-size: large; line-height: 2; } .main-nav ul li a { display: block; } .main-nav:after { content: ' '; display: block; width: inherit; height: 28px; margin-bottom: -28px; background-color: transparent; background-image: -webkit-linear-gradient(bottom, transparent, #2ea724); background-image: linear-gradient(to top,transparent, #2ea724); opacity: .5; } figure img { -webkit-box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.15); box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.15); } .contact-data { font-size: large; } .contact-data, .contact-data * { color: #2ea724; } .contact-data i.fa, .contact-data * i.fa { margin-right: 1em; } @media screen and (min-width: 768px) { .contact-data ul { float: right; padding: 0 1em; } } .buttons { margin: 42px 0; -webkit-box-align: center; -moz-box-align: center; box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; -o-align-items: center; align-items: center; -ms-flex-align: center; display: -webkit-box; display: -moz-box; display: box; display: -webkit-flex; display: -moz-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: distribute; -moz-box-pack: distribute; box-pack: distribute; -webkit-justify-content: space-around; -moz-justify-content: space-around; -ms-justify-content: space-around; -o-justify-content: space-around; justify-content: space-around; -ms-flex-pack: distribute; } @media screen and (max-width: 480px) { .buttons { -webkit-box-orient: vertical; -moz-box-orient: vertical; box-orient: vertical; -webkit-box-direction: normal; -moz-box-direction: normal; box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; flex-direction: column; -ms-flex-direction: column; } } @media screen and (min-width: 768px) { .buttons { -webkit-box-orient: horizontal; -moz-box-orient: horizontal; box-orient: horizontal; -webkit-box-direction: normal; -moz-box-direction: normal; box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; flex-direction: row; -ms-flex-direction: row; } } .buttons * { color: #2ea724 !important; } @media screen and (max-width: 480px) and (orientation: portrait) { .buttons { font-size: large; } } @media screen and (max-width: 600px) and (orientation: landscape) { .buttons { font-size: small; } } @media screen and (min-width: 768px) { .buttons { font-size: large; } } .buttons i.fa { margin-right: .5em; } .content { max-width: 960px; margin-left: auto; margin-right: auto; } .content::after { clear: both; content: ""; display: table; } .home .content { text-align: center; border: 0; } .home .content h1 span { display: inline-block; vertical-align: baseline; } @media screen and (min-width: 768px) { .home .content h1 img { max-width: none; height: 45px; width: auto; margin-left: .5em; } } body > main > header { background-color: #bfbfbf; background-color: rgba(255, 255, 255, 0.75); } @media screen and (max-width: 480px) { body > main > header { height: 150px; } } @media screen and (min-width: 480px) and (max-width: 768px) { body > main > header { height: 120px; } } @media screen and (min-width: 992px) { body > main > header { height: 100px; padding-top: 2em; } } body > main + footer { background: #2ea724; } body > main + footer *, body > main + footer a { color: #fff; } body > main + footer nav { text-align: center; padding: 1.4em 0; } body > main + footer nav li { display: inline; border-right: 1px solid currentColor; padding: 0 1em; } body > main + footer nav li:last-child { border: 0; } body > main + footer a:hover, body > main + footer a:visited { color: #fff; } .banner { background-position: top center; background-repeat: repeat-x; position: relative; min-height: 250px; margin-bottom: 42px; } .backgroundsize .banner { background-size: cover; background-repeat: no-repeat; } .location { float: right; width: calc($bgBodyHeight + 28px); overflow: hidden; border-width: 0 .5em; border-style: solid; border-color: #fff; } @media screen and (max-width: 480px) and (orientation: portrait) { .location { display: none; } } .location img { max-width: none; } .content { margin-bottom: 14px; border-bottom: 1px solid #ccc; } .scroll-to-top { background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5); -webkit-border-radius: 0.5em; border-radius: 0.5em; bottom: 5%; color: #fff; cursor: pointer; display: none; padding: .5em 1em; position: fixed; right: 20px; transition: background-color 0.1s linear 0s; z-index: 9999; } .home .scroll-to-top { display: none; } .scroll-to-top:hover { background: #2ea724; opacity: 0.8; } /*# sourceMappingURL=custom.css.map */
css/custom.css
@charset "UTF-8"; html { box-sizing: border-box; } *, *::after, *::before { box-sizing: inherit; } /*** BSP: @extend %reset;***/ /*** Mixins & Placeholders ***/ /**** caret ****/ /* Bsp. @include alpha-background-color(rgba(black, 0.35), white); */ /******* SVG *********/ /*** WP Specials ***/ /* Mediaqueries breakpoints */ /* Helper Classes */ .foo { border: 1px solid red; } /** Sticky Footer ***/ @media screen and (min-width: 768px) { body { min-height: 100vH; display: -webkit-box; display: -moz-box; display: box; display: -webkit-flex; display: -moz-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -moz-box-orient: vertical; box-orient: vertical; -webkit-box-direction: normal; -moz-box-direction: normal; box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; flex-direction: column; -ms-flex-direction: column; -webkit-box-pack: justify; -moz-box-pack: justify; box-pack: justify; -webkit-justify-content: space-between; -moz-justify-content: space-between; -ms-justify-content: space-between; -o-justify-content: space-between; justify-content: space-between; -ms-flex-pack: justify; } } @media screen and (max-width: 768px) { .wrapper { padding: 0 2em; } body > main > header .wrapper { padding: 2em; } } @media screen and (min-width: 769px) { .wrapper { max-width: 960px; margin-left: auto; margin-right: auto; } .wrapper::after { clear: both; content: ""; display: table; } } @media screen and (min-width: 600px) and (max-width: 768px) and (orientation: landscape) { body > main > header .wrapper h1 { float: left; display: block; margin-right: 2.35765%; width: 48.82117%; } body > main > header .wrapper h1:last-child { margin-right: 0; } body > main > header .wrapper .contact-data { float: left; display: block; margin-right: 2.35765%; width: 48.82117%; } body > main > header .wrapper .contact-data:last-child { margin-right: 0; } } @media screen and (min-width: 768px) { body > main > header .wrapper h1 { float: left; display: block; margin-right: 2.35765%; width: 31.76157%; } body > main > header .wrapper h1:last-child { margin-right: 0; } body > main > header .wrapper .contact-data { float: left; display: block; margin-right: 2.35765%; width: 65.88078%; } body > main > header .wrapper .contact-data:last-child { margin-right: 0; } } body > main > header .wrapper > h1 img { width: 255px; max-width: none; } .content { max-width: 1200px; margin-left: auto; margin-right: auto; padding-bottom: 42px; /* figure figure{ @include span-columns(4); }*/ } .content::after { clear: both; content: ""; display: table; } @media screen and (min-width: 480px) { .content > figure { display: -webkit-box; display: -moz-box; display: box; display: -webkit-flex; display: -moz-flex; display: -ms-flexbox; display: flex; -webkit-box-lines: multiple; -moz-box-lines: multiple; box-lines: multiple; -webkit-flex-wrap: wrap; -moz-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: start; -moz-box-pack: start; box-pack: start; -webkit-justify-content: flex-start; -moz-justify-content: flex-start; -ms-justify-content: flex-start; -o-justify-content: flex-start; justify-content: flex-start; -ms-flex-pack: start; } .content > figure > figure { -webkit-flex-basis: 33%; -moz-flex-basis: 33%; flex-basis: 33%; -ms-flex-preferred-size: 33%; } } @media screen and (max-width: 480px) { .content > figure { -webkit-box-orient: vertical; -moz-box-orient: vertical; box-orient: vertical; -webkit-box-direction: normal; -moz-box-direction: normal; box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; flex-direction: column; -ms-flex-direction: column; } } @media screen and (min-width: 768px) { .content > figure { -webkit-box-orient: horizontal; -moz-box-orient: horizontal; box-orient: horizontal; -webkit-box-direction: normal; -moz-box-direction: normal; box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; flex-direction: row; -ms-flex-direction: row; } } .content > figure > figure { margin-right: 2em; } @media screen and (max-width: 480px) { .content > figure > figure { margin: 2em; display: block; } } @media screen and (min-width: 481px) and (max-width: 601px) { .content > figure > figure { -webkit-flex-basis: 40%; -moz-flex-basis: 40%; flex-basis: 40%; -ms-flex-preferred-size: 40%; } } @media screen and (min-width: 768px) { .content > figure > figure { -webkit-flex-basis: 30%; -moz-flex-basis: 30%; flex-basis: 30%; -ms-flex-preferred-size: 30%; } } .content > figure > figure img { width: 100%; height: auto; } .content > figure > figure figcaption { font-size: small; text-align: center; display: block; padding: 1em 0; color: #404040; } /*https://www.google.com/fonts#UsePlace:use/Collection:Lobster+Two|Yanone+Kaffeesatz|Bree+Serif|Basic|Oleo+Script|Sansita+One*/ @font-face { font-family: 'FontAwesome'; src: url("../fonts/fontawesome/fontawesome-webfont.eot?v=#4.1.0"); src: url("../fonts/fontawesome/fontawesome-webfont.eot?#iefix&v=#4.1.0") format("embedded-opentype"), url("../fonts/fontawesome/fontawesome-webfont.woff2?v=#4.1.0") format("woff2"), url("../fonts/fontawesome/fontawesome-webfont.woff?v=#4.1.0") format("woff"), url("../fonts/fontawesome/fontawesome-webfont.ttf?v=#4.1.0") format("truetype"), url("../fonts/fontawesome/fontawesome-webfont.svg?v=#4.1.0#fontawesomeregular") format("svg"); font-weight: normal; font-style: normal; } body { -ms-word-wrap: break-word; word-wrap: break-word; font-size: 14px; text-rendering: optimizeLegibility; } @media screen and (max-width: 992px) { body { moz-text-size-adjust: auto; -webkit-text-size-adjust: auto; -ms-text-size-adjust: auto; } } body, form *, button, input, textarea, address { color: #000000; font-family: "Lato", arial, helvetica, sans-serif; line-height: 1.618; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-style: normal; } select { color: initial; font-family: "Lato", arial, helvetica, sans-serif; } h1, h2, h3, h4, h5, h6, legend { font-family: "Lato", arial, helvetica, sans-serif; font-weight: 500 !important; clear: none; margin: 0 0 .618em; } h1 { font-size: 2.5em; text-transform: uppercase; letter-spacing: -1px; line-height: 1.214; font-weight: 300; } @media screen and (max-width: 480px) { h1 { font-size: 1.8em; } } @media screen and (min-width: 992px) { h1 { padding-top: .5em; } } h1 a { font-weight: 300; } h2 { font-size: 2em; } h3 { font-size: 1.714em; } h4 { font-size: 1.4em; } hr { background-color: #ccc; border: 0; height: 1px; margin: 0 0 14px; } @media screen and (max-width: 480px) { p { padding: 0 .5em 1em .5em; } } @media screen and (min-width: 992px) { p { padding: 0 0 14px; margin: 0 !important; } } ul, ol { margin: 0; padding: 0; } ul { list-style: none; } ol { list-style: decimal; } ul li { list-style-position: outside; } ul li:before { font-family: 'FontAwesome'; content: ""; padding-right: 1em; opacity: 1; margin-left: 0; font-size: 1em; color: #2ea724; } nav ul li:before, header ul li:before { content: ' '; padding: 0; } li > ul, li > ol { margin-bottom: 0; margin-left: 14px; } dt { font-weight: 700; } dd { margin: 0 0 1.618em; } b, strong { font-weight: 700; } dfn, cite, em, i { font-style: italic; } blockquote { border-left: 3px solid rgba(0, 0, 0, 0.05); font-style: italic; } @media screen and (max-width: 480px) { blockquote { margin: 0; } } @media screen and (min-width: 992px) { blockquote { padding: 0 14px; } } address { margin: 0 0 14px; } pre { background: #fff9c0; font-family: "Courier 10 Pitch", Courier, monospace; margin-bottom: 1.618em; padding: 1.618em; overflow: auto; max-width: 100%; } code, kbd, tt, var { font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace; background-color: rgba(0, 0, 0, 0.05); padding: .202em .53em; } abbr, acronym { border-bottom: 1px dotted #666; cursor: help; } mark, ins { text-decoration: none; font-weight: 700; background: transparent; } sup, sub { font-size: 75%; height: 0; line-height: 0; position: relative; vertical-align: baseline; } sup { bottom: 1ex; } sub { top: .5ex; } small { font-size: 75%; } big { font-size: 125%; } figure { margin: 0; } table { margin: 0 0 14px; width: 100%; } th { font-weight: bold; } tr:nth-child(even) td { background: #eee; } img { height: auto; max-width: 100%; display: block; } a { color: #2ea724; text-decoration: none; font-weight: normal; } a:visited { color: #2ea724; } a:hover { color: #2ea724; } a:focus { outline: none !important; } a:active { outline: none; } .main-nav { position: absolute; z-index: 99; } body:not(.kontakt) .main-nav { bottom: 0; } body.kontakt .main-nav, body.error404 .main-nav { top: 100px; } body.kontakt .main-nav ~ div, body.error404 .main-nav ~ div { margin-left: 283px; } .main-nav ul { background: #2ea724; width: 255px; padding: 42px 28px; } .main-nav ul * { color: white; } .main-nav ul li { font-size: large; line-height: 2; } .main-nav ul li a { display: block; } .main-nav:after { content: ' '; display: block; width: inherit; height: 28px; margin-bottom: -28px; background-color: transparent; background-image: -webkit-linear-gradient(bottom, transparent, #2ea724); background-image: linear-gradient(to top,transparent, #2ea724); opacity: .5; } figure img { -webkit-box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.15); box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.15); } .contact-data { font-size: large; } .contact-data, .contact-data * { color: #2ea724; } .contact-data i.fa, .contact-data * i.fa { margin-right: 1em; } @media screen and (min-width: 768px) { .contact-data ul { float: right; padding: 0 1em; } } .buttons { margin: 42px 0; -webkit-box-align: center; -moz-box-align: center; box-align: center; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; -o-align-items: center; align-items: center; -ms-flex-align: center; display: -webkit-box; display: -moz-box; display: box; display: -webkit-flex; display: -moz-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: distribute; -moz-box-pack: distribute; box-pack: distribute; -webkit-justify-content: space-around; -moz-justify-content: space-around; -ms-justify-content: space-around; -o-justify-content: space-around; justify-content: space-around; -ms-flex-pack: distribute; } @media screen and (max-width: 480px) { .buttons { -webkit-box-orient: vertical; -moz-box-orient: vertical; box-orient: vertical; -webkit-box-direction: normal; -moz-box-direction: normal; box-direction: normal; -webkit-flex-direction: column; -moz-flex-direction: column; flex-direction: column; -ms-flex-direction: column; } } @media screen and (min-width: 768px) { .buttons { -webkit-box-orient: horizontal; -moz-box-orient: horizontal; box-orient: horizontal; -webkit-box-direction: normal; -moz-box-direction: normal; box-direction: normal; -webkit-flex-direction: row; -moz-flex-direction: row; flex-direction: row; -ms-flex-direction: row; } } .buttons * { color: #2ea724 !important; } @media screen and (max-width: 480px) and (orientation: portrait) { .buttons { font-size: large; } } @media screen and (max-width: 600px) and (orientation: landscape) { .buttons { font-size: small; } } @media screen and (min-width: 768px) { .buttons { font-size: large; } } .buttons i.fa { margin-right: .5em; } .content { max-width: 960px; margin-left: auto; margin-right: auto; } .content::after { clear: both; content: ""; display: table; } .home .content { text-align: center; border: 0; } .home .content h1 span { display: inline-block; vertical-align: baseline; } @media screen and (min-width: 768px) { .home .content h1 img { max-width: none; height: 45px; width: auto; margin-left: .5em; } } body > main > header { background-color: #bfbfbf; background-color: rgba(255, 255, 255, 0.75); } @media screen and (max-width: 480px) { body > main > header { height: 150px; } } @media screen and (min-width: 480px) and (max-width: 768px) { body > main > header { height: 120px; } } @media screen and (min-width: 992px) { body > main > header { height: 100px; padding-top: 2em; } } body > main + footer { background: #2ea724; } body > main + footer *, body > main + footer a { color: #fff; } body > main + footer nav { text-align: center; padding: 1.4em 0; } body > main + footer nav li { display: inline; border-right: 1px solid currentColor; padding: 0 1em; } body > main + footer nav li:last-child { border: 0; } body > main + footer a:hover, body > main + footer a:visited { color: #fff; } .banner { background-position: top center; background-repeat: repeat-x; position: relative; min-height: 250px; margin-bottom: 42px; } .backgroundsize .banner { background-size: cover; background-repeat: no-repeat; } .location { float: right; width: calc($bgBodyHeight + 28px); overflow: hidden; border-width: 0 .5em; border-style: solid; border-color: #fff; } @media screen and (max-width: 480px) and (orientation: portrait) { .location { display: none; } } .location img { max-width: none; } .content { margin-bottom: 14px; border-bottom: 1px solid #ccc; } .scroll-to-top { background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5); -webkit-border-radius: 0.5em; border-radius: 0.5em; bottom: 5%; color: #fff; cursor: pointer; display: none; padding: .5em 1em; position: fixed; right: 20px; transition: background-color 0.1s linear 0s; z-index: 9999; } .home .scroll-to-top { display: none; } .scroll-to-top:hover { background: #2ea724; opacity: 0.8; } /*# sourceMappingURL=custom.css.map */
0.387343
0.04154
@font-face { font-family: 'Quicksand'; font-style: normal; font-weight: 400; src: local('Quicksand Regular'), local('Quicksand-Regular'), url(images/quicksand.woff) format('woff'); } /**************************** COLORS *****************************/ reddish { color:#E65C5C; } /**************************** Site Structure *****************************/ html { font-size: 100%; } body { font-family: Arial,Helvetica sans-serif; font-size: .875em; line-height: 1.6em; background: #fff url(images/body_bg.png) fixed; color: #333; } img { display: block; } .image { border-radius: 8px; box-shadow: 0px 1px 10px #444; display: table; overflow: hidden; } .image_karlsruhe_dataset { border-radius: 8px; box-shadow: 0px 1px 10px #444; display: table; overflow: hidden; float: left; margin-right: 20px; } .image_centered { border-radius: 8px; box-shadow: 0px 1px 10px #444; display: table; overflow: hidden; margin-left: auto; margin-right: auto; } .tracker { display: none; } .publication { float: left; padding: 5px; width: 950px; border-radius: 8px; cursor:pointer; } .publication:hover { background: #95d9e5; background: -webkit-gradient(linear, 0% 0%, 1000% 0%, from(#95d9e5), to(#fff)); background: -webkit-linear-gradient(left, #95d9e5, #fff); background: -moz-linear-gradient(left, #95d9e5, #fff); background: -ms-linear-gradient(left, #95d9e5, #fff); background: -o-linear-gradient(left, #95d9e5, #fff); } .publication_image { border-radius: 8px; box-shadow: 1px 1px 4px #444; display: table; overflow: hidden; float: left; width:100px; height:100px; } .publication_title{ font-weight: bold; font-size: 1.2em; margin-left: 15px; display:inline; } .publication_authors{ font-style: italic; margin-left: 15px; display:inline; } .publication_venue{ margin-left: 15px; display:inline; } /* publication links collection: [link1, link2, link3] */ .publication_links { display:inline; margin-left: 15px;} .publication_links:before{ content:"["; } .publication_links:after{ content:"]"; } /* go to newline afterwards (needs display:inline in element) http://stackoverflow.com/questions/10933837/line-break-like-br-using-only-css */ .publication_title:after{ content:"\a"; white-space: pre; } .publication_authors:after{ content:"\a"; white-space: pre; } .publication_venue:after{ content:"\a"; white-space: pre; } .publication_detail { /* border-left-color: black; border-left-width: 2px; border-style: solid; */ border-radius: 2px; box-shadow: 0px 0px 2px #444; margin-left: 78px; margin-top: 8px; margin-bottom: 10px; padding: 10px; float: left; display: none; /* border-radius: 8px; background: #eee; background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#eee), to(#fff)); background: -webkit-linear-gradient(top, #eee, #fff); background: -moz-linear-gradient(top, #eee, #fff); background: -ms-linear-gradient(top, #eee, #fff); background: -o-linear-gradient(top, #eee, #fff); */ } .publication_abstract { float: left; width: 660px; margin-right: 20px; font-size: 0.9em; line-height: 1.2em; } .publication_icon { border-radius: 3px; display: table; overflow: hidden; margin-right: 5px; margin-top: 3px; float: left; } .project_image { border-radius: 8px; box-shadow: 3px 3px 5px #444; display: table; overflow: hidden; margin-bottom: 10px; float: left; } .newline { clear: both; padding-bottom: 0px; } .newline_5 { clear: both; padding-bottom: 5px; } .newline_10 { clear: both; padding-bottom: 10px; } .newline_20 { clear: both; padding-bottom: 20px; } .list ul li{ margin-left: 25px; list-style-image: url('images/bullet.png'); } #datasetcontainer{ float:left; margin:10px; padding:5px; width:800px; /*background:#eeeeee;*/ /*border:2px solid #cccccc;*/ font-size:0.95em; } #container { font-size: 1em; width:960px; background: #FFF; border-radius: 8px; box-shadow: 0px 0px 5px #555; padding: 15px 20px 5px 20px; margin: auto; margin-bottom: 30px; position: relative; clear: both; } #site_title {font-family: 'Quicksand', sans-serif; font-size: 20px; width: 210px; height: 50px; position:absolute; top: -56px; right: 0px} #site_title img {float: left} #site_title a {color: #FFFFFF} #footer { font-size: .8em; clear: both; color: #727579; text-align: center; } #footer a {color: #727579; text-decoration: none} #footer a:hover{text-decoration: none} /**************************** Typography *****************************/ .no_display {display: none;} h1, h2, h3, h4 { font-family: 'Quicksand', sans-serif; } h1 {font-size: 34px; padding: 20px 0; color: #000 } h2, h3 {margin: 0px 0px 0px 0px; color: #000; font-weight: normal;} h2 {font-size: 2em} h3 {font-size: 1.3em; font-weight: 700} h4 {font-size: 1.2em; font-weight: 700} .heading_bg {background: url(images/heading_bg.png) repeat-x 0 7px; margin-bottom: 5px; margin-left:-2px; } .newline_bg {background: url(images/heading_bg.png) repeat-x 0 7px; margin-bottom: 5px; margin-top: 20px; margin-left:-2px; clear: both } .heading_bg h2 {background: #FFF; padding-right: 10px; padding-bottom: 0px; display: inline-block} .newline_bg h2 {background: #FFF; padding-right: 10px; padding-bottom: 0px; display: inline-block} small {font-family: Georgia, "Times New Roman", Times, serif; color: #999} strong {font-weight: bold; font-size: 1.2em} em {font-style: italic;} a {color: #0b7183; text-decoration: none} a:hover{text-decoration: underline} /**************************************************************************************/ /*--------------------------------------- Columns -----------------------------------*/ /************************************************************************************/ .left { float:left; } .right { float:right; } .one, .one-half, .two-third, .one-third, .one-fourth, .one-fifth, .one-sixth ,.inner-content, .one-third-big { float:left; } .one-half, .two-third, .one-third, .one-fourth, .one-fifth, .one-sixth, .inner-content,.one-third-big { margin-right: 30px; margin-top: 10px; } .one { width:960px; } .one-half { width:465px; } .two-third { width:630px; } .one-third { width:300px; } .inner-content { width:712px; } .one-third-big{ width:340px;} .one-fourth { width:217px; } .one-fifth { width:168px; } .one-sixth { width:135px; } .last { margin-right: 0px!important; } /*** Projects ***/ #projects { width: 960px; margin: auto; } #projects p {padding:0; margin-bottom: 5px} .projects_container ul li a.hide { display: none; } .projects_container { padding: 0px; display: block; width: 990px; float: left; height:auto; margin-top: 0px; margin-left: 0px; margin-bottom: 0px; margin-right: -30px; } .projects_container ul { list-style-type: none; } .projects_container ul li { list-style-type: none } .projects_item { border-radius: 8px; padding: 10px; width:215px; float:left; cursor:pointer; } .projects_item:hover { background: #95d9e5; background: -webkit-gradient(linear, 0% 0%, 1000% 0%, from(#95d9e5), to(#fff)); background: -webkit-linear-gradient(left, #95d9e5, #fff); background: -moz-linear-gradient(top, #95d9e5, #fff); background: -ms-linear-gradient(left, #95d9e5, #fff); background: -o-linear-gradient(left, #95d9e5, #fff); } #filterable { display: inline; float: right; margin-bottom:5px; margin-right:10px; } #filterable li { float: left; margin-left: 25px; } #filterable li a { display: block; } .filterable_current a { color: #8e1a00; } /*** Menu ***/ #menu { width: 1000px; margin: 20px auto; border: 1px solid #222; background: #141414 url(images/menu_bg.jpg) repeat-x top; border-radius: 8px; box-shadow: 0px 0px 5px #333; } #menu:before, #menu:after { content: ""; display: table; clear: both; } #menu li { float: left; border-right: 1px solid #222; -moz-box-shadow: 1px 0 0 #444; -webkit-box-shadow: 1px 0 0 #444; box-shadow: 1px 0 0 #444; position: relative; } #menu a { float: left; padding: 12px 30px; color: #999; text-transform: uppercase; text-shadow: 0 1px 0 #000; text-decoration: none; } #menu li:hover > a { color: #fafafa; }
assets/css/style.css
@font-face { font-family: 'Quicksand'; font-style: normal; font-weight: 400; src: local('Quicksand Regular'), local('Quicksand-Regular'), url(images/quicksand.woff) format('woff'); } /**************************** COLORS *****************************/ reddish { color:#E65C5C; } /**************************** Site Structure *****************************/ html { font-size: 100%; } body { font-family: Arial,Helvetica sans-serif; font-size: .875em; line-height: 1.6em; background: #fff url(images/body_bg.png) fixed; color: #333; } img { display: block; } .image { border-radius: 8px; box-shadow: 0px 1px 10px #444; display: table; overflow: hidden; } .image_karlsruhe_dataset { border-radius: 8px; box-shadow: 0px 1px 10px #444; display: table; overflow: hidden; float: left; margin-right: 20px; } .image_centered { border-radius: 8px; box-shadow: 0px 1px 10px #444; display: table; overflow: hidden; margin-left: auto; margin-right: auto; } .tracker { display: none; } .publication { float: left; padding: 5px; width: 950px; border-radius: 8px; cursor:pointer; } .publication:hover { background: #95d9e5; background: -webkit-gradient(linear, 0% 0%, 1000% 0%, from(#95d9e5), to(#fff)); background: -webkit-linear-gradient(left, #95d9e5, #fff); background: -moz-linear-gradient(left, #95d9e5, #fff); background: -ms-linear-gradient(left, #95d9e5, #fff); background: -o-linear-gradient(left, #95d9e5, #fff); } .publication_image { border-radius: 8px; box-shadow: 1px 1px 4px #444; display: table; overflow: hidden; float: left; width:100px; height:100px; } .publication_title{ font-weight: bold; font-size: 1.2em; margin-left: 15px; display:inline; } .publication_authors{ font-style: italic; margin-left: 15px; display:inline; } .publication_venue{ margin-left: 15px; display:inline; } /* publication links collection: [link1, link2, link3] */ .publication_links { display:inline; margin-left: 15px;} .publication_links:before{ content:"["; } .publication_links:after{ content:"]"; } /* go to newline afterwards (needs display:inline in element) http://stackoverflow.com/questions/10933837/line-break-like-br-using-only-css */ .publication_title:after{ content:"\a"; white-space: pre; } .publication_authors:after{ content:"\a"; white-space: pre; } .publication_venue:after{ content:"\a"; white-space: pre; } .publication_detail { /* border-left-color: black; border-left-width: 2px; border-style: solid; */ border-radius: 2px; box-shadow: 0px 0px 2px #444; margin-left: 78px; margin-top: 8px; margin-bottom: 10px; padding: 10px; float: left; display: none; /* border-radius: 8px; background: #eee; background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#eee), to(#fff)); background: -webkit-linear-gradient(top, #eee, #fff); background: -moz-linear-gradient(top, #eee, #fff); background: -ms-linear-gradient(top, #eee, #fff); background: -o-linear-gradient(top, #eee, #fff); */ } .publication_abstract { float: left; width: 660px; margin-right: 20px; font-size: 0.9em; line-height: 1.2em; } .publication_icon { border-radius: 3px; display: table; overflow: hidden; margin-right: 5px; margin-top: 3px; float: left; } .project_image { border-radius: 8px; box-shadow: 3px 3px 5px #444; display: table; overflow: hidden; margin-bottom: 10px; float: left; } .newline { clear: both; padding-bottom: 0px; } .newline_5 { clear: both; padding-bottom: 5px; } .newline_10 { clear: both; padding-bottom: 10px; } .newline_20 { clear: both; padding-bottom: 20px; } .list ul li{ margin-left: 25px; list-style-image: url('images/bullet.png'); } #datasetcontainer{ float:left; margin:10px; padding:5px; width:800px; /*background:#eeeeee;*/ /*border:2px solid #cccccc;*/ font-size:0.95em; } #container { font-size: 1em; width:960px; background: #FFF; border-radius: 8px; box-shadow: 0px 0px 5px #555; padding: 15px 20px 5px 20px; margin: auto; margin-bottom: 30px; position: relative; clear: both; } #site_title {font-family: 'Quicksand', sans-serif; font-size: 20px; width: 210px; height: 50px; position:absolute; top: -56px; right: 0px} #site_title img {float: left} #site_title a {color: #FFFFFF} #footer { font-size: .8em; clear: both; color: #727579; text-align: center; } #footer a {color: #727579; text-decoration: none} #footer a:hover{text-decoration: none} /**************************** Typography *****************************/ .no_display {display: none;} h1, h2, h3, h4 { font-family: 'Quicksand', sans-serif; } h1 {font-size: 34px; padding: 20px 0; color: #000 } h2, h3 {margin: 0px 0px 0px 0px; color: #000; font-weight: normal;} h2 {font-size: 2em} h3 {font-size: 1.3em; font-weight: 700} h4 {font-size: 1.2em; font-weight: 700} .heading_bg {background: url(images/heading_bg.png) repeat-x 0 7px; margin-bottom: 5px; margin-left:-2px; } .newline_bg {background: url(images/heading_bg.png) repeat-x 0 7px; margin-bottom: 5px; margin-top: 20px; margin-left:-2px; clear: both } .heading_bg h2 {background: #FFF; padding-right: 10px; padding-bottom: 0px; display: inline-block} .newline_bg h2 {background: #FFF; padding-right: 10px; padding-bottom: 0px; display: inline-block} small {font-family: Georgia, "Times New Roman", Times, serif; color: #999} strong {font-weight: bold; font-size: 1.2em} em {font-style: italic;} a {color: #0b7183; text-decoration: none} a:hover{text-decoration: underline} /**************************************************************************************/ /*--------------------------------------- Columns -----------------------------------*/ /************************************************************************************/ .left { float:left; } .right { float:right; } .one, .one-half, .two-third, .one-third, .one-fourth, .one-fifth, .one-sixth ,.inner-content, .one-third-big { float:left; } .one-half, .two-third, .one-third, .one-fourth, .one-fifth, .one-sixth, .inner-content,.one-third-big { margin-right: 30px; margin-top: 10px; } .one { width:960px; } .one-half { width:465px; } .two-third { width:630px; } .one-third { width:300px; } .inner-content { width:712px; } .one-third-big{ width:340px;} .one-fourth { width:217px; } .one-fifth { width:168px; } .one-sixth { width:135px; } .last { margin-right: 0px!important; } /*** Projects ***/ #projects { width: 960px; margin: auto; } #projects p {padding:0; margin-bottom: 5px} .projects_container ul li a.hide { display: none; } .projects_container { padding: 0px; display: block; width: 990px; float: left; height:auto; margin-top: 0px; margin-left: 0px; margin-bottom: 0px; margin-right: -30px; } .projects_container ul { list-style-type: none; } .projects_container ul li { list-style-type: none } .projects_item { border-radius: 8px; padding: 10px; width:215px; float:left; cursor:pointer; } .projects_item:hover { background: #95d9e5; background: -webkit-gradient(linear, 0% 0%, 1000% 0%, from(#95d9e5), to(#fff)); background: -webkit-linear-gradient(left, #95d9e5, #fff); background: -moz-linear-gradient(top, #95d9e5, #fff); background: -ms-linear-gradient(left, #95d9e5, #fff); background: -o-linear-gradient(left, #95d9e5, #fff); } #filterable { display: inline; float: right; margin-bottom:5px; margin-right:10px; } #filterable li { float: left; margin-left: 25px; } #filterable li a { display: block; } .filterable_current a { color: #8e1a00; } /*** Menu ***/ #menu { width: 1000px; margin: 20px auto; border: 1px solid #222; background: #141414 url(images/menu_bg.jpg) repeat-x top; border-radius: 8px; box-shadow: 0px 0px 5px #333; } #menu:before, #menu:after { content: ""; display: table; clear: both; } #menu li { float: left; border-right: 1px solid #222; -moz-box-shadow: 1px 0 0 #444; -webkit-box-shadow: 1px 0 0 #444; box-shadow: 1px 0 0 #444; position: relative; } #menu a { float: left; padding: 12px 30px; color: #999; text-transform: uppercase; text-shadow: 0 1px 0 #000; text-decoration: none; } #menu li:hover > a { color: #fafafa; }
0.351089
0.106644
.cui-tag-input { border: solid 1px #c5cdd1; position: relative; display: inline-block; background: #ffffff; color: #37474f; border-radius: 3px; transition: border 200ms cubic-bezier(0.4, 1, 0.75, 0.9), background 200ms cubic-bezier(0.4, 1, 0.75, 0.9), color 200ms cubic-bezier(0.4, 1, 0.75, 0.9); } .cui-tag-input:focus, .cui-tag-input.cui-active { border: solid 1px #5360ad; } .cui-tag-input .cui-tag-input-values { padding: 0 12px; font-size: 14px; height: 40px; min-height: 40px; line-height: 40px; } .cui-tag-input .cui-tag-input-values:not(:first-child) { padding-left: 36px; } .cui-tag-input .cui-tag-input-values:not(:last-child) { padding-right: 36px; } .cui-tag-input > .cui-button:first-child:not(input), .cui-tag-input > .cui-spinner:first-child:not(input), .cui-tag-input > .cui-icon:first-child:not(input), .cui-tag-input > .cui-tag:first-child:not(input) { margin-left: 12px; } .cui-tag-input > .cui-button:last-child, .cui-tag-input > .cui-spinner:last-child, .cui-tag-input > .cui-icon:last-child, .cui-tag-input > .cui-tag:last-child { margin-right: 12px; } .cui-tag-input > .cui-button { padding: 0 6px; font-size: 11px; height: 28px; min-height: 28px; line-height: 28px; } .cui-tag-input > .cui-icon { top: 9px; } .cui-tag-input .cui-tag-input-values { padding-top: 5px; } .cui-tag-input input { margin-top: 1px; margin-bottom: 6px; } .cui-tag-input .cui-tag { margin: 0 6px 4px 0; } .cui-tag-input:hover { cursor: text; } .cui-tag-input .cui-tag-input-values { display: flex; flex-wrap: wrap; align-items: flex-start; height: auto !important; line-height: inherit !important; min-height: auto !important; width: 100%; } .cui-tag-input input { color: #37474f; border: none; flex: 1 1 auto; width: 100px; outline: none; vertical-align: middle; background: none; } .cui-tag-input input::placeholder { color: #b0bec5; } .cui-tag-input input::-ms-clear { display: none; } .cui-tag-input > .cui-icon { position: absolute; margin: 0; z-index: 1; } .cui-tag-input > .cui-icon:first-child { left: 0; } .cui-tag-input > .cui-icon:last-child { right: 0; } .cui-tag-input.cui-disabled input, .cui-tag-input.cui-disabled .cui-button, .cui-tag-input.cui-disabled .cui-icon { cursor: not-allowed; pointer-events: none; } .cui-tag-input.cui-xs .cui-tag-input-values { padding: 0 10px; font-size: 12px; height: 30px; min-height: 30px; line-height: 30px; } .cui-tag-input.cui-xs .cui-tag-input-values:not(:first-child) { padding-left: 30px; } .cui-tag-input.cui-xs .cui-tag-input-values:not(:last-child) { padding-right: 30px; } .cui-tag-input.cui-xs > .cui-button:first-child:not(input), .cui-tag-input.cui-xs > .cui-spinner:first-child:not(input), .cui-tag-input.cui-xs > .cui-icon:first-child:not(input), .cui-tag-input.cui-xs > .cui-tag:first-child:not(input) { margin-left: 10px; } .cui-tag-input.cui-xs > .cui-button:last-child, .cui-tag-input.cui-xs > .cui-spinner:last-child, .cui-tag-input.cui-xs > .cui-icon:last-child, .cui-tag-input.cui-xs > .cui-tag:last-child { margin-right: 10px; } .cui-tag-input.cui-xs > .cui-button { padding: 0 5px; font-size: 10px; height: 21px; min-height: 21px; line-height: 21px; } .cui-tag-input.cui-xs > .cui-icon { top: 7px; } .cui-tag-input.cui-xs .cui-tag-input-values { padding-top: 4px; } .cui-tag-input.cui-xs input { margin-top: 1px; margin-bottom: 5px; } .cui-tag-input.cui-xs .cui-tag { margin: 0 5px 3px 0; } .cui-tag-input.cui-sm .cui-tag-input-values { padding: 0 11px; font-size: 13px; height: 35px; min-height: 35px; line-height: 35px; } .cui-tag-input.cui-sm .cui-tag-input-values:not(:first-child) { padding-left: 33px; } .cui-tag-input.cui-sm .cui-tag-input-values:not(:last-child) { padding-right: 33px; } .cui-tag-input.cui-sm > .cui-button:first-child:not(input), .cui-tag-input.cui-sm > .cui-spinner:first-child:not(input), .cui-tag-input.cui-sm > .cui-icon:first-child:not(input), .cui-tag-input.cui-sm > .cui-tag:first-child:not(input) { margin-left: 11px; } .cui-tag-input.cui-sm > .cui-button:last-child, .cui-tag-input.cui-sm > .cui-spinner:last-child, .cui-tag-input.cui-sm > .cui-icon:last-child, .cui-tag-input.cui-sm > .cui-tag:last-child { margin-right: 11px; } .cui-tag-input.cui-sm > .cui-button { padding: 0 5px; font-size: 10px; height: 25px; min-height: 25px; line-height: 25px; } .cui-tag-input.cui-sm > .cui-icon { top: 8px; } .cui-tag-input.cui-sm .cui-tag-input-values { padding-top: 4px; } .cui-tag-input.cui-sm input { margin-top: 1px; margin-bottom: 5px; } .cui-tag-input.cui-sm .cui-tag { margin: 0 5px 3px 0; } .cui-tag-input.cui-lg .cui-tag-input-values { padding: 0 14px; font-size: 16px; height: 45px; min-height: 45px; line-height: 45px; } .cui-tag-input.cui-lg .cui-tag-input-values:not(:first-child) { padding-left: 42px; } .cui-tag-input.cui-lg .cui-tag-input-values:not(:last-child) { padding-right: 42px; } .cui-tag-input.cui-lg > .cui-button:first-child:not(input), .cui-tag-input.cui-lg > .cui-spinner:first-child:not(input), .cui-tag-input.cui-lg > .cui-icon:first-child:not(input), .cui-tag-input.cui-lg > .cui-tag:first-child:not(input) { margin-left: 14px; } .cui-tag-input.cui-lg > .cui-button:last-child, .cui-tag-input.cui-lg > .cui-spinner:last-child, .cui-tag-input.cui-lg > .cui-icon:last-child, .cui-tag-input.cui-lg > .cui-tag:last-child { margin-right: 14px; } .cui-tag-input.cui-lg > .cui-button { padding: 0 7px; font-size: 13px; height: 32px; min-height: 32px; line-height: 32px; } .cui-tag-input.cui-lg > .cui-icon { top: 11px; } .cui-tag-input.cui-lg .cui-tag-input-values { padding-top: 6px; } .cui-tag-input.cui-lg input { margin-top: 1px; margin-bottom: 7px; } .cui-tag-input.cui-lg .cui-tag { margin: 0 7px 5px 0; } .cui-tag-input.cui-xl .cui-tag-input-values { padding: 0 16px; font-size: 18px; height: 50px; min-height: 50px; line-height: 50px; } .cui-tag-input.cui-xl .cui-tag-input-values:not(:first-child) { padding-left: 48px; } .cui-tag-input.cui-xl .cui-tag-input-values:not(:last-child) { padding-right: 48px; } .cui-tag-input.cui-xl > .cui-button:first-child:not(input), .cui-tag-input.cui-xl > .cui-spinner:first-child:not(input), .cui-tag-input.cui-xl > .cui-icon:first-child:not(input), .cui-tag-input.cui-xl > .cui-tag:first-child:not(input) { margin-left: 16px; } .cui-tag-input.cui-xl > .cui-button:last-child, .cui-tag-input.cui-xl > .cui-spinner:last-child, .cui-tag-input.cui-xl > .cui-icon:last-child, .cui-tag-input.cui-xl > .cui-tag:last-child { margin-right: 16px; } .cui-tag-input.cui-xl > .cui-button { padding: 0 8px; font-size: 15px; height: 35px; min-height: 35px; line-height: 35px; } .cui-tag-input.cui-xl > .cui-icon { top: 13px; } .cui-tag-input.cui-xl .cui-tag-input-values { padding-top: 7px; } .cui-tag-input.cui-xl input { margin-top: 1px; margin-bottom: 8px; } .cui-tag-input.cui-xl .cui-tag { margin: 0 8px 6px 0; } .cui-tag-input.cui-primary { border: solid 1px #5360ad; } .cui-tag-input.cui-primary:focus, .cui-tag-input.cui-primary.cui-active { border: solid 1px #4a569a; } .cui-tag-input.cui-positive { border: solid 1px #3d8c40; } .cui-tag-input.cui-positive:focus, .cui-tag-input.cui-positive.cui-active { border: solid 1px #357b38; } .cui-tag-input.cui-negative { border: solid 1px #dc3c31; } .cui-tag-input.cui-negative:focus, .cui-tag-input.cui-negative.cui-active { border: solid 1px #c3362b; } .cui-tag-input.cui-warning { border: solid 1px #dd7000; } .cui-tag-input.cui-warning:focus, .cui-tag-input.cui-warning.cui-active { border: solid 1px #c46300; }
lib/components/tag-input/index.css
.cui-tag-input { border: solid 1px #c5cdd1; position: relative; display: inline-block; background: #ffffff; color: #37474f; border-radius: 3px; transition: border 200ms cubic-bezier(0.4, 1, 0.75, 0.9), background 200ms cubic-bezier(0.4, 1, 0.75, 0.9), color 200ms cubic-bezier(0.4, 1, 0.75, 0.9); } .cui-tag-input:focus, .cui-tag-input.cui-active { border: solid 1px #5360ad; } .cui-tag-input .cui-tag-input-values { padding: 0 12px; font-size: 14px; height: 40px; min-height: 40px; line-height: 40px; } .cui-tag-input .cui-tag-input-values:not(:first-child) { padding-left: 36px; } .cui-tag-input .cui-tag-input-values:not(:last-child) { padding-right: 36px; } .cui-tag-input > .cui-button:first-child:not(input), .cui-tag-input > .cui-spinner:first-child:not(input), .cui-tag-input > .cui-icon:first-child:not(input), .cui-tag-input > .cui-tag:first-child:not(input) { margin-left: 12px; } .cui-tag-input > .cui-button:last-child, .cui-tag-input > .cui-spinner:last-child, .cui-tag-input > .cui-icon:last-child, .cui-tag-input > .cui-tag:last-child { margin-right: 12px; } .cui-tag-input > .cui-button { padding: 0 6px; font-size: 11px; height: 28px; min-height: 28px; line-height: 28px; } .cui-tag-input > .cui-icon { top: 9px; } .cui-tag-input .cui-tag-input-values { padding-top: 5px; } .cui-tag-input input { margin-top: 1px; margin-bottom: 6px; } .cui-tag-input .cui-tag { margin: 0 6px 4px 0; } .cui-tag-input:hover { cursor: text; } .cui-tag-input .cui-tag-input-values { display: flex; flex-wrap: wrap; align-items: flex-start; height: auto !important; line-height: inherit !important; min-height: auto !important; width: 100%; } .cui-tag-input input { color: #37474f; border: none; flex: 1 1 auto; width: 100px; outline: none; vertical-align: middle; background: none; } .cui-tag-input input::placeholder { color: #b0bec5; } .cui-tag-input input::-ms-clear { display: none; } .cui-tag-input > .cui-icon { position: absolute; margin: 0; z-index: 1; } .cui-tag-input > .cui-icon:first-child { left: 0; } .cui-tag-input > .cui-icon:last-child { right: 0; } .cui-tag-input.cui-disabled input, .cui-tag-input.cui-disabled .cui-button, .cui-tag-input.cui-disabled .cui-icon { cursor: not-allowed; pointer-events: none; } .cui-tag-input.cui-xs .cui-tag-input-values { padding: 0 10px; font-size: 12px; height: 30px; min-height: 30px; line-height: 30px; } .cui-tag-input.cui-xs .cui-tag-input-values:not(:first-child) { padding-left: 30px; } .cui-tag-input.cui-xs .cui-tag-input-values:not(:last-child) { padding-right: 30px; } .cui-tag-input.cui-xs > .cui-button:first-child:not(input), .cui-tag-input.cui-xs > .cui-spinner:first-child:not(input), .cui-tag-input.cui-xs > .cui-icon:first-child:not(input), .cui-tag-input.cui-xs > .cui-tag:first-child:not(input) { margin-left: 10px; } .cui-tag-input.cui-xs > .cui-button:last-child, .cui-tag-input.cui-xs > .cui-spinner:last-child, .cui-tag-input.cui-xs > .cui-icon:last-child, .cui-tag-input.cui-xs > .cui-tag:last-child { margin-right: 10px; } .cui-tag-input.cui-xs > .cui-button { padding: 0 5px; font-size: 10px; height: 21px; min-height: 21px; line-height: 21px; } .cui-tag-input.cui-xs > .cui-icon { top: 7px; } .cui-tag-input.cui-xs .cui-tag-input-values { padding-top: 4px; } .cui-tag-input.cui-xs input { margin-top: 1px; margin-bottom: 5px; } .cui-tag-input.cui-xs .cui-tag { margin: 0 5px 3px 0; } .cui-tag-input.cui-sm .cui-tag-input-values { padding: 0 11px; font-size: 13px; height: 35px; min-height: 35px; line-height: 35px; } .cui-tag-input.cui-sm .cui-tag-input-values:not(:first-child) { padding-left: 33px; } .cui-tag-input.cui-sm .cui-tag-input-values:not(:last-child) { padding-right: 33px; } .cui-tag-input.cui-sm > .cui-button:first-child:not(input), .cui-tag-input.cui-sm > .cui-spinner:first-child:not(input), .cui-tag-input.cui-sm > .cui-icon:first-child:not(input), .cui-tag-input.cui-sm > .cui-tag:first-child:not(input) { margin-left: 11px; } .cui-tag-input.cui-sm > .cui-button:last-child, .cui-tag-input.cui-sm > .cui-spinner:last-child, .cui-tag-input.cui-sm > .cui-icon:last-child, .cui-tag-input.cui-sm > .cui-tag:last-child { margin-right: 11px; } .cui-tag-input.cui-sm > .cui-button { padding: 0 5px; font-size: 10px; height: 25px; min-height: 25px; line-height: 25px; } .cui-tag-input.cui-sm > .cui-icon { top: 8px; } .cui-tag-input.cui-sm .cui-tag-input-values { padding-top: 4px; } .cui-tag-input.cui-sm input { margin-top: 1px; margin-bottom: 5px; } .cui-tag-input.cui-sm .cui-tag { margin: 0 5px 3px 0; } .cui-tag-input.cui-lg .cui-tag-input-values { padding: 0 14px; font-size: 16px; height: 45px; min-height: 45px; line-height: 45px; } .cui-tag-input.cui-lg .cui-tag-input-values:not(:first-child) { padding-left: 42px; } .cui-tag-input.cui-lg .cui-tag-input-values:not(:last-child) { padding-right: 42px; } .cui-tag-input.cui-lg > .cui-button:first-child:not(input), .cui-tag-input.cui-lg > .cui-spinner:first-child:not(input), .cui-tag-input.cui-lg > .cui-icon:first-child:not(input), .cui-tag-input.cui-lg > .cui-tag:first-child:not(input) { margin-left: 14px; } .cui-tag-input.cui-lg > .cui-button:last-child, .cui-tag-input.cui-lg > .cui-spinner:last-child, .cui-tag-input.cui-lg > .cui-icon:last-child, .cui-tag-input.cui-lg > .cui-tag:last-child { margin-right: 14px; } .cui-tag-input.cui-lg > .cui-button { padding: 0 7px; font-size: 13px; height: 32px; min-height: 32px; line-height: 32px; } .cui-tag-input.cui-lg > .cui-icon { top: 11px; } .cui-tag-input.cui-lg .cui-tag-input-values { padding-top: 6px; } .cui-tag-input.cui-lg input { margin-top: 1px; margin-bottom: 7px; } .cui-tag-input.cui-lg .cui-tag { margin: 0 7px 5px 0; } .cui-tag-input.cui-xl .cui-tag-input-values { padding: 0 16px; font-size: 18px; height: 50px; min-height: 50px; line-height: 50px; } .cui-tag-input.cui-xl .cui-tag-input-values:not(:first-child) { padding-left: 48px; } .cui-tag-input.cui-xl .cui-tag-input-values:not(:last-child) { padding-right: 48px; } .cui-tag-input.cui-xl > .cui-button:first-child:not(input), .cui-tag-input.cui-xl > .cui-spinner:first-child:not(input), .cui-tag-input.cui-xl > .cui-icon:first-child:not(input), .cui-tag-input.cui-xl > .cui-tag:first-child:not(input) { margin-left: 16px; } .cui-tag-input.cui-xl > .cui-button:last-child, .cui-tag-input.cui-xl > .cui-spinner:last-child, .cui-tag-input.cui-xl > .cui-icon:last-child, .cui-tag-input.cui-xl > .cui-tag:last-child { margin-right: 16px; } .cui-tag-input.cui-xl > .cui-button { padding: 0 8px; font-size: 15px; height: 35px; min-height: 35px; line-height: 35px; } .cui-tag-input.cui-xl > .cui-icon { top: 13px; } .cui-tag-input.cui-xl .cui-tag-input-values { padding-top: 7px; } .cui-tag-input.cui-xl input { margin-top: 1px; margin-bottom: 8px; } .cui-tag-input.cui-xl .cui-tag { margin: 0 8px 6px 0; } .cui-tag-input.cui-primary { border: solid 1px #5360ad; } .cui-tag-input.cui-primary:focus, .cui-tag-input.cui-primary.cui-active { border: solid 1px #4a569a; } .cui-tag-input.cui-positive { border: solid 1px #3d8c40; } .cui-tag-input.cui-positive:focus, .cui-tag-input.cui-positive.cui-active { border: solid 1px #357b38; } .cui-tag-input.cui-negative { border: solid 1px #dc3c31; } .cui-tag-input.cui-negative:focus, .cui-tag-input.cui-negative.cui-active { border: solid 1px #c3362b; } .cui-tag-input.cui-warning { border: solid 1px #dd7000; } .cui-tag-input.cui-warning:focus, .cui-tag-input.cui-warning.cui-active { border: solid 1px #c46300; }
0.376967
0.086362
.home-container{ display: flex; flex-direction: column; position: relative; background-color: #fae0b1; } .home__header{ z-index: 10000; display: flex; align-items: center; justify-content: space-between; background-color: #ef817c; border-bottom: 3px solid #49195c; } .home__header__left{ display: flex; margin-left: 10px; align-items: center; gap: 10px; flex: .50; height: 100%; } .home__header__left img{ width: 170px; } .home__header__mid{ padding: 10px; height: 100%; display: flex; justify-content: space-between; align-items: center; flex: .5; } .home__header__mid div{ height: 100%; width: 90%; display: flex; align-items: center; padding: 18px 15px; justify-content: center; } .home__header__mid div mat-icon{ font-size: 30px; color: #49195c; } .home__header__mid div.active{ position: relative; } .home__header__mid div.active::before{ content: ''; border-bottom: 4px solid #fae0b1; position: absolute; bottom: -6px; height: 2px; width: 100%; } .home__header__mid div.active mat-icon{ color: #fae0b1; } .home__header__right{ flex: 0.5; height: 100%; display: flex; align-items: center; justify-content: flex-end; padding: 15px; gap: 10px; } .home__header__right > *{ margin-right: 10px; cursor: pointer; } .home__header__right span.name{ font-size: 16px; color: #49195c; } .home__header__right div{ display: flex; align-items: center; } .home__header__right div span { margin-left: 5px; } .home__header__right div:not(:first-of-type){ padding: 10px; border-radius: 50%; background-color: #fae0b1; } .home__header__right div:not(:first-of-type) mat-icon{ color: #ef817c; } .home__header mat-icon.see-more{ color: #49195c; } .home__body{ margin-top: 100px; background-color: #fae0b1; width: 100%; height: 100vh; display: flex; justify-content: space-between; padding-top: 10px; align-items: flex-start; } .home__body__sidebarLeft{ position: relative; } .home__body__sidebarLeft .inside{ position: fixed; padding: 15px; margin-top: 5px; width: 350px; display: flex; flex-direction: column; gap: 15px; border-right: 1.5px solid #ef817c; } .home__body__sidebarLeft .inside .user_avatar{ display: flex; align-items: center; gap: 15px; } .home__body__sidebarLeft .inside .user_avatar span.name{ font-size: 16px; color: #49195c; } .home__body__sidebarLeft .inside div{ display: flex; gap: 20px; font-size: 16px; align-items: center; color: #49195c; } .home__body__sidebarLeft .inside div mat-icon{ color: #49195c; font-size: xx-large; width: fit-content; height: fit-content; } .home__body__contentMiddle{ padding: 10px; flex: 0.8; width: 100%; } #logoutButton{ margin-top: 25px; } .pairfinder__container{ width: 70%; border: 2px solid #ef817c; border-radius: 10px; padding: 30px; } .pair__name h1{ margin-left: -50px; color: #ef817c; text-align: center; font-weight: bolder; } .funtions__container{ display: none; width: 100%; margin: 0 auto; } .info{ width: 100%; text-align: center; } .interactions{ width: 100%; margin: 0 auto; text-align: center; justify-content: space-between; } .funtions__container mat-icon{ margin-right: 100px; margin-top: 30px; margin-bottom: 50px; margin-right: 140px; cursor: pointer; color: #ef817c; } .funtions__container mat-icon fa-icon{ padding-left: 30px; font-size: 50px; } .funtions__container mat-icon fa-icon#hammer{ padding: 30px; border: 5px solid #49195c; border-radius: 50%; color: #49195c; } .funtions__container mat-icon fa-icon#heart{ padding: 30px; border: 5px solid #ef817c; border-radius: 50%; color: #ef817c; } .profile__details{ display: none; margin: 0 auto; background-color: white; border: 3px solid #ef817c; border-radius: 30px; width: 1000px; height: 600px; top: 50%; left: 50%; margin-top: -375px; margin-left: -500px; z-index: 100000; position: fixed; padding: 30px; } .profile__details .close__function .close{ color: #ef817c; cursor: pointer; } .user__photo{ width: 100%; } .user__photo img{ display: flex; margin: 0 auto; width: 200px; height: 200px; border-radius: 50%; object-fit: cover; } .user__name{ width: 100%; margin-top: 20px; } .user__name h1{ display: flex; margin: 0 auto; color: #49195c; justify-content: center; } .user__bio{ width: 100%; margin-top: 15px; } .user__bio p{ font-size: 16px; display: flex; margin: 0 auto; text-align: center; } .user__info{ font-size: 16px; margin-top: 40px; } .user__info p{ color: #49195c; } #interact{ cursor: pointer; }
src/app/components/home/home.component.css
.home-container{ display: flex; flex-direction: column; position: relative; background-color: #fae0b1; } .home__header{ z-index: 10000; display: flex; align-items: center; justify-content: space-between; background-color: #ef817c; border-bottom: 3px solid #49195c; } .home__header__left{ display: flex; margin-left: 10px; align-items: center; gap: 10px; flex: .50; height: 100%; } .home__header__left img{ width: 170px; } .home__header__mid{ padding: 10px; height: 100%; display: flex; justify-content: space-between; align-items: center; flex: .5; } .home__header__mid div{ height: 100%; width: 90%; display: flex; align-items: center; padding: 18px 15px; justify-content: center; } .home__header__mid div mat-icon{ font-size: 30px; color: #49195c; } .home__header__mid div.active{ position: relative; } .home__header__mid div.active::before{ content: ''; border-bottom: 4px solid #fae0b1; position: absolute; bottom: -6px; height: 2px; width: 100%; } .home__header__mid div.active mat-icon{ color: #fae0b1; } .home__header__right{ flex: 0.5; height: 100%; display: flex; align-items: center; justify-content: flex-end; padding: 15px; gap: 10px; } .home__header__right > *{ margin-right: 10px; cursor: pointer; } .home__header__right span.name{ font-size: 16px; color: #49195c; } .home__header__right div{ display: flex; align-items: center; } .home__header__right div span { margin-left: 5px; } .home__header__right div:not(:first-of-type){ padding: 10px; border-radius: 50%; background-color: #fae0b1; } .home__header__right div:not(:first-of-type) mat-icon{ color: #ef817c; } .home__header mat-icon.see-more{ color: #49195c; } .home__body{ margin-top: 100px; background-color: #fae0b1; width: 100%; height: 100vh; display: flex; justify-content: space-between; padding-top: 10px; align-items: flex-start; } .home__body__sidebarLeft{ position: relative; } .home__body__sidebarLeft .inside{ position: fixed; padding: 15px; margin-top: 5px; width: 350px; display: flex; flex-direction: column; gap: 15px; border-right: 1.5px solid #ef817c; } .home__body__sidebarLeft .inside .user_avatar{ display: flex; align-items: center; gap: 15px; } .home__body__sidebarLeft .inside .user_avatar span.name{ font-size: 16px; color: #49195c; } .home__body__sidebarLeft .inside div{ display: flex; gap: 20px; font-size: 16px; align-items: center; color: #49195c; } .home__body__sidebarLeft .inside div mat-icon{ color: #49195c; font-size: xx-large; width: fit-content; height: fit-content; } .home__body__contentMiddle{ padding: 10px; flex: 0.8; width: 100%; } #logoutButton{ margin-top: 25px; } .pairfinder__container{ width: 70%; border: 2px solid #ef817c; border-radius: 10px; padding: 30px; } .pair__name h1{ margin-left: -50px; color: #ef817c; text-align: center; font-weight: bolder; } .funtions__container{ display: none; width: 100%; margin: 0 auto; } .info{ width: 100%; text-align: center; } .interactions{ width: 100%; margin: 0 auto; text-align: center; justify-content: space-between; } .funtions__container mat-icon{ margin-right: 100px; margin-top: 30px; margin-bottom: 50px; margin-right: 140px; cursor: pointer; color: #ef817c; } .funtions__container mat-icon fa-icon{ padding-left: 30px; font-size: 50px; } .funtions__container mat-icon fa-icon#hammer{ padding: 30px; border: 5px solid #49195c; border-radius: 50%; color: #49195c; } .funtions__container mat-icon fa-icon#heart{ padding: 30px; border: 5px solid #ef817c; border-radius: 50%; color: #ef817c; } .profile__details{ display: none; margin: 0 auto; background-color: white; border: 3px solid #ef817c; border-radius: 30px; width: 1000px; height: 600px; top: 50%; left: 50%; margin-top: -375px; margin-left: -500px; z-index: 100000; position: fixed; padding: 30px; } .profile__details .close__function .close{ color: #ef817c; cursor: pointer; } .user__photo{ width: 100%; } .user__photo img{ display: flex; margin: 0 auto; width: 200px; height: 200px; border-radius: 50%; object-fit: cover; } .user__name{ width: 100%; margin-top: 20px; } .user__name h1{ display: flex; margin: 0 auto; color: #49195c; justify-content: center; } .user__bio{ width: 100%; margin-top: 15px; } .user__bio p{ font-size: 16px; display: flex; margin: 0 auto; text-align: center; } .user__info{ font-size: 16px; margin-top: 40px; } .user__info p{ color: #49195c; } #interact{ cursor: pointer; }
0.368747
0.048631
html { position: relative; min-height: 100%; } body { font-family: "Open Sans", Verdana, Arial, Helvetica, sans-serif; font-size: 16px; color: #333; padding: 3px; height: 100%; margin-bottom: 120px; } h1 { margin-bottom: 1rem; } a { color: #2971a7; text-decoration: underline; } a:hover { color: #004065; } a.btn { text-decoration: none; } .btn-primary:active, .btn-primary:hover { background-color: #017ABC; border-color: #017ABC; color: #FFF; } .btn-primary:not(:disabled):not(.disabled):active { background-color: #017ABC; border-color: #017ABC; color: #FFF; } .show>.btn-primary.dropdown-toggle:focus { background-color: #017ABC; border-color: #017ABC; color: #FFF; } .btn-primary { background-color: #2971a7; border-color: #2971a7; } .btn-danger { background-color: #C9102F; border-color: #C9102F; } .btn-success { background-color: #78BE20; border-color: #78BE20; } .btn-link i { color: #2971a7; } .alert { margin-top: 10px; } .alert-info { background-color: #ccedff; color: #333; } .alert-success { color: #333; } .alert-warning { background-color: #fcf2cf; color: #333; } .alert-danger { color: #333; } .nav-link { text-decoration: none; } .nav-link:hover { text-decoration: underline; } .navbar-header a { text-decoration:none; } .navbar-light .navbar-nav .nav-link { color: #333; text-decoration: none; } .breadcrumb { background-color: #ffffff; } .panel-on { background-color: #eeeeee; color: #333; } .panel-on>.panel-heading { color: #fff; background-color: #004065; background-image: none; border-bottom: solid 1px #ffffff; } .panel-off { background-color: #dddddd; } .panel-off>.panel-heading { background-color: #dddddd; background-image: none; border-bottom: solid 1px #ffffff; } .btn-stacked { margin-top: 8px; } .btn-aligned { margin-left: 15px; } .footer { position: absolute; bottom: 0; width: 100%; height: 120px; font-size: 14px; text-align: center; } .footer .footer-upper { margin-bottom: 16px; font-weight: 700; line-height: 1.75; } .footer .footer-blue { color: #2971a7; } .footer .footer-divider { color: #ccc; } .sfm-container { min-height: 600px; } .subsection { padding-top: 30px; } .tooltip > .tooltip-inner { min-width: 200px; background-color: #333; } .modal { top: 35%; } .longseed{ word-wrap: break-word; display: none; } table { table-layout: fixed; word-wrap: break-word; } .form-reset { max-width: 400px; padding: 19px 29px 29px; margin: 0 auto 20px; background-color: #fff; border: 1px solid #e5e5e5; border-radius: 5px; box-shadow: 0 1px 2px rgba(0,0,0,0.05); } .block-center { display: block; margin-left: auto; margin-right: auto; } .ul_nav{ max-height:200px; overflow:hidden; word-wrap: break-word; overflow-y:auto; } .fa-fw { padding-right: 25px; } .collapse-toggle::after { display: inline-block; margin-left: .255em; vertical-align: .255em; content: ""; border-top: .3em solid; border-right: .3em solid transparent; border-bottom: 0; border-left: .3em solid transparent; } .crispy-form-custom label { font-weight: bold; } .crispy-form-custom .custom-control-label { font-weight: normal; } .form-text.text-muted { font-size: 100%; } .dataTables_paginate { width: 100%; justify-content: center; } h2.change-log, h2.seeds, h2.harvests, h2.collections { font-size: 1.5rem; } p.harvest-type-display { font-size: 1.75rem; margin-bottom: .5rem; font-weight: 500; line-height: 1.2; } .dropdown-item:active { background-color: #FFF; } .text-message { color: #A75523; } .card-title { margin-top: 8px; } #skiptocontent a, #skiptocontent a:hover, #skiptocontent a:visited { position:absolute; left:0px; top:-500px; width:1px; height:1px; overflow:hidden; } #skiptocontent a:active, #skiptocontent a:focus { position:static; width:auto; height:auto; } .filter-option-inner-inner { color: #333; } span.flatpickr-day.selected { background-color: #2971a7; border-color: #2971a7; }
sfm/ui/static/ui/css/main.css
html { position: relative; min-height: 100%; } body { font-family: "Open Sans", Verdana, Arial, Helvetica, sans-serif; font-size: 16px; color: #333; padding: 3px; height: 100%; margin-bottom: 120px; } h1 { margin-bottom: 1rem; } a { color: #2971a7; text-decoration: underline; } a:hover { color: #004065; } a.btn { text-decoration: none; } .btn-primary:active, .btn-primary:hover { background-color: #017ABC; border-color: #017ABC; color: #FFF; } .btn-primary:not(:disabled):not(.disabled):active { background-color: #017ABC; border-color: #017ABC; color: #FFF; } .show>.btn-primary.dropdown-toggle:focus { background-color: #017ABC; border-color: #017ABC; color: #FFF; } .btn-primary { background-color: #2971a7; border-color: #2971a7; } .btn-danger { background-color: #C9102F; border-color: #C9102F; } .btn-success { background-color: #78BE20; border-color: #78BE20; } .btn-link i { color: #2971a7; } .alert { margin-top: 10px; } .alert-info { background-color: #ccedff; color: #333; } .alert-success { color: #333; } .alert-warning { background-color: #fcf2cf; color: #333; } .alert-danger { color: #333; } .nav-link { text-decoration: none; } .nav-link:hover { text-decoration: underline; } .navbar-header a { text-decoration:none; } .navbar-light .navbar-nav .nav-link { color: #333; text-decoration: none; } .breadcrumb { background-color: #ffffff; } .panel-on { background-color: #eeeeee; color: #333; } .panel-on>.panel-heading { color: #fff; background-color: #004065; background-image: none; border-bottom: solid 1px #ffffff; } .panel-off { background-color: #dddddd; } .panel-off>.panel-heading { background-color: #dddddd; background-image: none; border-bottom: solid 1px #ffffff; } .btn-stacked { margin-top: 8px; } .btn-aligned { margin-left: 15px; } .footer { position: absolute; bottom: 0; width: 100%; height: 120px; font-size: 14px; text-align: center; } .footer .footer-upper { margin-bottom: 16px; font-weight: 700; line-height: 1.75; } .footer .footer-blue { color: #2971a7; } .footer .footer-divider { color: #ccc; } .sfm-container { min-height: 600px; } .subsection { padding-top: 30px; } .tooltip > .tooltip-inner { min-width: 200px; background-color: #333; } .modal { top: 35%; } .longseed{ word-wrap: break-word; display: none; } table { table-layout: fixed; word-wrap: break-word; } .form-reset { max-width: 400px; padding: 19px 29px 29px; margin: 0 auto 20px; background-color: #fff; border: 1px solid #e5e5e5; border-radius: 5px; box-shadow: 0 1px 2px rgba(0,0,0,0.05); } .block-center { display: block; margin-left: auto; margin-right: auto; } .ul_nav{ max-height:200px; overflow:hidden; word-wrap: break-word; overflow-y:auto; } .fa-fw { padding-right: 25px; } .collapse-toggle::after { display: inline-block; margin-left: .255em; vertical-align: .255em; content: ""; border-top: .3em solid; border-right: .3em solid transparent; border-bottom: 0; border-left: .3em solid transparent; } .crispy-form-custom label { font-weight: bold; } .crispy-form-custom .custom-control-label { font-weight: normal; } .form-text.text-muted { font-size: 100%; } .dataTables_paginate { width: 100%; justify-content: center; } h2.change-log, h2.seeds, h2.harvests, h2.collections { font-size: 1.5rem; } p.harvest-type-display { font-size: 1.75rem; margin-bottom: .5rem; font-weight: 500; line-height: 1.2; } .dropdown-item:active { background-color: #FFF; } .text-message { color: #A75523; } .card-title { margin-top: 8px; } #skiptocontent a, #skiptocontent a:hover, #skiptocontent a:visited { position:absolute; left:0px; top:-500px; width:1px; height:1px; overflow:hidden; } #skiptocontent a:active, #skiptocontent a:focus { position:static; width:auto; height:auto; } .filter-option-inner-inner { color: #333; } span.flatpickr-day.selected { background-color: #2971a7; border-color: #2971a7; }
0.409575
0.074131
*, *::before, *::after { margin: 0; padding: 0; } main { min-height: 100%; max-width: 2000px; margin: auto; } .windows-grid { width: 100%; min-height: 80vh; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto 1fr; grid-template-areas: "hero features" "hero compatibility"; grid-gap: 1rem; } section.hero { min-height: 50vh; padding: 0 7vmin; padding-top: 15vmin; grid-area: hero; background-color: var(--primary-light); } section.hero h1 { color: var(--yellow); font-family: var(--sans-serif); font-size: clamp(2rem, 8vmax, 6rem); } section.hero h1 span { margin-right: calc(clamp(1px, 0.5vmin, 30px) * -1); } section.hero h2 { font-weight: 400; color: var(--primary-dark); font-family: var(--sans-serif); font-size: clamp(1.1rem, 2vw, 1.5rem); } section.hero .action-buttons { width: fit-content; margin-top: 5rem; } section.hero .action-buttons small { color: var(--grey-dark); font-size: clamp(0.8rem, 1vw, 0.9rem); width: 70%; margin-top: 0.5rem; display: block; } section.features { grid-area: features; height: 100%; min-height: 30vh; display: grid; grid-template-columns: repeat(auto-fit, clamp(3rem, 20vw, 15rem)); grid-gap: 1rem; align-content: space-around; justify-content: space-around; padding: 2rem clamp(1rem, 3vw, 5rem); background-color: var(--secondary-light); color: var(--grey-light); } section.features .feature-title { width: min-content; display: flex; align-items: center; margin-bottom: 0.5rem; color: var(--title); } section.features .feature-icon { width: 2rem; min-width: 2rem; height: auto; margin-right: 0.5rem; } section.features h3 { color: inherit; font-size: clamp(1.2rem, 3vw, 1.5rem); } section.features p { font-size: clamp(0.8rem, 2vw, 1rem); } section.features .feature { width: 100%; height: 100%; display: flex; flex-direction: column; } section.compatibility { background: var(--bg); grid-area: compatibility; padding-top: 10vmin; } section.compatibility h2 { font-size: 2em; } section.compatibility p { font-weight: 300; font-size: 1.2em; } @media only screen and (max-width: 1000px) { main { padding: 0.5rem; } .windows-grid { display: flex; flex-direction: column; grid-gap: 1rem; } section.hero .feature-title { flex-direction: column; } section.compatibility { padding-top: 4vh; } } @media only screen and (max-width: 750px) { main { padding: 0rem; } .windows-grid { grid-gap: 0rem; } .window { border-radius: 0; } section.hero { min-height: 60vh; text-align: center; display: flex; flex-direction: column; align-content: center; background-color: var(--primary-lighter); } section.hero h1 { color: var(--primary-darker); } section.hero .action-buttons { max-width: 200px; margin: auto; display: flex; flex-direction: column; align-items: center; } section.hero .action-buttons .btn, section.hero .action-buttons small { width: 100%; margin-bottom: 0.25rem; } section.features { min-height: unset; grid-template-columns: 1fr; grid-gap: 3rem; align-items: center; text-align: center; padding: 5vh 20vmin; background-color: var(--bg); } section.features .feature { align-items: center; } section.features .feature-title { flex-direction: column; margin-bottom: 0.5rem; color: var(--title); } section.features h3 { font-weight: 800; font-size: 1.5rem; color: var(--grey-light); } section.features .feature-icon { width: 3rem; margin-right: 0; } section.compatibility { background-color: var(--grey-lighter); box-shadow: none; padding: 5vh 20vmin; } }
docs/themes/workspacer/static/css/pages/home.css
*, *::before, *::after { margin: 0; padding: 0; } main { min-height: 100%; max-width: 2000px; margin: auto; } .windows-grid { width: 100%; min-height: 80vh; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto 1fr; grid-template-areas: "hero features" "hero compatibility"; grid-gap: 1rem; } section.hero { min-height: 50vh; padding: 0 7vmin; padding-top: 15vmin; grid-area: hero; background-color: var(--primary-light); } section.hero h1 { color: var(--yellow); font-family: var(--sans-serif); font-size: clamp(2rem, 8vmax, 6rem); } section.hero h1 span { margin-right: calc(clamp(1px, 0.5vmin, 30px) * -1); } section.hero h2 { font-weight: 400; color: var(--primary-dark); font-family: var(--sans-serif); font-size: clamp(1.1rem, 2vw, 1.5rem); } section.hero .action-buttons { width: fit-content; margin-top: 5rem; } section.hero .action-buttons small { color: var(--grey-dark); font-size: clamp(0.8rem, 1vw, 0.9rem); width: 70%; margin-top: 0.5rem; display: block; } section.features { grid-area: features; height: 100%; min-height: 30vh; display: grid; grid-template-columns: repeat(auto-fit, clamp(3rem, 20vw, 15rem)); grid-gap: 1rem; align-content: space-around; justify-content: space-around; padding: 2rem clamp(1rem, 3vw, 5rem); background-color: var(--secondary-light); color: var(--grey-light); } section.features .feature-title { width: min-content; display: flex; align-items: center; margin-bottom: 0.5rem; color: var(--title); } section.features .feature-icon { width: 2rem; min-width: 2rem; height: auto; margin-right: 0.5rem; } section.features h3 { color: inherit; font-size: clamp(1.2rem, 3vw, 1.5rem); } section.features p { font-size: clamp(0.8rem, 2vw, 1rem); } section.features .feature { width: 100%; height: 100%; display: flex; flex-direction: column; } section.compatibility { background: var(--bg); grid-area: compatibility; padding-top: 10vmin; } section.compatibility h2 { font-size: 2em; } section.compatibility p { font-weight: 300; font-size: 1.2em; } @media only screen and (max-width: 1000px) { main { padding: 0.5rem; } .windows-grid { display: flex; flex-direction: column; grid-gap: 1rem; } section.hero .feature-title { flex-direction: column; } section.compatibility { padding-top: 4vh; } } @media only screen and (max-width: 750px) { main { padding: 0rem; } .windows-grid { grid-gap: 0rem; } .window { border-radius: 0; } section.hero { min-height: 60vh; text-align: center; display: flex; flex-direction: column; align-content: center; background-color: var(--primary-lighter); } section.hero h1 { color: var(--primary-darker); } section.hero .action-buttons { max-width: 200px; margin: auto; display: flex; flex-direction: column; align-items: center; } section.hero .action-buttons .btn, section.hero .action-buttons small { width: 100%; margin-bottom: 0.25rem; } section.features { min-height: unset; grid-template-columns: 1fr; grid-gap: 3rem; align-items: center; text-align: center; padding: 5vh 20vmin; background-color: var(--bg); } section.features .feature { align-items: center; } section.features .feature-title { flex-direction: column; margin-bottom: 0.5rem; color: var(--title); } section.features h3 { font-weight: 800; font-size: 1.5rem; color: var(--grey-light); } section.features .feature-icon { width: 3rem; margin-right: 0; } section.compatibility { background-color: var(--grey-lighter); box-shadow: none; padding: 5vh 20vmin; } }
0.640523
0.085442
@import "https://fonts.googleapis.com/css?family=Playfair+Display:400,700i,900i"; * { box-sizing: border-box; } body { font-family: 'Playfair Display', serif; color: #acaabe; text-rendering: optimizeLegibility; font-smooth: always; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; background-color: #3b3d54; font-size: 14px; overflow: hidden; } .wrap { -webkit-perspective-origin: 50% 50%; perspective-origin: 50% 50%; } .page { margin: 3%; max-width: 600px; margin-left: auto; margin-right: auto; padding: 30px; border-radius: 3px; text-align: center; font-size: 1.4vw; } .page h2 { font-weight: bold; font-size: 6.5vw; font-weight: 900; font-style: italic; color: #dad8ec; } .svg { stroke: #7ceaa4; position: absolute; bottom: -100vh; -webkit-transform-style: preserve-3d; transform-style: preserve-3d; } .svg:nth-child(1) { left: 5%; -webkit-animation: raise1 15s linear infinite; animation: raise1 15s linear infinite; -webkit-animation-delay: -3s; animation-delay: -3s; -webkit-transform: scale(-0.3) rotate(329deg); transform: scale(-0.3) rotate(329deg); z-index: -6; -webkit-filter: blur(-5px); filter: blur(-5px); } @-webkit-keyframes raise1 { to { bottom: 150vh; -webkit-transform: scale(-0.3) rotate(289deg); transform: scale(-0.3) rotate(289deg); } } @keyframes raise1 { to { bottom: 150vh; -webkit-transform: scale(-0.3) rotate(289deg); transform: scale(-0.3) rotate(289deg); } } .svg:nth-child(2) { left: 14%; -webkit-animation: raise2 12s linear infinite; animation: raise2 12s linear infinite; -webkit-animation-delay: 0s; animation-delay: 0s; -webkit-transform: scale(0) rotate(127deg); transform: scale(0) rotate(127deg); z-index: -5; -webkit-filter: blur(-4px); filter: blur(-4px); } @-webkit-keyframes raise2 { to { bottom: 150vh; -webkit-transform: scale(0) rotate(213deg); transform: scale(0) rotate(213deg); } } @keyframes raise2 { to { bottom: 150vh; -webkit-transform: scale(0) rotate(213deg); transform: scale(0) rotate(213deg); } } .svg:nth-child(3) { left: 71%; -webkit-animation: raise3 8s linear infinite; animation: raise3 8s linear infinite; -webkit-animation-delay: 0s; animation-delay: 0s; -webkit-transform: scale(0.3) rotate(332deg); transform: scale(0.3) rotate(332deg); z-index: -4; -webkit-filter: blur(-3px); filter: blur(-3px); } @-webkit-keyframes raise3 { to { bottom: 150vh; -webkit-transform: scale(0.3) rotate(16deg); transform: scale(0.3) rotate(16deg); } } @keyframes raise3 { to { bottom: 150vh; -webkit-transform: scale(0.3) rotate(16deg); transform: scale(0.3) rotate(16deg); } } .svg:nth-child(4) { left: 80%; -webkit-animation: raise4 12s linear infinite; animation: raise4 12s linear infinite; -webkit-animation-delay: -4s; animation-delay: -4s; -webkit-transform: scale(0.6) rotate(63deg); transform: scale(0.6) rotate(63deg); z-index: -3; -webkit-filter: blur(-2px); filter: blur(-2px); } @-webkit-keyframes raise4 { to { bottom: 150vh; -webkit-transform: scale(0.6) rotate(287deg); transform: scale(0.6) rotate(287deg); } } @keyframes raise4 { to { bottom: 150vh; -webkit-transform: scale(0.6) rotate(287deg); transform: scale(0.6) rotate(287deg); } } .svg:nth-child(5) { left: 53%; -webkit-animation: raise5 21s linear infinite; animation: raise5 21s linear infinite; -webkit-animation-delay: 0s; animation-delay: 0s; -webkit-transform: scale(0.9) rotate(201deg); transform: scale(0.9) rotate(201deg); z-index: -2; -webkit-filter: blur(-1px); filter: blur(-1px); } @-webkit-keyframes raise5 { to { bottom: 150vh; -webkit-transform: scale(0.9) rotate(351deg); transform: scale(0.9) rotate(351deg); } } @keyframes raise5 { to { bottom: 150vh; -webkit-transform: scale(0.9) rotate(351deg); transform: scale(0.9) rotate(351deg); } } .svg:nth-child(6) { left: 70%; -webkit-animation: raise6 7s linear infinite; animation: raise6 7s linear infinite; -webkit-animation-delay: -4s; animation-delay: -4s; -webkit-transform: scale(1.2) rotate(174deg); transform: scale(1.2) rotate(174deg); z-index: -1; -webkit-filter: blur(0px); filter: blur(0px); } @-webkit-keyframes raise6 { to { bottom: 150vh; -webkit-transform: scale(1.2) rotate(332deg); transform: scale(1.2) rotate(332deg); } } @keyframes raise6 { to { bottom: 150vh; -webkit-transform: scale(1.2) rotate(332deg); transform: scale(1.2) rotate(332deg); } } .svg:nth-child(7) { left: 66%; -webkit-animation: raise7 8s linear infinite; animation: raise7 8s linear infinite; -webkit-animation-delay: -2s; animation-delay: -2s; -webkit-transform: scale(1.5) rotate(240deg); transform: scale(1.5) rotate(240deg); z-index: 0; -webkit-filter: blur(1px); filter: blur(1px); } @-webkit-keyframes raise7 { to { bottom: 150vh; -webkit-transform: scale(1.5) rotate(235deg); transform: scale(1.5) rotate(235deg); } } @keyframes raise7 { to { bottom: 150vh; -webkit-transform: scale(1.5) rotate(235deg); transform: scale(1.5) rotate(235deg); } } .svg:nth-child(8) { left: 71%; -webkit-animation: raise8 11s linear infinite; animation: raise8 11s linear infinite; -webkit-animation-delay: -2s; animation-delay: -2s; -webkit-transform: scale(1.8) rotate(48deg); transform: scale(1.8) rotate(48deg); z-index: 1; -webkit-filter: blur(2px); filter: blur(2px); } @-webkit-keyframes raise8 { to { bottom: 150vh; -webkit-transform: scale(1.8) rotate(109deg); transform: scale(1.8) rotate(109deg); } } @keyframes raise8 { to { bottom: 150vh; -webkit-transform: scale(1.8) rotate(109deg); transform: scale(1.8) rotate(109deg); } } .svg:nth-child(9) { left: 52%; -webkit-animation: raise9 18s linear infinite; animation: raise9 18s linear infinite; -webkit-animation-delay: -1s; animation-delay: -1s; -webkit-transform: scale(2.1) rotate(58deg); transform: scale(2.1) rotate(58deg); z-index: 2; -webkit-filter: blur(3px); filter: blur(3px); } @-webkit-keyframes raise9 { to { bottom: 150vh; -webkit-transform: scale(2.1) rotate(214deg); transform: scale(2.1) rotate(214deg); } } @keyframes raise9 { to { bottom: 150vh; -webkit-transform: scale(2.1) rotate(214deg); transform: scale(2.1) rotate(214deg); } } .svg:nth-child(10) { left: 46%; -webkit-animation: raise10 12s linear infinite; animation: raise10 12s linear infinite; -webkit-animation-delay: -3s; animation-delay: -3s; -webkit-transform: scale(2.4) rotate(97deg); transform: scale(2.4) rotate(97deg); z-index: 3; -webkit-filter: blur(4px); filter: blur(4px); } @-webkit-keyframes raise10 { to { bottom: 150vh; -webkit-transform: scale(2.4) rotate(272deg); transform: scale(2.4) rotate(272deg); } } @keyframes raise10 { to { bottom: 150vh; -webkit-transform: scale(2.4) rotate(272deg); transform: scale(2.4) rotate(272deg); } }
doc/floating/css/style.css
@import "https://fonts.googleapis.com/css?family=Playfair+Display:400,700i,900i"; * { box-sizing: border-box; } body { font-family: 'Playfair Display', serif; color: #acaabe; text-rendering: optimizeLegibility; font-smooth: always; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; background-color: #3b3d54; font-size: 14px; overflow: hidden; } .wrap { -webkit-perspective-origin: 50% 50%; perspective-origin: 50% 50%; } .page { margin: 3%; max-width: 600px; margin-left: auto; margin-right: auto; padding: 30px; border-radius: 3px; text-align: center; font-size: 1.4vw; } .page h2 { font-weight: bold; font-size: 6.5vw; font-weight: 900; font-style: italic; color: #dad8ec; } .svg { stroke: #7ceaa4; position: absolute; bottom: -100vh; -webkit-transform-style: preserve-3d; transform-style: preserve-3d; } .svg:nth-child(1) { left: 5%; -webkit-animation: raise1 15s linear infinite; animation: raise1 15s linear infinite; -webkit-animation-delay: -3s; animation-delay: -3s; -webkit-transform: scale(-0.3) rotate(329deg); transform: scale(-0.3) rotate(329deg); z-index: -6; -webkit-filter: blur(-5px); filter: blur(-5px); } @-webkit-keyframes raise1 { to { bottom: 150vh; -webkit-transform: scale(-0.3) rotate(289deg); transform: scale(-0.3) rotate(289deg); } } @keyframes raise1 { to { bottom: 150vh; -webkit-transform: scale(-0.3) rotate(289deg); transform: scale(-0.3) rotate(289deg); } } .svg:nth-child(2) { left: 14%; -webkit-animation: raise2 12s linear infinite; animation: raise2 12s linear infinite; -webkit-animation-delay: 0s; animation-delay: 0s; -webkit-transform: scale(0) rotate(127deg); transform: scale(0) rotate(127deg); z-index: -5; -webkit-filter: blur(-4px); filter: blur(-4px); } @-webkit-keyframes raise2 { to { bottom: 150vh; -webkit-transform: scale(0) rotate(213deg); transform: scale(0) rotate(213deg); } } @keyframes raise2 { to { bottom: 150vh; -webkit-transform: scale(0) rotate(213deg); transform: scale(0) rotate(213deg); } } .svg:nth-child(3) { left: 71%; -webkit-animation: raise3 8s linear infinite; animation: raise3 8s linear infinite; -webkit-animation-delay: 0s; animation-delay: 0s; -webkit-transform: scale(0.3) rotate(332deg); transform: scale(0.3) rotate(332deg); z-index: -4; -webkit-filter: blur(-3px); filter: blur(-3px); } @-webkit-keyframes raise3 { to { bottom: 150vh; -webkit-transform: scale(0.3) rotate(16deg); transform: scale(0.3) rotate(16deg); } } @keyframes raise3 { to { bottom: 150vh; -webkit-transform: scale(0.3) rotate(16deg); transform: scale(0.3) rotate(16deg); } } .svg:nth-child(4) { left: 80%; -webkit-animation: raise4 12s linear infinite; animation: raise4 12s linear infinite; -webkit-animation-delay: -4s; animation-delay: -4s; -webkit-transform: scale(0.6) rotate(63deg); transform: scale(0.6) rotate(63deg); z-index: -3; -webkit-filter: blur(-2px); filter: blur(-2px); } @-webkit-keyframes raise4 { to { bottom: 150vh; -webkit-transform: scale(0.6) rotate(287deg); transform: scale(0.6) rotate(287deg); } } @keyframes raise4 { to { bottom: 150vh; -webkit-transform: scale(0.6) rotate(287deg); transform: scale(0.6) rotate(287deg); } } .svg:nth-child(5) { left: 53%; -webkit-animation: raise5 21s linear infinite; animation: raise5 21s linear infinite; -webkit-animation-delay: 0s; animation-delay: 0s; -webkit-transform: scale(0.9) rotate(201deg); transform: scale(0.9) rotate(201deg); z-index: -2; -webkit-filter: blur(-1px); filter: blur(-1px); } @-webkit-keyframes raise5 { to { bottom: 150vh; -webkit-transform: scale(0.9) rotate(351deg); transform: scale(0.9) rotate(351deg); } } @keyframes raise5 { to { bottom: 150vh; -webkit-transform: scale(0.9) rotate(351deg); transform: scale(0.9) rotate(351deg); } } .svg:nth-child(6) { left: 70%; -webkit-animation: raise6 7s linear infinite; animation: raise6 7s linear infinite; -webkit-animation-delay: -4s; animation-delay: -4s; -webkit-transform: scale(1.2) rotate(174deg); transform: scale(1.2) rotate(174deg); z-index: -1; -webkit-filter: blur(0px); filter: blur(0px); } @-webkit-keyframes raise6 { to { bottom: 150vh; -webkit-transform: scale(1.2) rotate(332deg); transform: scale(1.2) rotate(332deg); } } @keyframes raise6 { to { bottom: 150vh; -webkit-transform: scale(1.2) rotate(332deg); transform: scale(1.2) rotate(332deg); } } .svg:nth-child(7) { left: 66%; -webkit-animation: raise7 8s linear infinite; animation: raise7 8s linear infinite; -webkit-animation-delay: -2s; animation-delay: -2s; -webkit-transform: scale(1.5) rotate(240deg); transform: scale(1.5) rotate(240deg); z-index: 0; -webkit-filter: blur(1px); filter: blur(1px); } @-webkit-keyframes raise7 { to { bottom: 150vh; -webkit-transform: scale(1.5) rotate(235deg); transform: scale(1.5) rotate(235deg); } } @keyframes raise7 { to { bottom: 150vh; -webkit-transform: scale(1.5) rotate(235deg); transform: scale(1.5) rotate(235deg); } } .svg:nth-child(8) { left: 71%; -webkit-animation: raise8 11s linear infinite; animation: raise8 11s linear infinite; -webkit-animation-delay: -2s; animation-delay: -2s; -webkit-transform: scale(1.8) rotate(48deg); transform: scale(1.8) rotate(48deg); z-index: 1; -webkit-filter: blur(2px); filter: blur(2px); } @-webkit-keyframes raise8 { to { bottom: 150vh; -webkit-transform: scale(1.8) rotate(109deg); transform: scale(1.8) rotate(109deg); } } @keyframes raise8 { to { bottom: 150vh; -webkit-transform: scale(1.8) rotate(109deg); transform: scale(1.8) rotate(109deg); } } .svg:nth-child(9) { left: 52%; -webkit-animation: raise9 18s linear infinite; animation: raise9 18s linear infinite; -webkit-animation-delay: -1s; animation-delay: -1s; -webkit-transform: scale(2.1) rotate(58deg); transform: scale(2.1) rotate(58deg); z-index: 2; -webkit-filter: blur(3px); filter: blur(3px); } @-webkit-keyframes raise9 { to { bottom: 150vh; -webkit-transform: scale(2.1) rotate(214deg); transform: scale(2.1) rotate(214deg); } } @keyframes raise9 { to { bottom: 150vh; -webkit-transform: scale(2.1) rotate(214deg); transform: scale(2.1) rotate(214deg); } } .svg:nth-child(10) { left: 46%; -webkit-animation: raise10 12s linear infinite; animation: raise10 12s linear infinite; -webkit-animation-delay: -3s; animation-delay: -3s; -webkit-transform: scale(2.4) rotate(97deg); transform: scale(2.4) rotate(97deg); z-index: 3; -webkit-filter: blur(4px); filter: blur(4px); } @-webkit-keyframes raise10 { to { bottom: 150vh; -webkit-transform: scale(2.4) rotate(272deg); transform: scale(2.4) rotate(272deg); } } @keyframes raise10 { to { bottom: 150vh; -webkit-transform: scale(2.4) rotate(272deg); transform: scale(2.4) rotate(272deg); } }
0.462959
0.133133
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap"); #preloader { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999; background-color: #003140; 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; -webkit-animation: forwards 2s fo linear; animation: forwards 2s fo linear; } #preloader .lds-roller { display: inline-block; position: relative; width: 80px; height: 80px; } #preloader .lds-roller div { -webkit-animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite; animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite; -webkit-transform-origin: 40px 40px; transform-origin: 40px 40px; } #preloader .lds-roller div:after { content: " "; display: block; position: absolute; width: 7px; height: 7px; border-radius: 50%; background: #fff; margin: -4px 0 0 -4px; } #preloader .lds-roller div:nth-child(1) { -webkit-animation-delay: -0.036s; animation-delay: -0.036s; } #preloader .lds-roller div:nth-child(1):after { top: 63px; left: 63px; } #preloader .lds-roller div:nth-child(2) { -webkit-animation-delay: -0.072s; animation-delay: -0.072s; } #preloader .lds-roller div:nth-child(2):after { top: 68px; left: 56px; } #preloader .lds-roller div:nth-child(3) { -webkit-animation-delay: -0.108s; animation-delay: -0.108s; } #preloader .lds-roller div:nth-child(3):after { top: 71px; left: 48px; } #preloader .lds-roller div:nth-child(4) { -webkit-animation-delay: -0.144s; animation-delay: -0.144s; } #preloader .lds-roller div:nth-child(4):after { top: 72px; left: 40px; } #preloader .lds-roller div:nth-child(5) { -webkit-animation-delay: -0.18s; animation-delay: -0.18s; } #preloader .lds-roller div:nth-child(5):after { top: 71px; left: 32px; } #preloader .lds-roller div:nth-child(6) { -webkit-animation-delay: -0.216s; animation-delay: -0.216s; } #preloader .lds-roller div:nth-child(6):after { top: 68px; left: 24px; } #preloader .lds-roller div:nth-child(7) { -webkit-animation-delay: -0.252s; animation-delay: -0.252s; } #preloader .lds-roller div:nth-child(7):after { top: 63px; left: 17px; } #preloader .lds-roller div:nth-child(8) { -webkit-animation-delay: -0.288s; animation-delay: -0.288s; } #preloader .lds-roller div:nth-child(8):after { top: 56px; left: 12px; } @-webkit-keyframes lds-roller { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes lds-roller { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @-webkit-keyframes fo { 0% { opacity: 1; } 100% { opacity: 0; display: none; } } @keyframes fo { 0% { opacity: 1; } 100% { opacity: 0; display: none; } } * { margin: 0; padding: 0; font-family: "Montserrat", sans-serif; scroll-behavior: smooth; cursor: url("/asset/img/cursor.png"), auto; } ::-webkit-scrollbar { width: 15px; border-radius: 5px; } ::-webkit-scrollbar-thumb { background: #003140; border-radius: 5px; } ::-webkit-scrollbar-track { -webkit-box-shadow: inset 1px 1px 5px #b8b7b7, inset 1px 1px 5px #0000004b; box-shadow: inset 1px 1px 5px #b8b7b7, inset 1px 1px 5px #0000004b; margin-top: 30px; margin-bottom: 30px; border-radius: 10px; } ::-webkit-scrollbar-button { display: none; } ::-webkit-scrollbar-thumb:hover { background: black; border-radius: 10px; } .landing { width: 100vw; min-height: 100vh; max-height: -webkit-fit-content; max-height: -moz-fit-content; max-height: fit-content; max-width: 100%; background: #003140; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; color: white; } .landing .img { background: #003140; width: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; } .landing .container { display: -webkit-box; display: -ms-flexbox; display: flex; max-width: 100%; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .landing .container .h1 { margin-bottom: 100px; background: #003140; border-radius: 10px; -webkit-box-shadow: 3px 3px 15px #025872a2, -3px -3px 15px #000000, inset 3px 3px 10px #ffffff10, inset -3px -3px 15px #00000033; box-shadow: 3px 3px 15px #025872a2, -3px -3px 15px #000000, inset 3px 3px 10px #ffffff10, inset -3px -3px 15px #00000033; color: white; padding: 20px; padding-left: 10px; padding-right: 15px; text-align: center; line-height: 2.5; } .landing .container .h1 a { margin-left: 8px; padding: 8px; font-size: 1em; background: white; color: black; border-radius: 8px 8px; -webkit-box-shadow: -5px -5px 5px #ffffff3d, 5px 5px 10px #00000059; box-shadow: -5px -5px 5px #ffffff3d, 5px 5px 10px #00000059; margin-bottom: 100px !important; } .landing .container .h1 span { font-size: 1.2em; } .landing .container .h1 b { -webkit-animation: 1.2s cursor infinite ease; animation: 1.2s cursor infinite ease; } @-webkit-keyframes cursor { 0% { opacity: 1; } 100% { opacity: 0; } } @keyframes cursor { 0% { opacity: 1; } 100% { opacity: 0; } } @media only screen and (max-width: 800px) { .landing { min-height: 78vh; max-height: -webkit-fit-content; max-height: -moz-fit-content; max-height: fit-content; } .landing .img img { width: 100%; } .landing .container .h1 { margin-top: 15%; font-size: 1em; } } .about { min-height: 100vh; max-width: 100%; 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; justify-content: center; align-items: center; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; background: white; } .about svg { width: 100%; height: -webkit-fit-content; height: -moz-fit-content; height: fit-content; -webkit-transform: rotate(180deg); transform: rotate(180deg); } .about .container { width: 100%; 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; -ms-flex-wrap: wrap; flex-wrap: wrap; height: -webkit-fit-content; height: -moz-fit-content; height: fit-content; min-height: 30vh; margin-top: 10%; } .about .container .card { min-height: 300px; height: -webkit-fit-content; height: -moz-fit-content; height: fit-content; width: 600px; max-width: 80vw; margin-left: 10vw; margin-right: 10vw; border-radius: 34px; 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; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -ms-flex-wrap: wrap; flex-wrap: wrap; border-top: 15px #003140 solid; border-bottom: 15px #003140 solid; -webkit-box-shadow: inset 5px -5px 15px #cacaca8f, inset -5px 5px 15px #dddddd8f, 5px 5px 15px rgba(0, 0, 0, 0.137); box-shadow: inset 5px -5px 15px #cacaca8f, inset -5px 5px 15px #dddddd8f, 5px 5px 15px rgba(0, 0, 0, 0.137); } .about .container .card1 { padding: 2em; } .about .container .card1 .title { width: 100%; text-align: center; margin-bottom: 20px; color: #003140; font-weight: bold; } .title{ font-weight: 800; color: #36a9cc; } .about .container .card1 .img { padding: 10px; margin-top: 10px; border-radius: 30%; background: #003140; margin-bottom: 40px; 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; -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.562), -5px -5px 8px #00314093; box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.562), -5px -5px 8px #00314093; } .about .container .card1 .img img { width: 31vh; height: 31vh; border-radius: 30%; } .about .container .card1 p { text-align: center; line-height: 1.8; } .about .container .card1 .resume { text-decoration: none; background: #003140; color: white; margin-top: 30px; padding: 10px 20px 10px 20px; border-radius: 15px; -webkit-box-shadow: 3px 3px 14px rgba(0, 0, 0, 0.445), -3px -3px 14px #003140a4; box-shadow: 3px 3px 14px rgba(0, 0, 0, 0.445), -3px -3px 14px #003140a4; transition: 0.4s; } .resume:hover{ cursor: pointer; transform: translate(-2px,2px); -webkit-box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.445), -2px -2px 8px #003140a4; box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.445), -2px -2px 8px #003140a4; font-weight: 700; } .about .container .card2 { font-size: 1em; position: relative; height: -webkit-max-content; height: -moz-max-content; height: max-content; padding: 20px; padding-bottom: 2em; } .about .container .card2 span { margin-top: 2em; margin-bottom: 0.5em; font-weight: bolder; } .about .container .card2 .mainlist { width: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: space-evenly; -ms-flex-pack: space-evenly; justify-content: space-evenly; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -ms-flex-wrap: wrap; flex-wrap: wrap; list-style: none; text-align: center; } .about .container .card2 .mainlist .icon { margin-top: 20px; margin-right: 10px; } .about .container .card2 .mainlist .sublist { list-style: none; margin-left: 20px; } .about .container .card3 { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .about .container .card3 ul { display: -webkit-box; display: -ms-flexbox; display: flex; width: 100%; margin-top: 10%; -webkit-box-pack: space-evenly; -ms-flex-pack: space-evenly; justify-content: space-evenly; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -ms-flex-wrap: wrap; flex-wrap: wrap; list-style: none; } .about .container .card3 ul li { float: left; text-decoration: none; } .about .container .card3 ul li a { text-decoration: none; font-size: 2em; cursor: pointer; margin-right: 10px; color: black; } .about .container .card3 ul li a:hover :first-child{ cursor: pointer; } .gt{ background-color: white; color: black; } .gt,.twtr,.el,.ln{padding: 5px;border-radius: 5px;transition: 0.4s;} .ln{ color: #0E76A8; } .ln:hover{ background-color: #0E76A8; color: white; } .twtr{ color: #08A0E9; } .el{ color: rgb(145, 6, 6); } .el:hover{ background-color: rgb(145, 6, 6); color: white; } .twtr:hover{ background-color: #08A0E9; color: white; } .projects { min-height: 100vh; width: 100vw; max-width: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-pack: distribute; justify-content: space-around; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -ms-flex-wrap: wrap; flex-wrap: wrap; background: #171717; margin-top: 10%; color: #ffffff; padding-bottom: 30px; } .projects span { width: 100%; text-align: center; font-size: 1.5em; margin-top: 50px; margin-bottom: 50px; } .projects svg { width: 100%; height: -webkit-fit-content; height: -moz-fit-content; height: fit-content; -webkit-transform: rotate(0deg); transform: rotate(0deg); margin-top: -5%; } .projects .project-card { min-height: 300px; height: -webkit-fit-content; height: -moz-fit-content; height: fit-content; padding: 5px; width: 450px; max-width: 80vw; margin-left: 10vw; margin-top: 100px; margin-right: 10vw; border-radius: 34px; 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; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -ms-flex-wrap: wrap; flex-wrap: wrap; border-top: 15px white solid; border-bottom: 15px white solid; -webkit-box-shadow: 5px 5px 15px #00000031, -5px -5px 20px #0461f775; box-shadow: 5px 5px 15px #00000031, -5px -5px 20px #0461f775; } .projects .project-card img { max-width: 60%; border-radius: 35px; height: 250px; } .projects .project-card .title { margin-top: 15px; } .projects .project-card .dec { display: none; } .projects .project-card:hover, .projects .project-card:focus { background: #000; } .projects .project-card:hover img, .projects .project-card:focus img { display: none; } .projects .project-card:hover .dec, .projects .project-card:focus .dec { display: block; width: 100%; text-align: center; height: -webkit-fit-content; height: -moz-fit-content; height: fit-content; } .projects .project-card:hover .dec p, .projects .project-card:focus .dec p { padding: 5px; margin-top: 5px; color:white; } .projects .project-card:hover .dec a, .projects .project-card:focus .dec a { padding: 10px; text-decoration: none; cursor: pointer; color: black; font-weight: 700; background: white; border-radius: 3px; } @media only screen and (max-width: 800px) { .projects { margin-top: 30%; } .projects svg { margin-top: -30%; } .projects .project-card { margin-bottom: 50px; padding: 0 !important; } .projects .project-card img { width: 41vw; height: 41vw; margin-bottom: 10px; border: white solid 5px; } } .footer { background: #080808; text-align: center; color: whitesmoke; width: 100%; padding-top: 100px; padding-bottom: 40px; } .footer a { color: #1eff00; } /*# sourceMappingURL=main.css.map */ #header { position: relative; width: 100%; height: 100%; margin: 0; padding: 0; display: table; text-align: center; background: url(https://s23.postimg.org/uj3dg83c9/rsz_photo_1437915015400_137312b61975_1.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } #container{ position: fixed; top: 0; left: 0; height: 80px; width: 100%; background: -webkit-linear-gradient(rgba(3,3,3,0.8), rgba(3,3,3,0.5), rgba(3,3,3,0.01)); /* For Safari 5.1 to 6.0 */ background: -o-linear-gradient(rgba(3,3,3,0.8), rgba(3,3,3,0.5), rgba(3,3,3,0.01)); /* For Opera 11.1 to 12.0 */ background: -moz-linear-gradient(rgba(3,3,3,0.8), rgba(3,3,3,0.5), rgba(3,3,3,0.01)); /* For Firefox 3.6 to 15 */ background: linear-gradient(rgba(3,3,3,0.8), rgba(3,3,3,0.5), rgba(3,3,3,0.01)); z-index:9; } ul{ list-style-type: none; margin: 0; text-align: right; padding: 0; line-height: 80px; } li{ display: inline; margin: 10px; } a{ font-size: 18px; text-decoration: none; color: #fff; padding: 0 6px; border-bottom: 0px solid #fff; border-top: 0px solid #fff; -webkit-transition: all 2s ease-in-out; -moz-transition: all 2s ease-in-out; -o-transition: all 2s ease-in-out; transition: all 0.2s ease-in-out; } a:hover{ color: #E8CD26; border-bottom: 2px solid #E8CD26; border-top: 2px solid #E8CD26; padding: 6px; } #small-screen-nav{ position: fixed; width: 90%; margin: 5% 5%; border-radius: 14px; height: 90%; background: rgba(3,3,5,0.9); z-index: 9; box-shadow: 3px 3px 30px #000; display: none; } #nav-icon{ position: absolute; top: 24px; left: -15px; margin-left: 50%; width: 30px; height: 30px; background: url(http://www.alfageo.eu/site/img/nav.png) no-repeat; background-size: 100%; display: none; } #close{ position: absolute; top: -10px; right: -10px; width: 30px; height: 30px; background: url(http://icons.iconarchive.com/icons/graphicloads/100-flat/256/close-icon.png) no-repeat; background-size: 100%; cursor: pointer; -webkit-transition: all 2s ease-in-out; -moz-transition: all 2s ease-in-out; -o-transition: all 2s ease-in-out; transition: all 0.2s ease-in-out; } #close:hover{ top: -12px; right: -12px; width: 34px; height: 34px; } h1{ display: table-cell; vertical-align: middle; font-size: 26px; color: rgba(255,255,255,0.8); text-decoration: underline; } h1 span{ font-size: 18px; } #second-screen{ position: relative; width: 100%; height: 100%; display: table; text-align: center; background: #ddd; } #second-screen h1{ color: #333; text-align: right; padding: 50px; text-shadow: 3px 3px 10px #666; text-decoration: none; border-left: 10px dotted #E8CD26; border-bottom: 10px dotted #666; } @media (max-width: 500px){ full-ul{ display: none; } #full-ul{ display: none; } ul{ line-height: 40px; } li{ display: block; border-bottom: 1px solid #333; } a:hover{ border: none; } #nav-icon{ display: inline; cursor: pointer; } } .text { color: white; font-size: 20px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); white-space: nowrap; } .rounded-social-buttons { text-align: center; } .rounded-social-buttons .social-button { display: inline-block; position: relative; cursor: pointer; width: 3.125rem; height: 3.125rem; border: 0.125rem solid transparent; padding: 0; text-decoration: none; text-align: center; color: #fefefe; font-size: 1.5625rem; font-weight: normal; line-height: 2em; border-radius: 1.6875rem; transition: all 0.5s ease; margin-right: 0.25rem; margin-bottom: 0.25rem; } .rounded-social-buttons .social-button:hover, .rounded-social-buttons .social-button:focus { -webkit-transform: rotate(360deg); -ms-transform: rotate(360deg); transform: rotate(360deg); } .rounded-social-buttons .fa-twitter, .fa-facebook-f, .fa-linkedin, .fa-youtube, .fa-instagram { font-size: 25px; } .rounded-social-buttons .social-button.facebook { background: #3b5998; } .rounded-social-buttons .social-button.facebook:hover, .rounded-social-buttons .social-button.facebook:focus { color: #3b5998; background: #fefefe; border-color: #3b5998; } .rounded-social-buttons .social-button.twitter { background: #55acee; } .rounded-social-buttons .social-button.twitter:hover, .rounded-social-buttons .social-button.twitter:focus { color: #55acee; background: #fefefe; border-color: #55acee; } .rounded-social-buttons .social-button.linkedin { background: #007bb5; } .rounded-social-buttons .social-button.linkedin:hover, .rounded-social-buttons .social-button.linkedin:focus { color: #007bb5; background: #fefefe; border-color: #007bb5; } .rounded-social-buttons .social-button.youtube { background: #bb0000; } .rounded-social-buttons .social-button.youtube:hover, .rounded-social-buttons .social-button.youtube:focus { color: #bb0000; background: #fefefe; border-color: #bb0000; } .rounded-social-buttons .social-button.instagram { background: #125688; } .rounded-social-buttons .social-button.instagram:hover, .rounded-social-buttons .social-button.instagram:focus { color: #125688; background: #fefefe; border-color: #125688; }
asset/css/main.css
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap"); #preloader { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999; background-color: #003140; 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; -webkit-animation: forwards 2s fo linear; animation: forwards 2s fo linear; } #preloader .lds-roller { display: inline-block; position: relative; width: 80px; height: 80px; } #preloader .lds-roller div { -webkit-animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite; animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite; -webkit-transform-origin: 40px 40px; transform-origin: 40px 40px; } #preloader .lds-roller div:after { content: " "; display: block; position: absolute; width: 7px; height: 7px; border-radius: 50%; background: #fff; margin: -4px 0 0 -4px; } #preloader .lds-roller div:nth-child(1) { -webkit-animation-delay: -0.036s; animation-delay: -0.036s; } #preloader .lds-roller div:nth-child(1):after { top: 63px; left: 63px; } #preloader .lds-roller div:nth-child(2) { -webkit-animation-delay: -0.072s; animation-delay: -0.072s; } #preloader .lds-roller div:nth-child(2):after { top: 68px; left: 56px; } #preloader .lds-roller div:nth-child(3) { -webkit-animation-delay: -0.108s; animation-delay: -0.108s; } #preloader .lds-roller div:nth-child(3):after { top: 71px; left: 48px; } #preloader .lds-roller div:nth-child(4) { -webkit-animation-delay: -0.144s; animation-delay: -0.144s; } #preloader .lds-roller div:nth-child(4):after { top: 72px; left: 40px; } #preloader .lds-roller div:nth-child(5) { -webkit-animation-delay: -0.18s; animation-delay: -0.18s; } #preloader .lds-roller div:nth-child(5):after { top: 71px; left: 32px; } #preloader .lds-roller div:nth-child(6) { -webkit-animation-delay: -0.216s; animation-delay: -0.216s; } #preloader .lds-roller div:nth-child(6):after { top: 68px; left: 24px; } #preloader .lds-roller div:nth-child(7) { -webkit-animation-delay: -0.252s; animation-delay: -0.252s; } #preloader .lds-roller div:nth-child(7):after { top: 63px; left: 17px; } #preloader .lds-roller div:nth-child(8) { -webkit-animation-delay: -0.288s; animation-delay: -0.288s; } #preloader .lds-roller div:nth-child(8):after { top: 56px; left: 12px; } @-webkit-keyframes lds-roller { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes lds-roller { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @-webkit-keyframes fo { 0% { opacity: 1; } 100% { opacity: 0; display: none; } } @keyframes fo { 0% { opacity: 1; } 100% { opacity: 0; display: none; } } * { margin: 0; padding: 0; font-family: "Montserrat", sans-serif; scroll-behavior: smooth; cursor: url("/asset/img/cursor.png"), auto; } ::-webkit-scrollbar { width: 15px; border-radius: 5px; } ::-webkit-scrollbar-thumb { background: #003140; border-radius: 5px; } ::-webkit-scrollbar-track { -webkit-box-shadow: inset 1px 1px 5px #b8b7b7, inset 1px 1px 5px #0000004b; box-shadow: inset 1px 1px 5px #b8b7b7, inset 1px 1px 5px #0000004b; margin-top: 30px; margin-bottom: 30px; border-radius: 10px; } ::-webkit-scrollbar-button { display: none; } ::-webkit-scrollbar-thumb:hover { background: black; border-radius: 10px; } .landing { width: 100vw; min-height: 100vh; max-height: -webkit-fit-content; max-height: -moz-fit-content; max-height: fit-content; max-width: 100%; background: #003140; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; color: white; } .landing .img { background: #003140; width: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; } .landing .container { display: -webkit-box; display: -ms-flexbox; display: flex; max-width: 100%; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .landing .container .h1 { margin-bottom: 100px; background: #003140; border-radius: 10px; -webkit-box-shadow: 3px 3px 15px #025872a2, -3px -3px 15px #000000, inset 3px 3px 10px #ffffff10, inset -3px -3px 15px #00000033; box-shadow: 3px 3px 15px #025872a2, -3px -3px 15px #000000, inset 3px 3px 10px #ffffff10, inset -3px -3px 15px #00000033; color: white; padding: 20px; padding-left: 10px; padding-right: 15px; text-align: center; line-height: 2.5; } .landing .container .h1 a { margin-left: 8px; padding: 8px; font-size: 1em; background: white; color: black; border-radius: 8px 8px; -webkit-box-shadow: -5px -5px 5px #ffffff3d, 5px 5px 10px #00000059; box-shadow: -5px -5px 5px #ffffff3d, 5px 5px 10px #00000059; margin-bottom: 100px !important; } .landing .container .h1 span { font-size: 1.2em; } .landing .container .h1 b { -webkit-animation: 1.2s cursor infinite ease; animation: 1.2s cursor infinite ease; } @-webkit-keyframes cursor { 0% { opacity: 1; } 100% { opacity: 0; } } @keyframes cursor { 0% { opacity: 1; } 100% { opacity: 0; } } @media only screen and (max-width: 800px) { .landing { min-height: 78vh; max-height: -webkit-fit-content; max-height: -moz-fit-content; max-height: fit-content; } .landing .img img { width: 100%; } .landing .container .h1 { margin-top: 15%; font-size: 1em; } } .about { min-height: 100vh; max-width: 100%; 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; justify-content: center; align-items: center; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; background: white; } .about svg { width: 100%; height: -webkit-fit-content; height: -moz-fit-content; height: fit-content; -webkit-transform: rotate(180deg); transform: rotate(180deg); } .about .container { width: 100%; 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; -ms-flex-wrap: wrap; flex-wrap: wrap; height: -webkit-fit-content; height: -moz-fit-content; height: fit-content; min-height: 30vh; margin-top: 10%; } .about .container .card { min-height: 300px; height: -webkit-fit-content; height: -moz-fit-content; height: fit-content; width: 600px; max-width: 80vw; margin-left: 10vw; margin-right: 10vw; border-radius: 34px; 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; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -ms-flex-wrap: wrap; flex-wrap: wrap; border-top: 15px #003140 solid; border-bottom: 15px #003140 solid; -webkit-box-shadow: inset 5px -5px 15px #cacaca8f, inset -5px 5px 15px #dddddd8f, 5px 5px 15px rgba(0, 0, 0, 0.137); box-shadow: inset 5px -5px 15px #cacaca8f, inset -5px 5px 15px #dddddd8f, 5px 5px 15px rgba(0, 0, 0, 0.137); } .about .container .card1 { padding: 2em; } .about .container .card1 .title { width: 100%; text-align: center; margin-bottom: 20px; color: #003140; font-weight: bold; } .title{ font-weight: 800; color: #36a9cc; } .about .container .card1 .img { padding: 10px; margin-top: 10px; border-radius: 30%; background: #003140; margin-bottom: 40px; 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; -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.562), -5px -5px 8px #00314093; box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.562), -5px -5px 8px #00314093; } .about .container .card1 .img img { width: 31vh; height: 31vh; border-radius: 30%; } .about .container .card1 p { text-align: center; line-height: 1.8; } .about .container .card1 .resume { text-decoration: none; background: #003140; color: white; margin-top: 30px; padding: 10px 20px 10px 20px; border-radius: 15px; -webkit-box-shadow: 3px 3px 14px rgba(0, 0, 0, 0.445), -3px -3px 14px #003140a4; box-shadow: 3px 3px 14px rgba(0, 0, 0, 0.445), -3px -3px 14px #003140a4; transition: 0.4s; } .resume:hover{ cursor: pointer; transform: translate(-2px,2px); -webkit-box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.445), -2px -2px 8px #003140a4; box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.445), -2px -2px 8px #003140a4; font-weight: 700; } .about .container .card2 { font-size: 1em; position: relative; height: -webkit-max-content; height: -moz-max-content; height: max-content; padding: 20px; padding-bottom: 2em; } .about .container .card2 span { margin-top: 2em; margin-bottom: 0.5em; font-weight: bolder; } .about .container .card2 .mainlist { width: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: space-evenly; -ms-flex-pack: space-evenly; justify-content: space-evenly; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -ms-flex-wrap: wrap; flex-wrap: wrap; list-style: none; text-align: center; } .about .container .card2 .mainlist .icon { margin-top: 20px; margin-right: 10px; } .about .container .card2 .mainlist .sublist { list-style: none; margin-left: 20px; } .about .container .card3 { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .about .container .card3 ul { display: -webkit-box; display: -ms-flexbox; display: flex; width: 100%; margin-top: 10%; -webkit-box-pack: space-evenly; -ms-flex-pack: space-evenly; justify-content: space-evenly; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -ms-flex-wrap: wrap; flex-wrap: wrap; list-style: none; } .about .container .card3 ul li { float: left; text-decoration: none; } .about .container .card3 ul li a { text-decoration: none; font-size: 2em; cursor: pointer; margin-right: 10px; color: black; } .about .container .card3 ul li a:hover :first-child{ cursor: pointer; } .gt{ background-color: white; color: black; } .gt,.twtr,.el,.ln{padding: 5px;border-radius: 5px;transition: 0.4s;} .ln{ color: #0E76A8; } .ln:hover{ background-color: #0E76A8; color: white; } .twtr{ color: #08A0E9; } .el{ color: rgb(145, 6, 6); } .el:hover{ background-color: rgb(145, 6, 6); color: white; } .twtr:hover{ background-color: #08A0E9; color: white; } .projects { min-height: 100vh; width: 100vw; max-width: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-pack: distribute; justify-content: space-around; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -ms-flex-wrap: wrap; flex-wrap: wrap; background: #171717; margin-top: 10%; color: #ffffff; padding-bottom: 30px; } .projects span { width: 100%; text-align: center; font-size: 1.5em; margin-top: 50px; margin-bottom: 50px; } .projects svg { width: 100%; height: -webkit-fit-content; height: -moz-fit-content; height: fit-content; -webkit-transform: rotate(0deg); transform: rotate(0deg); margin-top: -5%; } .projects .project-card { min-height: 300px; height: -webkit-fit-content; height: -moz-fit-content; height: fit-content; padding: 5px; width: 450px; max-width: 80vw; margin-left: 10vw; margin-top: 100px; margin-right: 10vw; border-radius: 34px; 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; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -ms-flex-wrap: wrap; flex-wrap: wrap; border-top: 15px white solid; border-bottom: 15px white solid; -webkit-box-shadow: 5px 5px 15px #00000031, -5px -5px 20px #0461f775; box-shadow: 5px 5px 15px #00000031, -5px -5px 20px #0461f775; } .projects .project-card img { max-width: 60%; border-radius: 35px; height: 250px; } .projects .project-card .title { margin-top: 15px; } .projects .project-card .dec { display: none; } .projects .project-card:hover, .projects .project-card:focus { background: #000; } .projects .project-card:hover img, .projects .project-card:focus img { display: none; } .projects .project-card:hover .dec, .projects .project-card:focus .dec { display: block; width: 100%; text-align: center; height: -webkit-fit-content; height: -moz-fit-content; height: fit-content; } .projects .project-card:hover .dec p, .projects .project-card:focus .dec p { padding: 5px; margin-top: 5px; color:white; } .projects .project-card:hover .dec a, .projects .project-card:focus .dec a { padding: 10px; text-decoration: none; cursor: pointer; color: black; font-weight: 700; background: white; border-radius: 3px; } @media only screen and (max-width: 800px) { .projects { margin-top: 30%; } .projects svg { margin-top: -30%; } .projects .project-card { margin-bottom: 50px; padding: 0 !important; } .projects .project-card img { width: 41vw; height: 41vw; margin-bottom: 10px; border: white solid 5px; } } .footer { background: #080808; text-align: center; color: whitesmoke; width: 100%; padding-top: 100px; padding-bottom: 40px; } .footer a { color: #1eff00; } /*# sourceMappingURL=main.css.map */ #header { position: relative; width: 100%; height: 100%; margin: 0; padding: 0; display: table; text-align: center; background: url(https://s23.postimg.org/uj3dg83c9/rsz_photo_1437915015400_137312b61975_1.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } #container{ position: fixed; top: 0; left: 0; height: 80px; width: 100%; background: -webkit-linear-gradient(rgba(3,3,3,0.8), rgba(3,3,3,0.5), rgba(3,3,3,0.01)); /* For Safari 5.1 to 6.0 */ background: -o-linear-gradient(rgba(3,3,3,0.8), rgba(3,3,3,0.5), rgba(3,3,3,0.01)); /* For Opera 11.1 to 12.0 */ background: -moz-linear-gradient(rgba(3,3,3,0.8), rgba(3,3,3,0.5), rgba(3,3,3,0.01)); /* For Firefox 3.6 to 15 */ background: linear-gradient(rgba(3,3,3,0.8), rgba(3,3,3,0.5), rgba(3,3,3,0.01)); z-index:9; } ul{ list-style-type: none; margin: 0; text-align: right; padding: 0; line-height: 80px; } li{ display: inline; margin: 10px; } a{ font-size: 18px; text-decoration: none; color: #fff; padding: 0 6px; border-bottom: 0px solid #fff; border-top: 0px solid #fff; -webkit-transition: all 2s ease-in-out; -moz-transition: all 2s ease-in-out; -o-transition: all 2s ease-in-out; transition: all 0.2s ease-in-out; } a:hover{ color: #E8CD26; border-bottom: 2px solid #E8CD26; border-top: 2px solid #E8CD26; padding: 6px; } #small-screen-nav{ position: fixed; width: 90%; margin: 5% 5%; border-radius: 14px; height: 90%; background: rgba(3,3,5,0.9); z-index: 9; box-shadow: 3px 3px 30px #000; display: none; } #nav-icon{ position: absolute; top: 24px; left: -15px; margin-left: 50%; width: 30px; height: 30px; background: url(http://www.alfageo.eu/site/img/nav.png) no-repeat; background-size: 100%; display: none; } #close{ position: absolute; top: -10px; right: -10px; width: 30px; height: 30px; background: url(http://icons.iconarchive.com/icons/graphicloads/100-flat/256/close-icon.png) no-repeat; background-size: 100%; cursor: pointer; -webkit-transition: all 2s ease-in-out; -moz-transition: all 2s ease-in-out; -o-transition: all 2s ease-in-out; transition: all 0.2s ease-in-out; } #close:hover{ top: -12px; right: -12px; width: 34px; height: 34px; } h1{ display: table-cell; vertical-align: middle; font-size: 26px; color: rgba(255,255,255,0.8); text-decoration: underline; } h1 span{ font-size: 18px; } #second-screen{ position: relative; width: 100%; height: 100%; display: table; text-align: center; background: #ddd; } #second-screen h1{ color: #333; text-align: right; padding: 50px; text-shadow: 3px 3px 10px #666; text-decoration: none; border-left: 10px dotted #E8CD26; border-bottom: 10px dotted #666; } @media (max-width: 500px){ full-ul{ display: none; } #full-ul{ display: none; } ul{ line-height: 40px; } li{ display: block; border-bottom: 1px solid #333; } a:hover{ border: none; } #nav-icon{ display: inline; cursor: pointer; } } .text { color: white; font-size: 20px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); white-space: nowrap; } .rounded-social-buttons { text-align: center; } .rounded-social-buttons .social-button { display: inline-block; position: relative; cursor: pointer; width: 3.125rem; height: 3.125rem; border: 0.125rem solid transparent; padding: 0; text-decoration: none; text-align: center; color: #fefefe; font-size: 1.5625rem; font-weight: normal; line-height: 2em; border-radius: 1.6875rem; transition: all 0.5s ease; margin-right: 0.25rem; margin-bottom: 0.25rem; } .rounded-social-buttons .social-button:hover, .rounded-social-buttons .social-button:focus { -webkit-transform: rotate(360deg); -ms-transform: rotate(360deg); transform: rotate(360deg); } .rounded-social-buttons .fa-twitter, .fa-facebook-f, .fa-linkedin, .fa-youtube, .fa-instagram { font-size: 25px; } .rounded-social-buttons .social-button.facebook { background: #3b5998; } .rounded-social-buttons .social-button.facebook:hover, .rounded-social-buttons .social-button.facebook:focus { color: #3b5998; background: #fefefe; border-color: #3b5998; } .rounded-social-buttons .social-button.twitter { background: #55acee; } .rounded-social-buttons .social-button.twitter:hover, .rounded-social-buttons .social-button.twitter:focus { color: #55acee; background: #fefefe; border-color: #55acee; } .rounded-social-buttons .social-button.linkedin { background: #007bb5; } .rounded-social-buttons .social-button.linkedin:hover, .rounded-social-buttons .social-button.linkedin:focus { color: #007bb5; background: #fefefe; border-color: #007bb5; } .rounded-social-buttons .social-button.youtube { background: #bb0000; } .rounded-social-buttons .social-button.youtube:hover, .rounded-social-buttons .social-button.youtube:focus { color: #bb0000; background: #fefefe; border-color: #bb0000; } .rounded-social-buttons .social-button.instagram { background: #125688; } .rounded-social-buttons .social-button.instagram:hover, .rounded-social-buttons .social-button.instagram:focus { color: #125688; background: #fefefe; border-color: #125688; }
0.325092
0.054099
body { padding-top: 50px; padding-bottom: 20px; } .body-margin { padding-top: 50px; } .row-margin { padding-top: 25px; } .text-color-azure { color: azure; padding: 15px; } .panel-transparent { background: none; } .panel-transparent .panel-heading { background: rgba(122, 130, 136, 0.6) !important; color:gold; } .panel-transparent .panel-body { background: rgba(46, 51, 56, 0.2) !important; color: gold; } .panel-transparent .panel-body-red{ background: rgba(160, 3, 3, 0.80) !important; color: gold; padding:15px; } .panel-transparent .panel-body-green { background: rgba(3, 130, 3, 0.80) !important; color: gold; padding: 15px; } .panel-transparent .panel-body-blue { background: rgba(3, 3, 160, 0.80) !important; color: gold; padding: 15px; } .panel-transparent .panel-body-smess { background: rgba(160, 3, 120, 0.80) !important; color: gold; padding: 15px; } .panel-transparent .panel-body-trinfo { background: rgba(46, 51, 56, 0.80) !important; color: gold; padding: 15px; } .panel-heading .panel-title{ text-align:center; } .content:before { content: ""; position: fixed; left: 0; right: 0; z-index: -1; display: block; background-image: url('../jpg/back2.jpg'); background-size: cover; width: 100%; height: 100%; -webkit-filter: blur(5px); -moz-filter: blur(5px); -o-filter: blur(5px); -ms-filter: blur(5px); filter: blur(0px); } .content { overflow: auto; position: relative; } .button-margin { margin-bottom:20px; } .user-page .img-responsive{ height: 130px !important; } .user-list-photo{ padding : 5px !important; align-items: center; } .user-bigphoto{ min-height: 580px; } .body-content { padding-left: 15px; padding-right: 15px; } .name-content{ padding-left: 35px; } .message-content { padding-left: 10px; } .favorite-padding { padding-right: 5px; } .name-font { font-size: 18px; line-height: 1.4; text-align: left; padding-left : 0px; } /* Carousel */ .slide { width: 80%; } .carousel-caption p{ font-size: 20px; line-height: 1.4; } /*.item { position: center; }*/ div.c-wrapper { width: 100%; /* for example */ margin: auto; } div.vertical-line { width: 1px; /* Line width */ background-color: black; /* Line color */ height: 100%; /* Override in-line if you want specific height. */ float: left; /* Causes the line to float to left of content. You can instead use position:absolute or display:inline-block if this fits better with your design */ } .carousel-inner > .item > img, .carousel-inner > .item > a > img { width: 100%; /* use this, or not */ margin: auto; } .carousel-padding { padding-top: 7px; } /* Make .svg files in the carousel display properly in older browsers */ /*.carousel-inner .item img[src$=".svg"] { width: 100%; position: center; }*/ /* QR code generator */ #qrCode { margin: 15px; } /* Hide/rearrange for smaller screens */ @media screen and (max-width: 767px) { /* Hide captions */ .carousel-caption { display: none; } } /*picture paggination NewFriends*/ /*.pagination { display: inline-block; }*/ .friends-list a{ color: black; float: left; padding: 8px 16px; text-decoration: none; transition: background-color .3s; border: 1px solid #ddd; } .friends-list img{ width: 100px; height: 70px; } /*till here*/ /*blinking text*/ .blink_me { animation: blinker 3s linear infinite; color:antiquewhite; } .blink_me_background { background: rgba(46, 51, 56, 0.5) !important; } @keyframes blinker { 50% { opacity: 0; } } /*blinking text*/
ASP.NET CORE/BookTravel/BookTravel.Web/wwwroot/css/site.css
body { padding-top: 50px; padding-bottom: 20px; } .body-margin { padding-top: 50px; } .row-margin { padding-top: 25px; } .text-color-azure { color: azure; padding: 15px; } .panel-transparent { background: none; } .panel-transparent .panel-heading { background: rgba(122, 130, 136, 0.6) !important; color:gold; } .panel-transparent .panel-body { background: rgba(46, 51, 56, 0.2) !important; color: gold; } .panel-transparent .panel-body-red{ background: rgba(160, 3, 3, 0.80) !important; color: gold; padding:15px; } .panel-transparent .panel-body-green { background: rgba(3, 130, 3, 0.80) !important; color: gold; padding: 15px; } .panel-transparent .panel-body-blue { background: rgba(3, 3, 160, 0.80) !important; color: gold; padding: 15px; } .panel-transparent .panel-body-smess { background: rgba(160, 3, 120, 0.80) !important; color: gold; padding: 15px; } .panel-transparent .panel-body-trinfo { background: rgba(46, 51, 56, 0.80) !important; color: gold; padding: 15px; } .panel-heading .panel-title{ text-align:center; } .content:before { content: ""; position: fixed; left: 0; right: 0; z-index: -1; display: block; background-image: url('../jpg/back2.jpg'); background-size: cover; width: 100%; height: 100%; -webkit-filter: blur(5px); -moz-filter: blur(5px); -o-filter: blur(5px); -ms-filter: blur(5px); filter: blur(0px); } .content { overflow: auto; position: relative; } .button-margin { margin-bottom:20px; } .user-page .img-responsive{ height: 130px !important; } .user-list-photo{ padding : 5px !important; align-items: center; } .user-bigphoto{ min-height: 580px; } .body-content { padding-left: 15px; padding-right: 15px; } .name-content{ padding-left: 35px; } .message-content { padding-left: 10px; } .favorite-padding { padding-right: 5px; } .name-font { font-size: 18px; line-height: 1.4; text-align: left; padding-left : 0px; } /* Carousel */ .slide { width: 80%; } .carousel-caption p{ font-size: 20px; line-height: 1.4; } /*.item { position: center; }*/ div.c-wrapper { width: 100%; /* for example */ margin: auto; } div.vertical-line { width: 1px; /* Line width */ background-color: black; /* Line color */ height: 100%; /* Override in-line if you want specific height. */ float: left; /* Causes the line to float to left of content. You can instead use position:absolute or display:inline-block if this fits better with your design */ } .carousel-inner > .item > img, .carousel-inner > .item > a > img { width: 100%; /* use this, or not */ margin: auto; } .carousel-padding { padding-top: 7px; } /* Make .svg files in the carousel display properly in older browsers */ /*.carousel-inner .item img[src$=".svg"] { width: 100%; position: center; }*/ /* QR code generator */ #qrCode { margin: 15px; } /* Hide/rearrange for smaller screens */ @media screen and (max-width: 767px) { /* Hide captions */ .carousel-caption { display: none; } } /*picture paggination NewFriends*/ /*.pagination { display: inline-block; }*/ .friends-list a{ color: black; float: left; padding: 8px 16px; text-decoration: none; transition: background-color .3s; border: 1px solid #ddd; } .friends-list img{ width: 100px; height: 70px; } /*till here*/ /*blinking text*/ .blink_me { animation: blinker 3s linear infinite; color:antiquewhite; } .blink_me_background { background: rgba(46, 51, 56, 0.5) !important; } @keyframes blinker { 50% { opacity: 0; } } /*blinking text*/
0.397354
0.085099
body { font-family: 'Lato', sans-serif; font-weight: 300; background: #dfdfdf; } h3, h4, h5, h6 { font-weight: bold; } h3 { text-transform: uppercase; font-size: inherit; } h4 { font-size: inherit; } h5 { font-size: small; } h6 { font-size: x-small; } svg { background: #fff; } .nomargin { margin: 0; } /* Brand Style ****************************************************************/ .brand-toolbar { background: #e1650c; color: #fff; } .branding { background: #e14c11; color: #fff; } .app-toolbar { background: #813f1f; color: #e14c11; } .btn-primary { background: #e14c11; color: #fff; } /* Layout *********************************************************************/ body { z-index: 0; } .container { position: relative; } .header { position: relative; z-index: 500; box-shadow: 0px -17px 20px 20px #afafaf; } .brand-toolbar { } .branding { } .branding h1 img { vertical-align: middle; position: relative; top: -0.33ex; } .branding h1 small { margin-top: 50px; font-size: 14px; color: #ffffff; vertical-align: baseline; opacity: 0.5; } .branding h1 small a, .branding h1 small a:link, .branding h1 small a:visited, .branding h1 small a:hover, .branding h1 small a:active { color: #ffffff; } .drawer { position: relative; z-index: 400; background: #dfdfdf; color: #5f5f5f; box-shadow: 0px -17px 20px 20px #b4b4b4; } .messages { position: relative; z-index: 300; } .content { position: relative; z-index: 200; padding-top: 20px; background: #f2f2f2; box-shadow: 0px -17px 20px 20px #b4b4b4; } .footer { font-size: small; position: relative; z-index: 100; padding-top: 20px; padding-bottom: 20px; background: #dfdfdf; color: #777; } .controls ul, .brand-toolbar .links ul { list-style: none; margin: 0; padding: 0; color: white; } .brand-toolbar .controls ul { float: right; } .controls ul a, .brand-toolbar .links ul a { color: white; text-decoration: none; } .brand-toolbar .links ul li { display: block; float: left; padding-left: 1em; padding-right: 1em; } .controls ul li { display: block; float: left; margin-left: 2em; } .last-element { margin-bottom: 0; } .error-view { color: red; } .error-view .panel-default { border-color: red; } .error-view ul { margin: 0; } /* Bootstrap customization ****************************************************/ .panel-default { border-radius: 0; border-color: #777; box-shadow: 2px 2px 2px 0px #b4b4b4; } .panel-default > .panel-heading { background: #fff; border-color: #777; } .panel-default > .panel-heading > .btn-group { margin-top: -5px; margin-right: -5px; } .panel-default > .panel-body { background: #f2f2f2; } .btn { margin-bottom: 0; border-radius: 0; font-weight: bold; color: #777; } .btn-primary { border: none; border-radius: 0; box-shadow: 2px 2px 2px 0px #b4b4b4; color: #fff; } input.form-control, select.form-control, textarea.form-control { border-radius: 0; appearance: none; -moz-appearance: none; -webkit-appearance: none; } .form-group label { text-transform: uppercase; font-weight: 300; } .label { display: block; float: left; border-radius: 0; font-size: small; font-weight: 300; box-shadow: 2px 2px 2px 0px #b4b4b4; font-size: 14px; padding: 6px 12px 8px 12px; margin-right: 1em; } .label-default { background: #fff; color: #000; border: solid 1px #ccc; } .label-default a .glyphicon { color: #777; } .form-help { color: #999; } /* Bootstrap typeahead customization ******************************************/ .input-group .twitter-typeahead:first-child .tt-input, .input-group .twitter-typeahead:first-child .tt-hint { background: #fff; border-radius: 0; } .tt-dropdown-menu h3 { font-size: 1em; margin: 10px 20px 0; border-bottom: solid 1px #ccc; } /* Common MediaMeter styles ***************************************************/ .media-list-view a.remove { color: red; } .media-list-item-view .glyphicon { position: relative; top: 3px !important; } .query-controls div { text-align: right; } .query-controls label { visibility: hidden; } .query-views.two .query-controls button.copy { display: none; } .query-views.one .query-controls button.remove { display: none; } .query-views .tag-set-list-view-content .name { padding-top: 6px; font-weight: bold; } .query-views .query-title { margin-top: 0; } .query-views > div { /** border-bottom: solid 1px #ccc; margin-bottom: 20px; **/ } .keyword-view label { display: block; float: left; } .keyword-view .form-help { display: block; float: right; } .media-select-view span.explore, .simple-tag-select-view span.explore { float: right; } .disabled .label { background: #eee; color: #555; } .disabled .label a { display: none; } .disabled .add-tag-set { display: none; } .explore-list-view .modal-body { max-height: 500px; overflow-y: scroll; } .no-page .explore-list-view .alpha-links { display: none !important; } .explore-list-view .alpha-links { margin: 0; padding: 0; display: inline-block; list-style: none; } .explore-list-view .alpha-links li { display: inline-block; margin-right: 0.5em; } .explore-list-view h6 { font-size: 1em; margin: 0; } .explore-list-view .source-explore-view { margin-top: 10px; } .tag-set-explore-view p { margin-top: 10px; } .first-query, .first-query a { color: #e14c11; } .second-query, .second-query a { color: #249fc9; } /* Sub-Brand styles ***************************************************/ .dashboard-color { background-color: #e14c11; } .mentions-color { background-color: #005826; } .frequency-color { background-color: rgb(85,134,138); } /* Mockup changes */ .nav-tabs { background: #f2f2f2; border-bottom-color: #777; } .nav-tabs > li > a { border-radius: 0; } .nav-tabs > li > a { border-right: solid 1px #777; } .nav-tabs > li > a:hover { border-right: solid 1px #777; } .nav-tabs > li.active { border: none; border-right: solid 1px #777; } .nav-tabs > li.active:first-child { border-left: none; } .nav-tabs > li > a { margin-right: 0; } .nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover, .nav-tabs > li > a:hover { background: #f2f2f2; } .nav-tabs > li > a, .nav-tabs > li > a:hover { border-bottom-color: #777; } .query-views .form-group { margin-bottom: 6px; } .query-views .form-control, .query-views .input-group-addon { padding: 5px 5px; /* height: 21px; */ } .query-views button.btn { padding: 0 12px; height: 34px; } .query-views .label { /* padding: 2px 5px 1px 5px; */ } .simple-tag-list-view-content { overflow: hidden; padding-bottom: 4px; } .query-title { font-weight: bold; display: block; margin-bottom: 6px; font-size: 16px; color:#e14c11; } .query-title .glyphicon { color: #777777; } .query-title .glyphicon:hover { color:#e14c11; cursor: pointer; } li:first-child .query-title { color: #e14c11; } li:nth-child(2) .query-title { color: #249fc9; } li:nth-child(3) .query-title { color: #ffab26; } .nav > li > a.edit { display: inline; } /** Rahul's new hacked up CSS classes **/ div.query-phrase { font-size: 14px; font-style: italic; margin-bottom: 3px; } ul.query-media-list { list-style: none; margin: 0px; padding: 0px; } ul.query-media-list li { display:inline-block; margin: 5px 5px 0px 0px; padding: 5px; background-color: #ffffff; border-radius: .25em; border: 1px solid #bbbbbb; } div#query-list-wrapper { display: block; overflow: scroll; width: auto; overflow-x: scroll; vertical-align: top; white-space:nowrap; } div.query-wrapper { border-left: 1px solid #bbbbbb; padding: 0px 10px; display: inline-block; width: 380px; white-space:normal; vertical-align: top; overflow: visible; } div.query-wrapper .form-group { margin-bottom: 5px; } div.first-query-wrapper { border-left: 0px; } div.add-sources-content { margin-top: 5px; } #add-query-btn { font-weight: normal; } .query-remove { color:#777777; } .query-remove:hover { color:#000000; } a > small > span.glyphicon { color:#777777; margin-left: 2px; } a > small > span.glyphicon:hover { color:#000000; } .propagate-btn { display: inline-block; margin-left: 5px; font-size: 10px; color:#777777; } .propagate-btn:hover { color: #000000; cursor: pointer; }
mockups/new-query-c/static/core/mediameter.css
body { font-family: 'Lato', sans-serif; font-weight: 300; background: #dfdfdf; } h3, h4, h5, h6 { font-weight: bold; } h3 { text-transform: uppercase; font-size: inherit; } h4 { font-size: inherit; } h5 { font-size: small; } h6 { font-size: x-small; } svg { background: #fff; } .nomargin { margin: 0; } /* Brand Style ****************************************************************/ .brand-toolbar { background: #e1650c; color: #fff; } .branding { background: #e14c11; color: #fff; } .app-toolbar { background: #813f1f; color: #e14c11; } .btn-primary { background: #e14c11; color: #fff; } /* Layout *********************************************************************/ body { z-index: 0; } .container { position: relative; } .header { position: relative; z-index: 500; box-shadow: 0px -17px 20px 20px #afafaf; } .brand-toolbar { } .branding { } .branding h1 img { vertical-align: middle; position: relative; top: -0.33ex; } .branding h1 small { margin-top: 50px; font-size: 14px; color: #ffffff; vertical-align: baseline; opacity: 0.5; } .branding h1 small a, .branding h1 small a:link, .branding h1 small a:visited, .branding h1 small a:hover, .branding h1 small a:active { color: #ffffff; } .drawer { position: relative; z-index: 400; background: #dfdfdf; color: #5f5f5f; box-shadow: 0px -17px 20px 20px #b4b4b4; } .messages { position: relative; z-index: 300; } .content { position: relative; z-index: 200; padding-top: 20px; background: #f2f2f2; box-shadow: 0px -17px 20px 20px #b4b4b4; } .footer { font-size: small; position: relative; z-index: 100; padding-top: 20px; padding-bottom: 20px; background: #dfdfdf; color: #777; } .controls ul, .brand-toolbar .links ul { list-style: none; margin: 0; padding: 0; color: white; } .brand-toolbar .controls ul { float: right; } .controls ul a, .brand-toolbar .links ul a { color: white; text-decoration: none; } .brand-toolbar .links ul li { display: block; float: left; padding-left: 1em; padding-right: 1em; } .controls ul li { display: block; float: left; margin-left: 2em; } .last-element { margin-bottom: 0; } .error-view { color: red; } .error-view .panel-default { border-color: red; } .error-view ul { margin: 0; } /* Bootstrap customization ****************************************************/ .panel-default { border-radius: 0; border-color: #777; box-shadow: 2px 2px 2px 0px #b4b4b4; } .panel-default > .panel-heading { background: #fff; border-color: #777; } .panel-default > .panel-heading > .btn-group { margin-top: -5px; margin-right: -5px; } .panel-default > .panel-body { background: #f2f2f2; } .btn { margin-bottom: 0; border-radius: 0; font-weight: bold; color: #777; } .btn-primary { border: none; border-radius: 0; box-shadow: 2px 2px 2px 0px #b4b4b4; color: #fff; } input.form-control, select.form-control, textarea.form-control { border-radius: 0; appearance: none; -moz-appearance: none; -webkit-appearance: none; } .form-group label { text-transform: uppercase; font-weight: 300; } .label { display: block; float: left; border-radius: 0; font-size: small; font-weight: 300; box-shadow: 2px 2px 2px 0px #b4b4b4; font-size: 14px; padding: 6px 12px 8px 12px; margin-right: 1em; } .label-default { background: #fff; color: #000; border: solid 1px #ccc; } .label-default a .glyphicon { color: #777; } .form-help { color: #999; } /* Bootstrap typeahead customization ******************************************/ .input-group .twitter-typeahead:first-child .tt-input, .input-group .twitter-typeahead:first-child .tt-hint { background: #fff; border-radius: 0; } .tt-dropdown-menu h3 { font-size: 1em; margin: 10px 20px 0; border-bottom: solid 1px #ccc; } /* Common MediaMeter styles ***************************************************/ .media-list-view a.remove { color: red; } .media-list-item-view .glyphicon { position: relative; top: 3px !important; } .query-controls div { text-align: right; } .query-controls label { visibility: hidden; } .query-views.two .query-controls button.copy { display: none; } .query-views.one .query-controls button.remove { display: none; } .query-views .tag-set-list-view-content .name { padding-top: 6px; font-weight: bold; } .query-views .query-title { margin-top: 0; } .query-views > div { /** border-bottom: solid 1px #ccc; margin-bottom: 20px; **/ } .keyword-view label { display: block; float: left; } .keyword-view .form-help { display: block; float: right; } .media-select-view span.explore, .simple-tag-select-view span.explore { float: right; } .disabled .label { background: #eee; color: #555; } .disabled .label a { display: none; } .disabled .add-tag-set { display: none; } .explore-list-view .modal-body { max-height: 500px; overflow-y: scroll; } .no-page .explore-list-view .alpha-links { display: none !important; } .explore-list-view .alpha-links { margin: 0; padding: 0; display: inline-block; list-style: none; } .explore-list-view .alpha-links li { display: inline-block; margin-right: 0.5em; } .explore-list-view h6 { font-size: 1em; margin: 0; } .explore-list-view .source-explore-view { margin-top: 10px; } .tag-set-explore-view p { margin-top: 10px; } .first-query, .first-query a { color: #e14c11; } .second-query, .second-query a { color: #249fc9; } /* Sub-Brand styles ***************************************************/ .dashboard-color { background-color: #e14c11; } .mentions-color { background-color: #005826; } .frequency-color { background-color: rgb(85,134,138); } /* Mockup changes */ .nav-tabs { background: #f2f2f2; border-bottom-color: #777; } .nav-tabs > li > a { border-radius: 0; } .nav-tabs > li > a { border-right: solid 1px #777; } .nav-tabs > li > a:hover { border-right: solid 1px #777; } .nav-tabs > li.active { border: none; border-right: solid 1px #777; } .nav-tabs > li.active:first-child { border-left: none; } .nav-tabs > li > a { margin-right: 0; } .nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover, .nav-tabs > li > a:hover { background: #f2f2f2; } .nav-tabs > li > a, .nav-tabs > li > a:hover { border-bottom-color: #777; } .query-views .form-group { margin-bottom: 6px; } .query-views .form-control, .query-views .input-group-addon { padding: 5px 5px; /* height: 21px; */ } .query-views button.btn { padding: 0 12px; height: 34px; } .query-views .label { /* padding: 2px 5px 1px 5px; */ } .simple-tag-list-view-content { overflow: hidden; padding-bottom: 4px; } .query-title { font-weight: bold; display: block; margin-bottom: 6px; font-size: 16px; color:#e14c11; } .query-title .glyphicon { color: #777777; } .query-title .glyphicon:hover { color:#e14c11; cursor: pointer; } li:first-child .query-title { color: #e14c11; } li:nth-child(2) .query-title { color: #249fc9; } li:nth-child(3) .query-title { color: #ffab26; } .nav > li > a.edit { display: inline; } /** Rahul's new hacked up CSS classes **/ div.query-phrase { font-size: 14px; font-style: italic; margin-bottom: 3px; } ul.query-media-list { list-style: none; margin: 0px; padding: 0px; } ul.query-media-list li { display:inline-block; margin: 5px 5px 0px 0px; padding: 5px; background-color: #ffffff; border-radius: .25em; border: 1px solid #bbbbbb; } div#query-list-wrapper { display: block; overflow: scroll; width: auto; overflow-x: scroll; vertical-align: top; white-space:nowrap; } div.query-wrapper { border-left: 1px solid #bbbbbb; padding: 0px 10px; display: inline-block; width: 380px; white-space:normal; vertical-align: top; overflow: visible; } div.query-wrapper .form-group { margin-bottom: 5px; } div.first-query-wrapper { border-left: 0px; } div.add-sources-content { margin-top: 5px; } #add-query-btn { font-weight: normal; } .query-remove { color:#777777; } .query-remove:hover { color:#000000; } a > small > span.glyphicon { color:#777777; margin-left: 2px; } a > small > span.glyphicon:hover { color:#000000; } .propagate-btn { display: inline-block; margin-left: 5px; font-size: 10px; color:#777777; } .propagate-btn:hover { color: #000000; cursor: pointer; }
0.420719
0.088702
.analytics-board-panel{ margin: 2px; } .analytics-board-panel-title{ align-items: center; } .analytics-board-panel-icon{ margin-right: 5px; font-size: 20px; height: 20px; width: 20px; } .analytics-board-content{ display: flex; flex-direction: column; overflow-y: auto; } .analytics-board-group{ flex:1; flex-wrap: wrap; display: flex; flex-direction: row; padding-top: 3px; } .analytics-board-card{ flex:1; width: 100%; margin: 3px; padding: 3px; } .analytics-board-card .mat-card-title{ font-size: 15px; margin-bottom: 5px; } .analytics-board-card-icon{ margin-right: 5px; font-size: 20px; height: 20px; width: 20px; } .analytics-board-card-title{ display: flex; align-items: center; padding: 3px 0 0 25px; } .analytics-board-compact{ width: 35px; } .analytics-board-compact .mat-card{ padding: 5px 5px 0 5px !important; border-radius: 0px; } .analytics-compact-card{ cursor: pointer; } .active-filter{ position: absolute; width: 18px; height: 18px; border-radius: 9px; right: -12px; top: 8px; } .active-filter-close{ display: none; padding: 2px 0px 0 2px; font-size: 14px; color: white; } ::ng-deep .mat-tab-label-active{ opacity: 1 !important; } .active-filter-tab{ position: absolute; width: 14px; height: 14px; border-radius: 9px; left: 10px; top: 8px; } .active-filter-group{ position: absolute; width: 14px; height: 14px; border-radius: 9px; left: 7px; } .active-filter-group-close{ padding: 1px 0 0 1px; } .active-filter-tab-close{ padding-top: 1px; } .active-filter-group-close, .active-filter-tab-close{ display: none; font-size: 12px; color: white; width: 14px; height: 14px; } .active-filter:hover .active-filter-close, .active-filter-tab:hover .active-filter-tab-close, .active-filter-group:hover .active-filter-group-close{ display: block; } .active-filter, .active-filter-group, .active-filter-tab{ background-color: #F44336; } .cdk-drag-preview { box-sizing: border-box; border-radius: 4px; box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); } .cdk-drag-placeholder { opacity: 0; } .cdk-drag-animating { transition: transform 250ms cubic-bezier(0, 0, 0.2, 1) !important; } .analytics-board-panel:hover .export-csv-button{ display: block }
src/app/components/analytics-board/analytics-board.component.css
.analytics-board-panel{ margin: 2px; } .analytics-board-panel-title{ align-items: center; } .analytics-board-panel-icon{ margin-right: 5px; font-size: 20px; height: 20px; width: 20px; } .analytics-board-content{ display: flex; flex-direction: column; overflow-y: auto; } .analytics-board-group{ flex:1; flex-wrap: wrap; display: flex; flex-direction: row; padding-top: 3px; } .analytics-board-card{ flex:1; width: 100%; margin: 3px; padding: 3px; } .analytics-board-card .mat-card-title{ font-size: 15px; margin-bottom: 5px; } .analytics-board-card-icon{ margin-right: 5px; font-size: 20px; height: 20px; width: 20px; } .analytics-board-card-title{ display: flex; align-items: center; padding: 3px 0 0 25px; } .analytics-board-compact{ width: 35px; } .analytics-board-compact .mat-card{ padding: 5px 5px 0 5px !important; border-radius: 0px; } .analytics-compact-card{ cursor: pointer; } .active-filter{ position: absolute; width: 18px; height: 18px; border-radius: 9px; right: -12px; top: 8px; } .active-filter-close{ display: none; padding: 2px 0px 0 2px; font-size: 14px; color: white; } ::ng-deep .mat-tab-label-active{ opacity: 1 !important; } .active-filter-tab{ position: absolute; width: 14px; height: 14px; border-radius: 9px; left: 10px; top: 8px; } .active-filter-group{ position: absolute; width: 14px; height: 14px; border-radius: 9px; left: 7px; } .active-filter-group-close{ padding: 1px 0 0 1px; } .active-filter-tab-close{ padding-top: 1px; } .active-filter-group-close, .active-filter-tab-close{ display: none; font-size: 12px; color: white; width: 14px; height: 14px; } .active-filter:hover .active-filter-close, .active-filter-tab:hover .active-filter-tab-close, .active-filter-group:hover .active-filter-group-close{ display: block; } .active-filter, .active-filter-group, .active-filter-tab{ background-color: #F44336; } .cdk-drag-preview { box-sizing: border-box; border-radius: 4px; box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); } .cdk-drag-placeholder { opacity: 0; } .cdk-drag-animating { transition: transform 250ms cubic-bezier(0, 0, 0.2, 1) !important; } .analytics-board-panel:hover .export-csv-button{ display: block }
0.543106
0.098642
meta.foundation-version { font-family: "/5.2.3/" } meta.foundation-mq-small { font-family: "/only screen/"; width: 0em } meta.foundation-mq-medium { font-family: "/only screen and (min-width:48em)/"; width: 48em } meta.foundation-mq-large { font-family: "/only screen and (min-width:70.5em)/"; width: 70.5em } meta.foundation-mq-xlarge { font-family: "/only screen and (min-width:90.063em)/"; width: 90.063em } meta.foundation-mq-xxlarge { font-family: "/only screen and (min-width:120.063em)/"; width: 120.063em } meta.foundation-data-attribute-namespace { font-family: false } html, body { height: 100% } *, *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box } html, body { font-size: 14px } body { background: #fff; color: #363636; padding: 0; margin: 0; font-family: "Open Sans", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: normal; font-style: normal; line-height: 150%; position: relative; cursor: default } a:hover { cursor: pointer } img { max-width: 100%; height: auto } img { -ms-interpolation-mode: bicubic } #map_canvas img, #map_canvas embed, #map_canvas object, .map_canvas img, .map_canvas embed, .map_canvas object { max-width: none !important } .left { float: left !important } .right { float: right !important } .clearfix:before, .clearfix:after { content: " "; display: table } .clearfix:after { clear: both } .hide { display: none } .site-banner button { margin-top: 10px; background: #F73E80; color: #fff; padding: 6px 16px; border-radius: 3px; margin-left: 10px; letter-spacing: 1px; transition: .2s ease-in-out; text-transform: uppercase; font-size: 12px; } .antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale } img { display: inline-block; vertical-align: middle } textarea { height: auto; min-height: 50px } select { width: 100% } .alert-box { border-style: solid; border-width: 2px; display: block; font-weight: normal; margin-bottom: 1.4285714286rem; position: relative; padding:.7142857143rem 1.8571428571rem .7142857143rem .7142857143rem; font-size:.9285714286rem; transition: opacity 300ms ease-out; background-color: #575757; border-color: #4b4b4b; color: #fff } .alert-box .close { font-size: 1.5714285714rem; padding: 9px 6px 4px; line-height: 0; position: absolute; top: 50%; margin-top:-.7857142857rem; right:.2857142857rem; color: #333; opacity: .3 } .alert-box .close:hover, .alert-box .close:focus { opacity: .5 } .alert-box.radius { border-radius: 2px } .alert-box.round { border-radius: 1000px } .alert-box.success { background-color: #f4faee; border-color: #d2eab9; color: #2e0523 } .alert-box.alert { background-color: #f04124; border-color: #de2d0f; color: #fff } .alert-box.secondary { background-color: #870f68; border-color: #740d59; color: #fff } .alert-box.warning { background-color: #fbf0f1; border-color: #edbabe; color: #2e0523 } .alert-box.info { background-color: #a0d3e8; border-color: #74bfdd; color: #2e0523 } .alert-box.alert-close { opacity: 0 } [class*="block-grid-"] { display:block; padding:0; margin:0 -.7142857143rem } [class*="block-grid-"]:before, [class*="block-grid-"]:after { content: " "; display: table } [class*="block-grid-"]:after { clear: both } [class*="block-grid-"]>li { display:block; height:auto; float:left; padding:0 .7142857143rem 1.4285714286rem } @media only screen { .small-block-grid-1>li { width: 100%; list-style: none } .small-block-grid-1>li:nth-of-type(1n) { clear: none } .small-block-grid-1>li:nth-of-type(1n+1) { clear: both } .small-block-grid-2>li { width: 50%; list-style: none } .small-block-grid-2>li:nth-of-type(1n) { clear: none } .small-block-grid-2>li:nth-of-type(2n+1) { clear: both } .small-block-grid-3>li { width: 33.3333333333%; list-style: none } .small-block-grid-3>li:nth-of-type(1n) { clear: none } .small-block-grid-3>li:nth-of-type(3n+1) { clear: both } .small-block-grid-4>li { width: 25%; list-style: none } .small-block-grid-4>li:nth-of-type(1n) { clear: none } .small-block-grid-4>li:nth-of-type(4n+1) { clear: both } .small-block-grid-5>li { width: 20%; list-style: none } .small-block-grid-5>li:nth-of-type(1n) { clear: none } .small-block-grid-5>li:nth-of-type(5n+1) { clear: both } .small-block-grid-6>li { width: 16.6666666667%; list-style: none } .small-block-grid-6>li:nth-of-type(1n) { clear: none } .small-block-grid-6>li:nth-of-type(6n+1) { clear: both } .small-block-grid-7>li { width: 14.2857142857%; list-style: none } .small-block-grid-7>li:nth-of-type(1n) { clear: none } .small-block-grid-7>li:nth-of-type(7n+1) { clear: both } .small-block-grid-8>li { width: 12.5%; list-style: none } .small-block-grid-8>li:nth-of-type(1n) { clear: none } .small-block-grid-8>li:nth-of-type(8n+1) { clear: both } .small-block-grid-9>li { width: 11.1111111111%; list-style: none } .small-block-grid-9>li:nth-of-type(1n) { clear: none } .small-block-grid-9>li:nth-of-type(9n+1) { clear: both } .small-block-grid-10>li { width: 10%; list-style: none } .small-block-grid-10>li:nth-of-type(1n) { clear: none } .small-block-grid-10>li:nth-of-type(10n+1) { clear: both } .small-block-grid-11>li { width: 9.0909090909%; list-style: none } .small-block-grid-11>li:nth-of-type(1n) { clear: none } .small-block-grid-11>li:nth-of-type(11n+1) { clear: both } .small-block-grid-12>li { width: 8.3333333333%; list-style: none } .small-block-grid-12>li:nth-of-type(1n) { clear: none } .small-block-grid-12>li:nth-of-type(12n+1) { clear: both } } @media only screen and (min-width: 48em) { .medium-block-grid-1>li { width: 100%; list-style: none } .medium-block-grid-1>li:nth-of-type(1n) { clear: none } .medium-block-grid-1>li:nth-of-type(1n+1) { clear: both } .medium-block-grid-2>li { width: 50%; list-style: none } .medium-block-grid-2>li:nth-of-type(1n) { clear: none } .medium-block-grid-2>li:nth-of-type(2n+1) { clear: both } .medium-block-grid-3>li { width: 33.3333333333%; list-style: none } .medium-block-grid-3>li:nth-of-type(1n) { clear: none } .medium-block-grid-3>li:nth-of-type(3n+1) { clear: both } .medium-block-grid-4>li { width: 25%; list-style: none } .medium-block-grid-4>li:nth-of-type(1n) { clear: none } .medium-block-grid-4>li:nth-of-type(4n+1) { clear: both } .medium-block-grid-5>li { width: 20%; list-style: none } .medium-block-grid-5>li:nth-of-type(1n) { clear: none } .medium-block-grid-5>li:nth-of-type(5n+1) { clear: both } .medium-block-grid-6>li { width: 16.6666666667%; list-style: none } .medium-block-grid-6>li:nth-of-type(1n) { clear: none } .medium-block-grid-6>li:nth-of-type(6n+1) { clear: both } .medium-block-grid-7>li { width: 14.2857142857%; list-style: none } .medium-block-grid-7>li:nth-of-type(1n) { clear: none } .medium-block-grid-7>li:nth-of-type(7n+1) { clear: both } .medium-block-grid-8>li { width: 12.5%; list-style: none } .medium-block-grid-8>li:nth-of-type(1n) { clear: none } .medium-block-grid-8>li:nth-of-type(8n+1) { clear: both } .medium-block-grid-9>li { width: 11.1111111111%; list-style: none } .medium-block-grid-9>li:nth-of-type(1n) { clear: none } .medium-block-grid-9>li:nth-of-type(9n+1) { clear: both } .medium-block-grid-10>li { width: 10%; list-style: none } .medium-block-grid-10>li:nth-of-type(1n) { clear: none } .medium-block-grid-10>li:nth-of-type(10n+1) { clear: both } .medium-block-grid-11>li { width: 9.0909090909%; list-style: none } .medium-block-grid-11>li:nth-of-type(1n) { clear: none } .medium-block-grid-11>li:nth-of-type(11n+1) { clear: both } .medium-block-grid-12>li { width: 8.3333333333%; list-style: none } .medium-block-grid-12>li:nth-of-type(1n) { clear: none } .medium-block-grid-12>li:nth-of-type(12n+1) { clear: both } } @media only screen and (min-width: 70.5em) { .large-block-grid-1>li { width: 100%; list-style: none } .large-block-grid-1>li:nth-of-type(1n) { clear: none } .large-block-grid-1>li:nth-of-type(1n+1) { clear: both } .large-block-grid-2>li { width: 50%; list-style: none } .large-block-grid-2>li:nth-of-type(1n) { clear: none } .large-block-grid-2>li:nth-of-type(2n+1) { clear: both } .large-block-grid-3>li { width: 33.3333333333%; list-style: none } .large-block-grid-3>li:nth-of-type(1n) { clear: none } .large-block-grid-3>li:nth-of-type(3n+1) { clear: both } .large-block-grid-4>li { width: 25%; list-style: none } .large-block-grid-4>li:nth-of-type(1n) { clear: none } .large-block-grid-4>li:nth-of-type(4n+1) { clear: both } .large-block-grid-5>li { width: 20%; list-style: none } .large-block-grid-5>li:nth-of-type(1n) { clear: none } .large-block-grid-5>li:nth-of-type(5n+1) { clear: both } .large-block-grid-6>li { width: 16.6666666667%; list-style: none } .large-block-grid-6>li:nth-of-type(1n) { clear: none } .large-block-grid-6>li:nth-of-type(6n+1) { clear: both } .large-block-grid-7>li { width: 14.2857142857%; list-style: none } .large-block-grid-7>li:nth-of-type(1n) { clear: none } .large-block-grid-7>li:nth-of-type(7n+1) { clear: both } .large-block-grid-8>li { width: 12.5%; list-style: none } .large-block-grid-8>li:nth-of-type(1n) { clear: none } .large-block-grid-8>li:nth-of-type(8n+1) { clear: both } .large-block-grid-9>li { width: 11.1111111111%; list-style: none } .large-block-grid-9>li:nth-of-type(1n) { clear: none } .large-block-grid-9>li:nth-of-type(9n+1) { clear: both } .large-block-grid-10>li { width: 10%; list-style: none } .large-block-grid-10>li:nth-of-type(1n) { clear: none } .large-block-grid-10>li:nth-of-type(10n+1) { clear: both } .large-block-grid-11>li { width: 9.0909090909%; list-style: none } .large-block-grid-11>li:nth-of-type(1n) { clear: none } .large-block-grid-11>li:nth-of-type(11n+1) { clear: both } .large-block-grid-12>li { width: 8.3333333333%; list-style: none } .large-block-grid-12>li:nth-of-type(1n) { clear: none } .large-block-grid-12>li:nth-of-type(12n+1) { clear: both } } button, .button { border-style: solid; border-width: 0px; cursor: pointer; font-family: "Open Sans", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: bold; line-height: normal; margin:0 0 .7142857143rem; position: relative; text-decoration: none; text-align: center; -webkit-appearance: none; -webkit-border-radius: 0; display: inline-block; padding-top:.6428571429rem; padding-right: 1.2857142857rem; padding-bottom:.7142857143rem; padding-left: 1.2857142857rem; font-size: 1rem; background-color: #575757; border-color: #4a4a4a; color: #fff; transition: background-color 300ms ease-out } button:hover, button:focus, .button:hover, .button:focus { background-color: #4a4a4a } button:hover, button:focus, .button:hover, .button:focus { color: #fff } button.secondary, .button.secondary { background-color: #27880F; border-color: #730d58; color: #fff } button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus { background-color: #237A0E } button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus { color: #fff } button.success, .button.success { background-color: #f4faee; border-color: #cfe9b5; color: #333 } button.success:hover, button.success:focus, .button.success:hover, .button.success:focus { background-color: #cfe9b5 } button.success:hover, button.success:focus, .button.success:hover, .button.success:focus { color: #333 } button.alert, .button.alert { background-color: #f04124; border-color: #dc2c0f; color: #fff } button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus { background-color: #dc2c0f } button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus { color: #fff } button.large, .button.large { padding-top: 1.2857142857rem; padding-right: 2.5714285714rem; padding-bottom: 1.3571428571rem; padding-left: 2.5714285714rem; font-size: 1.4285714286rem } button.small, .button.small { padding-top:.3571428571rem; padding-right:.7142857143rem; padding-bottom:.4285714286rem; padding-left:.7142857143rem; font-size:.9285714286rem } button.tiny, .button.tiny { padding-top:.2142857143rem; padding-right:.4285714286rem; padding-bottom:.2857142857rem; padding-left:.4285714286rem; font-size:.7857142857rem } button.expand, .button.expand { padding-right: 0; padding-left: 0; width: 100% } button.left-align, .button.left-align { text-align: left; text-indent:.8571428571rem } button.right-align, .button.right-align { text-align: right; padding-right:.8571428571rem } button.radius, .button.radius { border-radius: 2px } button.round, .button.round { border-radius: 1000px } button.disabled, button[disabled], .button.disabled, .button[disabled] { background-color: #575757; border-color: #4a4a4a; color: #fff; cursor: default; opacity: .7; box-shadow: none } button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus { background-color: #4a4a4a } button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus { color: #fff } button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus { background-color: #575757 } button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary { background-color: #870f68; border-color: #730d58; color: #fff; cursor: default; opacity: .7; box-shadow: none } button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus { background-color: #730d58 } button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus { color: #fff } button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus { background-color: #870f68 } button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success { background-color: #f4faee; border-color: #cfe9b5; color: #333; cursor: default; opacity: .7; box-shadow: none } button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus { background-color: #cfe9b5 } button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus { color: #333 } button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus { background-color: #f4faee } button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert { background-color: #f04124; border-color: #dc2c0f; color: #fff; cursor: default; opacity: .7; box-shadow: none } button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus { background-color: #dc2c0f } button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus { color: #fff } button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus { background-color: #f04124 } @media only screen and (min-width: 48em) { button, .button { display: inline-block } } .flex-video { position: relative; padding-top: 1.7857142857rem; padding-bottom: 67.5%; height: 0; margin-bottom: 1.1428571429rem; overflow: hidden } .flex-video.widescreen { padding-bottom: 56.34% } .flex-video.vimeo { padding-top: 0 } .flex-video iframe, .flex-video object, .flex-video embed, .flex-video video { position: absolute; top: 0; left: 0; width: 100%; height: 100% } form { margin: 0 0 1.1428571429rem } form .row .row { margin:0 -.5714285714rem } form .row .row .column, form .row .row .columns { padding:0 .5714285714rem } form .row .row.collapse { margin: 0 } form .row .row.collapse .column, form .row .row.collapse .columns { padding: 0 } form .row .row.collapse input { border-bottom-right-radius: 0; border-top-right-radius: 0 } form .row input.column, form .row input.columns, form .row textarea.column, form .row textarea.columns { padding-left:.5714285714rem } label { font-size:.9285714286rem; color: #4d4d4d; cursor: pointer; display: block; font-weight: bold; line-height: 1.5; margin-bottom: 5px } label.right { float: none !important; text-align: right } label.inline { margin: 0 0 1.1428571429rem 0; padding:.6428571429rem 0 } label small { text-transform: capitalize; color: #676767 } select::-ms-expand { display:none } @-moz-document url-prefix() { select { background:#fafafa } select:hover { background:#f3f3f3 } } .prefix, .postfix { display: block; position: relative; z-index: 2; text-align: center; width: 100%; padding-top: 0; padding-bottom: 0; border-style: solid; border-width: 1px; overflow: hidden; font-size:.9285714286rem; height: 2.6428571429rem; line-height: 2.6428571429rem } .postfix.button { padding-left: 0; padding-right: 0; padding-top: 0; padding-bottom: 0; text-align: center; line-height: 2.4285714286rem; border: none } .prefix.button { padding-left: 0; padding-right: 0; padding-top: 0; padding-bottom: 0; text-align: center; line-height: 2.4285714286rem; border: none } .prefix.button.radius { border-radius: 0; border-bottom-left-radius: 2px; border-top-left-radius: 2px } .postfix.button.radius { border-radius: 0; border-bottom-right-radius: 2px; border-top-right-radius: 2px } .prefix.button.round { border-radius: 0; border-bottom-left-radius: 1000px; border-top-left-radius: 1000px } .postfix.button.round { border-radius: 0; border-bottom-right-radius: 1000px; border-top-right-radius: 1000px } span.prefix, label.prefix { background: #f2f2f2; border-right: none; color: #333; border-color: #ccc } span.prefix.radius, label.prefix.radius { border-radius: 0; border-bottom-left-radius: 2px; border-top-left-radius: 2px } span.postfix, label.postfix { background: #f2f2f2; border-left: none; color: #333; border-color: #ccc } span.postfix.radius, label.postfix.radius { border-radius: 0; border-bottom-right-radius: 2px; border-top-right-radius: 2px } input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="week"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], textarea { -webkit-appearance: none; background-color: #fff; font-family: inherit; border: 1px solid #d8d8d8; box-shadow: none; color: rgba(0,0,0,0.75); display: block; font-size: 1rem; margin: 0 0 1.1428571429rem 0; padding:.5714285714rem; height: 2.6428571429rem; width: 100%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; transition: box-shadow .45s, border-color .45s ease-in-out } input[type="text"]:focus, input[type="password"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="time"]:focus, input[type="url"]:focus, textarea:focus { box-shadow: 0 0 5px none; border-color: none } input[type="text"]:focus, input[type="password"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="time"]:focus, input[type="url"]:focus, textarea:focus { background: #fefefe; border-color: none; outline: none } input[type="text"][disabled], fieldset[disabled] input[type="text"], input[type="password"][disabled], fieldset[disabled] input[type="password"], input[type="date"][disabled], fieldset[disabled] input[type="date"], input[type="datetime"][disabled], fieldset[disabled] input[type="datetime"], input[type="datetime-local"][disabled], fieldset[disabled] input[type="datetime-local"], input[type="month"][disabled], fieldset[disabled] input[type="month"], input[type="week"][disabled], fieldset[disabled] input[type="week"], input[type="email"][disabled], fieldset[disabled] input[type="email"], input[type="number"][disabled], fieldset[disabled] input[type="number"], input[type="search"][disabled], fieldset[disabled] input[type="search"], input[type="tel"][disabled], fieldset[disabled] input[type="tel"], input[type="time"][disabled], fieldset[disabled] input[type="time"], input[type="url"][disabled], fieldset[disabled] input[type="url"], textarea[disabled], fieldset[disabled] textarea { background-color: #ddd } input[type="text"].radius, input[type="password"].radius, input[type="date"].radius, input[type="datetime"].radius, input[type="datetime-local"].radius, input[type="month"].radius, input[type="week"].radius, input[type="email"].radius, input[type="number"].radius, input[type="search"].radius, input[type="tel"].radius, input[type="time"].radius, input[type="url"].radius, textarea.radius { border-radius: 2px } input[type="submit"] { -webkit-appearance: none } textarea[rows] { height: auto } select { -webkit-appearance: none !important; background-color: #fafafa; background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMHB4IiB5PSIwcHgiIHdpZ<KEY>ID<KEY>); background-repeat: no-repeat; background-position: 97% center; border: 1px solid #d8d8d8; padding:.5714285714rem; font-size: 1rem; color: rgba(0,0,0,0.75); line-height: normal; border-radius: 0; height: 2.6428571429rem } select.radius { border-radius: 2px } select:hover { background-color: #f3f3f3; border-color: none } input[type="file"], input[type="checkbox"], input[type="radio"], select { margin: 0 0 1.1428571429rem 0 } input[type="checkbox"]+label, input[type="radio"]+label { display: inline-block; margin-left:.5714285714rem; margin-right: 1.1428571429rem; margin-bottom: 0; vertical-align: baseline } input[type="file"] { width: 100% } fieldset { border: 1px solid #ddd; padding: 1.4285714286rem; margin: 1.2857142857rem 0 } fieldset legend { font-weight: bold; background: #fff; padding:0 .2142857143rem; margin: 0; margin-left:-.2142857143rem } [data-abide] .error small.error, [data-abide] span.error, [data-abide] small.error { display: block; padding:.4285714286rem .6428571429rem .6428571429rem; margin-top: -1px; margin-bottom: 1.1428571429rem; font-size:.8571428571rem; font-weight: normal; font-style: italic; background: #f04124; color: #fff } [data-abide] span.error, [data-abide] small.error { display: none } span.error, small.error { display: block; padding:.4285714286rem .6428571429rem .6428571429rem; margin-top: -1px; margin-bottom: 1.1428571429rem; font-size:.8571428571rem; font-weight: normal; font-style: italic; background: #f04124; color: #fff } .error input, .error textarea, .error select { margin-bottom: 0 } .error input[type="checkbox"], .error input[type="radio"] { margin-bottom: 1.1428571429rem } .error label, .error label.error { color: #f04124 } .error small.error { display: block; padding:.4285714286rem .6428571429rem .6428571429rem; margin-top: -1px; margin-bottom: 1.1428571429rem; font-size:.8571428571rem; font-weight: normal; font-style: italic; background: #f04124; color: #fff } .error>label>small { color: #676767; background: transparent; padding: 0; text-transform: capitalize; font-style: normal; font-size: 60%; margin: 0; display: inline } .error span.error-message { display: block } input.error, textarea.error { margin-bottom: 0 } label.error { color: #f04124 } .row { width: 100%; margin-left: auto; margin-right: auto; margin-top: 0; margin-bottom: 0; max-width: 85.7142857143rem } .row:before, .row:after { content: " "; display: table } .row:after { clear: both } .row.collapse>.column, .row.collapse>.columns { padding-left: 0; padding-right: 0 } .row.collapse .row { margin-left: 0; margin-right: 0 } .row .row { width: auto; margin-left: -1rem; margin-right: -1rem; margin-top: 0; margin-bottom: 0; max-width: none } .row .row:before, .row .row:after { content: " "; display: table } .row .row:after { clear: both } .row .row.collapse { width: auto; margin: 0; max-width: none } .row .row.collapse:before, .row .row.collapse:after { content: " "; display: table } .row .row.collapse:after { clear: both } .column, .columns { padding-left: 1rem; padding-right: 1rem; width: 100%; float: left } @media only screen { .small-push-0 { position: relative; left: 0%; right: auto } .small-pull-0 { position: relative; right: 0%; left: auto } .small-push-1 { position: relative; left: 8.3333333333%; right: auto } .small-pull-1 { position: relative; right: 8.3333333333%; left: auto } .small-push-2 { position: relative; left: 16.6666666667%; right: auto } .small-pull-2 { position: relative; right: 16.6666666667%; left: auto } .small-push-3 { position: relative; left: 25%; right: auto } .small-pull-3 { position: relative; right: 25%; left: auto } .small-push-4 { position: relative; left: 33.3333333333%; right: auto } .small-pull-4 { position: relative; right: 33.3333333333%; left: auto } .small-push-5 { position: relative; left: 41.6666666667%; right: auto } .small-pull-5 { position: relative; right: 41.6666666667%; left: auto } .small-push-6 { position: relative; left: 50%; right: auto } .small-pull-6 { position: relative; right: 50%; left: auto } .small-push-7 { position: relative; left: 58.3333333333%; right: auto } .small-pull-7 { position: relative; right: 58.3333333333%; left: auto } .small-push-8 { position: relative; left: 66.6666666667%; right: auto } .small-pull-8 { position: relative; right: 66.6666666667%; left: auto } .small-push-9 { position: relative; left: 75%; right: auto } .small-pull-9 { position: relative; right: 75%; left: auto } .small-push-10 { position: relative; left: 83.3333333333%; right: auto } .small-pull-10 { position: relative; right: 83.3333333333%; left: auto } .small-push-11 { position: relative; left: 91.6666666667%; right: auto } .small-pull-11 { position: relative; right: 91.6666666667%; left: auto } .column, .columns { position: relative; padding-left: 1rem; padding-right: 1rem; float: left } .small-1 { width: 8.3333333333% } .small-2 { width: 16.6666666667% } .small-3 { width: 25% } .small-4 { width: 33.3333333333% } .small-5 { width: 41.6666666667% } .small-6 { width: 50% } .small-7 { width: 58.3333333333% } .small-8 { width: 66.6666666667% } .small-9 { width: 75% } .small-10 { width: 83.3333333333% } .small-11 { width: 91.6666666667% } .small-12 { width: 100% } [class*="column"]+[class*="column"]:last-child { float:right } [class*="column"]+[class*="column"].end { float:left } .small-offset-0 { margin-left: 0% !important } .small-offset-1 { margin-left: 8.3333333333% !important } .small-offset-2 { margin-left: 16.6666666667% !important } .small-offset-3 { margin-left: 25% !important } .small-offset-4 { margin-left: 33.3333333333% !important } .small-offset-5 { margin-left: 41.6666666667% !important } .small-offset-6 { margin-left: 50% !important } .small-offset-7 { margin-left: 58.3333333333% !important } .small-offset-8 { margin-left: 66.6666666667% !important } .small-offset-9 { margin-left: 75% !important } .small-offset-10 { margin-left: 83.3333333333% !important } .small-offset-11 { margin-left: 91.6666666667% !important } .small-reset-order { margin-left: 0; margin-right: 0; left: auto; right: auto; float: left } .column.small-centered, .columns.small-centered { margin-left: auto; margin-right: auto; float: none !important } .column.small-uncentered, .columns.small-uncentered { margin-left: 0; margin-right: 0; float: left !important } .column.small-uncentered.opposite, .columns.small-uncentered.opposite { float: right } } @media only screen and (min-width: 48em) { .medium-push-0 { position: relative; left: 0%; right: auto } .medium-pull-0 { position: relative; right: 0%; left: auto } .medium-push-1 { position: relative; left: 8.3333333333%; right: auto } .medium-pull-1 { position: relative; right: 8.3333333333%; left: auto } .medium-push-2 { position: relative; left: 16.6666666667%; right: auto } .medium-pull-2 { position: relative; right: 16.6666666667%; left: auto } .medium-push-3 { position: relative; left: 25%; right: auto } .medium-pull-3 { position: relative; right: 25%; left: auto } .medium-push-4 { position: relative; left: 33.3333333333%; right: auto } .medium-pull-4 { position: relative; right: 33.3333333333%; left: auto } .medium-push-5 { position: relative; left: 41.6666666667%; right: auto } .medium-pull-5 { position: relative; right: 41.6666666667%; left: auto } .medium-push-6 { position: relative; left: 50%; right: auto } .medium-pull-6 { position: relative; right: 50%; left: auto } .medium-push-7 { position: relative; left: 58.3333333333%; right: auto } .medium-pull-7 { position: relative; right: 58.3333333333%; left: auto } .medium-push-8 { position: relative; left: 66.6666666667%; right: auto } .medium-pull-8 { position: relative; right: 66.6666666667%; left: auto } .medium-push-9 { position: relative; left: 75%; right: auto } .medium-pull-9 { position: relative; right: 75%; left: auto } .medium-push-10 { position: relative; left: 83.3333333333%; right: auto } .medium-pull-10 { position: relative; right: 83.3333333333%; left: auto } .medium-push-11 { position: relative; left: 91.6666666667%; right: auto } .medium-pull-11 { position: relative; right: 91.6666666667%; left: auto } .column, .columns { position: relative; padding-left: 1rem; padding-right: 1rem; float: left } .medium-1 { width: 8.3333333333% } .medium-2 { width: 16.6666666667% } .medium-3 { width: 25% } .medium-4 { width: 33.3333333333% } .medium-5 { width: 41.6666666667% } .medium-6 { width: 50% } .medium-7 { width: 58.3333333333% } .medium-8 { width: 66.6666666667% } .medium-9 { width: 75% } .medium-10 { width: 83.3333333333% } .medium-11 { width: 91.6666666667% } .medium-12 { width: 100% } [class*="column"]+[class*="column"]:last-child { float:right } [class*="column"]+[class*="column"].end { float:left } .medium-offset-0 { margin-left: 0% !important } .medium-offset-1 { margin-left: 8.3333333333% !important } .medium-offset-2 { margin-left: 16.6666666667% !important } .medium-offset-3 { margin-left: 25% !important } .medium-offset-4 { margin-left: 33.3333333333% !important } .medium-offset-5 { margin-left: 41.6666666667% !important } .medium-offset-6 { margin-left: 50% !important } .medium-offset-7 { margin-left: 58.3333333333% !important } .medium-offset-8 { margin-left: 66.6666666667% !important } .medium-offset-9 { margin-left: 75% !important } .medium-offset-10 { margin-left: 83.3333333333% !important } .medium-offset-11 { margin-left: 91.6666666667% !important } .medium-reset-order { margin-left: 0; margin-right: 0; left: auto; right: auto; float: left } .column.medium-centered, .columns.medium-centered { margin-left: auto; margin-right: auto; float: none !important } .column.medium-uncentered, .columns.medium-uncentered { margin-left: 0; margin-right: 0; float: left !important } .column.medium-uncentered.opposite, .columns.medium-uncentered.opposite { float: right } .push-0 { position: relative; left: 0%; right: auto } .pull-0 { position: relative; right: 0%; left: auto } .push-1 { position: relative; left: 8.3333333333%; right: auto } .pull-1 { position: relative; right: 8.3333333333%; left: auto } .push-2 { position: relative; left: 16.6666666667%; right: auto } .pull-2 { position: relative; right: 16.6666666667%; left: auto } .push-3 { position: relative; left: 25%; right: auto } .pull-3 { position: relative; right: 25%; left: auto } .push-4 { position: relative; left: 33.3333333333%; right: auto } .pull-4 { position: relative; right: 33.3333333333%; left: auto } .push-5 { position: relative; left: 41.6666666667%; right: auto } .pull-5 { position: relative; right: 41.6666666667%; left: auto } .push-6 { position: relative; left: 50%; right: auto } .pull-6 { position: relative; right: 50%; left: auto } .push-7 { position: relative; left: 58.3333333333%; right: auto } .pull-7 { position: relative; right: 58.3333333333%; left: auto } .push-8 { position: relative; left: 66.6666666667%; right: auto } .pull-8 { position: relative; right: 66.6666666667%; left: auto } .push-9 { position: relative; left: 75%; right: auto } .pull-9 { position: relative; right: 75%; left: auto } .push-10 { position: relative; left: 83.3333333333%; right: auto } .pull-10 { position: relative; right: 83.3333333333%; left: auto } .push-11 { position: relative; left: 91.6666666667%; right: auto } .pull-11 { position: relative; right: 91.6666666667%; left: auto } } @media only screen and (min-width: 70.5em) { .large-push-0 { position: relative; left: 0%; right: auto } .large-pull-0 { position: relative; right: 0%; left: auto } .large-push-1 { position: relative; left: 8.3333333333%; right: auto } .large-pull-1 { position: relative; right: 8.3333333333%; left: auto } .large-push-2 { position: relative; left: 16.6666666667%; right: auto } .large-pull-2 { position: relative; right: 16.6666666667%; left: auto } .large-push-3 { position: relative; left: 25%; right: auto } .large-pull-3 { position: relative; right: 25%; left: auto } .large-push-4 { position: relative; left: 33.3333333333%; right: auto } .large-pull-4 { position: relative; right: 33.3333333333%; left: auto } .large-push-5 { position: relative; left: 41.6666666667%; right: auto } .large-pull-5 { position: relative; right: 41.6666666667%; left: auto } .large-push-6 { position: relative; left: 50%; right: auto } .large-pull-6 { position: relative; right: 50%; left: auto } .large-push-7 { position: relative; left: 58.3333333333%; right: auto } .large-pull-7 { position: relative; right: 58.3333333333%; left: auto } .large-push-8 { position: relative; left: 66.6666666667%; right: auto } .large-pull-8 { position: relative; right: 66.6666666667%; left: auto } .large-push-9 { position: relative; left: 75%; right: auto } .large-pull-9 { position: relative; right: 75%; left: auto } .large-push-10 { position: relative; left: 83.3333333333%; right: auto } .large-pull-10 { position: relative; right: 83.3333333333%; left: auto } .large-push-11 { position: relative; left: 91.6666666667%; right: auto } .large-pull-11 { position: relative; right: 91.6666666667%; left: auto } .column, .columns { position: relative; padding-left: 1rem; padding-right: 1rem; float: left } .large-1 { width: 8.3333333333% } .large-2 { width: 16.6666666667% } .large-3 { width: 25% } .large-4 { width: 33.3333333333% } .large-5 { width: 41.6666666667% } .large-6 { width: 50% } .large-7 { width: 58.3333333333% } .large-8 { width: 66.6666666667% } .large-9 { width: 75% } .large-10 { width: 83.3333333333% } .large-11 { width: 91.6666666667% } .large-12 { width: 100% } [class*="column"]+[class*="column"]:last-child { float:right } [class*="column"]+[class*="column"].end { float:left } .large-offset-0 { margin-left: 0% !important } .large-offset-1 { margin-left: 8.3333333333% !important } .large-offset-2 { margin-left: 16.6666666667% !important } .large-offset-3 { margin-left: 25% !important } .large-offset-4 { margin-left: 33.3333333333% !important } .large-offset-5 { margin-left: 41.6666666667% !important } .large-offset-6 { margin-left: 50% !important } .large-offset-7 { margin-left: 58.3333333333% !important } .large-offset-8 { margin-left: 66.6666666667% !important } .large-offset-9 { margin-left: 75% !important } .large-offset-10 { margin-left: 83.3333333333% !important } .large-offset-11 { margin-left: 91.6666666667% !important } .large-reset-order { margin-left: 0; margin-right: 0; left: auto; right: auto; float: left } .column.large-centered, .columns.large-centered { margin-left: auto; margin-right: auto; float: none !important } .column.large-uncentered, .columns.large-uncentered { margin-left: 0; margin-right: 0; float: left !important } .column.large-uncentered.opposite, .columns.large-uncentered.opposite { float: right } .push-0 { position: relative; left: 0%; right: auto } .pull-0 { position: relative; right: 0%; left: auto } .push-1 { position: relative; left: 8.3333333333%; right: auto } .pull-1 { position: relative; right: 8.3333333333%; left: auto } .push-2 { position: relative; left: 16.6666666667%; right: auto } .pull-2 { position: relative; right: 16.6666666667%; left: auto } .push-3 { position: relative; left: 25%; right: auto } .pull-3 { position: relative; right: 25%; left: auto } .push-4 { position: relative; left: 33.3333333333%; right: auto } .pull-4 { position: relative; right: 33.3333333333%; left: auto } .push-5 { position: relative; left: 41.6666666667%; right: auto } .pull-5 { position: relative; right: 41.6666666667%; left: auto } .push-6 { position: relative; left: 50%; right: auto } .pull-6 { position: relative; right: 50%; left: auto } .push-7 { position: relative; left: 58.3333333333%; right: auto } .pull-7 { position: relative; right: 58.3333333333%; left: auto } .push-8 { position: relative; left: 66.6666666667%; right: auto } .pull-8 { position: relative; right: 66.6666666667%; left: auto } .push-9 { position: relative; left: 75%; right: auto } .pull-9 { position: relative; right: 75%; left: auto } .push-10 { position: relative; left: 83.3333333333%; right: auto } .pull-10 { position: relative; right: 83.3333333333%; left: auto } .push-11 { position: relative; left: 91.6666666667%; right: auto } .pull-11 { position: relative; right: 91.6666666667%; left: auto } } .inline-list { margin: 0 auto 1.2142857143rem auto; margin-left: -1.5714285714rem; margin-right: 0; padding: 0; list-style: none; overflow: hidden } .inline-list>li { list-style: none; float: left; margin-left: 1.5714285714rem; display: block } .inline-list>li>* { display: block } .reveal-modal-bg { position: fixed; height: 100%; width: 100%; background: #000; background: rgba(0,0,0,0.45); z-index: 99; display: none; top: 0; left: 0 } dialog, .reveal-modal { visibility: hidden; display: none; position: absolute; z-index: 100; width: 100vw; top: 0; left: 0; background-color: #fff; padding:.7142857143rem; border: solid 1px #666; box-shadow: 0 0 10px rgba(0,0,0,0.4) } @media only screen and (max-width: 48em) { dialog, .reveal-modal { min-height: 100vh } } @media only screen and (min-width: 48em) { dialog, .reveal-modal { left: 50% } } dialog .column, dialog .columns, .reveal-modal .column, .reveal-modal .columns { min-width: 0 } dialog>:first-child, .reveal-modal>:first-child { margin-top: 0 } dialog>:last-child, .reveal-modal>:last-child { margin-bottom: 0 } @media only screen and (min-width: 48em) { dialog, .reveal-modal { margin-left: -40%; width: 80% } } @media only screen and (min-width: 48em) { dialog, .reveal-modal { top: 7.1428571429rem } } dialog .close-reveal-modal, .reveal-modal .close-reveal-modal { font-size: 1.4285714286rem; line-height: 1; position: absolute; top:.5714285714rem; right:.7857142857rem; color: #aaa; font-weight: bold; cursor: pointer } dialog[open] { display: block; visibility: visible } @media only screen and (min-width: 48em) { dialog, .reveal-modal { padding: 1.0714285714rem } dialog.radius, .reveal-modal.radius { border-radius: 2px } dialog.round, .reveal-modal.round { border-radius: 1000px } dialog.collapse, .reveal-modal.collapse { padding: 0 } } @media only screen and (min-width: 48em) and (min-width: 48em) { dialog.tiny, .reveal-modal.tiny { margin-left: -15%; width: 30% } } @media only screen and (min-width: 48em) and (min-width: 48em) { dialog.small, .reveal-modal.small { margin-left: -20%; width: 40% } } @media only screen and (min-width: 48em) and (min-width: 48em) { dialog.medium, .reveal-modal.medium { margin-left: -30%; width: 60% } } @media only screen and (min-width: 48em) and (min-width: 48em) { dialog.large, .reveal-modal.large { margin-left: -35%; width: 70% } } @media only screen and (min-width: 48em) and (min-width: 48em) { dialog.xlarge, .reveal-modal.xlarge { margin-left: -47.5%; width: 95% } } @media only screen and (min-width: 48em) { dialog.full, .reveal-modal.full { top: 0; left: 0; height: 100vh; min-height: 100vh; margin-left: 0 !important } } @media only screen and (min-width: 48em) and (min-width: 48em) { dialog.full, .reveal-modal.full { margin-left: -50vw; width: 100vw } } @media print { dialog, .reveal-modal { background: #fff !important } } table { background: #fff; margin-bottom: 1.4285714286rem; border: solid 1px #ddd } table caption { background: transparent; color: #fefefe; font-size: 1.1428571429rem; font-weight: bold } table thead { background: #006699 } table thead tr th, table thead tr td { padding: 1.0714285714rem; font-size: 1.0714285714rem; font-weight: normal; color: #fefefe } table tfoot { background: #006699 } table tfoot tr th, table tfoot tr td { padding: 1.0714285714rem; font-size: 1.0714285714rem; font-weight: normal; color: #fefefe } table tr th, table tr td { padding:.6428571429rem .7142857143rem; font-size: 1rem; color: #222; text-align: left } table tr.even, table tr.alt, table tr:nth-of-type(even) { background: #f9f9f9 } table thead tr th, table tfoot tr th, table tfoot tr td, table tbody tr th, table tbody tr td, table tr td { display: table-cell; line-height: 1.2857142857rem } .text-left { text-align: left !important } .text-right { text-align: right !important } .text-center { text-align: center !important } .text-justify { text-align: justify !important } @media only screen and (max-width: 48em) { .small-only-text-left { text-align: left !important } .small-only-text-right { text-align: right !important } .small-only-text-center { text-align: center !important } .small-only-text-justify { text-align: justify !important } } @media only screen { .small-text-left { text-align: left !important } .small-text-right { text-align: right !important } .small-text-center { text-align: center !important } .small-text-justify { text-align: justify !important } } @media only screen and (min-width: 48em) and (max-width: 70.5em) { .medium-only-text-left { text-align: left !important } .medium-only-text-right { text-align: right !important } .medium-only-text-center { text-align: center !important } .medium-only-text-justify { text-align: justify !important } } @media only screen and (min-width: 48em) { .medium-text-left { text-align: left !important } .medium-text-right { text-align: right !important } .medium-text-center { text-align: center !important } .medium-text-justify { text-align: justify !important } } @media only screen and (min-width: 70.5em) and (max-width: 90em) { .large-only-text-left { text-align: left !important } .large-only-text-right { text-align: right !important } .large-only-text-center { text-align: center !important } .large-only-text-justify { text-align: justify !important } } @media only screen and (min-width: 70.5em) { .large-text-left { text-align: left !important } .large-text-right { text-align: right !important } .large-text-center { text-align: center !important } .large-text-justify { text-align: justify !important } } @media only screen and (min-width: 90.063em) and (max-width: 120em) { .xlarge-only-text-left { text-align: left !important } .xlarge-only-text-right { text-align: right !important } .xlarge-only-text-center { text-align: center !important } .xlarge-only-text-justify { text-align: justify !important } } @media only screen and (min-width: 90.063em) { .xlarge-text-left { text-align: left !important } .xlarge-text-right { text-align: right !important } .xlarge-text-center { text-align: center !important } .xlarge-text-justify { text-align: justify !important } } @media only screen and (min-width: 120.063em) and (max-width: 99999999em) { .xxlarge-only-text-left { text-align: left !important } .xxlarge-only-text-right { text-align: right !important } .xxlarge-only-text-center { text-align: center !important } .xxlarge-only-text-justify { text-align: justify !important } } @media only screen and (min-width: 120.063em) { .xxlarge-text-left { text-align: left !important } .xxlarge-text-right { text-align: right !important } .xxlarge-text-center { text-align: center !important } .xxlarge-text-justify { text-align: justify !important } } div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, th, td { margin: 0; padding: 0 } a { color: #363636; text-decoration: none; line-height: inherit } a:hover, a:focus { color: #2e2e2e } a img { border: none } p { font-family: inherit; font-weight: normal; font-size: 1rem; line-height: 1.5; margin-bottom: 1.4285714286rem; text-rendering: optimizeLegibility } p.lead { font-size: 1.25rem; line-height: 1.6 } p aside { font-size: 1rem; line-height: 1.35; font-style: italic } h1, h2, h3, h4, h5, h6 { font-family: "Open Sans", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: normal; font-style: normal; color: #222; text-rendering: optimizeLegibility; margin-top:.2rem; margin-bottom:.5rem; line-height: 1.4 } h1 small, h2 small, h3 small, h4 small, h5 small, h6 small { font-size: 60%; color: #6f6f6f; line-height: 0 } h1 { font-size: 2.4285714286rem } h2 { font-size: 1.9285714286rem } h3 { font-size: 1.5714285714rem } h4 { font-size: 1.2857142857rem } h5 { font-size: 1.2857142857rem } h6 { font-size: 1rem } .subheader { line-height: 1.4; color: #6f6f6f; font-weight: normal; margin-top:.2rem; margin-bottom:.5rem } hr { border: solid #ddd; border-width: 1px 0 0; clear: both; margin: 1.4285714286rem 0 1.3571428571rem; height: 0 } em, i { font-style: italic; line-height: inherit } strong, b { font-weight: bold; line-height: inherit } small { font-size: 60%; line-height: inherit } code { font-family: Consolas, "Liberation Mono", Courier, monospace; font-weight: bold; color: #bd260d } ul, ol, dl { font-size: 1rem; line-height: 1.5; margin-bottom: 1.4285714286rem; list-style-position: outside; font-family: inherit } ul { margin-left: 1.1rem } ul.no-bullet { margin-left: 0 } ul.no-bullet li ul, ul.no-bullet li ol { margin-left: 1.4285714286rem; margin-bottom: 0; list-style: none } ul li ul, ul li ol { margin-left: 1.4285714286rem; margin-bottom: 0 } ul.square li ul, ul.circle li ul, ul.disc li ul { list-style: inherit } ul.square { list-style-type: square; margin-left: 1.1rem } ul.circle { list-style-type: circle; margin-left: 1.1rem } ul.disc { list-style-type: disc; margin-left: 1.1rem } ul.no-bullet { list-style: none } ol { margin-left: 1.4rem } ol li ul, ol li ol { margin-left: 1.4285714286rem; margin-bottom: 0 } dl dt { margin-bottom:.3rem; font-weight: bold } dl dd { margin-bottom:.8571428571rem } abbr, acronym { text-transform: uppercase; font-size: 90%; color: #363636; border-bottom: 1px dotted #ddd; cursor: help } abbr { text-transform: none } blockquote { margin: 0 0 1.4285714286rem; padding:.6428571429rem 1.4285714286rem 0 1.3571428571rem; border-left: 1px solid #ddd } blockquote cite { display: block; font-size:.9285714286rem; color: #555 } blockquote cite:before { content: "\2014 \0020" } blockquote cite a, blockquote cite a:visited { color: #555 } blockquote, blockquote p { line-height: 1.5; color: #6f6f6f } .vcard { display: inline-block; margin: 0 0 1.4285714286rem 0; border: 1px solid #ddd; padding:.7142857143rem .8571428571rem } .vcard li { margin: 0; display: block } .vcard .fn { font-weight: bold; font-size: 1.0714285714rem } .vevent .summary { font-weight: bold } .vevent abbr { cursor: default; text-decoration: none; font-weight: bold; border: none; padding:0 .0714285714rem } @media only screen and (min-width: 48em) { h1, h2, h3, h4, h5, h6 { line-height: 1.4 } h1 { font-size: 3.1428571429rem } h2 { font-size: 2.6428571429rem } h3 { font-size: 1.9285714286rem } h4 { font-size: 1.6428571429rem } } .print-only { display: none !important } @media print { * { background: transparent !important; color: #000 !important; box-shadow: none !important; text-shadow: none !important } a, a:visited { text-decoration: underline } a[href]:after { content: " (" attr(href) ")" } abbr[title]:after { content: " (" attr(title) ")" } .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: "" } pre, blockquote { border: 1px solid #999; page-break-inside: avoid } thead { display: table-header-group } tr, img { page-break-inside: avoid } img { max-width: 100% !important } @page { margin:0.5cm } p, h2, h3 { orphans: 3; widows: 3 } h2, h3 { page-break-after: avoid } .hide-on-print { display: none !important } .print-only { display: block !important } .hide-for-print { display: none !important } .show-for-print { display: inherit !important } } .tabs { margin-bottom: 0 !important; margin-left: 0 } .tabs:before, .tabs:after { content: " "; display: table } .tabs:after { clear: both } .tabs dd, .tabs .tab-title { position: relative; margin-bottom: 0 !important; list-style: none; float: left } .tabs dd>a, .tabs .tab-title>a { display: block; background: #dcdcdc; color: #575757; padding:.5714285714rem 1.1428571429rem; font-family: "Open Sans", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-size:.9285714286rem } .tabs dd>a:hover, .tabs .tab-title>a:hover { background: #cfcfcf } .tabs dd.active a, .tabs .tab-title.active a { background: #870f68; color: #575757 } .tabs.radius dd:first-child a, .tabs.radius .tab:first-child a { border-bottom-left-radius: 2px; border-top-left-radius: 2px } .tabs.radius dd:last-child a, .tabs.radius .tab:last-child a { border-bottom-right-radius: 2px; border-top-right-radius: 2px } .tabs.vertical dd, .tabs.vertical .tab { position: inherit; float: none; display: block; top: auto } .tabs-content { margin-bottom: 1.7142857143rem; width: 100% } .tabs-content:before, .tabs-content:after { content: " "; display: table } .tabs-content:after { clear: both } .tabs-content>.content { display: none; float: left; padding: 1rem 0; width: 100% } .tabs-content>.content.active { display: block; float: none } .tabs-content>.content.contained { padding: 1rem } .tabs-content.vertical { display: block } .tabs-content.vertical>.content { padding: 0 1rem } @media only screen and (min-width: 48em) { .tabs.vertical { width: 20%; float: left; margin-bottom: 1.25rem } .tabs-content.vertical { width: 80%; float: left; margin-left: -1px } } .no-js .tabs-content>.content { display: block; float: none } .off-canvas-wrap { -webkit-backface-visibility: hidden; position: relative; width: 100%; overflow: hidden } .off-canvas-wrap.move-right, .off-canvas-wrap.move-left { min-height: 100%; -webkit-overflow-scrolling: touch } .inner-wrap { -webkit-backface-visibility: hidden; position: relative; width: 100%; -webkit-transition: -webkit-transform 500ms ease; -moz-transition: -moz-transform 500ms ease; -ms-transition: -ms-transform 500ms ease; -o-transition: -o-transform 500ms ease; transition: transform 500ms ease } .inner-wrap:before, .inner-wrap:after { content: " "; display: table } .inner-wrap:after { clear: both } .tab-bar { -webkit-backface-visibility: hidden; background: #333; color: #fff; height: 3.2142857143rem; line-height: 3.2142857143rem; position: relative } .tab-bar h1, .tab-bar h2, .tab-bar h3, .tab-bar h4, .tab-bar h5, .tab-bar h6 { color: #fff; font-weight: bold; line-height: 3.2142857143rem; margin: 0 } .tab-bar h1, .tab-bar h2, .tab-bar h3, .tab-bar h4 { font-size: 1.2857142857rem } .left-small { width: 3.2142857143rem; height: 3.2142857143rem; position: absolute; top: 0; border-right: solid 1px #1a1a1a; left: 0 } .right-small { width: 3.2142857143rem; height: 3.2142857143rem; position: absolute; top: 0; border-left: solid 1px #1a1a1a; right: 0 } .tab-bar-section { padding:0 .7142857143rem; position: absolute; text-align: center; height: 3.2142857143rem; top: 0 } @media only screen and (min-width: 48em) { .tab-bar-section { text-align: left } } .tab-bar-section.left { left: 0; right: 3.2142857143rem } .tab-bar-section.right { left: 3.2142857143rem; right: 0 } .tab-bar-section.middle { left: 3.2142857143rem; right: 3.2142857143rem } .tab-bar .menu-icon { text-indent: 2.5rem; width: 3.2142857143rem; height: 3.2142857143rem; display: block; line-height: 2.3571428571rem; padding: 0; color: #fff; position: relative; transform: translate3d(0, 0, 0) } .tab-bar .menu-icon span:after { content: ''; position: absolute; display: block; height: 0; top: 50%; margin-top:-.5714285714rem; left: 1.0357142857rem; box-shadow: 0 0px 0 1px #fff, 0 7px 0 1px #fff, 0 14px 0 1px #fff; width: 1.1428571429rem } .tab-bar .menu-icon span:hover:after { box-shadow: 0 0px 0 1px #b3b3b3, 0 7px 0 1px #b3b3b3, 0 14px 0 1px #b3b3b3 } .left-off-canvas-menu { -webkit-backface-visibility: hidden; width: 17.8571428571rem; top: 0; bottom: 0; position: absolute; overflow-y: auto; background: #333; z-index: 1001; box-sizing: content-box; transition: transform 500ms ease 0s; -webkit-overflow-scrolling: touch; -ms-transform: translate(-100%, 0); -webkit-transform: translate3d(-100%, 0, 0); -moz-transform: translate3d(-100%, 0, 0); -ms-transform: translate3d(-100%, 0, 0); -o-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); left: 0 } .left-off-canvas-menu * { -webkit-backface-visibility: hidden } .right-off-canvas-menu { -webkit-backface-visibility: hidden; width: 17.8571428571rem; top: 0; bottom: 0; position: absolute; overflow-y: auto; background: #333; z-index: 1001; box-sizing: content-box; transition: transform 500ms ease 0s; -webkit-overflow-scrolling: touch; -ms-transform: translate(100%, 0); -webkit-transform: translate3d(100%, 0, 0); -moz-transform: translate3d(100%, 0, 0); -ms-transform: translate3d(100%, 0, 0); -o-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); right: 0 } .right-off-canvas-menu * { -webkit-backface-visibility: hidden } ul.off-canvas-list { list-style-type: none; padding: 0; margin: 0 } ul.off-canvas-list li label { padding: 0.3rem 1.0714285714rem; color: #999; text-transform: uppercase; font-weight: bold; background: #444; border-top: 1px solid #5e5e5e; border-bottom: none; margin: 0 } ul.off-canvas-list li a { display: block; padding:.6666666667rem; color: rgba(255,255,255,0.7); border-bottom: 1px solid #262626; transition: background 300ms ease } ul.off-canvas-list li a:hover { background: #242424 } .move-right>.inner-wrap { -ms-transform: translate(17.8571428571rem, 0); -webkit-transform: translate3d(17.8571428571rem, 0, 0); -moz-transform: translate3d(17.8571428571rem, 0, 0); -ms-transform: translate3d(17.8571428571rem, 0, 0); -o-transform: translate3d(17.8571428571rem, 0, 0); transform: translate3d(17.8571428571rem, 0, 0) } .move-right .exit-off-canvas { -webkit-backface-visibility: hidden; transition: background 300ms ease; cursor: pointer; box-shadow: -4px 0 4px rgba(0,0,0,0.5), 4px 0 4px rgba(0,0,0,0.5); display: block; position: absolute; background: rgba(255,255,255,0.2); top: 0; bottom: 0; left: 0; right: 0; z-index: 1002; -webkit-tap-highlight-color: transparent } @media only screen and (min-width: 48em) { .move-right .exit-off-canvas:hover { background: rgba(255,255,255,0.05) } } .move-left>.inner-wrap { -ms-transform: translate(-17.8571428571rem, 0); -webkit-transform: translate3d(-17.8571428571rem, 0, 0); -moz-transform: translate3d(-17.8571428571rem, 0, 0); -ms-transform: translate3d(-17.8571428571rem, 0, 0); -o-transform: translate3d(-17.8571428571rem, 0, 0); transform: translate3d(-17.8571428571rem, 0, 0) } .move-left .exit-off-canvas { -webkit-backface-visibility: hidden; transition: background 300ms ease; cursor: pointer; box-shadow: -4px 0 4px rgba(0,0,0,0.5), 4px 0 4px rgba(0,0,0,0.5); display: block; position: absolute; background: rgba(255,255,255,0.2); top: 0; bottom: 0; left: 0; right: 0; z-index: 1002; -webkit-tap-highlight-color: transparent } @media only screen and (min-width: 48em) { .move-left .exit-off-canvas:hover { background: rgba(255,255,255,0.05) } } .offcanvas-overlap .left-off-canvas-menu, .offcanvas-overlap .right-off-canvas-menu { -ms-transform: none; -webkit-transform: none; -moz-transform: none; -o-transform: none; transform: none; z-index: 1003 } .offcanvas-overlap .exit-offcanvas-menu { -webkit-backface-visibility: hidden; transition: background 300ms ease; cursor: pointer; box-shadow: -4px 0 4px rgba(0,0,0,0.5), 4px 0 4px rgba(0,0,0,0.5); display: block; position: absolute; background: rgba(255,255,255,0.2); top: 0; bottom: 0; left: 0; right: 0; z-index: 1002; -webkit-tap-highlight-color: transparent; z-index: 1002 } @media only screen and (min-width: 48em) { .offcanvas-overlap .exit-offcanvas-menu:hover { background: rgba(255,255,255,0.05) } } .no-csstransforms .left-off-canvas-menu { left: -17.8571428571rem } .no-csstransforms .right-off-canvas-menu { right: -17.8571428571rem } .no-csstransforms .move-left>.inner-wrap { right: 17.8571428571rem } .no-csstransforms .move-right>.inner-wrap { left: 17.8571428571rem } @media only screen { .show-for-small-only, .show-for-small-up, .show-for-small, .show-for-small-down, .hide-for-medium-only, .hide-for-medium-up, .hide-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down { display: inherit !important } .hide-for-small-only, .hide-for-small-up, .hide-for-small, .hide-for-small-down, .show-for-medium-only, .show-for-medium-up, .show-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down { display: none !important } .visible-for-small-only, .visible-for-small-up, .visible-for-small, .visible-for-small-down, .hidden-for-medium-only, .hidden-for-medium-up, .hidden-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down { position: static !important; height: auto; width: auto; overflow: visible; clip: auto } .hidden-for-small-only, .hidden-for-small-up, .hidden-for-small, .hidden-for-small-down, .visible-for-medium-only, .visible-for-medium-up, .visible-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px) } table.show-for-small-only, table.show-for-small-up, table.show-for-small, table.show-for-small-down, table.hide-for-medium-only, table.hide-for-medium-up, table.hide-for-medium, table.show-for-medium-down, table.hide-for-large-only, table.hide-for-large-up, table.hide-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down { display: table } thead.show-for-small-only, thead.show-for-small-up, thead.show-for-small, thead.show-for-small-down, thead.hide-for-medium-only, thead.hide-for-medium-up, thead.hide-for-medium, thead.show-for-medium-down, thead.hide-for-large-only, thead.hide-for-large-up, thead.hide-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down { display: table-header-group !important } tbody.show-for-small-only, tbody.show-for-small-up, tbody.show-for-small, tbody.show-for-small-down, tbody.hide-for-medium-only, tbody.hide-for-medium-up, tbody.hide-for-medium, tbody.show-for-medium-down, tbody.hide-for-large-only, tbody.hide-for-large-up, tbody.hide-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down { display: table-row-group !important } tr.show-for-small-only, tr.show-for-small-up, tr.show-for-small, tr.show-for-small-down, tr.hide-for-medium-only, tr.hide-for-medium-up, tr.hide-for-medium, tr.show-for-medium-down, tr.hide-for-large-only, tr.hide-for-large-up, tr.hide-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down { display: table-row !important } th.show-for-small-only, td.show-for-small-only, th.show-for-small-up, td.show-for-small-up, th.show-for-small, td.show-for-small, th.show-for-small-down, td.show-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.hide-for-medium-up, td.hide-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.show-for-medium-down, td.show-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.hide-for-large-up, td.hide-for-large-up, th.hide-for-large, td.hide-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down { display: table-cell !important } } @media only screen and (min-width: 48em) { .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .show-for-medium-only, .show-for-medium-up, .show-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down { display: inherit !important } .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .hide-for-medium-only, .hide-for-medium-up, .hide-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down { display: none !important } .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .visible-for-medium-only, .visible-for-medium-up, .visible-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down { position: static !important; height: auto; width: auto; overflow: visible; clip: auto } .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .hidden-for-medium-only, .hidden-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px) } table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.show-for-medium-only, table.show-for-medium-up, table.show-for-medium, table.show-for-medium-down, table.hide-for-large-only, table.hide-for-large-up, table.hide-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down { display: table } thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.show-for-medium-only, thead.show-for-medium-up, thead.show-for-medium, thead.show-for-medium-down, thead.hide-for-large-only, thead.hide-for-large-up, thead.hide-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down { display: table-header-group !important } tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.show-for-medium-only, tbody.show-for-medium-up, tbody.show-for-medium, tbody.show-for-medium-down, tbody.hide-for-large-only, tbody.hide-for-large-up, tbody.hide-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down { display: table-row-group !important } tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.show-for-medium-only, tr.show-for-medium-up, tr.show-for-medium, tr.show-for-medium-down, tr.hide-for-large-only, tr.hide-for-large-up, tr.hide-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down { display: table-row !important } th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.show-for-medium-only, td.show-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.show-for-medium, td.show-for-medium, th.show-for-medium-down, td.show-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.hide-for-large-up, td.hide-for-large-up, th.hide-for-large, td.hide-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down { display: table-cell !important } } @media only screen and (min-width: 70.5em) { .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down { display: inherit !important } .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down { display: none !important } .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down { position: static !important; height: auto; width: auto; overflow: visible; clip: auto } .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px) } table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.show-for-large-only, table.show-for-large-up, table.show-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down { display: table } thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.show-for-large-only, thead.show-for-large-up, thead.show-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down { display: table-header-group !important } tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.show-for-large-only, tbody.show-for-large-up, tbody.show-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down { display: table-row-group !important } tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.show-for-large-only, tr.show-for-large-up, tr.show-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down { display: table-row !important } th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.show-for-large-only, td.show-for-large-only, th.show-for-large-up, td.show-for-large-up, th.show-for-large, td.show-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down { display: table-cell !important } } @media only screen and (min-width: 90.063em) { .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .hide-for-large-only, .show-for-large-up, .hide-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down { display: inherit !important } .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .show-for-large-only, .hide-for-large-up, .show-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down { display: none !important } .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .hidden-for-large-only, .visible-for-large-up, .hidden-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down { position: static !important; height: auto; width: auto; overflow: visible; clip: auto } .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .visible-for-large-only, .hidden-for-large-up, .visible-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px) } table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.hide-for-large-only, table.show-for-large-up, table.hide-for-large, table.hide-for-large-down, table.show-for-xlarge-only, table.show-for-xlarge-up, table.show-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down { display: table } thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.hide-for-large-only, thead.show-for-large-up, thead.hide-for-large, thead.hide-for-large-down, thead.show-for-xlarge-only, thead.show-for-xlarge-up, thead.show-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down { display: table-header-group !important } tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.hide-for-large-only, tbody.show-for-large-up, tbody.hide-for-large, tbody.hide-for-large-down, tbody.show-for-xlarge-only, tbody.show-for-xlarge-up, tbody.show-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down { display: table-row-group !important } tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.hide-for-large-only, tr.show-for-large-up, tr.hide-for-large, tr.hide-for-large-down, tr.show-for-xlarge-only, tr.show-for-xlarge-up, tr.show-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down { display: table-row !important } th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.show-for-large-up, td.show-for-large-up, th.hide-for-large, td.hide-for-large, th.hide-for-large-down, td.hide-for-large-down, th.show-for-xlarge-only, td.show-for-xlarge-only, th.show-for-xlarge-up, td.show-for-xlarge-up, th.show-for-xlarge, td.show-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down { display: table-cell !important } } @media only screen and (min-width: 120.063em) { .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .hide-for-large-only, .show-for-large-up, .hide-for-large, .hide-for-large-down, .hide-for-xlarge-only, .show-for-xlarge-up, .hide-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .show-for-xxlarge-down { display: inherit !important } .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .show-for-large-only, .hide-for-large-up, .show-for-large, .show-for-large-down, .show-for-xlarge-only, .hide-for-xlarge-up, .show-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .hide-for-xxlarge-down { display: none !important } .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .hidden-for-large-only, .visible-for-large-up, .hidden-for-large, .hidden-for-large-down, .hidden-for-xlarge-only, .visible-for-xlarge-up, .hidden-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .visible-for-xxlarge-down { position: static !important; height: auto; width: auto; overflow: visible; clip: auto } .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .visible-for-large-only, .hidden-for-large-up, .visible-for-large, .visible-for-large-down, .visible-for-xlarge-only, .hidden-for-xlarge-up, .visible-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .hidden-for-xxlarge-down { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px) } table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.hide-for-large-only, table.show-for-large-up, table.hide-for-large, table.hide-for-large-down, table.hide-for-xlarge-only, table.show-for-xlarge-up, table.hide-for-xlarge, table.hide-for-xlarge-down, table.show-for-xxlarge-only, table.show-for-xxlarge-up, table.show-for-xxlarge, table.show-for-xxlarge-down { display: table } thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.hide-for-large-only, thead.show-for-large-up, thead.hide-for-large, thead.hide-for-large-down, thead.hide-for-xlarge-only, thead.show-for-xlarge-up, thead.hide-for-xlarge, thead.hide-for-xlarge-down, thead.show-for-xxlarge-only, thead.show-for-xxlarge-up, thead.show-for-xxlarge, thead.show-for-xxlarge-down { display: table-header-group !important } tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.hide-for-large-only, tbody.show-for-large-up, tbody.hide-for-large, tbody.hide-for-large-down, tbody.hide-for-xlarge-only, tbody.show-for-xlarge-up, tbody.hide-for-xlarge, tbody.hide-for-xlarge-down, tbody.show-for-xxlarge-only, tbody.show-for-xxlarge-up, tbody.show-for-xxlarge, tbody.show-for-xxlarge-down { display: table-row-group !important } tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.hide-for-large-only, tr.show-for-large-up, tr.hide-for-large, tr.hide-for-large-down, tr.hide-for-xlarge-only, tr.show-for-xlarge-up, tr.hide-for-xlarge, tr.hide-for-xlarge-down, tr.show-for-xxlarge-only, tr.show-for-xxlarge-up, tr.show-for-xxlarge, tr.show-for-xxlarge-down { display: table-row !important } th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.show-for-large-up, td.show-for-large-up, th.hide-for-large, td.hide-for-large, th.hide-for-large-down, td.hide-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.show-for-xlarge-up, td.show-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.hide-for-xlarge-down, td.hide-for-xlarge-down, th.show-for-xxlarge-only, td.show-for-xxlarge-only, th.show-for-xxlarge-up, td.show-for-xxlarge-up, th.show-for-xxlarge, td.show-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down { display: table-cell !important } } .show-for-landscape, .hide-for-portrait { display: inherit !important } .hide-for-landscape, .show-for-portrait { display: none !important } table.hide-for-landscape, table.show-for-portrait { display: table } thead.hide-for-landscape, thead.show-for-portrait { display: table-header-group !important } tbody.hide-for-landscape, tbody.show-for-portrait { display: table-row-group !important } tr.hide-for-landscape, tr.show-for-portrait { display: table-row !important } td.hide-for-landscape, td.show-for-portrait, th.hide-for-landscape, th.show-for-portrait { display: table-cell !important } @media only screen and (orientation: landscape) { .show-for-landscape, .hide-for-portrait { display: inherit !important } .hide-for-landscape, .show-for-portrait { display: none !important } table.show-for-landscape, table.hide-for-portrait { display: table } thead.show-for-landscape, thead.hide-for-portrait { display: table-header-group !important } tbody.show-for-landscape, tbody.hide-for-portrait { display: table-row-group !important } tr.show-for-landscape, tr.hide-for-portrait { display: table-row !important } td.show-for-landscape, td.hide-for-portrait, th.show-for-landscape, th.hide-for-portrait { display: table-cell !important } } @media only screen and (orientation: portrait) { .show-for-portrait, .hide-for-landscape { display: inherit !important } .hide-for-portrait, .show-for-landscape { display: none !important } table.show-for-portrait, table.hide-for-landscape { display: table } thead.show-for-portrait, thead.hide-for-landscape { display: table-header-group !important } tbody.show-for-portrait, tbody.hide-for-landscape { display: table-row-group !important } tr.show-for-portrait, tr.hide-for-landscape { display: table-row !important } td.show-for-portrait, td.hide-for-landscape, th.show-for-portrait, th.hide-for-landscape { display: table-cell !important } } .show-for-touch { display: none !important } .hide-for-touch { display: inherit !important } .touch .show-for-touch { display: inherit !important } .touch .hide-for-touch { display: none !important } table.hide-for-touch { display: table } .touch table.show-for-touch { display: table } thead.hide-for-touch { display: table-header-group !important } .touch thead.show-for-touch { display: table-header-group !important } tbody.hide-for-touch { display: table-row-group !important } .touch tbody.show-for-touch { display: table-row-group !important } tr.hide-for-touch { display: table-row !important } .touch tr.show-for-touch { display: table-row !important } td.hide-for-touch { display: table-cell !important } .touch td.show-for-touch { display: table-cell !important } th.hide-for-touch { display: table-cell !important } .touch th.show-for-touch { display: table-cell !important } @media print { .show-for-print { display: block } .hide-for-print { display: none } table.show-for-print { display: table } thead.show-for-print { display: table-header-group !important } tbody.show-for-print { display: table-row-group !important } tr.show-for-print { display: table-row !important } td.show-for-print { display: table-cell !important } th.show-for-print { display: table-cell !important } } .btn { text-align: left; -webkit-box-shadow: inset 4px 4px 8px -5px rgba(50,50,50,0.5); -moz-box-shadow: inset 4px 4px 8px -5px rgba(50,50,50,0.5); box-shadow: inset 4px 4px 8px -5px rgba(50,50,50,0.5) } .btn.lt-grey { background-color: #f1f1f1; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; color: #717171; font-weight: normal; border: 1px solid #e5e5e5; transition: background ease .8s } .btn.lt-grey:hover { background-color: #eaeaea } .btn.grey { background-color: #d8d8d8; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; color: #717171; font-weight: normal; border: 1px solid #e5e5e5; transition: background ease .8s } .btn.grey:hover { background-color: #eaeaea } .btn.tertiary { background-color: #d2c73b } .btn.tertiary:hover, .btn.tertiary:focus { background-color: #bab02b } .btn.inline { width: auto; text-align: center } .btn.full { width: 100% } .btn.type-formations { padding: 13px 5px } .btn.secondary-lt { background-color: #29A617 } .btn.secondary-lt:hover, .btn.secondary-lt:focus { background-color: #269B15 } .btn.secondary-lt2 { background-color: #31CC2D } .btn.secondary-lt2:hover, .btn.secondary-lt2:focus { background-color: #2BAF27 } .btn.ajax { background: url("../images/ajax-btn.gif") no-repeat center center #870f68; text-indent: -99999em; width: 205px; outline: none } .type-formations { padding: 13px 5px } .icon-corner { display: none } .btn-doc { padding: 10px 0 10px 10px } .radio [type="radio"]:not(:checked), .radio [type="radio"]:checked { position: absolute; left: -9999px } .radio [type="radio"]:not(:checked)+label, .radio [type="radio"]:checked+label { position: relative; padding-left: 25px; cursor: pointer; margin-left: 0 } .radio [type="radio"]:not(:checked)+label:before, .radio [type="radio"]:checked+label:before { content: ''; position: absolute; left: 0; top: -1px; width: 20px; height: 20px; border: 2px solid #d8d8d8; border-radius: 50% } .radio [type="radio"]:not(:checked)+label:after, .radio [type="radio"]:checked+label:after { content: ''; position: absolute; top: 4px; left: 5px; width: 10px; height: 10px; border-radius: 50%; background-color: #870f68; transition: all .2s } .radio [type="radio"]:not(:checked)+label:after { opacity: 0; transform: scale(0) } .radio [type="radio"]:checked+label:after { opacity: 1; transform: scale(1) } .radio [type="radio"]:disabled:not(:checked)+label:before, .radio [type="radio"]:disabled:checked+label:before { box-shadow: none; border-color: #bbb; background-color: #ddd } .radio [type="radio"]:disabled:checked+label:after { color: #999 } .radio [type="radio"]:disabled+label { color: #aaa } .radio [type="radio"]:checked:focus+label:before, .radio [type="radio"]:not(:checked):focus+label:before { border: 2px solid #870f68 } .radio [type="radio"]:checked+label:before { border: 2px solid #870f68 } #echeance label { display: block; margin-bottom: 8px } .checkbox [type="checkbox"]:not(:checked), .checkbox [type="checkbox"]:checked { position: absolute; left: -9999px } .checkbox [type="checkbox"]:not(:checked)+label, .checkbox [type="checkbox"]:checked+label { position: relative; padding-left: 25px; cursor: pointer; margin: 0 } .checkbox [type="checkbox"]:not(:checked)+label:before, .checkbox [type="checkbox"]:checked+label:before { content: ''; position: absolute; left: 0; top: -1px; width: 20px; height: 20px; border: 2px solid #d8d8d8; border-radius: 2px } .checkbox [type="checkbox"]:not(:checked)+label:after, .checkbox [type="checkbox"]:checked+label:after { content: ''; position: absolute; top: -1px; left: 0px; width: 20px; height: 20px; background: url("../images/check-purple.png") no-repeat center center } .checkbox [type="checkbox"]:not(:checked)+label:after { opacity: 0; transform: scale(0) } .checkbox [type="checkbox"]:checked+label:after { opacity: 1; transform: scale(1) } .checkbox [type="checkbox"]:disabled:not(:checked)+label:before, .checkbox [type="checkbox"]:disabled:checked+label:before { box-shadow: none; border-color: #bbb; background-color: #ddd } .checkbox [type="checkbox"]:disabled:checked+label:after { color: #999 } .checkbox [type="checkbox"]:disabled+label { color: #aaa } @media screen and (min-width: 768px) { .icon-corner { display: inline-block } } .panel { padding:.7142857143rem; margin-bottom: 1.4285714286rem; background-color: #fefefe; display: block; position: relative; border-radius: 2px } .panel.panel-table { display: table } .panel.panel-table .container-image { display: table-cell; vertical-align: middle } .panel.border-grey { border: 1px solid #d8d8d8 } .panel.border-large { border: 4px solid #870f68 } .panel.border-small { border: 1px solid #870f68 } .panel.primary { background-color: #575757; color: #fefefe } .panel.secondary { background-color: #870f68; color: #fefefe } .panel.tertiary { background-color: #d2c73b; color: #fefefe } .panel:before, .panel:after { content: " "; display: table } .panel:after { clear: both } .panel.bdr-shad { box-shadow: 0px 0px 3px 0px rgba(119,119,119,0.75); -moz-box-shadow: 0px 0px 3px 0px rgba(119,119,119,0.75); -webkit-box-shadow: 0px 0px 3px 0px rgba(119,119,119,0.75) } .panel.bdr-left { position: relative } .panel.bdr-left:before { content: ''; height: 105%; width: 6px; background-color: #d2c73b; display: block; position: absolute; left: -1px; top: -1px } .panel.reset { padding: 0 } .panel.grey { background-color: #dcdcdc } .panel.lt-grey { background-color: #f1f1f1 } .panel.shadow { -webkit-box-shadow: inset 0px 4px 10px -5px rgba(50,50,50,0.5); -moz-box-shadow: inset 0px 4px 10px -5px rgba(50,50,50,0.5); box-shadow: inset 0px 4px 10px -5px rgba(50,50,50,0.5) } .panel-formations { padding: 15px 20px; margin-bottom: 1.4285714286rem } .panel-reference { width: 75px; height: 75px; margin: auto } .panel-form-doc label { color: #870f68 } .panel-pupil-month { padding: 1.0714285714rem } .panel-one-click { padding: 15px } .social { margin-top: 5px; padding-top: 20px; border-top: 1px solid #cbcbcb } .panel-zoom { padding: 5px 5px 34px 5px } .panel-zoom .btn { position: absolute; left: 0; bottom: 0; margin: 0; width: 100%; text-align: center } .panel-contact-us { text-align: left; padding: 20px 30px; display: inline-block } .panel-contact-us .icon-corner { display: block } .panel-contact-us .container-text { padding-left: 5px } .panel-contact-us a { cursor: default !important } .panel-icon { position: relative } .panel-icon .icon-corner { position: absolute; left: -15px; top: -5px } .panel-icon .title, .panel-icon .title_landing { padding-left: 5px } .panel-documentation { display: none } @media screen and (min-width: 1128px) { .panel-formations-box .title, .panel-formations-box .title_landing { margin-bottom: 20px } .panel-documentation { display: block } } @media screen and (min-width: 768px) { .panel { padding:.5714285714rem 1.1428571429rem } .panel.medium { padding: 20px } .panel-formations-box .content-box { padding: 5px 5px 0 10px } .social .form-actions.center { text-align: right } .panel-documentation .btn { margin-top: 25px } } @media screen and (min-width: 450px) { .panel-formations-box .content-box { padding: 10px 5px 0 10px } .panel-zoom { padding: 5px } .panel-zoom .btn { position: relative; left: auto; right: 0; bottom: 0; margin: 0; width: auto; text-align: center } } @media screen and (max-width: 449px) { .panel-formations-box .content-box { padding: 5px 0 0 } } .icon { vertical-align: middle; display: inline-block; margin-right: 5px; float: left } .icon.circle { width: 90px; height: 90px; border: 5px solid #fefefe; border-radius: 0%; background-color: rgba(200,200,200,0.5); overflow: hidden } .container-image.center { text-align: center } .ajax-loader { display: none } .icon-video { position: relative } .icon-video:before { content: ''; display: block; position: absolute; height: 100%; width: 100%; z-index: 10; background: url("../images/icones/icon-play.png") 55% 50% no-repeat } .text-icon { display: block } .text-icon.ml-small { margin-left: 20px } .text-icon.ml-medium { marigin-left: 30px } .text-icon.ml-large { margin-left: 35px } .text-icon.ml-xlarge { margin-left: 45px } @media screen and (max-width: 449px) { .icon.circle { float: none; margin-right: auto; margin-left: auto; display: block } } .list-icon { margin: 0; list-style: none } .list-icon li { margin-bottom: 5px } .bulleted-list.square { list-style-image: url("../images/icones/bullet-point-purple.jpg"); margin-left: 0; list-style-position: outside; margin-bottom: 0 } .bulleted-list.category { width: 30%; margin-right: 3%; display: inline-block; vertical-align: top } .bulleted-list.outside { list-style-position: outside; margin-left: 1rem } .bulleted-list li { margin-bottom: 10px } .bulleted-list li a:hover, .bulleted-list li .active { color: #870f68; text-decoration: underline } .actu-side-list { list-style: none; margin-left: 0 } .actu-side-list li { margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #a5a5a5 } .actu-side-list li:last-child { border-bottom: none } .actu-side-list li a { color: #fefefe } .post-content ul>li, .content ul>li { list-style-image: url("../images/icones/bullet-point-purple.jpg"); list-style-position: outside; margin: 4px 0 4px 10px } .list-side-navigation { list-style: none; margin-left: 0 } .list-side-navigation.square { list-style-image: url("../images/icones/bullet-point-purple.jpg"); list-style-position: outside; margin-left: 15px } .list-side-navigation li { padding: 2px; border-bottom: 1px solid #cbcbcb } .list-side-navigation li:last-child { border-bottom: 0 } .list-side-navigation li:hover, .list-side-navigation li.active { font-weight: bold; color: #575757; background-color: #e5e5e5 } .list-side-navigation li a { display: block; padding: 5px 0; min-width: 230px } .list-formations .icon { vertical-align: text-bottom } .list-formations li { margin-bottom: 10px } .list-formations li:last-child { margin-bottom: 0 } .list-formations li a { font-weight: bold } .list-formations li a:hover, .list-formations li a.active { color: #870f68; text-decoration: underline } .block-formations>li { padding-bottom: 0 } .list-actu { list-style: none; margin: 0 } .list-actu li { border-bottom: 1px solid #cbcbcb } .list-actu li:last-child { border: none } .list-one-click { list-style-type: square; margin-bottom: 0 } .list-one-click a { color: #fefefe } .ordered-list { font-weight: bold; color: #d2c73b; font-size: 1.1428571429rem } .ordered-list li { margin-bottom: 20px } .ordered-list .bulleted-list li { margin-bottom: 5px; font-size: 1rem } @media screen and (min-width: 768px) { .list-formations { display: inline-block; vertical-align: top } } .error-message { display: block; padding:.4285714286rem .6428571429rem .6428571429rem; margin-top: -1px; margin-bottom: 1.1428571429rem; font-size:.8571428571rem; font-weight: normal; font-style: italic; background: #EDBABE; color: #333; font-size:.7857142857rem; padding:.2857142857rem .5714285714rem; color: #cc3d3d } .form-actions.a-center { text-align: center } .form-actions.a-right { text-align: right } .input { margin-bottom: 20px } .input input, .input select { margin-bottom: 0; width: 100%; height: 30px; font-size:.9285714286rem } .input textarea { margin-bottom: 0 } .input.secondary>label { color: #870f68 } .input.secondary input, .input.secondary textarea, .input.secondary select { background-color: #f1f1f1 } label.inline { margin: 0; padding: 0 } .custom-select { padding: 0; background-position: 98% center; border: 1px solid #d8d8d8 } .custom-select:hover { background-color: #fefefe } .custom-select:focus { outline: none } @media screen and (max-width: 767px) { .radio input+label { margin-bottom: 10px } } .obligatory label:first-of-type:after { content: ' (Champs obligatoire)'; font-weight: normal; font-size:.8571428571rem; color: #989898; font-style: italic } @media screen and (min-width: 768px) { label.inline { padding-top:.3571428571rem } } .link:hover { color: #870f68; text-decoration: underline } .link.secondary { color: #CC0000 } .link.tertiary { color: #d2c73b } .link.underline { text-decoration: underline } .link.lt-grey { color: #7d7d7d } .link.grey { color: #717171 } .link.dk-grey { color: #646464 } .link.xsmall { font-size:.8571428571rem } .link.pdf:after { content: ''; display: inline-block; width: 16px; height: 16px; vertical-align: middle; background: inline-image("front/icones/icon-pdf.html") no-repeat center center; margin-left: 6px } .link.default { cursor: default } .select2 { width: 100% } .select2-container { margin: 0; position: relative; display: inline-block; zoom: 1; *display:inline; vertical-align: middle; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box } .select2-drop { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box } .select2-search { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box } .select2-search input { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box } .select2-container .select2-choice { border: 1px solid #d8d8d8; display: block; height: 30px; padding: 0 0 0 8px; overflow: hidden; position: relative; white-space: nowrap; line-height: 30px; color: #444; text-decoration: none; border-radius: 2px; background-clip: padding-box; -webkit-touch-callout: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-color: #fff } .select2-container.select2-drop-above .select2-choice { border-bottom-color: #aaa; border-radius: 0 0 2px 2px } .select2-container.select2-allowclear .select2-choice .select2-chosen { margin-right: 42px } .select2-container .select2-choice>.select2-chosen { margin-right: 26px; display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; float: none; width: auto } .select2-container .select2-choice abbr { display: none; width: 12px; height: 12px; position: absolute; right: 24px; top: 8px; font-size:.0714285714rem; text-decoration: none; border: 0; background: url("../bower_components/select2/select2.png") right top no-repeat; cursor: pointer; outline: 0 } .select2-container.select2-allowclear .select2-choice abbr { display: inline-block } .select2-container .select2-choice abbr:hover { background-position: right -11px; cursor: pointer } .select2-drop-mask { border: 0; margin: 0; padding: 0; position: fixed; left: 0; top: 0; min-height: 100%; min-width: 100%; height: auto; width: auto; opacity: 0; z-index: 9998; background-color: #fff; filter: alpha(opacity=0) } .select2-drop { width: 100%; margin-top: -1px; position: absolute; z-index: 9999; top: 100%; background: #fff; color: #000; border-top: 0; border-radius: 0 0 2px 2px; -webkit-box-shadow: 0 4px 5px rgba(0,0,0,0.15); box-shadow: 0 4px 5px rgba(0,0,0,0.15) } .select2-drop.select2-drop-above { margin-top: 1px; border-bottom: 0; border-radius: 2px 2px 0 0; -webkit-box-shadow: 0 -4px 5px rgba(0,0,0,0.15); box-shadow: 0 -4px 5px rgba(0,0,0,0.15) } .select2-drop-active { border-top: none } .select2-drop-auto-width { width: auto } .select2-drop-auto-width .select2-search { padding-top: 4px } .select2-container .select2-choice .select2-arrow { display: inline-block; width: 20px; height: 100%; position: absolute; right: 0; top: 0; border-radius: 0 2px 2px 0; background-clip: padding-box; background: #870f68 } .select2-container .select2-choice .select2-arrow b { display: block; width: 100%; height: 100%; background: url("../images/icones/icon-arrow-down.png") no-repeat center center } .select2-search { display: inline-block; width: 100%; min-height: 26px; margin: 0; padding-left: 4px; padding-right: 4px; position: relative; z-index: 10000; white-space: nowrap } .select2-search input { width: 100%; height: auto !important; min-height: 26px; padding: 4px 20px 4px 5px; margin: 0; outline: 0; font-family: sans-serif; font-size:.0714285714rem; border-radius: 0; -webkit-box-shadow: none; box-shadow: none; background: #fff url("bower_components/select2/select2.html") no-repeat 100% -22px; background: url("bower_components/select2/select2.html") no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee)); background: url("bower_components/select2/select2.html") no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%); background: url("bower_components/select2/select2.html") no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%); background: url("bower_components/select2/select2.html") no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0 } .select2-drop.select2-drop-above .select2-search input { margin-top: 4px } .select2-search input.select2-active { background: #fff inline-image("../bower_components/select2/select2-spinner.html") no-repeat 100%; background: inline-image("../bower_components/select2/select2-spinner.html") no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee)); background: inline-image("../bower_components/select2/select2-spinner.html") no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%); background: inline-image("../bower_components/select2/select2-spinner.html") no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%); background: inline-image("../bower_components/select2/select2-spinner.html") no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0 } .select2-container-active .select2-choice, .select2-container-active .select2-choices { outline: none; -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.3); box-shadow: 0 0 5px rgba(0,0,0,0.3) } .select2-dropdown-open .select2-choice { border-bottom-color: transparent; -webkit-box-shadow: 0 1px 0 #fff inset; box-shadow: 0 1px 0 #fff inset; border-bottom-left-radius: 0; border-bottom-right-radius: 0 } .select2-dropdown-open.select2-drop-above .select2-choice, .select2-dropdown-open.select2-drop-above .select2-choices { border-top-color: transparent } .select2-dropdown-open .select2-choice .select2-arrow { background: #870f68; border-left: none; filter: none } .select2-dropdown-open .select2-choice .select2-arrow b { background: url("../images/icones/icon-arrow-up.png") no-repeat center center } .select2-hidden-accessible { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px } .select2-results { max-height: 200px; padding: 0 0 0 4px; margin: 4px 4px 4px 0; position: relative; overflow-x: hidden; overflow-y: auto; -webkit-tap-highlight-color: transparent } .select2-results ul.select2-result-sub { margin: 0; padding-left: 0 } .select2-results ul.select2-result-sub>li .select2-result-label { padding-left: 20px } .select2-results ul.select2-result-sub ul.select2-result-sub>li .select2-result-label { padding-left: 40px } .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub>li .select2-result-label { padding-left: 60px } .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub>li .select2-result-label { padding-left: 80px } .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub>li .select2-result-label { padding-left: 100px } .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub>li .select2-result-label { padding-left: 110px } .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub>li .select2-result-label { padding-left: 120px } .select2-results li { list-style: none; display: list-item; background-image: none } .select2-results li.select2-result-with-children>.select2-result-label { font-weight: bold } .select2-results .select2-result-label { padding: 3px 7px 4px; margin: 0; cursor: pointer; min-height: 1em; -webkit-touch-callout: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none } .select2-results .select2-highlighted { background: #3875d7; color: #fff } .select2-results li em { background: #feffde; font-style: normal } .select2-results .select2-highlighted em { background: transparent } .select2-results .select2-highlighted ul { background: #fff; color: #000 } .select2-results .select2-no-results, .select2-results .select2-searching, .select2-results .select2-selection-limit { background: #f4f4f4; display: list-item; padding-left: 5px } .select2-results .select2-disabled { background: #f4f4f4; display: list-item; cursor: default } .select2-results .select2-disabled.select2-highlighted { color: #666; background: #f4f4f4; display: list-item; cursor: default } .select2-results .select2-selected { display: none } .select2-more-results { background: #f4f4f4; display: list-item } .select2-more-results.select2-active { background: #f4f4f4 inline-image("../bower_components/select2/select2-spinner.html") no-repeat 100% } .select2-container.select2-container-disabled .select2-choice { background-color: #f4f4f4; background-image: none; border: 1px solid #ddd; cursor: default } .select2-container.select2-container-disabled .select2-choice .select2-arrow { background-color: #f4f4f4; background-image: none; border-left: 0 } .select2-container.select2-container-disabled .select2-choice abbr { display: none } .select2-container-multi .select2-choices { height: auto !important; height: 1%; margin: 0; padding: 0; position: relative; border: 1px solid #aaa; cursor: text; overflow: hidden; background-color: #fff } .select2-locked { padding: 3px 5px 3px 5px !important } .select2-container-multi .select2-choices { min-height: 26px } .select2-container-multi.select2-container-active .select2-choices { border: 1px solid #5897fb; outline: none; -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.3); box-shadow: 0 0 5px rgba(0,0,0,0.3) } .select2-container-multi .select2-choices li { float: left; list-style: none } html[dir="rtl"] .select2-container-multi .select2-choices li { float: right } .select2-container-multi .select2-choices .select2-search-field { margin: 0; padding: 0; white-space: nowrap } .select2-container-multi .select2-choices .select2-search-field input { padding: 5px; margin: 1px 0; font-family: sans-serif; font-size: 100%; color: #666; outline: 0; border: 0; -webkit-box-shadow: none; box-shadow: none; background: transparent !important } .select2-container-multi .select2-choices .select2-search-field input.select2-active { background: #fff inline-image("../bower_components/select2/select2-spinner.html") no-repeat 100% !important } .select2-default { color: #999 !important } .select2-container-multi .select2-choices .select2-search-choice { padding: 3px 5px 3px 18px; margin: 3px 0 3px 5px; position: relative; line-height:.9285714286rem; color: #333; cursor: default; border: 1px solid #aaaaaa; border-radius: 3px; -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0,0,0,0.05); box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0,0,0,0.05); background-clip: padding-box; -webkit-touch-callout: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-color: #e4e4e4 } html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice { margin-left: 0; margin-right: 5px } .select2-container-multi .select2-choices .select2-search-choice .select2-chosen { cursor: default } .select2-container-multi .select2-choices .select2-search-choice-focus { background: #d4d4d4 } .select2-search-choice-close { display: block; width: 12px; height: 13px; position: absolute; right: 3px; top: 4px; font-size:.0714285714rem; outline: none; background: inline-image("../bower_components/select2/select2.html") right top no-repeat } html[dir="rtl"] .select2-search-choice-close { right: auto; left: 3px } .select2-container-multi .select2-search-choice-close { left: 3px } .select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover, .select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close { background-position: right -11px } .select2-container-multi.select2-container-disabled .select2-choices { background-color: #f4f4f4; background-image: none; border: 1px solid #ddd; cursor: default } .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice { padding: 3px 5px 3px 5px; border: 1px solid #ddd; background-image: none; background-color: #f4f4f4 } .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close { display: none; background: none } .select2-result-selectable .select2-match, .select2-result-unselectable .select2-match { text-decoration: underline } .select2-offscreen { clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; border: 0 !important; margin: 0 !important; padding: 0 !important; overflow: hidden !important; position: absolute !important; outline: 0 !important; left: 0px !important; top: 0px !important } .select2-offscreen:focus { clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; border: 0 !important; margin: 0 !important; padding: 0 !important; overflow: hidden !important; position: absolute !important; outline: 0 !important; left: 0px !important; top: 0px !important } .select2-display-none { display: none } .select2-measure-scrollbar { position: absolute; top: -10000px; left: -10000px; width: 100px; height: 100px; overflow: scroll } @media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx) { .select2-search input, .select2-search-choice-close { background-image:url("../../images/icones/icon-arrow-up.png") !important; background-repeat:no-repeat !important } .select2-container .select2-choice abbr, .select2-container .select2-choice .select2-arrow b { background-image:url("../../images/icones/icon-arrow-down.png") !important; background-repeat:no-repeat !important } .select2-search input { background-position:100% -21px !important } } @media screen and (min-width: 768px) { .select2-container .select2-choice .select2-arrow { width: 32px } } .home-slider-wrapper .home-banner { width: 100%; float: left } .partners-slider-wrapper img { float: left } .testimonies-slider-wrapper .testimony-slide { float: left } .slider-navigation { width: 32px; height: 32px; display: block; border-radius: 50%; background: #575757 no-repeat center center; color: #fefefe; position: absolute; top: 33% } .prev-navigation { left: 10px; background-image: url("../images/icones/prev.png") } .next-navigation { right: 10px; background-image: url("../imamges/icones/next.png") } .slider-testimony { width: 19px; height: 37px; display: block; position: absolute; top: 33%; background: no-repeat center center } .prev-testimony { left: 10px; background-image: url("../images/icones/testimony-arrow-left.png") } .next-testimony { right: 10px; background-image: url("../images/icones/testimony-arrow-right.png") } .tabs dd { font-weight: bold; float: none } .tabs dd a { border-radius: 2px 2px 0 0; -webkit-box-shadow: inset 0px 4px 8px -5px rgba(50,50,50,0.5); -moz-box-shadow: inset 0px 4px 8px -5px rgba(50,50,50,0.5); box-shadow: inset 0px 4px 8px -5px rgba(50,50,50,0.5) } .tabs dd.active a { color: #fefefe } .tabs-content { border-top: 2px solid #870f68; border-bottom: 2px solid #870f68 } @media screen and (min-width: 768px) { .tabs dd { float: left; margin-right: 6px; text-align: center } .tabs dd:last-child { margin-right: 0 } .tabs dd a { padding:0 .3571428571rem; font-size:.8571428571rem; width: 6.7857142857rem; height: 2.5714285714rem; vertical-align: middle; display: table-cell } .new_formation .tabs dd a { font-size: 1.1428571429rem; width: auto; height: auto; padding: 9px 20px; text-decoration: none } } .close-reveal-modal { z-index: 100 } .closed { display: inline-block; background-color: #1f1f1f; color: #fff; font-weight: bold; position: absolute; width: 26px; height: 26px; border-radius: 50%; right: -10px; top: -10px; text-align: center; font-size: 1.1428571429rem; line-height: 1.8571428571rem } .closed:hover { color: #fff } .reveal-modal { min-height: auto } ul.pagination { padding: 15px } ul.pagination .current { background-color: #870f68 } ul.pagination .arrow { background-color: #870f68; box-shadow: inset 0 2px 4px rgba(0,0,0,0.05) } ul.pagination li { background-color: #575757; display: inline-block; text-align: center; min-width: 26px; min-height: 26px; font-size: 14px; color: #fefefe; font-weight: bold; margin-left: 2px; line-height: 2rem } ul.pagination li a { transition: all ease .8s; display: block; height: 100%; padding: 0; color: #fefefe; font-size: 14px; font-weight: bold; border-radius: 0; line-height: 2rem } ul.pagination .disabled { display: none } .wrap-twitter-button, .wrap-facebook-button, .wrap-google-button { margin-top: 20px; text-align: center } .twitter-share-button, .fb-share-button { vertical-align: bottom !important } .wrap-google-button>div { vertical-align: bottom !important } .twitter-share-button { width: 100px !important } .share-label { font-weight: bold; padding-right: 20px; display: block } @media screen and (min-width: 460px) { .share-label { display: inline-block } .wrap-twitter-button, .wrap-facebook-button, .wrap-google-button { margin-top: 0; display: inline-block } .wrap-facebook-button, .wrap-google-button { margin-right: 10px } } .reveal-modal .alert-ajax { display: none } .reveal-modal .loader { position: fixed; padding: 20px; top: 20px; left: 42%; display: none } .hl-secondary { font-weight: bold; color: #870f68 } .hl-tertiary { font-weight: bold; color: #d2c73b } .mb-xsmall { margin-bottom: 5px } .mb0 { margin-bottom: 0 } .mb-small { margin-bottom: 10px } .mb-medium { margin-bottom: 15px } .mb-large { margin-bottom: 20px } .mb-xlarge { margin-bottom: 25px } .mb-xxlarge { margin-bottom: 30px } .mt-xsmall { margin-top: 5px } .mt-small { margin-top: 10px } .mt-medium { margin-top: 15px } .mt-large { margin-top: 20px } .mt-xlarge { margin-top: 25px } .mt-xxlarge { margin-top: 30px } .ml-xsmall { margin-left: 5px } .ml-small { margin-left: 10px } .ml-medium { margin-left: 15px } .ml-large { margin-left: 20px } .ml-xlarge { margin-left: 25px } .ml-xxlarge { margin-left: 30px } .ml-xsmall { margin-left: 5px } .mr-small { margin-right: 10px } .mr-medium { margin-right: 15px } .mr-large { margin-right: 20px } .mr-xlarge { margin-right: 25px } .mr-xxlarge { margin-right: 30px } .p0 { padding: 0 } .p3 { padding:.2142857143rem } .p5 { padding:.3571428571rem } .p10 { padding:.7142857143rem } .p15 { padding: 1.0714285714rem } .p20 { padding: 1.4285714286rem } .title.primary, .primary.title_landing, .text.primary { color: #575757 } .title.secondary, .secondary.title_landing, .text.secondary { color: #870f68 } .title.tertiary, .tertiary.title_landing, .text.tertiary { color: #d2c73b } .title.grey, .grey.title_landing, .text.grey { color: #dcdcdc } .title.dk-grey, .dk-grey.title_landing, .text.dk-grey { color: #8a8a8a } .title.lt-grey, .lt-grey.title_landing, .text.lt-grey { color: #e5e5e5 } .title.lt-secondary, .lt-secondary.title_landing, .text.lt-secondary { color: #b01488 } .title, .title_landing { display: block; font-weight: bold } .title .number, .title_landing .number { display: inline-block; width: 25px; height: 25px; text-align: center; vertical-align: middle; line-height: 1.8571428571rem } .title .number.secondary, .title_landing .number.secondary { background-color: #870f68; color: #fefefe } .title.xxsmall, .xxsmall.title_landing { font-size:.8571428571rem } .title.xsmall, .xsmall.title_landing { font-size: 1rem } .title.small, .small.title_landing { font-size: 1.0714285714rem } .title.medium, .medium.title_landing { font-size: 1.2142857143rem } .title.large, .large.title_landing { font-size: 1.2857142857rem } .title.xlarge, .xlarge.title_landing { font-size: 1.4285714286rem } .title.xxlarge, .xxlarge.title_landing { font-size: 1.7857142857rem } .title.line, .line.title_landing { border-bottom: 1px solid #870f68; padding-bottom: 2px } .title.line-tertiary, .line-tertiary.title_landing { border-bottom: 1px solid #d2c73b; padding-bottom: 2px } .line-grey { border-bottom: 1px solid #cbcbcb; padding-bottom: 10px; margin-bottom: 10px } .subtitle { font-style: italic; color: #959595; padding-left: 5px; border-left: 2px solid #d2c73b; font-size: 1.2857142857rem } .t-center { text-align: center } .text { font-weight: normal } .text.primary { color: #575757 } .text.xxsmall { font-size:.8571428571rem } .text.xsmall { font-size: 1rem } .text.small { font-size: 1.0714285714rem } .text.medium { font-size: 1.2142857143rem } .text.large { font-size: 1.3571428571rem } .text.xlarge { font-size: 1.4285714286rem } .upper { text-transform: uppercase } .italic { font-style: italic } .bold { font-weight: bold } @media screen and (max-width: 767px) { .title .link, .title_landing .link { display: inline-block; margin-top: 10px } } @font-face { font-family: 'Oswald'; src: url("../fonts/oswald-regular.eot"); src: url("../fonts/oswald-regulard41d.eot?#iefix") format("embedded-opentype"), url("../fonts/oswald-regular.woff") format("woff"), url("../fonts/oswald-regular.html") format("truetype"), url("../fonts/oswald-regular.svg#oswaldbook") format("svg"); font-weight: normal; font-style: normal } .wrap-header { border-top: 4px solid #575757 } .row.row-header { padding: 0 0 10px } @media only screen and (min-width: 70.5em) { .row.row-header { display: flex; justify-content: space-between; align-items: center } } .fede-wrap { display: flex } .fede { line-height: 1.2; font-size:.8571428571rem; color: #006699; display: inline-block; margin: 10px 0 0 10px; padding:.2857142857rem; width: 100% } .logo_fede { float: left; margin:0 .3571428571rem 0 0 } .bloc_home { width: 310px } .logo { max-width: 185px; margin: 10px 5px } @media only screen and (min-width: 48em) { .logo { max-width: 100%; margin: 0 } } .signature { display: none } @media only screen and (min-width: 70.5em) { .signature { display: inline-block; margin-right: auto } } .tagline { display: none } @media only screen and (min-width: 70.5em) { .tagline { display: inline-block; text-transform: uppercase; color: #006699; margin-top: 20px; line-height: 1.35; font-size: 1.1em; } } .no-flexbox .bloc_home { display: inline-block; vertical-align: middle } .topbar { text-align: right; margin-bottom: 20px } .topbar .topbar-link { padding: 12px; display: inline-block; vertical-align: top; background-color: #575757; color: #fefefe } .topbar .topbar-link:not(:first-child) { margin-left: 2px } .topbar .topbar-link img { margin-right: 0 } .topbar .topbar-link.pupil:hover span, .topbar .topbar-link.pupil:focus span { text-decoration: underline } .topbar .topbar-link span { display: none } .icon-phone { display: none } @media screen and (min-width: 768px) and (max-width: 1127px) { .topbar { float: right } } @media screen and (min-width: 1128px) { .icon { display: inline-block } .icon-phone-white { display: none } .topbar { display: none } .topbar .topbar-link { padding: 5px 10px } .topbar .topbar-link span { display: inline-block } .topbar .topbar-link.phone { background-color: transparent; color: #575757; cursor: default } } .breadcrumbs { margin: 10px 0; font-size:.8571428571rem } .breadcrumbs a { font-size:.8571428571rem } .breadcrumbs a:last-child { font-weight: bold; color: #870f68 } .wrap-footer { background-color: #006699; padding: 20px 0; color: #fefefe } .wrap-footer a { color: #fefefe; text-decoration: underline } .block-footer .title, .block-footer .title_landing { margin-bottom: 20px } .cnfdi-list-class { margin: 0 auto 1.2142857143rem auto; margin-left: -1.5714285714rem; margin-right: 0; padding: 0; list-style: none; overflow: hidden; margin: 0; text-align: left; font-size:.8571428571rem } .cnfdi-list-class>li { list-style: none; float: left; margin-left: 1.5714285714rem; display: block } .cnfdi-list-class>li>* { display: block } .cnfdi-list-class li { margin: 0 8px 3px 0 } .social_title { margin-bottom: 15px } .list-social { width: 100%; margin-bottom: 30px } @media only screen and (min-width: 70.5em) { .list-social { width: 60% } } .list-social li { width: 15%; margin-bottom: 20px; display: inline-block; text-align: center } @media only screen and (min-width: 70.5em) { .list-social li { width: 30% } } .social-sprite { display: inline-block; padding-left: 32px; height: 32px; padding-top: 4px } .social-sprite.facebook { background: url("../images/icones/social/facebook2.png") no-repeat 0 0 } .social-sprite.twitter { background: url("../images/icones/social/twitter2.png") no-repeat 0 0 } .social-sprite.gplus { background: url("../images/icones/social/gplus2.png") no-repeat 0 0 } .social-sprite.viadeo { background: url("../images/icones/social/viadeo2.png") no-repeat 0 0 } .social-sprite.linkedin { background: url("../images/icones/social/linkedin2.png") no-repeat 0 0 } .social-sprite.pinterest { background: url("../images/icones/social/pinterest2.png") no-repeat 0 0 } @media screen and (min-width: 450px) and (max-width: 767px) { .block-footer { display: block; padding: 0; margin:0 -.7142857143rem } .block-footer:before, .block-footer:after { content: " "; display: table } .block-footer:after { clear: both } .block-footer>li { display: block; height: auto; float: left; padding:0 .7142857143rem 1.4285714286rem } .block-footer>li { width: 50%; padding:0 .7142857143rem 1.4285714286rem; list-style: none } .block-footer>li:nth-of-type(1n) { clear: none } .block-footer>li:nth-of-type(2n+1) { clear: both } } .doc_footer { background: url("../images/icones/doc_footer.png") no-repeat center; width: 294px; height: 92px; display: inline-block; margin-top: 20px } .fede_footer_body, .controlle_etat_body { margin: 30px 0; font-size:.7857142857rem; line-height: 1.2 } .fede_footer_body img, .controlle_etat_body img { float: left; margin-top: -10px; margin-right: 10px } .wrap-legals { background-color: #1b2832; color: #fefefe; padding: 10px 0; text-align: center } .wrap-legals a { color: #fefefe } .navigation { display: none } @media screen and (min-width: 1128px) { .navigation_wrapper { background-color: #006699 } .navigation { display: flex; justify-content: space-between; list-style: none; margin: 0 auto; text-align: center; max-width: 85.7142857143rem } .no-flexbox .navigation { display: block; text-align: center } .navigation .navigation-item { display: inline-block; text-align: center; position: relative } .navigation .navigation-item:hover .container-sub-navigation { display: block } .navigation .navigation-item:hover .navigation-link, .navigation .navigation-item .navigation-link.active { color: #FFFFFF; background-color: #CC0000 } .navigation .navigation-item:last-child { border-right: none } .navigation .navigation-item .navigation-link, .navigation .navigation-item>span { padding: 10px 22px; font-size: 1.1428571429rem; color: #edebe6; display: block; text-transform: uppercase } .no-flexbox .navigation .navigation-item { float: left } .no-flexbox .navigation .navigation-item:last-child { float: none } .navigation .container-sub-navigation { position: absolute; top: 100%; left: 0; background-color: #fefefe; border: 2px solid #CC0000; display: none; text-align: left; box-shadow: 0px 1px 2px rgba(0,0,0,0.2); z-index: 99 } .navigation .sub-navigation { display: inline-block; vertical-align: top; list-style: url("../images/icones/bullet-point-purple.jpg") inside; margin: 0; min-width: 290px; padding: 10px } .navigation .sub-navigation .sub-navigation-item { width: 265px; list-style-position: outside; margin-left: 10px } .navigation .sub-navigation .sub-navigation-item .sub-navigation-link { padding: 6px; text-align: left; display: block } .navigation .sub-navigation .sub-navigation-item .sub-navigation-link:hover { background-color: #e5e5e5 } } .addDoc { position: relative; width: 217px; height: 38px; display: inline-block } .addDoc:after { content: ''; position: absolute; bottom: -18px; left: 0; background: url("../images/demande-doc.png"); height: 97px; width: 217px; display: block; z-index: 999 } .row-top { display: flex; justify-content: center } @media only screen and (min-width: 48em) { .row-top { justify-content: flex-end } } @media only screen and (min-width: 70.5em) { .row-top { position: absolute; left: 0; right: 0 } .no-flexbox .row-top { text-align: right } } .row-top .row-top_item { margin: 0 5px } .row-top .row-top_item:last-child { margin-right: 0 } .no-flexbox .row-top .row-top_item { display: inline-block } .row-top .item_phone { display: none } @media only screen and (min-width: 48em) { .row-top .item_phone { font-size: 1.1428571429rem; display: block; margin-top: 4px } } .row-top .item_phone .header-phone { font-weight: bold } .row-top .item_student { border-radius: 0 0 5px 5px; background-color: #870f68 } .row-top .item_subscribe { color: #fefefe; background-color: #006699; border-radius: 0 0 5px 5px } .row-top a { color: #fefefe; padding: 5px 15px; display: inline-block } .right-off-canvas-toggle { color: #870f68; font-size: 1.0714285714rem; font-weight: bold; display: inline-block; vertical-align: middle; margin-top: 20px; text-align: right } .right-off-canvas-toggle div { display: inline-block; vertical-align: middle; margin-left: 5px } .right-off-canvas-toggle div span { display: block; width: 30px; height: 4px; margin-bottom: 3px; background-color: #870f68 } .off-canvas-list label:after { content: '+'; color: #fefefe; padding: 5px; display: inline-block; font-size: 15px } .off-canvas-list label.open:after { content: "-" } .off-canvas-list .container-link { display: none } @media screen and (min-width: 1128px) { .left-off-canvas-toggle { display: none } } @media screen and (max-width: 767px) { .column, .columns { padding:0 .7142857143rem } .row { max-width: 480px } } @media screen and (min-width: 768px) and (max-width: 1127px) { .row { max-width: 768px } } ul.off-canvas-list li span { display: block; padding: 0.66667rem; color: rgba(255,255,255,0.7); border-bottom: 1px solid #262626; transition: background 300ms ease } .pointer { cursor: pointer } .slide_bg { background-color: #f5f3f2; margin-bottom: 30px } .no-flexbox .slide_bg { margin: 0 auto 20px; width: 85.7142857143rem; text-align: center } .block-type-formations>li, .block-premium-formations>li { padding-bottom: 0 } .home-contact { margin-top: 40px } #partners-slider img { margin: 5px } #pager { position: absolute; bottom: 10px; z-index: 9999; right: 20px } #pager a span { display: inline-block; width: 15px; height: 15px; background-color: #575757; border-radius: 25px; text-indent: -999999em; margin-right: 10px } #pager a.selected span { background-color: #870f68 } @media screen and (max-width: 767px) { .home-banner-img { position: relative; overflow: hidden; float: left } .home-banner .content { padding: 0 } .home-banner .content .title, .home-banner .content .title_landing { position: relative; text-align: center } .home-banner .content .title div, .home-banner .content .title_landing div { margin-top: 20px; background-color: #575757; font-family: 'Oswald', sans-serif; font-weight: normal; padding: 10px 5px; margin-bottom: 10px; font-size: 1.2857142857rem } .home-banner .content .title div a, .home-banner .content .title_landing div a { color: #FFF } .home-banner .content .text { margin-bottom: 10px; padding: 10px; font-size: 1rem } .home-banner .content .text div { position: relative; z-index: 10 } .home-banner .content .form-actions .btn { position: relative; z-index: 10 } .block-type-formations .text-icon.ml-large, .block-type-formations .text-icon.ml-xlarge { margin-left: 40px; line-height: 1 } } @media screen and (min-width: 768px) { .block-type-formations li { width: 33.333%; float: left; clear: none !important } .block-type-formations .text-icon.ml-large, .block-type-formations .text-icon.ml-xlarge { margin-left: 5px; line-height: 1.4 } .home-banner-img { position: relative; overflow: hidden } .home-banner-img img { width: 100% } .home-banner { position: relative; overflow: hidden } .home-banner:before { content: ''; position: absolute; top: 0; height: 100%; width: 81px; right: 220px; -webkit-transform: skew(10deg); -moz-transform: skew(10deg); -o-transform: skew(10deg); transform: skew(10deg); z-index: 1; background-color: #d2c73b } .home-banner .content { position: absolute; top: 0; right: 0; width: 270px; height: 100%; padding-right: 0 } .home-banner .content .title, .home-banner .content .title_landing { position: relative; font-size: 2.4285714286rem; text-align: left; line-height: 3rem } .home-banner .content .title div, .home-banner .content .title_landing div { margin-top: 20px; background-color: #575757; font-family: 'Oswald', sans-serif; font-weight: normal; padding: 10px; margin-bottom: 10px; position: relative; z-index: 10; margin-left: -30px } .home-banner .content .title div a, .home-banner .content .title_landing div a { color: #FFF } .home-banner .content .title:before, .home-banner .content .title_landing:before { content: ''; position: absolute; top: 0; height: 100%; width: 150px; left: -77px; -webkit-transform: skew(10deg); -moz-transform: skew(10deg); -o-transform: skew(10deg); transform: skew(10deg); z-index: 3; background-color: #575757 } .home-banner .content .title:after, .home-banner .content .title_landing:after { content: ''; position: absolute; bottom: -6px; height: 13px; width: 13px; left: -61px; -webkit-transform: skew(41deg) rotate(124deg); -moz-transform: skew(41deg) rotate(124deg); -o-transform: skew(41deg) rotate(124deg); transform: skew(41deg) rotate(124deg); z-index: 2; background-color: #242424 } .home-banner .content .text { margin-bottom: 10px; padding: 10px; font-size: 1.2857142857rem; line-height: 1.3 } .home-banner .content .text div { position: relative; z-index: 10 } .home-banner .content .form-actions .btn { position: relative; z-index: 10 } } .wrapper_home { width: 100%; max-width: 34.2857142857rem; margin: 0 auto; display: flex; flex-direction: column; overflow: hidden } @media only screen and (min-width: 48em) { .wrapper_home { max-width: 54.8571428571rem } } @media only screen and (min-width: 70.5em) { .wrapper_home { max-width: 85.7142857143rem; flex-direction: row; max-height: 382px } } .slide_content { width: 100%; position: relative } @media only screen and (min-width: 70.5em) { .slide_content { max-width: 870px } .no-flexbox .slide_content { display: inline-block } } .bloc-search { display: flex; flex-direction: column; justify-content: space-around; background-color: #edebe6; width: 100% } @media only screen and (min-width: 70.5em) { .bloc-search { max-width: 330px } .bloc-search.side { margin-bottom: 20px } .no-flexbox .bloc-search { display: inline-block; max-width: 325px; vertical-align: top } } .search { padding: 15px 15px 10px } @media only screen and (min-width: 48em) { .search { padding: 15px 25px 10px } } .search .search-item { display: block } .search .search-action { border-style: solid; border-width: 0px; cursor: pointer; font-family: "Open Sans", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: bold; line-height: normal; margin:0 0 .7142857143rem; position: relative; text-decoration: none; text-align: center; -webkit-appearance: none; -webkit-border-radius: 0; display: inline-block; padding-top:.8571428571rem; padding-right: 1.7142857143rem; padding-bottom:.9285714286rem; padding-left: 1.7142857143rem; background-color: #006699; border-color: #273c4a; color: #fff; width: 100%; border-radius: 4px; margin-top: 10px } .search .search-action:hover, .search .search-action:focus { background-color: #273c4a } .search .search-action:hover, .search .search-action:focus { color: #fff } .search .search-title { font-size: 1.2857142857rem; color: #006699; line-height: 1.3; margin-bottom: 7px } .search .search-title .search-title_big { font-size: 1.5714285714rem; text-transform: uppercase; display: block } .search .search-or { text-align: center; margin: 4px auto; font-size: 1.2857142857rem } .search input, .search select { margin-bottom: 5px; padding: 5px } .search-contact { background-color: #ffdb00; display: flex; flex-direction: row; justify-content: center; padding: 15px; color: #006699 } @media only screen and (min-width: 70.5em) { .search-contact { justify-content: flex-start; padding: 15px 5px } } .search-contact .icon_phone { background: url("../images/tel.png") no-repeat center center; height: 50px; width: 60px; margin-right: 10px } .no-flexbox .search-contact .icon_phone { float: left } @media only screen and (min-width: 70.5em) { .search-contact .icon_phone { width: 45px; margin-right: 0 } } .search-contact .tel { font-size: 1.4285714286rem; font-weight: bold; display: inline-block } .formations_home { display: block; padding: 0; margin:0 -.7142857143rem } .formations_home:before, .formations_home:after { content: " "; display: table } .formations_home:after { clear: both } .formations_home>li { display: block; height: auto; float: left; padding:0 .7142857143rem 1.4285714286rem } .formations_home>li { width: 100%; padding:0 .7142857143rem 1.4285714286rem; list-style: none } .formations_home>li:nth-of-type(1n) { clear: none } .formations_home>li:nth-of-type(1n+1) { clear: both } .formations_home li { padding-bottom: 0 !important } .formations_home img { width: 100% } @media only screen and (min-width: 48em) { .formations_home { display: block; padding: 0; margin:0 -.7142857143rem } .formations_home:before, .formations_home:after { content: " "; display: table } .formations_home:after { clear: both } .formations_home>li { display: block; height: auto; float: left; padding:0 .7142857143rem 1.4285714286rem } .formations_home>li { width: 50%; padding:0 .7142857143rem 1.4285714286rem; list-style: none } .formations_home>li:nth-of-type(1n) { clear: none } .formations_home>li:nth-of-type(2n+1) { clear: both } } @media only screen and (min-width: 70.5em) { .formations_home { display: block; padding: 0; margin:0 -.7142857143rem } .formations_home:before, .formations_home:after { content: " "; display: table } .formations_home:after { clear: both } .formations_home>li { display: block; height: auto; float: left; padding:0 .7142857143rem 1.4285714286rem } .formations_home>li { width: 25%; padding:0 .7142857143rem 1.4285714286rem; list-style: none } .formations_home>li:nth-of-type(1n) { clear: none } .formations_home>li:nth-of-type(4n+1) { clear: both } } .formation_item { margin-bottom: 15px } .formation_home-chapo { line-height: 1.2; margin-bottom: 13px } .formation_item_img { max-height: 190px; display: block; overflow: hidden } .formation_item-body { background-color: #f5f3f2; position: relative } .formation_home { padding: 15px 15px 30px } .formation_home-title { font-size: 1.2em; line-height: 1.5; margin-bottom: 7px; font-weight: bold; } .formation_home-title a { display: block; color: #006699 } .formation_link { display: block; text-align: right; margin-bottom: 7px; position: relative; bottom: 10px; right: 10px } @media only screen and (min-width: 48em) and (max-width: 70.5em) { .formation_link { bottom: -3px } } .formation_link:before { content: ''; display: inline-block; vertical-align: middle; width: 15px; height: 14px; margin-right: 5px; background-image: url("../images/icones/icon-arrow-circle-right.png") } @media only screen and (min-width: 48em) { .formation_link { position: absolute } } .bloc_financement { padding: 15px; background-color: #870f68; color: #fefefe } .bloc_financement_title { font-size: 1.4285714286rem; text-transform: uppercase; line-height: 1.2; margin-bottom: 12px } .bloc_financement_content { font-size: 1.2857142857rem; line-height: 1.3 } .bloc_financement_btn { border-style: solid; border-width: 0px; cursor: pointer; font-family: "Open Sans", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: bold; line-height: normal; margin:0 0 .7142857143rem; position: relative; text-decoration: none; text-align: center; -webkit-appearance: none; -webkit-border-radius: 0; display: inline-block; padding-top:.5714285714rem; padding-right: 1.1428571429rem; padding-bottom:.6428571429rem; padding-left: 1.1428571429rem; background-color: #ffdb00; border-color: #d9ba00; color: #fff; width: 100%; border-radius: 4px; margin-top: 20px; color: #006699; font-size: 1.2857142857rem; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -ms-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s } .bloc_financement_btn:hover, .bloc_financement_btn:focus { background-color: #d9ba00 } .bloc_financement_btn:hover, .bloc_financement_btn:focus { color: #fff } .bloc_financement_btn:hover { color: #006699 } .title_home { color: #870f68; font-size: 1.4285714286rem; margin-bottom: 15px; padding: 0 5px } @media only screen and (min-width: 48em) { .title_home { padding: 0 } } .title_home .title_home_link { font-size: 1rem; text-decoration: underline; display: block } @media only screen and (min-width: 48em) { .title_home .title_home_link { display: inline-block; margin-left: 15px } } .bloc_video { background-color: #006699; padding: 15px; color: #fefefe; width: 100%; max-width: 34.2857142857rem; margin: 15px auto 25px } @media only screen and (min-width: 48em) { .bloc_video { max-width: 54.8571428571rem } } @media only screen and (min-width: 70.5em) { .bloc_video { max-width: 85.7142857143rem; padding: 15px 25px } } @media only screen and (min-width: 70.5em) { .wrapper_bloc_video { display: flex; justify-content: space-between } } @media only screen and (min-width: 70.5em) { .video_wrapper { width: 100% } .no-flexbox .video_wrapper { width: 40%; display: inline-block; vertical-align: top } } @media only screen and (min-width: 70.5em) { .bloc_video_content { display: flex } .no-flexbox .bloc_video_content { width: 59%; display: inline-block } } .bloc_video_title { font-size: 1.7857142857rem; color: #f5f3f2; line-height: 1.35; margin-bottom: 10px } .accroche { font-size: 1.2857142857rem; color: #f5f3f2; text-align: center } .accroche .accroche_yellow { color: #ffdb00; font-size: 1.7857142857rem; display: block } .img_video_doc { text-align: center } @media only screen and (min-width: 48em) { .bloc_video_text { display: inline-block; width: 50% } } @media only screen and (min-width: 70.5em) { .bloc_video_text { margin-left: 25px } .no-flexbox .bloc_video_text { width: 65% } } .bloc_video_text p { font-size: 1.0714285714rem; line-height: 1.6 } .bloc_video_text a, .bloc_video_text a:hover { color: #fefefe; text-decoration: underline } @media only screen and (min-width: 48em) { .bloc_video_doc { display: inline-block; vertical-align: top; margin: 0 auto; width: 49% } } @media only screen and (min-width: 70.5em) { .bloc_video_doc { width: auto; max-width: 200px } } .blogs { background-color: #f5f3f2; padding: 15px; margin-bottom: 20px } .events_title { color: #CC0000; font-size: 1.5em; padding-bottom: 5px; margin-bottom: 10px; margin-top: 10px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #CC0000; } .events_title a { font-size: 1rem; display: block; text-align: right } @media only screen and (min-width: 48em) { .events_title a { float: right } } .events { list-style: none; margin: 0 } .event { margin-bottom: 20px; border-bottom: 1px solid rgba(46,70,87,0.1); padding-bottom: 10px } .event:last-child { border-bottom: none; margin-bottom: 0; padding: 0 } .event_img { padding-bottom: 10px; text-align: center } @media only screen and (min-width: 48em) { .event_img { text-align: left; display: inline-block; width: 30% } } @media only screen and (min-width: 48em) { .event_body { display: inline-block; width: 69%; vertical-align: top } } .event_title { color: #006699; margin-bottom: 15px; display: block; font-size: 1em; font-weight: bold } .event_resume { font-size: 1rem; line-height: 1.3 } .event_period { display: inline-block; background-color: #006699; padding: 3px 8px; color: #fefefe; font-size: 1rem; margin-bottom: 10px } .row-pad { padding: 0 10px } @media only screen and (min-width: 48em) { .row-pad { padding: 0 } } .row.row-videos { margin-bottom: 20px } .google-map { height: 163px } .form-inscription .form-actions { text-align: right } #other-formation { overflow: hidden; width: 100% } .input select.dob { width: 31%; float: left; margin-left: 2% } .checkbox_inscr { margin-bottom: 5px } #container-address { overflow: hidden; width: 100% } .sub-label { font-weight: normal; font-size:.8571428571rem; color: #656565; font-style: italic } @media screen and (min-width: 768px) { .header-formation .container-image { text-align: left } .header-formation .container-image img { float: left; margin-right: 20px; margin-bottom: 20px } .list-formations { width: 50%; list-style: none; margin: 0; padding: 0 } } .eleve .radio label { margin-bottom: 10px } .container-eleve-informations .text span { display: inline-block; width: 100% } @media screen and (min-width: 768px) { .eleve-home .container-image img { float: right } .eleve .form-actions { text-align: right } .container-eleve-informations .text span { width: 200px } } .information-phone { display: none } .information-phone.is-visible { display: block !important } .box-user { padding: 7px; background-color: #006699; color: #fefefe; margin-bottom: 10px } .box-user.user { font-size: 1.0714285714rem; text-align: center } .box-user.user .bloc_financement_btn { display: inline-block; width: inherit } .container-faq { color: #575757; padding: 10px 0 10px 5px; border-bottom: 1px solid #e5e5e5; cursor: pointer } .container-faq .question .plus:before { content: "+"; color: #fefefe; width: 18px; height: 18px; display: inline-block; float: left; vertical-align: text-bottom; background-color: #575757; text-align: center; font-size: 1.2857142857rem; line-height: 1; margin-right: 10px; margin-bottom: 10px; font-weight: normal } .container-faq .question .plus.open { color: #d2c73b } .container-faq .question .plus.open:before { content: "-"; background-color: #d2c73b } .container-faq .answer { margin-top: 10px; display: none; clear: both; margin-left: 25px; padding-left: 10px; border-left: 2px solid #d2c73b } .post-content { margin-bottom: 20px } .wrap-button { text-align: center } .back-posts { margin-top: 20px } .fiches-metier a { color: #870f68; text-decoration: underline } .cookie { text-align: center; padding:.5rem; position: relative; z-index: 9999; top: 0; right: 0; left: 0; border-top: 1px solid #e4e4e4; background-color: #f2f2f2; color: #666; font-size:.8571428571rem } .cookie__link { text-decoration: underline; color: #870f68 } .cookie__btn { margin-bottom: 0; margin-left: 1.0714285714rem; padding:0 .3571428571rem; border: none; border-radius: 2px; color: #FFF; line-height: 17px } .cookie__btn-success { background-color: #870f68 } .cookie__btn-cancel { background-color: #e84e40 } .news .title, .news .title_landing { padding-bottom: 5px; border-bottom: 1px solid #bdbdbd } .bloc-news { padding-bottom: 10px; border-bottom: 1px solid #bdbdbd } .stages { list-style: none; margin-left: 0 } .stages .month { display: inline-block; color: #870f68; margin-bottom:.5714285714rem; margin-left: 1.0714285714rem; font-size: 1.0714285714rem } .stages .list_stages { margin-bottom: 1.4285714286rem } .stages .stage_items { background: url("../imgfront/icones/bullet-point-purple.html") no-repeat left 5px; margin: 0 0 8px 0px; padding-bottom: 8px; padding-left: 15px; border-bottom: 1px solid #e5e5e5 } .stages .stage_items .bloc_stage { display: inline-block; width: 100% } @media only screen and (min-width: 48em) { .stages .stage_items .bloc_stage { width: 60% } } @media only screen and (min-width: 70.5em) { .stages .stage_items .bloc_stage { width: 74% } } .stages .stage_items .bloc_stage .stage_title { font-size:.9285714286rem; color: #870f68 } .stages .stage_items .bloc_stage .stage_periode { font-size: 12px } .stages .stage_items .stage_program { display: inline-block; width: 100%; text-align: right } @media only screen and (min-width: 48em) { .stages .stage_items .stage_program { width: 38% } } @media only screen and (min-width: 70.5em) { .stages .stage_items .stage_program { width: 25% } } .stages .stage_items .stage_program>a { color: #870f68; font-weight: normal; text-decoration: underline } .panel-stage { background-color: #f1f1f1; color: #870f68 } .lh { line-height: 1.3 } .bbord { margin-bottom:.5714285714rem } .program_description { color: #870f68; text-decoration: underline; cursor: pointer } .comment { margin-bottom: 1.0714285714rem; font-style: italic; font-size: 1.0714285714rem; color: #959595 } .panel_formation { display: flex; flex-direction: column } @media only screen and (min-width: 70.5em) { .panel_formation { flex-direction: row } } .content_formation { width: 100%; max-width: 800px } .aside_formation { width: 100% } @media only screen and (min-width: 70.5em) { .aside_formation { margin: 0 0 0 30px; max-width: 390px } } #container-address { display: none } .form-doc { background-color: #870f68; padding: 10px; color: #fefefe; margin-bottom: 15px } .form-doc_btn { display: inline-block; background-color: #d2c73b; border: none; padding: 15px 20px; color: white; margin: 15px 0; font-size: 1.4285714286rem; border-radius: 2px; cursor: pointer; width: 100% } .checkbox_doc [type="checkbox"]:not(:checked), .checkbox_doc [type="checkbox"]:checked { position: absolute; left: -9999px } .checkbox_doc [type="checkbox"]:not(:checked)+label, .checkbox_doc [type="checkbox"]:checked+label { position: relative; padding-left: 25px; cursor: pointer; margin: 0; color: #fefefe; line-height: 1.35; font-size:.8571428571rem; font-weight: normal } .checkbox_doc [type="checkbox"]:not(:checked)+label:before, .checkbox_doc [type="checkbox"]:checked+label:before { content: ''; position: absolute; left: 0; top: 3px; width: 15px; height: 15px; border-radius: 2px; background-color: #fefefe; border: none } .checkbox_doc [type="checkbox"]:not(:checked)+label:after, .checkbox_doc [type="checkbox"]:checked+label:after { content: ''; position: absolute; top: 3px; left: -1px; width: 15px; height: 15px; background: url("../images/icones/check-purple-mini.png") no-repeat center center } .checkbox_doc [type="checkbox"]:not(:checked)+label:after { opacity: 0; transform: scale(0) } .checkbox_doc [type="checkbox"]:checked+label:after { opacity: 1; transform: scale(1) } .checkbox_doc [type="checkbox"]:disabled:not(:checked)+label:before, .checkbox_doc [type="checkbox"]:disabled:checked+label:before { box-shadow: none; border-color: #bbb; background-color: #ddd } .checkbox_doc [type="checkbox"]:disabled:checked+label:after { color: #999 } .checkbox_doc [type="checkbox"]:disabled+label { color: #aaa } .radio_doc [type="radio"]:not(:checked), .radio_doc [type="radio"]:checked { position: absolute; left: -9999px } .radio_doc [type="radio"]:not(:checked)+label, .radio_doc [type="radio"]:checked+label { position: relative; padding-left: 25px; cursor: pointer; margin-left: 0; color: #fefefe; margin-bottom: 10px; font-size:.8571428571rem; font-weight: normal } .radio_doc [type="radio"]:not(:checked)+label:before, .radio_doc [type="radio"]:checked+label:before { content: ''; position: absolute; left: 0; top: -1px; width: 15px; height: 15px; border: none; background-color: #fefefe; border-radius: 50% } .radio_doc [type="radio"]:not(:checked)+label:after, .radio_doc [type="radio"]:checked+label:after { content: ''; position: absolute; top: 2px; left: 3px; width: 9px; height: 9px; border-radius: 50%; background-color: #870f68; transition: all .2s } .radio_doc [type="radio"]:not(:checked)+label:after { opacity: 0; transform: scale(0) } .radio_doc [type="radio"]:checked+label:after { opacity: 1; transform: scale(1) } .radio_doc [type="radio"]:disabled:not(:checked)+label:before, .radio_doc [type="radio"]:disabled:checked+label:before { box-shadow: none; border-color: #bbb; background-color: #ddd } .radio_doc [type="radio"]:disabled:checked+label:after { color: #999 } .radio_doc [type="radio"]:disabled+label { color: #aaa } .radio_doc [type="radio"]:checked:focus+label:before, .radio_doc [type="radio"]:not(:checked):focus+label:before { border: none } .radio_doc [type="radio"]:checked+label:before { border: none } .mention { font-size:.7857142857rem; line-height: 1.3; color: #dcdcdc } #DocumentationViewForm select { padding: 0 0 0 5px; background-color: #fefefe } #DocumentationViewForm .input { margin-bottom: 10px } .form_doc_title { font-size: 1.3571428571rem; line-height: 1.25; color: rgba(254,254,254,0.9); margin: 10px auto 15px; text-align: center } .form_doc_title .big_title { color: #d2c73b; text-transform: uppercase; font-weight: bold; display: inline-block; margin-top: 2px } .form_doc_title .info_mentions { font-size:.8571428571rem; margin-top: 4px } .input_name, .input_firstname { width: 48%; display: inline-block } .input_firstname { margin-left: 2.5% } .input_zipcode { display: inline-block; width: 30% } .input_city { display: inline-block; width: 66%; margin-left: 2.5% } .input_numero { display: inline-block; width: 20% } .input_address { display: inline-block; width: 76%; margin-left: 2.5% } input { background-color: #EDBABE } input::-webkit-input-placeholder { color:#8a8a8a } input::-moz-placeholder { color:#8a8a8a } input:-ms-input-placeholder { color:#8a8a8a } input:-moz-placeholder { color:#8a8a8a } input.form-error, select.form-error { color: #f04124; border-color: #f04124 } input.form-error::-webkit-input-placeholder, select.form-error::-webkit-input-placeholder { color:#f04124 } input.form-error::-moz-placeholder, select.form-error::-moz-placeholder { color:#f04124 } input.form-error:-ms-input-placeholder, select.form-error:-ms-input-placeholder { color:#f04124 } input.form-error:-moz-placeholder { color:#f04124 } .msg-error-title { font-size: 1.1428571429rem; text-align: center; margin-bottom: 10px; color: #fefefe; background-color: #f36a54; padding: 5px; max-width: 95% } #error_list .message { color: #575757 } #error_list .message:before { color: #f36a54; content: 'X'; display: inline-block; margin-right: 10px; font-weight: bold; border: 1px solid; border-radius: 50%; padding: 1px 6px; margin-bottom: 7px } .msg-error-close { font-size: 2.1428571429rem !important; top: 0 !important } .new_formation .subtitle { font-size: 1.2142857143rem; line-height: 1.35 } .new_formation .tabs-content { border-bottom: none } .new_formation .header-formation { display: flex; flex-direction: column; margin-bottom: 20px } @media only screen and (min-width: 48em) { .new_formation .header-formation { flex-direction: row } } .new_formation .header-formation .container-image, .new_formation .header-formation .container-content { flex: 1 } .new_formation .header-formation .container-image { margin-right: 10px } .formation_content { display: flex; flex-direction: column } @media only screen and (min-width: 70.5em) { .formation_content { flex-direction: row } } .formation_content-body { flex: 2; margin-right: 10px } @media only screen and (min-width: 70.5em) { .formation_content-sidebar { width: 37% } } .virtual_class { margin-bottom: 40px } .virtual_class .virtual_class-title { background-color: #d2c73b; text-transform: uppercase; color: #fefefe; font-weight: 500; font-size: 1.2857142857rem; padding: 10px 15px } .virtual_class .virtual_class-content { background-color: #f2f2f2; padding: 10px; font-size: 1rem; line-height: 1.5 } .virtual_class.certif .virtual_class-title { background-color: #006699 } .formation_personalise { padding: 15px; border: 3px solid #870f68; font-size: 1rem; position: relative; margin-bottom: 40px } .formation_personalise .formation_personalise-title { background-color: #fefefe; font-size: 1.2857142857rem; color: #870f68; text-transform: uppercase; position: absolute; top: -10px; padding: 0 10px } @media only screen and (min-width: 70.5em) { .formation_personalise .formation_personalise-title { left: 5px; padding: 0 4px } } .bloc_contact-us { background-color: #d2c73b; color: #fefefe; padding: 10px } .bloc_contact-us .bloc_contact-us_icon { display: inline-block; vertical-align: top; margin-right: 10px } .bloc_contact-us .bloc_contact-us_body { display: inline-block; font-size: 1.2857142857rem; line-height: 1.3 } .bloc_contact-us .bloc_contact-us_title { color: #870f68; font-size: 1.5714285714rem } .button-contact_us { background-color: #fefefe; font-size: 1.7857142857rem; padding: 1px 45px; border-radius: 2px; color: #870f68; font-weight: bold; margin: 10px 0 } .bloc_partner { margin-bottom: 15px; padding: 0 10px } .bloc_partner .bloc_partner_logo { text-align: center; margin-bottom: 10px } .bloc_partner .bloc_partner_content { line-height: 1.3; font-size:.9285714286rem } .bloc_partner_old { margin-bottom: 0px; padding: 10px 0 0 0 } .bloc_partner_old .bloc_partner_logo { display: inline-block; text-align: center; vertical-align: top } .bloc_partner_old .bloc_partner_logo img { max-width: 150px } .bloc_partner_old .bloc_partner_content { display: inline-block; width: 40%; line-height: 1.3; font-size:.9285714286rem } .tiny_class { padding: 20px; background-color: #fefefe } .tiny_class h2, .new_formation h2, .post-content h2 { color: #870f68; font-weight: 400; font-size: 18px; line-height: 1.5 } .tiny_class h3, .new_formation h3, .post-content h3 { color: #870f68; font-weight: 400; font-size: 16px; line-height: 1.5 } .tiny_class h4, .new_formation h4, .post-content h4 { font-weight: 600; font-size: 14px; line-height: 1.5 } .tiny_class a, .new_formation a, .post-content a { text-decoration: underline } .tiny_class .lien, .new_formation .lien, .post-content .lien { color: #870f68 } .tiny_class img .right, .new_formation img .right, .post-content img .right { float: right; margin: 0 0 10px 10px } .tiny_class img .left, .new_formation img .left, .post-content img .left { float: left; margin: 0 10px 10px 0 } .tiny_class .bloc, .new_formation .bloc, .post-content .bloc { background-color: #eee; border: 1px solid #e5e5e5; padding: 10px; overflow: hidden; margin-bottom: 10px } .tiny_class .options_title, .new_formation .options_title, .post-content .options_title { background-color: #870f68; color: #fefefe; padding: 3px 25px; display: inline-block; margin: 0 } .tiny_class .bloc_gris_clair, .new_formation .bloc_gris_clair, .post-content .bloc_gris_clair { background-color: rgba(255,255,255,0.5); padding: 10px; overflow: hidden; margin-bottom: 10px } .form_accord { background-color: #fff; padding: 14px; width: 80%; margin: 0 auto 20px } .form_accord .input { margin-bottom: 0 } .form_accord .checkbox [type="checkbox"]:not(:checked)+label, .form_accord .checkbox [type="checkbox"]:checked+label { font-weight: normal; font-size: 1rem } .form_accord .checkbox [type="checkbox"]:not(:checked)+label:before, .form_accord .checkbox [type="checkbox"]:checked+label:before { top: 10px } .form_accord, .form_accord .checkbox [type="checkbox"]:not(:checked)+label:after, .form_accord .checkbox [type="checkbox"]:checked+label:after { top: 10px } .call_to_action { position: fixed; bottom: 0; left: 0; right: 0; background-color: #ffdb00; text-align: left; z-index: 99; box-shadow: 0 -6px 15px -5px rgba(0,0,0,0.7) } .call_to_action .link_call_to_action { display: block; color: #006699; font-size: 1.3571428571rem; padding: 15px 2px 15px 10px; line-height: 1.35; position: relative; margin: 0; width: 100% } .call_to_action .link_call_to_action .big { font-size: 1.5714285714rem; font-weight: bold; display: block } .call_to_action .link_call_to_action:after { content: '\f138'; font-family: FontAwesome; position: absolute; top: 50%; transform: translateY(-50%); right: 10px; font-size: 2.8571428571rem } @media only screen and (min-width: 48em) and (max-width: 70.5em) { .call_to_action { text-align: center } .call_to_action .link_call_to_action:after { display: none } } @media only screen and (min-width: 70.5em) { .call_to_action { display: none } } .sidebar { padding-left: 1rem; padding-right: 1rem; width: 100%; float: left } @media only screen and (min-width: 70.5em) { .sidebar { padding-left: 1rem; padding-right: 1rem; width: 41.6666666667%; float: left; max-width: 400px; float: left } } .content { padding-left: 1rem; padding-right: 1rem; width: 100%; float: left } @media only screen and (min-width: 70.5em) { .content { padding-left: 1rem; padding-right: 1rem; width: 66.6666666667%; float: left; max-width: 760px; float: right } } .avantage_header { position: relative; padding: 15px; background-color: #870f68; display: flex; flex-direction: column; align-items: center } @media only screen and (min-width: 48em) { .avantage_header { flex-direction: row; align-items: flex-start } } .avantage_header:after { content: ""; position: absolute; bottom: -12px; left: 25px; width: 0; height: 0; border-style: solid; border-width: 12px 10px 0 10px; border-color: #870f68 transparent transparent transparent } .avantage_title { font-size: 2.5rem; color: #fefefe; text-transform: uppercase; font-weight: 700; line-height: 1; margin: auto 0; text-align: center } @media only screen and (min-width: 48em) { .avantage_title { text-align: left } } .avantage_title span { font-size: 1.4285714286rem; font-weight: 400; display: inline-block } .avantage_img { background-image: url(front/img/sprites.png); background-position: 0px 0px; width: 85px; height: 109px } .arguments { padding: 20px 10px 0px 10px; background-color: #006699 } .arguments .argument_title { color: #d2c73b; font-size: 1.2857142857rem; text-transform: uppercase; font-weight: 700 } .arguments p { color: #fefefe } .item { display: flex; margin: 10px 10px 30px } .item .item_argument { flex: 1 } .item .item_img { margin-right: 12px } .un { background-image: url(front/img/sprites.png); background-position: 0px -109px; width: 45px; height: 47px } .deux { background-image: url(front/img/sprites.png); background-position: -85px -47px; width: 45px; height: 47px } .trois { background-image: url(front/img/sprites.png); background-position: -130px -47px; width: 45px; height: 47px } .quatre { background-image: url(front/img/sprites.png); background-position: -130px 0px; width: 45px; height: 47px } .cinq { background-image: url(front/img/sprites.png); background-position: -85px 0px; width: 45px; height: 47px } .title_landing { font-weight: normal } img.left { margin-bottom: 10px; margin-right: 15px; margin-left: 0 } img.right { margin-bottom: 10px; margin-right: 0; margin-left: 15px } .radio_text { margin-bottom: 7px; padding-left: 25px } .landing_title { color: #870f68; font-size: 1.2857142857rem; margin-bottom: 15px } .session_choice { margin-left: 35px } .session_choice input[type="checkbox"]+label, .session_choice input[type="radio"]+label { display: block; margin: 10px 0 } .session_choice [type="radio"]:not(:checked)+label:before, .session_choice [type="radio"]:checked+label:before { width: 15px; height: 15px; top: 2px } .session_choice [type="radio"]:not(:checked)+label:after, .session_choice [type="radio"]:checked+label:after { top: 6px; left: 4px; width: 7px; height: 7px } .date_choice { width: 80%; margin-left: 35px; margin-bottom: 7px } @media only screen and (min-width: 48em) { .date_choice { width: 40% } } .place_choice { margin-left: 35px; margin-top: 15px } .place_choice [type="radio"]:not(:checked)+label:before, .place_choice [type="radio"]:checked+label:before { width: 15px; height: 15px; top: 2px } .place_choice [type="radio"]:not(:checked)+label:after, .place_choice [type="radio"]:checked+label:after { top: 6px; left: 4px; width: 7px; height: 7px } .sub_choice { margin-left: 25px } .sub_choice.first { border-bottom: 1px solid #d8d8d8; margin-bottom: 10px } .sub_choice [type="radio"]:not(:checked)+label:before, .sub_choice [type="radio"]:checked+label:before { width: 15px; height: 15px; top: 2px } .sub_choice [type="radio"]:not(:checked)+label:after, .sub_choice [type="radio"]:checked+label:after { top: 6px; left: 4px; width: 7px; height: 7px } .fiche { padding-left: 1rem; padding-right: 1rem; width: 100%; float: left } @media only screen and (min-width: 70.5em) { .fiche { padding-left: 0; padding-right: 0; width: 66.6666666667%; float: right; float: left; margin-left: auto; margin-right: auto; float: none !important } } .fiche .input p { font-weight: bold; margin-bottom: 7px; margin-top: 10px } .post-fiche { padding-left: 0; padding-right: 0; width: 83.3333333333%; float: right; float: left; margin-left: auto; margin-right: auto; float: none !important } .mention_fiche { font-style: italic; font-size:.9285714286rem } .second { margin-left: 20px; margin-top: 7px } .second p { margin-bottom: 3px !important; margin-top: 3px !important } .fiche_doc .checkbox { margin-bottom: 15px } .fiche_doc .input_field { margin-bottom: 15px; display: none } .form_newsletter { margin-top: 20px } .form_newsletter .title, .form_newsletter .title_landing { padding-left: 0 } @media only screen and (min-width: 48em) { .form_newsletter .title, .form_newsletter .title_landing { padding-left: 15px } } .form_newsletter .success-message { display: block; padding: 5px; background-color: #f4faee; border-color: #d2eab9; color: #2e0523; text-align: center; margin-bottom: 10px } .forums_list { border-collapse: collapse } .forums_title { float: left; margin-right: 15px } .small_title { font-size:.9285714286rem } .forums_resume { clear: both; font-size:.9285714286rem; margin-top: 10px } .forum_title-wrapper { border-bottom: 1px solid #870f68; margin-bottom: 15px } .forum_title { color: #870f68; font-size: 1.7857142857rem; display: inline-block } .btn_action-forum { float: right } .forum_closed { font-size:.9285714286rem; margin-top: 12px } .info_topic-action { font-size:.8571428571rem; margin-left: 10px; display: inline-block; vertical-align: text-bottom } .info_topic-action a { color: #f04124 } .topic-title { margin-bottom: 5px; display: inline-block; text-decoration: none !important } .topic_owner { font-size:.9285714286rem; font-style: italic } .topic { padding: 10px; background-color: #F1F1F1; color: #1b2832 } .topic.message { margin-bottom: 15px } .info_topic { border-bottom: 1px solid #D8D8D8; margin-bottom: 15px; padding-bottom: 10px } .info_topic-created { font-size:.9285714286rem; font-style: italic } .answer_count { margin: 10px 0; font-size: 1.2142857143rem; font-weight: bold; color: #870f68 } .pagination.forum { padding: 0; text-align: right; margin: 0 } .action_post { text-align: right; margin-top: 10px } .img-thrumnail { padding: 5px; border: 1px solid #999; border-radius: 5px; } .mrbt-20 { margin-bottom: 20px; } /* FORM CONTACT */ .jumbotron { background: #358CCE; color: #FFF; border-radius: 0px; } .jumbotron-sm { padding-top: 24px; padding-bottom: 24px; } .jumbotron small { color: #FFF; } .h1 small { font-size: 24px; } .text-bold { font-weight: bold; } .text-blanc { color: #FFF; } .text-blanc:hover { color: #FFF; } .pull-left { float: left; } .mr-10 { margin-right: 10px; } /* The Modal (background) */ .modal { display: none; /* Hidden by default */ position: fixed; /* Stay in place */ z-index: 9999999999; /* Sit on top */ left: 0; top: 0; width: 100%; /* Full width */ height: 100%; /* Full height */ overflow: auto; /* Enable scroll if needed */ background-color: rgb(0,0,0); /* Fallback color */ background-color: rgba(0,0,0,0.4); /* Black w/ opacity */ transition: all 500ms ease-in-out; background-clip: padding-box; transition: opacity 500ms; } .modal:target { visibility: visible; opacity: 1; } /* Modal Content/Box */ .modal-content { background-color: #fefefe; margin: 10% auto; /* 15% from the top and centered */ padding: 20px; border: 1px solid #888; width: 80%; /* Could be more or less, depending on screen size */ } /* The Close Button */ .close { color: #aaa; float: right; font-size: 28px; font-weight: bold; transition: all 200ms; text-decoration: none; } .close:hover, .close:focus { color: black; text-decoration: none; cursor: pointer; }
public/css/style_performer.css
meta.foundation-version { font-family: "/5.2.3/" } meta.foundation-mq-small { font-family: "/only screen/"; width: 0em } meta.foundation-mq-medium { font-family: "/only screen and (min-width:48em)/"; width: 48em } meta.foundation-mq-large { font-family: "/only screen and (min-width:70.5em)/"; width: 70.5em } meta.foundation-mq-xlarge { font-family: "/only screen and (min-width:90.063em)/"; width: 90.063em } meta.foundation-mq-xxlarge { font-family: "/only screen and (min-width:120.063em)/"; width: 120.063em } meta.foundation-data-attribute-namespace { font-family: false } html, body { height: 100% } *, *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box } html, body { font-size: 14px } body { background: #fff; color: #363636; padding: 0; margin: 0; font-family: "Open Sans", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: normal; font-style: normal; line-height: 150%; position: relative; cursor: default } a:hover { cursor: pointer } img { max-width: 100%; height: auto } img { -ms-interpolation-mode: bicubic } #map_canvas img, #map_canvas embed, #map_canvas object, .map_canvas img, .map_canvas embed, .map_canvas object { max-width: none !important } .left { float: left !important } .right { float: right !important } .clearfix:before, .clearfix:after { content: " "; display: table } .clearfix:after { clear: both } .hide { display: none } .site-banner button { margin-top: 10px; background: #F73E80; color: #fff; padding: 6px 16px; border-radius: 3px; margin-left: 10px; letter-spacing: 1px; transition: .2s ease-in-out; text-transform: uppercase; font-size: 12px; } .antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale } img { display: inline-block; vertical-align: middle } textarea { height: auto; min-height: 50px } select { width: 100% } .alert-box { border-style: solid; border-width: 2px; display: block; font-weight: normal; margin-bottom: 1.4285714286rem; position: relative; padding:.7142857143rem 1.8571428571rem .7142857143rem .7142857143rem; font-size:.9285714286rem; transition: opacity 300ms ease-out; background-color: #575757; border-color: #4b4b4b; color: #fff } .alert-box .close { font-size: 1.5714285714rem; padding: 9px 6px 4px; line-height: 0; position: absolute; top: 50%; margin-top:-.7857142857rem; right:.2857142857rem; color: #333; opacity: .3 } .alert-box .close:hover, .alert-box .close:focus { opacity: .5 } .alert-box.radius { border-radius: 2px } .alert-box.round { border-radius: 1000px } .alert-box.success { background-color: #f4faee; border-color: #d2eab9; color: #2e0523 } .alert-box.alert { background-color: #f04124; border-color: #de2d0f; color: #fff } .alert-box.secondary { background-color: #870f68; border-color: #740d59; color: #fff } .alert-box.warning { background-color: #fbf0f1; border-color: #edbabe; color: #2e0523 } .alert-box.info { background-color: #a0d3e8; border-color: #74bfdd; color: #2e0523 } .alert-box.alert-close { opacity: 0 } [class*="block-grid-"] { display:block; padding:0; margin:0 -.7142857143rem } [class*="block-grid-"]:before, [class*="block-grid-"]:after { content: " "; display: table } [class*="block-grid-"]:after { clear: both } [class*="block-grid-"]>li { display:block; height:auto; float:left; padding:0 .7142857143rem 1.4285714286rem } @media only screen { .small-block-grid-1>li { width: 100%; list-style: none } .small-block-grid-1>li:nth-of-type(1n) { clear: none } .small-block-grid-1>li:nth-of-type(1n+1) { clear: both } .small-block-grid-2>li { width: 50%; list-style: none } .small-block-grid-2>li:nth-of-type(1n) { clear: none } .small-block-grid-2>li:nth-of-type(2n+1) { clear: both } .small-block-grid-3>li { width: 33.3333333333%; list-style: none } .small-block-grid-3>li:nth-of-type(1n) { clear: none } .small-block-grid-3>li:nth-of-type(3n+1) { clear: both } .small-block-grid-4>li { width: 25%; list-style: none } .small-block-grid-4>li:nth-of-type(1n) { clear: none } .small-block-grid-4>li:nth-of-type(4n+1) { clear: both } .small-block-grid-5>li { width: 20%; list-style: none } .small-block-grid-5>li:nth-of-type(1n) { clear: none } .small-block-grid-5>li:nth-of-type(5n+1) { clear: both } .small-block-grid-6>li { width: 16.6666666667%; list-style: none } .small-block-grid-6>li:nth-of-type(1n) { clear: none } .small-block-grid-6>li:nth-of-type(6n+1) { clear: both } .small-block-grid-7>li { width: 14.2857142857%; list-style: none } .small-block-grid-7>li:nth-of-type(1n) { clear: none } .small-block-grid-7>li:nth-of-type(7n+1) { clear: both } .small-block-grid-8>li { width: 12.5%; list-style: none } .small-block-grid-8>li:nth-of-type(1n) { clear: none } .small-block-grid-8>li:nth-of-type(8n+1) { clear: both } .small-block-grid-9>li { width: 11.1111111111%; list-style: none } .small-block-grid-9>li:nth-of-type(1n) { clear: none } .small-block-grid-9>li:nth-of-type(9n+1) { clear: both } .small-block-grid-10>li { width: 10%; list-style: none } .small-block-grid-10>li:nth-of-type(1n) { clear: none } .small-block-grid-10>li:nth-of-type(10n+1) { clear: both } .small-block-grid-11>li { width: 9.0909090909%; list-style: none } .small-block-grid-11>li:nth-of-type(1n) { clear: none } .small-block-grid-11>li:nth-of-type(11n+1) { clear: both } .small-block-grid-12>li { width: 8.3333333333%; list-style: none } .small-block-grid-12>li:nth-of-type(1n) { clear: none } .small-block-grid-12>li:nth-of-type(12n+1) { clear: both } } @media only screen and (min-width: 48em) { .medium-block-grid-1>li { width: 100%; list-style: none } .medium-block-grid-1>li:nth-of-type(1n) { clear: none } .medium-block-grid-1>li:nth-of-type(1n+1) { clear: both } .medium-block-grid-2>li { width: 50%; list-style: none } .medium-block-grid-2>li:nth-of-type(1n) { clear: none } .medium-block-grid-2>li:nth-of-type(2n+1) { clear: both } .medium-block-grid-3>li { width: 33.3333333333%; list-style: none } .medium-block-grid-3>li:nth-of-type(1n) { clear: none } .medium-block-grid-3>li:nth-of-type(3n+1) { clear: both } .medium-block-grid-4>li { width: 25%; list-style: none } .medium-block-grid-4>li:nth-of-type(1n) { clear: none } .medium-block-grid-4>li:nth-of-type(4n+1) { clear: both } .medium-block-grid-5>li { width: 20%; list-style: none } .medium-block-grid-5>li:nth-of-type(1n) { clear: none } .medium-block-grid-5>li:nth-of-type(5n+1) { clear: both } .medium-block-grid-6>li { width: 16.6666666667%; list-style: none } .medium-block-grid-6>li:nth-of-type(1n) { clear: none } .medium-block-grid-6>li:nth-of-type(6n+1) { clear: both } .medium-block-grid-7>li { width: 14.2857142857%; list-style: none } .medium-block-grid-7>li:nth-of-type(1n) { clear: none } .medium-block-grid-7>li:nth-of-type(7n+1) { clear: both } .medium-block-grid-8>li { width: 12.5%; list-style: none } .medium-block-grid-8>li:nth-of-type(1n) { clear: none } .medium-block-grid-8>li:nth-of-type(8n+1) { clear: both } .medium-block-grid-9>li { width: 11.1111111111%; list-style: none } .medium-block-grid-9>li:nth-of-type(1n) { clear: none } .medium-block-grid-9>li:nth-of-type(9n+1) { clear: both } .medium-block-grid-10>li { width: 10%; list-style: none } .medium-block-grid-10>li:nth-of-type(1n) { clear: none } .medium-block-grid-10>li:nth-of-type(10n+1) { clear: both } .medium-block-grid-11>li { width: 9.0909090909%; list-style: none } .medium-block-grid-11>li:nth-of-type(1n) { clear: none } .medium-block-grid-11>li:nth-of-type(11n+1) { clear: both } .medium-block-grid-12>li { width: 8.3333333333%; list-style: none } .medium-block-grid-12>li:nth-of-type(1n) { clear: none } .medium-block-grid-12>li:nth-of-type(12n+1) { clear: both } } @media only screen and (min-width: 70.5em) { .large-block-grid-1>li { width: 100%; list-style: none } .large-block-grid-1>li:nth-of-type(1n) { clear: none } .large-block-grid-1>li:nth-of-type(1n+1) { clear: both } .large-block-grid-2>li { width: 50%; list-style: none } .large-block-grid-2>li:nth-of-type(1n) { clear: none } .large-block-grid-2>li:nth-of-type(2n+1) { clear: both } .large-block-grid-3>li { width: 33.3333333333%; list-style: none } .large-block-grid-3>li:nth-of-type(1n) { clear: none } .large-block-grid-3>li:nth-of-type(3n+1) { clear: both } .large-block-grid-4>li { width: 25%; list-style: none } .large-block-grid-4>li:nth-of-type(1n) { clear: none } .large-block-grid-4>li:nth-of-type(4n+1) { clear: both } .large-block-grid-5>li { width: 20%; list-style: none } .large-block-grid-5>li:nth-of-type(1n) { clear: none } .large-block-grid-5>li:nth-of-type(5n+1) { clear: both } .large-block-grid-6>li { width: 16.6666666667%; list-style: none } .large-block-grid-6>li:nth-of-type(1n) { clear: none } .large-block-grid-6>li:nth-of-type(6n+1) { clear: both } .large-block-grid-7>li { width: 14.2857142857%; list-style: none } .large-block-grid-7>li:nth-of-type(1n) { clear: none } .large-block-grid-7>li:nth-of-type(7n+1) { clear: both } .large-block-grid-8>li { width: 12.5%; list-style: none } .large-block-grid-8>li:nth-of-type(1n) { clear: none } .large-block-grid-8>li:nth-of-type(8n+1) { clear: both } .large-block-grid-9>li { width: 11.1111111111%; list-style: none } .large-block-grid-9>li:nth-of-type(1n) { clear: none } .large-block-grid-9>li:nth-of-type(9n+1) { clear: both } .large-block-grid-10>li { width: 10%; list-style: none } .large-block-grid-10>li:nth-of-type(1n) { clear: none } .large-block-grid-10>li:nth-of-type(10n+1) { clear: both } .large-block-grid-11>li { width: 9.0909090909%; list-style: none } .large-block-grid-11>li:nth-of-type(1n) { clear: none } .large-block-grid-11>li:nth-of-type(11n+1) { clear: both } .large-block-grid-12>li { width: 8.3333333333%; list-style: none } .large-block-grid-12>li:nth-of-type(1n) { clear: none } .large-block-grid-12>li:nth-of-type(12n+1) { clear: both } } button, .button { border-style: solid; border-width: 0px; cursor: pointer; font-family: "Open Sans", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: bold; line-height: normal; margin:0 0 .7142857143rem; position: relative; text-decoration: none; text-align: center; -webkit-appearance: none; -webkit-border-radius: 0; display: inline-block; padding-top:.6428571429rem; padding-right: 1.2857142857rem; padding-bottom:.7142857143rem; padding-left: 1.2857142857rem; font-size: 1rem; background-color: #575757; border-color: #4a4a4a; color: #fff; transition: background-color 300ms ease-out } button:hover, button:focus, .button:hover, .button:focus { background-color: #4a4a4a } button:hover, button:focus, .button:hover, .button:focus { color: #fff } button.secondary, .button.secondary { background-color: #27880F; border-color: #730d58; color: #fff } button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus { background-color: #237A0E } button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus { color: #fff } button.success, .button.success { background-color: #f4faee; border-color: #cfe9b5; color: #333 } button.success:hover, button.success:focus, .button.success:hover, .button.success:focus { background-color: #cfe9b5 } button.success:hover, button.success:focus, .button.success:hover, .button.success:focus { color: #333 } button.alert, .button.alert { background-color: #f04124; border-color: #dc2c0f; color: #fff } button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus { background-color: #dc2c0f } button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus { color: #fff } button.large, .button.large { padding-top: 1.2857142857rem; padding-right: 2.5714285714rem; padding-bottom: 1.3571428571rem; padding-left: 2.5714285714rem; font-size: 1.4285714286rem } button.small, .button.small { padding-top:.3571428571rem; padding-right:.7142857143rem; padding-bottom:.4285714286rem; padding-left:.7142857143rem; font-size:.9285714286rem } button.tiny, .button.tiny { padding-top:.2142857143rem; padding-right:.4285714286rem; padding-bottom:.2857142857rem; padding-left:.4285714286rem; font-size:.7857142857rem } button.expand, .button.expand { padding-right: 0; padding-left: 0; width: 100% } button.left-align, .button.left-align { text-align: left; text-indent:.8571428571rem } button.right-align, .button.right-align { text-align: right; padding-right:.8571428571rem } button.radius, .button.radius { border-radius: 2px } button.round, .button.round { border-radius: 1000px } button.disabled, button[disabled], .button.disabled, .button[disabled] { background-color: #575757; border-color: #4a4a4a; color: #fff; cursor: default; opacity: .7; box-shadow: none } button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus { background-color: #4a4a4a } button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus { color: #fff } button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus { background-color: #575757 } button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary { background-color: #870f68; border-color: #730d58; color: #fff; cursor: default; opacity: .7; box-shadow: none } button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus { background-color: #730d58 } button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus { color: #fff } button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus { background-color: #870f68 } button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success { background-color: #f4faee; border-color: #cfe9b5; color: #333; cursor: default; opacity: .7; box-shadow: none } button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus { background-color: #cfe9b5 } button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus { color: #333 } button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus { background-color: #f4faee } button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert { background-color: #f04124; border-color: #dc2c0f; color: #fff; cursor: default; opacity: .7; box-shadow: none } button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus { background-color: #dc2c0f } button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus { color: #fff } button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus { background-color: #f04124 } @media only screen and (min-width: 48em) { button, .button { display: inline-block } } .flex-video { position: relative; padding-top: 1.7857142857rem; padding-bottom: 67.5%; height: 0; margin-bottom: 1.1428571429rem; overflow: hidden } .flex-video.widescreen { padding-bottom: 56.34% } .flex-video.vimeo { padding-top: 0 } .flex-video iframe, .flex-video object, .flex-video embed, .flex-video video { position: absolute; top: 0; left: 0; width: 100%; height: 100% } form { margin: 0 0 1.1428571429rem } form .row .row { margin:0 -.5714285714rem } form .row .row .column, form .row .row .columns { padding:0 .5714285714rem } form .row .row.collapse { margin: 0 } form .row .row.collapse .column, form .row .row.collapse .columns { padding: 0 } form .row .row.collapse input { border-bottom-right-radius: 0; border-top-right-radius: 0 } form .row input.column, form .row input.columns, form .row textarea.column, form .row textarea.columns { padding-left:.5714285714rem } label { font-size:.9285714286rem; color: #4d4d4d; cursor: pointer; display: block; font-weight: bold; line-height: 1.5; margin-bottom: 5px } label.right { float: none !important; text-align: right } label.inline { margin: 0 0 1.1428571429rem 0; padding:.6428571429rem 0 } label small { text-transform: capitalize; color: #676767 } select::-ms-expand { display:none } @-moz-document url-prefix() { select { background:#fafafa } select:hover { background:#f3f3f3 } } .prefix, .postfix { display: block; position: relative; z-index: 2; text-align: center; width: 100%; padding-top: 0; padding-bottom: 0; border-style: solid; border-width: 1px; overflow: hidden; font-size:.9285714286rem; height: 2.6428571429rem; line-height: 2.6428571429rem } .postfix.button { padding-left: 0; padding-right: 0; padding-top: 0; padding-bottom: 0; text-align: center; line-height: 2.4285714286rem; border: none } .prefix.button { padding-left: 0; padding-right: 0; padding-top: 0; padding-bottom: 0; text-align: center; line-height: 2.4285714286rem; border: none } .prefix.button.radius { border-radius: 0; border-bottom-left-radius: 2px; border-top-left-radius: 2px } .postfix.button.radius { border-radius: 0; border-bottom-right-radius: 2px; border-top-right-radius: 2px } .prefix.button.round { border-radius: 0; border-bottom-left-radius: 1000px; border-top-left-radius: 1000px } .postfix.button.round { border-radius: 0; border-bottom-right-radius: 1000px; border-top-right-radius: 1000px } span.prefix, label.prefix { background: #f2f2f2; border-right: none; color: #333; border-color: #ccc } span.prefix.radius, label.prefix.radius { border-radius: 0; border-bottom-left-radius: 2px; border-top-left-radius: 2px } span.postfix, label.postfix { background: #f2f2f2; border-left: none; color: #333; border-color: #ccc } span.postfix.radius, label.postfix.radius { border-radius: 0; border-bottom-right-radius: 2px; border-top-right-radius: 2px } input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="week"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], textarea { -webkit-appearance: none; background-color: #fff; font-family: inherit; border: 1px solid #d8d8d8; box-shadow: none; color: rgba(0,0,0,0.75); display: block; font-size: 1rem; margin: 0 0 1.1428571429rem 0; padding:.5714285714rem; height: 2.6428571429rem; width: 100%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; transition: box-shadow .45s, border-color .45s ease-in-out } input[type="text"]:focus, input[type="password"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="time"]:focus, input[type="url"]:focus, textarea:focus { box-shadow: 0 0 5px none; border-color: none } input[type="text"]:focus, input[type="password"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="time"]:focus, input[type="url"]:focus, textarea:focus { background: #fefefe; border-color: none; outline: none } input[type="text"][disabled], fieldset[disabled] input[type="text"], input[type="password"][disabled], fieldset[disabled] input[type="password"], input[type="date"][disabled], fieldset[disabled] input[type="date"], input[type="datetime"][disabled], fieldset[disabled] input[type="datetime"], input[type="datetime-local"][disabled], fieldset[disabled] input[type="datetime-local"], input[type="month"][disabled], fieldset[disabled] input[type="month"], input[type="week"][disabled], fieldset[disabled] input[type="week"], input[type="email"][disabled], fieldset[disabled] input[type="email"], input[type="number"][disabled], fieldset[disabled] input[type="number"], input[type="search"][disabled], fieldset[disabled] input[type="search"], input[type="tel"][disabled], fieldset[disabled] input[type="tel"], input[type="time"][disabled], fieldset[disabled] input[type="time"], input[type="url"][disabled], fieldset[disabled] input[type="url"], textarea[disabled], fieldset[disabled] textarea { background-color: #ddd } input[type="text"].radius, input[type="password"].radius, input[type="date"].radius, input[type="datetime"].radius, input[type="datetime-local"].radius, input[type="month"].radius, input[type="week"].radius, input[type="email"].radius, input[type="number"].radius, input[type="search"].radius, input[type="tel"].radius, input[type="time"].radius, input[type="url"].radius, textarea.radius { border-radius: 2px } input[type="submit"] { -webkit-appearance: none } textarea[rows] { height: auto } select { -webkit-appearance: none !important; background-color: #fafafa; background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMHB4IiB5PSIwcHgiIHdpZ<KEY>ID<KEY>); background-repeat: no-repeat; background-position: 97% center; border: 1px solid #d8d8d8; padding:.5714285714rem; font-size: 1rem; color: rgba(0,0,0,0.75); line-height: normal; border-radius: 0; height: 2.6428571429rem } select.radius { border-radius: 2px } select:hover { background-color: #f3f3f3; border-color: none } input[type="file"], input[type="checkbox"], input[type="radio"], select { margin: 0 0 1.1428571429rem 0 } input[type="checkbox"]+label, input[type="radio"]+label { display: inline-block; margin-left:.5714285714rem; margin-right: 1.1428571429rem; margin-bottom: 0; vertical-align: baseline } input[type="file"] { width: 100% } fieldset { border: 1px solid #ddd; padding: 1.4285714286rem; margin: 1.2857142857rem 0 } fieldset legend { font-weight: bold; background: #fff; padding:0 .2142857143rem; margin: 0; margin-left:-.2142857143rem } [data-abide] .error small.error, [data-abide] span.error, [data-abide] small.error { display: block; padding:.4285714286rem .6428571429rem .6428571429rem; margin-top: -1px; margin-bottom: 1.1428571429rem; font-size:.8571428571rem; font-weight: normal; font-style: italic; background: #f04124; color: #fff } [data-abide] span.error, [data-abide] small.error { display: none } span.error, small.error { display: block; padding:.4285714286rem .6428571429rem .6428571429rem; margin-top: -1px; margin-bottom: 1.1428571429rem; font-size:.8571428571rem; font-weight: normal; font-style: italic; background: #f04124; color: #fff } .error input, .error textarea, .error select { margin-bottom: 0 } .error input[type="checkbox"], .error input[type="radio"] { margin-bottom: 1.1428571429rem } .error label, .error label.error { color: #f04124 } .error small.error { display: block; padding:.4285714286rem .6428571429rem .6428571429rem; margin-top: -1px; margin-bottom: 1.1428571429rem; font-size:.8571428571rem; font-weight: normal; font-style: italic; background: #f04124; color: #fff } .error>label>small { color: #676767; background: transparent; padding: 0; text-transform: capitalize; font-style: normal; font-size: 60%; margin: 0; display: inline } .error span.error-message { display: block } input.error, textarea.error { margin-bottom: 0 } label.error { color: #f04124 } .row { width: 100%; margin-left: auto; margin-right: auto; margin-top: 0; margin-bottom: 0; max-width: 85.7142857143rem } .row:before, .row:after { content: " "; display: table } .row:after { clear: both } .row.collapse>.column, .row.collapse>.columns { padding-left: 0; padding-right: 0 } .row.collapse .row { margin-left: 0; margin-right: 0 } .row .row { width: auto; margin-left: -1rem; margin-right: -1rem; margin-top: 0; margin-bottom: 0; max-width: none } .row .row:before, .row .row:after { content: " "; display: table } .row .row:after { clear: both } .row .row.collapse { width: auto; margin: 0; max-width: none } .row .row.collapse:before, .row .row.collapse:after { content: " "; display: table } .row .row.collapse:after { clear: both } .column, .columns { padding-left: 1rem; padding-right: 1rem; width: 100%; float: left } @media only screen { .small-push-0 { position: relative; left: 0%; right: auto } .small-pull-0 { position: relative; right: 0%; left: auto } .small-push-1 { position: relative; left: 8.3333333333%; right: auto } .small-pull-1 { position: relative; right: 8.3333333333%; left: auto } .small-push-2 { position: relative; left: 16.6666666667%; right: auto } .small-pull-2 { position: relative; right: 16.6666666667%; left: auto } .small-push-3 { position: relative; left: 25%; right: auto } .small-pull-3 { position: relative; right: 25%; left: auto } .small-push-4 { position: relative; left: 33.3333333333%; right: auto } .small-pull-4 { position: relative; right: 33.3333333333%; left: auto } .small-push-5 { position: relative; left: 41.6666666667%; right: auto } .small-pull-5 { position: relative; right: 41.6666666667%; left: auto } .small-push-6 { position: relative; left: 50%; right: auto } .small-pull-6 { position: relative; right: 50%; left: auto } .small-push-7 { position: relative; left: 58.3333333333%; right: auto } .small-pull-7 { position: relative; right: 58.3333333333%; left: auto } .small-push-8 { position: relative; left: 66.6666666667%; right: auto } .small-pull-8 { position: relative; right: 66.6666666667%; left: auto } .small-push-9 { position: relative; left: 75%; right: auto } .small-pull-9 { position: relative; right: 75%; left: auto } .small-push-10 { position: relative; left: 83.3333333333%; right: auto } .small-pull-10 { position: relative; right: 83.3333333333%; left: auto } .small-push-11 { position: relative; left: 91.6666666667%; right: auto } .small-pull-11 { position: relative; right: 91.6666666667%; left: auto } .column, .columns { position: relative; padding-left: 1rem; padding-right: 1rem; float: left } .small-1 { width: 8.3333333333% } .small-2 { width: 16.6666666667% } .small-3 { width: 25% } .small-4 { width: 33.3333333333% } .small-5 { width: 41.6666666667% } .small-6 { width: 50% } .small-7 { width: 58.3333333333% } .small-8 { width: 66.6666666667% } .small-9 { width: 75% } .small-10 { width: 83.3333333333% } .small-11 { width: 91.6666666667% } .small-12 { width: 100% } [class*="column"]+[class*="column"]:last-child { float:right } [class*="column"]+[class*="column"].end { float:left } .small-offset-0 { margin-left: 0% !important } .small-offset-1 { margin-left: 8.3333333333% !important } .small-offset-2 { margin-left: 16.6666666667% !important } .small-offset-3 { margin-left: 25% !important } .small-offset-4 { margin-left: 33.3333333333% !important } .small-offset-5 { margin-left: 41.6666666667% !important } .small-offset-6 { margin-left: 50% !important } .small-offset-7 { margin-left: 58.3333333333% !important } .small-offset-8 { margin-left: 66.6666666667% !important } .small-offset-9 { margin-left: 75% !important } .small-offset-10 { margin-left: 83.3333333333% !important } .small-offset-11 { margin-left: 91.6666666667% !important } .small-reset-order { margin-left: 0; margin-right: 0; left: auto; right: auto; float: left } .column.small-centered, .columns.small-centered { margin-left: auto; margin-right: auto; float: none !important } .column.small-uncentered, .columns.small-uncentered { margin-left: 0; margin-right: 0; float: left !important } .column.small-uncentered.opposite, .columns.small-uncentered.opposite { float: right } } @media only screen and (min-width: 48em) { .medium-push-0 { position: relative; left: 0%; right: auto } .medium-pull-0 { position: relative; right: 0%; left: auto } .medium-push-1 { position: relative; left: 8.3333333333%; right: auto } .medium-pull-1 { position: relative; right: 8.3333333333%; left: auto } .medium-push-2 { position: relative; left: 16.6666666667%; right: auto } .medium-pull-2 { position: relative; right: 16.6666666667%; left: auto } .medium-push-3 { position: relative; left: 25%; right: auto } .medium-pull-3 { position: relative; right: 25%; left: auto } .medium-push-4 { position: relative; left: 33.3333333333%; right: auto } .medium-pull-4 { position: relative; right: 33.3333333333%; left: auto } .medium-push-5 { position: relative; left: 41.6666666667%; right: auto } .medium-pull-5 { position: relative; right: 41.6666666667%; left: auto } .medium-push-6 { position: relative; left: 50%; right: auto } .medium-pull-6 { position: relative; right: 50%; left: auto } .medium-push-7 { position: relative; left: 58.3333333333%; right: auto } .medium-pull-7 { position: relative; right: 58.3333333333%; left: auto } .medium-push-8 { position: relative; left: 66.6666666667%; right: auto } .medium-pull-8 { position: relative; right: 66.6666666667%; left: auto } .medium-push-9 { position: relative; left: 75%; right: auto } .medium-pull-9 { position: relative; right: 75%; left: auto } .medium-push-10 { position: relative; left: 83.3333333333%; right: auto } .medium-pull-10 { position: relative; right: 83.3333333333%; left: auto } .medium-push-11 { position: relative; left: 91.6666666667%; right: auto } .medium-pull-11 { position: relative; right: 91.6666666667%; left: auto } .column, .columns { position: relative; padding-left: 1rem; padding-right: 1rem; float: left } .medium-1 { width: 8.3333333333% } .medium-2 { width: 16.6666666667% } .medium-3 { width: 25% } .medium-4 { width: 33.3333333333% } .medium-5 { width: 41.6666666667% } .medium-6 { width: 50% } .medium-7 { width: 58.3333333333% } .medium-8 { width: 66.6666666667% } .medium-9 { width: 75% } .medium-10 { width: 83.3333333333% } .medium-11 { width: 91.6666666667% } .medium-12 { width: 100% } [class*="column"]+[class*="column"]:last-child { float:right } [class*="column"]+[class*="column"].end { float:left } .medium-offset-0 { margin-left: 0% !important } .medium-offset-1 { margin-left: 8.3333333333% !important } .medium-offset-2 { margin-left: 16.6666666667% !important } .medium-offset-3 { margin-left: 25% !important } .medium-offset-4 { margin-left: 33.3333333333% !important } .medium-offset-5 { margin-left: 41.6666666667% !important } .medium-offset-6 { margin-left: 50% !important } .medium-offset-7 { margin-left: 58.3333333333% !important } .medium-offset-8 { margin-left: 66.6666666667% !important } .medium-offset-9 { margin-left: 75% !important } .medium-offset-10 { margin-left: 83.3333333333% !important } .medium-offset-11 { margin-left: 91.6666666667% !important } .medium-reset-order { margin-left: 0; margin-right: 0; left: auto; right: auto; float: left } .column.medium-centered, .columns.medium-centered { margin-left: auto; margin-right: auto; float: none !important } .column.medium-uncentered, .columns.medium-uncentered { margin-left: 0; margin-right: 0; float: left !important } .column.medium-uncentered.opposite, .columns.medium-uncentered.opposite { float: right } .push-0 { position: relative; left: 0%; right: auto } .pull-0 { position: relative; right: 0%; left: auto } .push-1 { position: relative; left: 8.3333333333%; right: auto } .pull-1 { position: relative; right: 8.3333333333%; left: auto } .push-2 { position: relative; left: 16.6666666667%; right: auto } .pull-2 { position: relative; right: 16.6666666667%; left: auto } .push-3 { position: relative; left: 25%; right: auto } .pull-3 { position: relative; right: 25%; left: auto } .push-4 { position: relative; left: 33.3333333333%; right: auto } .pull-4 { position: relative; right: 33.3333333333%; left: auto } .push-5 { position: relative; left: 41.6666666667%; right: auto } .pull-5 { position: relative; right: 41.6666666667%; left: auto } .push-6 { position: relative; left: 50%; right: auto } .pull-6 { position: relative; right: 50%; left: auto } .push-7 { position: relative; left: 58.3333333333%; right: auto } .pull-7 { position: relative; right: 58.3333333333%; left: auto } .push-8 { position: relative; left: 66.6666666667%; right: auto } .pull-8 { position: relative; right: 66.6666666667%; left: auto } .push-9 { position: relative; left: 75%; right: auto } .pull-9 { position: relative; right: 75%; left: auto } .push-10 { position: relative; left: 83.3333333333%; right: auto } .pull-10 { position: relative; right: 83.3333333333%; left: auto } .push-11 { position: relative; left: 91.6666666667%; right: auto } .pull-11 { position: relative; right: 91.6666666667%; left: auto } } @media only screen and (min-width: 70.5em) { .large-push-0 { position: relative; left: 0%; right: auto } .large-pull-0 { position: relative; right: 0%; left: auto } .large-push-1 { position: relative; left: 8.3333333333%; right: auto } .large-pull-1 { position: relative; right: 8.3333333333%; left: auto } .large-push-2 { position: relative; left: 16.6666666667%; right: auto } .large-pull-2 { position: relative; right: 16.6666666667%; left: auto } .large-push-3 { position: relative; left: 25%; right: auto } .large-pull-3 { position: relative; right: 25%; left: auto } .large-push-4 { position: relative; left: 33.3333333333%; right: auto } .large-pull-4 { position: relative; right: 33.3333333333%; left: auto } .large-push-5 { position: relative; left: 41.6666666667%; right: auto } .large-pull-5 { position: relative; right: 41.6666666667%; left: auto } .large-push-6 { position: relative; left: 50%; right: auto } .large-pull-6 { position: relative; right: 50%; left: auto } .large-push-7 { position: relative; left: 58.3333333333%; right: auto } .large-pull-7 { position: relative; right: 58.3333333333%; left: auto } .large-push-8 { position: relative; left: 66.6666666667%; right: auto } .large-pull-8 { position: relative; right: 66.6666666667%; left: auto } .large-push-9 { position: relative; left: 75%; right: auto } .large-pull-9 { position: relative; right: 75%; left: auto } .large-push-10 { position: relative; left: 83.3333333333%; right: auto } .large-pull-10 { position: relative; right: 83.3333333333%; left: auto } .large-push-11 { position: relative; left: 91.6666666667%; right: auto } .large-pull-11 { position: relative; right: 91.6666666667%; left: auto } .column, .columns { position: relative; padding-left: 1rem; padding-right: 1rem; float: left } .large-1 { width: 8.3333333333% } .large-2 { width: 16.6666666667% } .large-3 { width: 25% } .large-4 { width: 33.3333333333% } .large-5 { width: 41.6666666667% } .large-6 { width: 50% } .large-7 { width: 58.3333333333% } .large-8 { width: 66.6666666667% } .large-9 { width: 75% } .large-10 { width: 83.3333333333% } .large-11 { width: 91.6666666667% } .large-12 { width: 100% } [class*="column"]+[class*="column"]:last-child { float:right } [class*="column"]+[class*="column"].end { float:left } .large-offset-0 { margin-left: 0% !important } .large-offset-1 { margin-left: 8.3333333333% !important } .large-offset-2 { margin-left: 16.6666666667% !important } .large-offset-3 { margin-left: 25% !important } .large-offset-4 { margin-left: 33.3333333333% !important } .large-offset-5 { margin-left: 41.6666666667% !important } .large-offset-6 { margin-left: 50% !important } .large-offset-7 { margin-left: 58.3333333333% !important } .large-offset-8 { margin-left: 66.6666666667% !important } .large-offset-9 { margin-left: 75% !important } .large-offset-10 { margin-left: 83.3333333333% !important } .large-offset-11 { margin-left: 91.6666666667% !important } .large-reset-order { margin-left: 0; margin-right: 0; left: auto; right: auto; float: left } .column.large-centered, .columns.large-centered { margin-left: auto; margin-right: auto; float: none !important } .column.large-uncentered, .columns.large-uncentered { margin-left: 0; margin-right: 0; float: left !important } .column.large-uncentered.opposite, .columns.large-uncentered.opposite { float: right } .push-0 { position: relative; left: 0%; right: auto } .pull-0 { position: relative; right: 0%; left: auto } .push-1 { position: relative; left: 8.3333333333%; right: auto } .pull-1 { position: relative; right: 8.3333333333%; left: auto } .push-2 { position: relative; left: 16.6666666667%; right: auto } .pull-2 { position: relative; right: 16.6666666667%; left: auto } .push-3 { position: relative; left: 25%; right: auto } .pull-3 { position: relative; right: 25%; left: auto } .push-4 { position: relative; left: 33.3333333333%; right: auto } .pull-4 { position: relative; right: 33.3333333333%; left: auto } .push-5 { position: relative; left: 41.6666666667%; right: auto } .pull-5 { position: relative; right: 41.6666666667%; left: auto } .push-6 { position: relative; left: 50%; right: auto } .pull-6 { position: relative; right: 50%; left: auto } .push-7 { position: relative; left: 58.3333333333%; right: auto } .pull-7 { position: relative; right: 58.3333333333%; left: auto } .push-8 { position: relative; left: 66.6666666667%; right: auto } .pull-8 { position: relative; right: 66.6666666667%; left: auto } .push-9 { position: relative; left: 75%; right: auto } .pull-9 { position: relative; right: 75%; left: auto } .push-10 { position: relative; left: 83.3333333333%; right: auto } .pull-10 { position: relative; right: 83.3333333333%; left: auto } .push-11 { position: relative; left: 91.6666666667%; right: auto } .pull-11 { position: relative; right: 91.6666666667%; left: auto } } .inline-list { margin: 0 auto 1.2142857143rem auto; margin-left: -1.5714285714rem; margin-right: 0; padding: 0; list-style: none; overflow: hidden } .inline-list>li { list-style: none; float: left; margin-left: 1.5714285714rem; display: block } .inline-list>li>* { display: block } .reveal-modal-bg { position: fixed; height: 100%; width: 100%; background: #000; background: rgba(0,0,0,0.45); z-index: 99; display: none; top: 0; left: 0 } dialog, .reveal-modal { visibility: hidden; display: none; position: absolute; z-index: 100; width: 100vw; top: 0; left: 0; background-color: #fff; padding:.7142857143rem; border: solid 1px #666; box-shadow: 0 0 10px rgba(0,0,0,0.4) } @media only screen and (max-width: 48em) { dialog, .reveal-modal { min-height: 100vh } } @media only screen and (min-width: 48em) { dialog, .reveal-modal { left: 50% } } dialog .column, dialog .columns, .reveal-modal .column, .reveal-modal .columns { min-width: 0 } dialog>:first-child, .reveal-modal>:first-child { margin-top: 0 } dialog>:last-child, .reveal-modal>:last-child { margin-bottom: 0 } @media only screen and (min-width: 48em) { dialog, .reveal-modal { margin-left: -40%; width: 80% } } @media only screen and (min-width: 48em) { dialog, .reveal-modal { top: 7.1428571429rem } } dialog .close-reveal-modal, .reveal-modal .close-reveal-modal { font-size: 1.4285714286rem; line-height: 1; position: absolute; top:.5714285714rem; right:.7857142857rem; color: #aaa; font-weight: bold; cursor: pointer } dialog[open] { display: block; visibility: visible } @media only screen and (min-width: 48em) { dialog, .reveal-modal { padding: 1.0714285714rem } dialog.radius, .reveal-modal.radius { border-radius: 2px } dialog.round, .reveal-modal.round { border-radius: 1000px } dialog.collapse, .reveal-modal.collapse { padding: 0 } } @media only screen and (min-width: 48em) and (min-width: 48em) { dialog.tiny, .reveal-modal.tiny { margin-left: -15%; width: 30% } } @media only screen and (min-width: 48em) and (min-width: 48em) { dialog.small, .reveal-modal.small { margin-left: -20%; width: 40% } } @media only screen and (min-width: 48em) and (min-width: 48em) { dialog.medium, .reveal-modal.medium { margin-left: -30%; width: 60% } } @media only screen and (min-width: 48em) and (min-width: 48em) { dialog.large, .reveal-modal.large { margin-left: -35%; width: 70% } } @media only screen and (min-width: 48em) and (min-width: 48em) { dialog.xlarge, .reveal-modal.xlarge { margin-left: -47.5%; width: 95% } } @media only screen and (min-width: 48em) { dialog.full, .reveal-modal.full { top: 0; left: 0; height: 100vh; min-height: 100vh; margin-left: 0 !important } } @media only screen and (min-width: 48em) and (min-width: 48em) { dialog.full, .reveal-modal.full { margin-left: -50vw; width: 100vw } } @media print { dialog, .reveal-modal { background: #fff !important } } table { background: #fff; margin-bottom: 1.4285714286rem; border: solid 1px #ddd } table caption { background: transparent; color: #fefefe; font-size: 1.1428571429rem; font-weight: bold } table thead { background: #006699 } table thead tr th, table thead tr td { padding: 1.0714285714rem; font-size: 1.0714285714rem; font-weight: normal; color: #fefefe } table tfoot { background: #006699 } table tfoot tr th, table tfoot tr td { padding: 1.0714285714rem; font-size: 1.0714285714rem; font-weight: normal; color: #fefefe } table tr th, table tr td { padding:.6428571429rem .7142857143rem; font-size: 1rem; color: #222; text-align: left } table tr.even, table tr.alt, table tr:nth-of-type(even) { background: #f9f9f9 } table thead tr th, table tfoot tr th, table tfoot tr td, table tbody tr th, table tbody tr td, table tr td { display: table-cell; line-height: 1.2857142857rem } .text-left { text-align: left !important } .text-right { text-align: right !important } .text-center { text-align: center !important } .text-justify { text-align: justify !important } @media only screen and (max-width: 48em) { .small-only-text-left { text-align: left !important } .small-only-text-right { text-align: right !important } .small-only-text-center { text-align: center !important } .small-only-text-justify { text-align: justify !important } } @media only screen { .small-text-left { text-align: left !important } .small-text-right { text-align: right !important } .small-text-center { text-align: center !important } .small-text-justify { text-align: justify !important } } @media only screen and (min-width: 48em) and (max-width: 70.5em) { .medium-only-text-left { text-align: left !important } .medium-only-text-right { text-align: right !important } .medium-only-text-center { text-align: center !important } .medium-only-text-justify { text-align: justify !important } } @media only screen and (min-width: 48em) { .medium-text-left { text-align: left !important } .medium-text-right { text-align: right !important } .medium-text-center { text-align: center !important } .medium-text-justify { text-align: justify !important } } @media only screen and (min-width: 70.5em) and (max-width: 90em) { .large-only-text-left { text-align: left !important } .large-only-text-right { text-align: right !important } .large-only-text-center { text-align: center !important } .large-only-text-justify { text-align: justify !important } } @media only screen and (min-width: 70.5em) { .large-text-left { text-align: left !important } .large-text-right { text-align: right !important } .large-text-center { text-align: center !important } .large-text-justify { text-align: justify !important } } @media only screen and (min-width: 90.063em) and (max-width: 120em) { .xlarge-only-text-left { text-align: left !important } .xlarge-only-text-right { text-align: right !important } .xlarge-only-text-center { text-align: center !important } .xlarge-only-text-justify { text-align: justify !important } } @media only screen and (min-width: 90.063em) { .xlarge-text-left { text-align: left !important } .xlarge-text-right { text-align: right !important } .xlarge-text-center { text-align: center !important } .xlarge-text-justify { text-align: justify !important } } @media only screen and (min-width: 120.063em) and (max-width: 99999999em) { .xxlarge-only-text-left { text-align: left !important } .xxlarge-only-text-right { text-align: right !important } .xxlarge-only-text-center { text-align: center !important } .xxlarge-only-text-justify { text-align: justify !important } } @media only screen and (min-width: 120.063em) { .xxlarge-text-left { text-align: left !important } .xxlarge-text-right { text-align: right !important } .xxlarge-text-center { text-align: center !important } .xxlarge-text-justify { text-align: justify !important } } div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, th, td { margin: 0; padding: 0 } a { color: #363636; text-decoration: none; line-height: inherit } a:hover, a:focus { color: #2e2e2e } a img { border: none } p { font-family: inherit; font-weight: normal; font-size: 1rem; line-height: 1.5; margin-bottom: 1.4285714286rem; text-rendering: optimizeLegibility } p.lead { font-size: 1.25rem; line-height: 1.6 } p aside { font-size: 1rem; line-height: 1.35; font-style: italic } h1, h2, h3, h4, h5, h6 { font-family: "Open Sans", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: normal; font-style: normal; color: #222; text-rendering: optimizeLegibility; margin-top:.2rem; margin-bottom:.5rem; line-height: 1.4 } h1 small, h2 small, h3 small, h4 small, h5 small, h6 small { font-size: 60%; color: #6f6f6f; line-height: 0 } h1 { font-size: 2.4285714286rem } h2 { font-size: 1.9285714286rem } h3 { font-size: 1.5714285714rem } h4 { font-size: 1.2857142857rem } h5 { font-size: 1.2857142857rem } h6 { font-size: 1rem } .subheader { line-height: 1.4; color: #6f6f6f; font-weight: normal; margin-top:.2rem; margin-bottom:.5rem } hr { border: solid #ddd; border-width: 1px 0 0; clear: both; margin: 1.4285714286rem 0 1.3571428571rem; height: 0 } em, i { font-style: italic; line-height: inherit } strong, b { font-weight: bold; line-height: inherit } small { font-size: 60%; line-height: inherit } code { font-family: Consolas, "Liberation Mono", Courier, monospace; font-weight: bold; color: #bd260d } ul, ol, dl { font-size: 1rem; line-height: 1.5; margin-bottom: 1.4285714286rem; list-style-position: outside; font-family: inherit } ul { margin-left: 1.1rem } ul.no-bullet { margin-left: 0 } ul.no-bullet li ul, ul.no-bullet li ol { margin-left: 1.4285714286rem; margin-bottom: 0; list-style: none } ul li ul, ul li ol { margin-left: 1.4285714286rem; margin-bottom: 0 } ul.square li ul, ul.circle li ul, ul.disc li ul { list-style: inherit } ul.square { list-style-type: square; margin-left: 1.1rem } ul.circle { list-style-type: circle; margin-left: 1.1rem } ul.disc { list-style-type: disc; margin-left: 1.1rem } ul.no-bullet { list-style: none } ol { margin-left: 1.4rem } ol li ul, ol li ol { margin-left: 1.4285714286rem; margin-bottom: 0 } dl dt { margin-bottom:.3rem; font-weight: bold } dl dd { margin-bottom:.8571428571rem } abbr, acronym { text-transform: uppercase; font-size: 90%; color: #363636; border-bottom: 1px dotted #ddd; cursor: help } abbr { text-transform: none } blockquote { margin: 0 0 1.4285714286rem; padding:.6428571429rem 1.4285714286rem 0 1.3571428571rem; border-left: 1px solid #ddd } blockquote cite { display: block; font-size:.9285714286rem; color: #555 } blockquote cite:before { content: "\2014 \0020" } blockquote cite a, blockquote cite a:visited { color: #555 } blockquote, blockquote p { line-height: 1.5; color: #6f6f6f } .vcard { display: inline-block; margin: 0 0 1.4285714286rem 0; border: 1px solid #ddd; padding:.7142857143rem .8571428571rem } .vcard li { margin: 0; display: block } .vcard .fn { font-weight: bold; font-size: 1.0714285714rem } .vevent .summary { font-weight: bold } .vevent abbr { cursor: default; text-decoration: none; font-weight: bold; border: none; padding:0 .0714285714rem } @media only screen and (min-width: 48em) { h1, h2, h3, h4, h5, h6 { line-height: 1.4 } h1 { font-size: 3.1428571429rem } h2 { font-size: 2.6428571429rem } h3 { font-size: 1.9285714286rem } h4 { font-size: 1.6428571429rem } } .print-only { display: none !important } @media print { * { background: transparent !important; color: #000 !important; box-shadow: none !important; text-shadow: none !important } a, a:visited { text-decoration: underline } a[href]:after { content: " (" attr(href) ")" } abbr[title]:after { content: " (" attr(title) ")" } .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: "" } pre, blockquote { border: 1px solid #999; page-break-inside: avoid } thead { display: table-header-group } tr, img { page-break-inside: avoid } img { max-width: 100% !important } @page { margin:0.5cm } p, h2, h3 { orphans: 3; widows: 3 } h2, h3 { page-break-after: avoid } .hide-on-print { display: none !important } .print-only { display: block !important } .hide-for-print { display: none !important } .show-for-print { display: inherit !important } } .tabs { margin-bottom: 0 !important; margin-left: 0 } .tabs:before, .tabs:after { content: " "; display: table } .tabs:after { clear: both } .tabs dd, .tabs .tab-title { position: relative; margin-bottom: 0 !important; list-style: none; float: left } .tabs dd>a, .tabs .tab-title>a { display: block; background: #dcdcdc; color: #575757; padding:.5714285714rem 1.1428571429rem; font-family: "Open Sans", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-size:.9285714286rem } .tabs dd>a:hover, .tabs .tab-title>a:hover { background: #cfcfcf } .tabs dd.active a, .tabs .tab-title.active a { background: #870f68; color: #575757 } .tabs.radius dd:first-child a, .tabs.radius .tab:first-child a { border-bottom-left-radius: 2px; border-top-left-radius: 2px } .tabs.radius dd:last-child a, .tabs.radius .tab:last-child a { border-bottom-right-radius: 2px; border-top-right-radius: 2px } .tabs.vertical dd, .tabs.vertical .tab { position: inherit; float: none; display: block; top: auto } .tabs-content { margin-bottom: 1.7142857143rem; width: 100% } .tabs-content:before, .tabs-content:after { content: " "; display: table } .tabs-content:after { clear: both } .tabs-content>.content { display: none; float: left; padding: 1rem 0; width: 100% } .tabs-content>.content.active { display: block; float: none } .tabs-content>.content.contained { padding: 1rem } .tabs-content.vertical { display: block } .tabs-content.vertical>.content { padding: 0 1rem } @media only screen and (min-width: 48em) { .tabs.vertical { width: 20%; float: left; margin-bottom: 1.25rem } .tabs-content.vertical { width: 80%; float: left; margin-left: -1px } } .no-js .tabs-content>.content { display: block; float: none } .off-canvas-wrap { -webkit-backface-visibility: hidden; position: relative; width: 100%; overflow: hidden } .off-canvas-wrap.move-right, .off-canvas-wrap.move-left { min-height: 100%; -webkit-overflow-scrolling: touch } .inner-wrap { -webkit-backface-visibility: hidden; position: relative; width: 100%; -webkit-transition: -webkit-transform 500ms ease; -moz-transition: -moz-transform 500ms ease; -ms-transition: -ms-transform 500ms ease; -o-transition: -o-transform 500ms ease; transition: transform 500ms ease } .inner-wrap:before, .inner-wrap:after { content: " "; display: table } .inner-wrap:after { clear: both } .tab-bar { -webkit-backface-visibility: hidden; background: #333; color: #fff; height: 3.2142857143rem; line-height: 3.2142857143rem; position: relative } .tab-bar h1, .tab-bar h2, .tab-bar h3, .tab-bar h4, .tab-bar h5, .tab-bar h6 { color: #fff; font-weight: bold; line-height: 3.2142857143rem; margin: 0 } .tab-bar h1, .tab-bar h2, .tab-bar h3, .tab-bar h4 { font-size: 1.2857142857rem } .left-small { width: 3.2142857143rem; height: 3.2142857143rem; position: absolute; top: 0; border-right: solid 1px #1a1a1a; left: 0 } .right-small { width: 3.2142857143rem; height: 3.2142857143rem; position: absolute; top: 0; border-left: solid 1px #1a1a1a; right: 0 } .tab-bar-section { padding:0 .7142857143rem; position: absolute; text-align: center; height: 3.2142857143rem; top: 0 } @media only screen and (min-width: 48em) { .tab-bar-section { text-align: left } } .tab-bar-section.left { left: 0; right: 3.2142857143rem } .tab-bar-section.right { left: 3.2142857143rem; right: 0 } .tab-bar-section.middle { left: 3.2142857143rem; right: 3.2142857143rem } .tab-bar .menu-icon { text-indent: 2.5rem; width: 3.2142857143rem; height: 3.2142857143rem; display: block; line-height: 2.3571428571rem; padding: 0; color: #fff; position: relative; transform: translate3d(0, 0, 0) } .tab-bar .menu-icon span:after { content: ''; position: absolute; display: block; height: 0; top: 50%; margin-top:-.5714285714rem; left: 1.0357142857rem; box-shadow: 0 0px 0 1px #fff, 0 7px 0 1px #fff, 0 14px 0 1px #fff; width: 1.1428571429rem } .tab-bar .menu-icon span:hover:after { box-shadow: 0 0px 0 1px #b3b3b3, 0 7px 0 1px #b3b3b3, 0 14px 0 1px #b3b3b3 } .left-off-canvas-menu { -webkit-backface-visibility: hidden; width: 17.8571428571rem; top: 0; bottom: 0; position: absolute; overflow-y: auto; background: #333; z-index: 1001; box-sizing: content-box; transition: transform 500ms ease 0s; -webkit-overflow-scrolling: touch; -ms-transform: translate(-100%, 0); -webkit-transform: translate3d(-100%, 0, 0); -moz-transform: translate3d(-100%, 0, 0); -ms-transform: translate3d(-100%, 0, 0); -o-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); left: 0 } .left-off-canvas-menu * { -webkit-backface-visibility: hidden } .right-off-canvas-menu { -webkit-backface-visibility: hidden; width: 17.8571428571rem; top: 0; bottom: 0; position: absolute; overflow-y: auto; background: #333; z-index: 1001; box-sizing: content-box; transition: transform 500ms ease 0s; -webkit-overflow-scrolling: touch; -ms-transform: translate(100%, 0); -webkit-transform: translate3d(100%, 0, 0); -moz-transform: translate3d(100%, 0, 0); -ms-transform: translate3d(100%, 0, 0); -o-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); right: 0 } .right-off-canvas-menu * { -webkit-backface-visibility: hidden } ul.off-canvas-list { list-style-type: none; padding: 0; margin: 0 } ul.off-canvas-list li label { padding: 0.3rem 1.0714285714rem; color: #999; text-transform: uppercase; font-weight: bold; background: #444; border-top: 1px solid #5e5e5e; border-bottom: none; margin: 0 } ul.off-canvas-list li a { display: block; padding:.6666666667rem; color: rgba(255,255,255,0.7); border-bottom: 1px solid #262626; transition: background 300ms ease } ul.off-canvas-list li a:hover { background: #242424 } .move-right>.inner-wrap { -ms-transform: translate(17.8571428571rem, 0); -webkit-transform: translate3d(17.8571428571rem, 0, 0); -moz-transform: translate3d(17.8571428571rem, 0, 0); -ms-transform: translate3d(17.8571428571rem, 0, 0); -o-transform: translate3d(17.8571428571rem, 0, 0); transform: translate3d(17.8571428571rem, 0, 0) } .move-right .exit-off-canvas { -webkit-backface-visibility: hidden; transition: background 300ms ease; cursor: pointer; box-shadow: -4px 0 4px rgba(0,0,0,0.5), 4px 0 4px rgba(0,0,0,0.5); display: block; position: absolute; background: rgba(255,255,255,0.2); top: 0; bottom: 0; left: 0; right: 0; z-index: 1002; -webkit-tap-highlight-color: transparent } @media only screen and (min-width: 48em) { .move-right .exit-off-canvas:hover { background: rgba(255,255,255,0.05) } } .move-left>.inner-wrap { -ms-transform: translate(-17.8571428571rem, 0); -webkit-transform: translate3d(-17.8571428571rem, 0, 0); -moz-transform: translate3d(-17.8571428571rem, 0, 0); -ms-transform: translate3d(-17.8571428571rem, 0, 0); -o-transform: translate3d(-17.8571428571rem, 0, 0); transform: translate3d(-17.8571428571rem, 0, 0) } .move-left .exit-off-canvas { -webkit-backface-visibility: hidden; transition: background 300ms ease; cursor: pointer; box-shadow: -4px 0 4px rgba(0,0,0,0.5), 4px 0 4px rgba(0,0,0,0.5); display: block; position: absolute; background: rgba(255,255,255,0.2); top: 0; bottom: 0; left: 0; right: 0; z-index: 1002; -webkit-tap-highlight-color: transparent } @media only screen and (min-width: 48em) { .move-left .exit-off-canvas:hover { background: rgba(255,255,255,0.05) } } .offcanvas-overlap .left-off-canvas-menu, .offcanvas-overlap .right-off-canvas-menu { -ms-transform: none; -webkit-transform: none; -moz-transform: none; -o-transform: none; transform: none; z-index: 1003 } .offcanvas-overlap .exit-offcanvas-menu { -webkit-backface-visibility: hidden; transition: background 300ms ease; cursor: pointer; box-shadow: -4px 0 4px rgba(0,0,0,0.5), 4px 0 4px rgba(0,0,0,0.5); display: block; position: absolute; background: rgba(255,255,255,0.2); top: 0; bottom: 0; left: 0; right: 0; z-index: 1002; -webkit-tap-highlight-color: transparent; z-index: 1002 } @media only screen and (min-width: 48em) { .offcanvas-overlap .exit-offcanvas-menu:hover { background: rgba(255,255,255,0.05) } } .no-csstransforms .left-off-canvas-menu { left: -17.8571428571rem } .no-csstransforms .right-off-canvas-menu { right: -17.8571428571rem } .no-csstransforms .move-left>.inner-wrap { right: 17.8571428571rem } .no-csstransforms .move-right>.inner-wrap { left: 17.8571428571rem } @media only screen { .show-for-small-only, .show-for-small-up, .show-for-small, .show-for-small-down, .hide-for-medium-only, .hide-for-medium-up, .hide-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down { display: inherit !important } .hide-for-small-only, .hide-for-small-up, .hide-for-small, .hide-for-small-down, .show-for-medium-only, .show-for-medium-up, .show-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down { display: none !important } .visible-for-small-only, .visible-for-small-up, .visible-for-small, .visible-for-small-down, .hidden-for-medium-only, .hidden-for-medium-up, .hidden-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down { position: static !important; height: auto; width: auto; overflow: visible; clip: auto } .hidden-for-small-only, .hidden-for-small-up, .hidden-for-small, .hidden-for-small-down, .visible-for-medium-only, .visible-for-medium-up, .visible-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px) } table.show-for-small-only, table.show-for-small-up, table.show-for-small, table.show-for-small-down, table.hide-for-medium-only, table.hide-for-medium-up, table.hide-for-medium, table.show-for-medium-down, table.hide-for-large-only, table.hide-for-large-up, table.hide-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down { display: table } thead.show-for-small-only, thead.show-for-small-up, thead.show-for-small, thead.show-for-small-down, thead.hide-for-medium-only, thead.hide-for-medium-up, thead.hide-for-medium, thead.show-for-medium-down, thead.hide-for-large-only, thead.hide-for-large-up, thead.hide-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down { display: table-header-group !important } tbody.show-for-small-only, tbody.show-for-small-up, tbody.show-for-small, tbody.show-for-small-down, tbody.hide-for-medium-only, tbody.hide-for-medium-up, tbody.hide-for-medium, tbody.show-for-medium-down, tbody.hide-for-large-only, tbody.hide-for-large-up, tbody.hide-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down { display: table-row-group !important } tr.show-for-small-only, tr.show-for-small-up, tr.show-for-small, tr.show-for-small-down, tr.hide-for-medium-only, tr.hide-for-medium-up, tr.hide-for-medium, tr.show-for-medium-down, tr.hide-for-large-only, tr.hide-for-large-up, tr.hide-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down { display: table-row !important } th.show-for-small-only, td.show-for-small-only, th.show-for-small-up, td.show-for-small-up, th.show-for-small, td.show-for-small, th.show-for-small-down, td.show-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.hide-for-medium-up, td.hide-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.show-for-medium-down, td.show-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.hide-for-large-up, td.hide-for-large-up, th.hide-for-large, td.hide-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down { display: table-cell !important } } @media only screen and (min-width: 48em) { .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .show-for-medium-only, .show-for-medium-up, .show-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down { display: inherit !important } .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .hide-for-medium-only, .hide-for-medium-up, .hide-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down { display: none !important } .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .visible-for-medium-only, .visible-for-medium-up, .visible-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down { position: static !important; height: auto; width: auto; overflow: visible; clip: auto } .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .hidden-for-medium-only, .hidden-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px) } table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.show-for-medium-only, table.show-for-medium-up, table.show-for-medium, table.show-for-medium-down, table.hide-for-large-only, table.hide-for-large-up, table.hide-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down { display: table } thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.show-for-medium-only, thead.show-for-medium-up, thead.show-for-medium, thead.show-for-medium-down, thead.hide-for-large-only, thead.hide-for-large-up, thead.hide-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down { display: table-header-group !important } tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.show-for-medium-only, tbody.show-for-medium-up, tbody.show-for-medium, tbody.show-for-medium-down, tbody.hide-for-large-only, tbody.hide-for-large-up, tbody.hide-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down { display: table-row-group !important } tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.show-for-medium-only, tr.show-for-medium-up, tr.show-for-medium, tr.show-for-medium-down, tr.hide-for-large-only, tr.hide-for-large-up, tr.hide-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down { display: table-row !important } th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.show-for-medium-only, td.show-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.show-for-medium, td.show-for-medium, th.show-for-medium-down, td.show-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.hide-for-large-up, td.hide-for-large-up, th.hide-for-large, td.hide-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down { display: table-cell !important } } @media only screen and (min-width: 70.5em) { .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down { display: inherit !important } .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down { display: none !important } .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down { position: static !important; height: auto; width: auto; overflow: visible; clip: auto } .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px) } table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.show-for-large-only, table.show-for-large-up, table.show-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down { display: table } thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.show-for-large-only, thead.show-for-large-up, thead.show-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down { display: table-header-group !important } tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.show-for-large-only, tbody.show-for-large-up, tbody.show-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down { display: table-row-group !important } tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.show-for-large-only, tr.show-for-large-up, tr.show-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down { display: table-row !important } th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.show-for-large-only, td.show-for-large-only, th.show-for-large-up, td.show-for-large-up, th.show-for-large, td.show-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down { display: table-cell !important } } @media only screen and (min-width: 90.063em) { .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .hide-for-large-only, .show-for-large-up, .hide-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down { display: inherit !important } .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .show-for-large-only, .hide-for-large-up, .show-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down { display: none !important } .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .hidden-for-large-only, .visible-for-large-up, .hidden-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down { position: static !important; height: auto; width: auto; overflow: visible; clip: auto } .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .visible-for-large-only, .hidden-for-large-up, .visible-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px) } table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.hide-for-large-only, table.show-for-large-up, table.hide-for-large, table.hide-for-large-down, table.show-for-xlarge-only, table.show-for-xlarge-up, table.show-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down { display: table } thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.hide-for-large-only, thead.show-for-large-up, thead.hide-for-large, thead.hide-for-large-down, thead.show-for-xlarge-only, thead.show-for-xlarge-up, thead.show-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down { display: table-header-group !important } tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.hide-for-large-only, tbody.show-for-large-up, tbody.hide-for-large, tbody.hide-for-large-down, tbody.show-for-xlarge-only, tbody.show-for-xlarge-up, tbody.show-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down { display: table-row-group !important } tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.hide-for-large-only, tr.show-for-large-up, tr.hide-for-large, tr.hide-for-large-down, tr.show-for-xlarge-only, tr.show-for-xlarge-up, tr.show-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down { display: table-row !important } th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.show-for-large-up, td.show-for-large-up, th.hide-for-large, td.hide-for-large, th.hide-for-large-down, td.hide-for-large-down, th.show-for-xlarge-only, td.show-for-xlarge-only, th.show-for-xlarge-up, td.show-for-xlarge-up, th.show-for-xlarge, td.show-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down { display: table-cell !important } } @media only screen and (min-width: 120.063em) { .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .hide-for-large-only, .show-for-large-up, .hide-for-large, .hide-for-large-down, .hide-for-xlarge-only, .show-for-xlarge-up, .hide-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .show-for-xxlarge-down { display: inherit !important } .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .show-for-large-only, .hide-for-large-up, .show-for-large, .show-for-large-down, .show-for-xlarge-only, .hide-for-xlarge-up, .show-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .hide-for-xxlarge-down { display: none !important } .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .hidden-for-large-only, .visible-for-large-up, .hidden-for-large, .hidden-for-large-down, .hidden-for-xlarge-only, .visible-for-xlarge-up, .hidden-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .visible-for-xxlarge-down { position: static !important; height: auto; width: auto; overflow: visible; clip: auto } .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .visible-for-large-only, .hidden-for-large-up, .visible-for-large, .visible-for-large-down, .visible-for-xlarge-only, .hidden-for-xlarge-up, .visible-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .hidden-for-xxlarge-down { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px) } table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.hide-for-large-only, table.show-for-large-up, table.hide-for-large, table.hide-for-large-down, table.hide-for-xlarge-only, table.show-for-xlarge-up, table.hide-for-xlarge, table.hide-for-xlarge-down, table.show-for-xxlarge-only, table.show-for-xxlarge-up, table.show-for-xxlarge, table.show-for-xxlarge-down { display: table } thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.hide-for-large-only, thead.show-for-large-up, thead.hide-for-large, thead.hide-for-large-down, thead.hide-for-xlarge-only, thead.show-for-xlarge-up, thead.hide-for-xlarge, thead.hide-for-xlarge-down, thead.show-for-xxlarge-only, thead.show-for-xxlarge-up, thead.show-for-xxlarge, thead.show-for-xxlarge-down { display: table-header-group !important } tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.hide-for-large-only, tbody.show-for-large-up, tbody.hide-for-large, tbody.hide-for-large-down, tbody.hide-for-xlarge-only, tbody.show-for-xlarge-up, tbody.hide-for-xlarge, tbody.hide-for-xlarge-down, tbody.show-for-xxlarge-only, tbody.show-for-xxlarge-up, tbody.show-for-xxlarge, tbody.show-for-xxlarge-down { display: table-row-group !important } tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.hide-for-large-only, tr.show-for-large-up, tr.hide-for-large, tr.hide-for-large-down, tr.hide-for-xlarge-only, tr.show-for-xlarge-up, tr.hide-for-xlarge, tr.hide-for-xlarge-down, tr.show-for-xxlarge-only, tr.show-for-xxlarge-up, tr.show-for-xxlarge, tr.show-for-xxlarge-down { display: table-row !important } th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.show-for-large-up, td.show-for-large-up, th.hide-for-large, td.hide-for-large, th.hide-for-large-down, td.hide-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.show-for-xlarge-up, td.show-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.hide-for-xlarge-down, td.hide-for-xlarge-down, th.show-for-xxlarge-only, td.show-for-xxlarge-only, th.show-for-xxlarge-up, td.show-for-xxlarge-up, th.show-for-xxlarge, td.show-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down { display: table-cell !important } } .show-for-landscape, .hide-for-portrait { display: inherit !important } .hide-for-landscape, .show-for-portrait { display: none !important } table.hide-for-landscape, table.show-for-portrait { display: table } thead.hide-for-landscape, thead.show-for-portrait { display: table-header-group !important } tbody.hide-for-landscape, tbody.show-for-portrait { display: table-row-group !important } tr.hide-for-landscape, tr.show-for-portrait { display: table-row !important } td.hide-for-landscape, td.show-for-portrait, th.hide-for-landscape, th.show-for-portrait { display: table-cell !important } @media only screen and (orientation: landscape) { .show-for-landscape, .hide-for-portrait { display: inherit !important } .hide-for-landscape, .show-for-portrait { display: none !important } table.show-for-landscape, table.hide-for-portrait { display: table } thead.show-for-landscape, thead.hide-for-portrait { display: table-header-group !important } tbody.show-for-landscape, tbody.hide-for-portrait { display: table-row-group !important } tr.show-for-landscape, tr.hide-for-portrait { display: table-row !important } td.show-for-landscape, td.hide-for-portrait, th.show-for-landscape, th.hide-for-portrait { display: table-cell !important } } @media only screen and (orientation: portrait) { .show-for-portrait, .hide-for-landscape { display: inherit !important } .hide-for-portrait, .show-for-landscape { display: none !important } table.show-for-portrait, table.hide-for-landscape { display: table } thead.show-for-portrait, thead.hide-for-landscape { display: table-header-group !important } tbody.show-for-portrait, tbody.hide-for-landscape { display: table-row-group !important } tr.show-for-portrait, tr.hide-for-landscape { display: table-row !important } td.show-for-portrait, td.hide-for-landscape, th.show-for-portrait, th.hide-for-landscape { display: table-cell !important } } .show-for-touch { display: none !important } .hide-for-touch { display: inherit !important } .touch .show-for-touch { display: inherit !important } .touch .hide-for-touch { display: none !important } table.hide-for-touch { display: table } .touch table.show-for-touch { display: table } thead.hide-for-touch { display: table-header-group !important } .touch thead.show-for-touch { display: table-header-group !important } tbody.hide-for-touch { display: table-row-group !important } .touch tbody.show-for-touch { display: table-row-group !important } tr.hide-for-touch { display: table-row !important } .touch tr.show-for-touch { display: table-row !important } td.hide-for-touch { display: table-cell !important } .touch td.show-for-touch { display: table-cell !important } th.hide-for-touch { display: table-cell !important } .touch th.show-for-touch { display: table-cell !important } @media print { .show-for-print { display: block } .hide-for-print { display: none } table.show-for-print { display: table } thead.show-for-print { display: table-header-group !important } tbody.show-for-print { display: table-row-group !important } tr.show-for-print { display: table-row !important } td.show-for-print { display: table-cell !important } th.show-for-print { display: table-cell !important } } .btn { text-align: left; -webkit-box-shadow: inset 4px 4px 8px -5px rgba(50,50,50,0.5); -moz-box-shadow: inset 4px 4px 8px -5px rgba(50,50,50,0.5); box-shadow: inset 4px 4px 8px -5px rgba(50,50,50,0.5) } .btn.lt-grey { background-color: #f1f1f1; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; color: #717171; font-weight: normal; border: 1px solid #e5e5e5; transition: background ease .8s } .btn.lt-grey:hover { background-color: #eaeaea } .btn.grey { background-color: #d8d8d8; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; color: #717171; font-weight: normal; border: 1px solid #e5e5e5; transition: background ease .8s } .btn.grey:hover { background-color: #eaeaea } .btn.tertiary { background-color: #d2c73b } .btn.tertiary:hover, .btn.tertiary:focus { background-color: #bab02b } .btn.inline { width: auto; text-align: center } .btn.full { width: 100% } .btn.type-formations { padding: 13px 5px } .btn.secondary-lt { background-color: #29A617 } .btn.secondary-lt:hover, .btn.secondary-lt:focus { background-color: #269B15 } .btn.secondary-lt2 { background-color: #31CC2D } .btn.secondary-lt2:hover, .btn.secondary-lt2:focus { background-color: #2BAF27 } .btn.ajax { background: url("../images/ajax-btn.gif") no-repeat center center #870f68; text-indent: -99999em; width: 205px; outline: none } .type-formations { padding: 13px 5px } .icon-corner { display: none } .btn-doc { padding: 10px 0 10px 10px } .radio [type="radio"]:not(:checked), .radio [type="radio"]:checked { position: absolute; left: -9999px } .radio [type="radio"]:not(:checked)+label, .radio [type="radio"]:checked+label { position: relative; padding-left: 25px; cursor: pointer; margin-left: 0 } .radio [type="radio"]:not(:checked)+label:before, .radio [type="radio"]:checked+label:before { content: ''; position: absolute; left: 0; top: -1px; width: 20px; height: 20px; border: 2px solid #d8d8d8; border-radius: 50% } .radio [type="radio"]:not(:checked)+label:after, .radio [type="radio"]:checked+label:after { content: ''; position: absolute; top: 4px; left: 5px; width: 10px; height: 10px; border-radius: 50%; background-color: #870f68; transition: all .2s } .radio [type="radio"]:not(:checked)+label:after { opacity: 0; transform: scale(0) } .radio [type="radio"]:checked+label:after { opacity: 1; transform: scale(1) } .radio [type="radio"]:disabled:not(:checked)+label:before, .radio [type="radio"]:disabled:checked+label:before { box-shadow: none; border-color: #bbb; background-color: #ddd } .radio [type="radio"]:disabled:checked+label:after { color: #999 } .radio [type="radio"]:disabled+label { color: #aaa } .radio [type="radio"]:checked:focus+label:before, .radio [type="radio"]:not(:checked):focus+label:before { border: 2px solid #870f68 } .radio [type="radio"]:checked+label:before { border: 2px solid #870f68 } #echeance label { display: block; margin-bottom: 8px } .checkbox [type="checkbox"]:not(:checked), .checkbox [type="checkbox"]:checked { position: absolute; left: -9999px } .checkbox [type="checkbox"]:not(:checked)+label, .checkbox [type="checkbox"]:checked+label { position: relative; padding-left: 25px; cursor: pointer; margin: 0 } .checkbox [type="checkbox"]:not(:checked)+label:before, .checkbox [type="checkbox"]:checked+label:before { content: ''; position: absolute; left: 0; top: -1px; width: 20px; height: 20px; border: 2px solid #d8d8d8; border-radius: 2px } .checkbox [type="checkbox"]:not(:checked)+label:after, .checkbox [type="checkbox"]:checked+label:after { content: ''; position: absolute; top: -1px; left: 0px; width: 20px; height: 20px; background: url("../images/check-purple.png") no-repeat center center } .checkbox [type="checkbox"]:not(:checked)+label:after { opacity: 0; transform: scale(0) } .checkbox [type="checkbox"]:checked+label:after { opacity: 1; transform: scale(1) } .checkbox [type="checkbox"]:disabled:not(:checked)+label:before, .checkbox [type="checkbox"]:disabled:checked+label:before { box-shadow: none; border-color: #bbb; background-color: #ddd } .checkbox [type="checkbox"]:disabled:checked+label:after { color: #999 } .checkbox [type="checkbox"]:disabled+label { color: #aaa } @media screen and (min-width: 768px) { .icon-corner { display: inline-block } } .panel { padding:.7142857143rem; margin-bottom: 1.4285714286rem; background-color: #fefefe; display: block; position: relative; border-radius: 2px } .panel.panel-table { display: table } .panel.panel-table .container-image { display: table-cell; vertical-align: middle } .panel.border-grey { border: 1px solid #d8d8d8 } .panel.border-large { border: 4px solid #870f68 } .panel.border-small { border: 1px solid #870f68 } .panel.primary { background-color: #575757; color: #fefefe } .panel.secondary { background-color: #870f68; color: #fefefe } .panel.tertiary { background-color: #d2c73b; color: #fefefe } .panel:before, .panel:after { content: " "; display: table } .panel:after { clear: both } .panel.bdr-shad { box-shadow: 0px 0px 3px 0px rgba(119,119,119,0.75); -moz-box-shadow: 0px 0px 3px 0px rgba(119,119,119,0.75); -webkit-box-shadow: 0px 0px 3px 0px rgba(119,119,119,0.75) } .panel.bdr-left { position: relative } .panel.bdr-left:before { content: ''; height: 105%; width: 6px; background-color: #d2c73b; display: block; position: absolute; left: -1px; top: -1px } .panel.reset { padding: 0 } .panel.grey { background-color: #dcdcdc } .panel.lt-grey { background-color: #f1f1f1 } .panel.shadow { -webkit-box-shadow: inset 0px 4px 10px -5px rgba(50,50,50,0.5); -moz-box-shadow: inset 0px 4px 10px -5px rgba(50,50,50,0.5); box-shadow: inset 0px 4px 10px -5px rgba(50,50,50,0.5) } .panel-formations { padding: 15px 20px; margin-bottom: 1.4285714286rem } .panel-reference { width: 75px; height: 75px; margin: auto } .panel-form-doc label { color: #870f68 } .panel-pupil-month { padding: 1.0714285714rem } .panel-one-click { padding: 15px } .social { margin-top: 5px; padding-top: 20px; border-top: 1px solid #cbcbcb } .panel-zoom { padding: 5px 5px 34px 5px } .panel-zoom .btn { position: absolute; left: 0; bottom: 0; margin: 0; width: 100%; text-align: center } .panel-contact-us { text-align: left; padding: 20px 30px; display: inline-block } .panel-contact-us .icon-corner { display: block } .panel-contact-us .container-text { padding-left: 5px } .panel-contact-us a { cursor: default !important } .panel-icon { position: relative } .panel-icon .icon-corner { position: absolute; left: -15px; top: -5px } .panel-icon .title, .panel-icon .title_landing { padding-left: 5px } .panel-documentation { display: none } @media screen and (min-width: 1128px) { .panel-formations-box .title, .panel-formations-box .title_landing { margin-bottom: 20px } .panel-documentation { display: block } } @media screen and (min-width: 768px) { .panel { padding:.5714285714rem 1.1428571429rem } .panel.medium { padding: 20px } .panel-formations-box .content-box { padding: 5px 5px 0 10px } .social .form-actions.center { text-align: right } .panel-documentation .btn { margin-top: 25px } } @media screen and (min-width: 450px) { .panel-formations-box .content-box { padding: 10px 5px 0 10px } .panel-zoom { padding: 5px } .panel-zoom .btn { position: relative; left: auto; right: 0; bottom: 0; margin: 0; width: auto; text-align: center } } @media screen and (max-width: 449px) { .panel-formations-box .content-box { padding: 5px 0 0 } } .icon { vertical-align: middle; display: inline-block; margin-right: 5px; float: left } .icon.circle { width: 90px; height: 90px; border: 5px solid #fefefe; border-radius: 0%; background-color: rgba(200,200,200,0.5); overflow: hidden } .container-image.center { text-align: center } .ajax-loader { display: none } .icon-video { position: relative } .icon-video:before { content: ''; display: block; position: absolute; height: 100%; width: 100%; z-index: 10; background: url("../images/icones/icon-play.png") 55% 50% no-repeat } .text-icon { display: block } .text-icon.ml-small { margin-left: 20px } .text-icon.ml-medium { marigin-left: 30px } .text-icon.ml-large { margin-left: 35px } .text-icon.ml-xlarge { margin-left: 45px } @media screen and (max-width: 449px) { .icon.circle { float: none; margin-right: auto; margin-left: auto; display: block } } .list-icon { margin: 0; list-style: none } .list-icon li { margin-bottom: 5px } .bulleted-list.square { list-style-image: url("../images/icones/bullet-point-purple.jpg"); margin-left: 0; list-style-position: outside; margin-bottom: 0 } .bulleted-list.category { width: 30%; margin-right: 3%; display: inline-block; vertical-align: top } .bulleted-list.outside { list-style-position: outside; margin-left: 1rem } .bulleted-list li { margin-bottom: 10px } .bulleted-list li a:hover, .bulleted-list li .active { color: #870f68; text-decoration: underline } .actu-side-list { list-style: none; margin-left: 0 } .actu-side-list li { margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #a5a5a5 } .actu-side-list li:last-child { border-bottom: none } .actu-side-list li a { color: #fefefe } .post-content ul>li, .content ul>li { list-style-image: url("../images/icones/bullet-point-purple.jpg"); list-style-position: outside; margin: 4px 0 4px 10px } .list-side-navigation { list-style: none; margin-left: 0 } .list-side-navigation.square { list-style-image: url("../images/icones/bullet-point-purple.jpg"); list-style-position: outside; margin-left: 15px } .list-side-navigation li { padding: 2px; border-bottom: 1px solid #cbcbcb } .list-side-navigation li:last-child { border-bottom: 0 } .list-side-navigation li:hover, .list-side-navigation li.active { font-weight: bold; color: #575757; background-color: #e5e5e5 } .list-side-navigation li a { display: block; padding: 5px 0; min-width: 230px } .list-formations .icon { vertical-align: text-bottom } .list-formations li { margin-bottom: 10px } .list-formations li:last-child { margin-bottom: 0 } .list-formations li a { font-weight: bold } .list-formations li a:hover, .list-formations li a.active { color: #870f68; text-decoration: underline } .block-formations>li { padding-bottom: 0 } .list-actu { list-style: none; margin: 0 } .list-actu li { border-bottom: 1px solid #cbcbcb } .list-actu li:last-child { border: none } .list-one-click { list-style-type: square; margin-bottom: 0 } .list-one-click a { color: #fefefe } .ordered-list { font-weight: bold; color: #d2c73b; font-size: 1.1428571429rem } .ordered-list li { margin-bottom: 20px } .ordered-list .bulleted-list li { margin-bottom: 5px; font-size: 1rem } @media screen and (min-width: 768px) { .list-formations { display: inline-block; vertical-align: top } } .error-message { display: block; padding:.4285714286rem .6428571429rem .6428571429rem; margin-top: -1px; margin-bottom: 1.1428571429rem; font-size:.8571428571rem; font-weight: normal; font-style: italic; background: #EDBABE; color: #333; font-size:.7857142857rem; padding:.2857142857rem .5714285714rem; color: #cc3d3d } .form-actions.a-center { text-align: center } .form-actions.a-right { text-align: right } .input { margin-bottom: 20px } .input input, .input select { margin-bottom: 0; width: 100%; height: 30px; font-size:.9285714286rem } .input textarea { margin-bottom: 0 } .input.secondary>label { color: #870f68 } .input.secondary input, .input.secondary textarea, .input.secondary select { background-color: #f1f1f1 } label.inline { margin: 0; padding: 0 } .custom-select { padding: 0; background-position: 98% center; border: 1px solid #d8d8d8 } .custom-select:hover { background-color: #fefefe } .custom-select:focus { outline: none } @media screen and (max-width: 767px) { .radio input+label { margin-bottom: 10px } } .obligatory label:first-of-type:after { content: ' (Champs obligatoire)'; font-weight: normal; font-size:.8571428571rem; color: #989898; font-style: italic } @media screen and (min-width: 768px) { label.inline { padding-top:.3571428571rem } } .link:hover { color: #870f68; text-decoration: underline } .link.secondary { color: #CC0000 } .link.tertiary { color: #d2c73b } .link.underline { text-decoration: underline } .link.lt-grey { color: #7d7d7d } .link.grey { color: #717171 } .link.dk-grey { color: #646464 } .link.xsmall { font-size:.8571428571rem } .link.pdf:after { content: ''; display: inline-block; width: 16px; height: 16px; vertical-align: middle; background: inline-image("front/icones/icon-pdf.html") no-repeat center center; margin-left: 6px } .link.default { cursor: default } .select2 { width: 100% } .select2-container { margin: 0; position: relative; display: inline-block; zoom: 1; *display:inline; vertical-align: middle; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box } .select2-drop { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box } .select2-search { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box } .select2-search input { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box } .select2-container .select2-choice { border: 1px solid #d8d8d8; display: block; height: 30px; padding: 0 0 0 8px; overflow: hidden; position: relative; white-space: nowrap; line-height: 30px; color: #444; text-decoration: none; border-radius: 2px; background-clip: padding-box; -webkit-touch-callout: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-color: #fff } .select2-container.select2-drop-above .select2-choice { border-bottom-color: #aaa; border-radius: 0 0 2px 2px } .select2-container.select2-allowclear .select2-choice .select2-chosen { margin-right: 42px } .select2-container .select2-choice>.select2-chosen { margin-right: 26px; display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; float: none; width: auto } .select2-container .select2-choice abbr { display: none; width: 12px; height: 12px; position: absolute; right: 24px; top: 8px; font-size:.0714285714rem; text-decoration: none; border: 0; background: url("../bower_components/select2/select2.png") right top no-repeat; cursor: pointer; outline: 0 } .select2-container.select2-allowclear .select2-choice abbr { display: inline-block } .select2-container .select2-choice abbr:hover { background-position: right -11px; cursor: pointer } .select2-drop-mask { border: 0; margin: 0; padding: 0; position: fixed; left: 0; top: 0; min-height: 100%; min-width: 100%; height: auto; width: auto; opacity: 0; z-index: 9998; background-color: #fff; filter: alpha(opacity=0) } .select2-drop { width: 100%; margin-top: -1px; position: absolute; z-index: 9999; top: 100%; background: #fff; color: #000; border-top: 0; border-radius: 0 0 2px 2px; -webkit-box-shadow: 0 4px 5px rgba(0,0,0,0.15); box-shadow: 0 4px 5px rgba(0,0,0,0.15) } .select2-drop.select2-drop-above { margin-top: 1px; border-bottom: 0; border-radius: 2px 2px 0 0; -webkit-box-shadow: 0 -4px 5px rgba(0,0,0,0.15); box-shadow: 0 -4px 5px rgba(0,0,0,0.15) } .select2-drop-active { border-top: none } .select2-drop-auto-width { width: auto } .select2-drop-auto-width .select2-search { padding-top: 4px } .select2-container .select2-choice .select2-arrow { display: inline-block; width: 20px; height: 100%; position: absolute; right: 0; top: 0; border-radius: 0 2px 2px 0; background-clip: padding-box; background: #870f68 } .select2-container .select2-choice .select2-arrow b { display: block; width: 100%; height: 100%; background: url("../images/icones/icon-arrow-down.png") no-repeat center center } .select2-search { display: inline-block; width: 100%; min-height: 26px; margin: 0; padding-left: 4px; padding-right: 4px; position: relative; z-index: 10000; white-space: nowrap } .select2-search input { width: 100%; height: auto !important; min-height: 26px; padding: 4px 20px 4px 5px; margin: 0; outline: 0; font-family: sans-serif; font-size:.0714285714rem; border-radius: 0; -webkit-box-shadow: none; box-shadow: none; background: #fff url("bower_components/select2/select2.html") no-repeat 100% -22px; background: url("bower_components/select2/select2.html") no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee)); background: url("bower_components/select2/select2.html") no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%); background: url("bower_components/select2/select2.html") no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%); background: url("bower_components/select2/select2.html") no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0 } .select2-drop.select2-drop-above .select2-search input { margin-top: 4px } .select2-search input.select2-active { background: #fff inline-image("../bower_components/select2/select2-spinner.html") no-repeat 100%; background: inline-image("../bower_components/select2/select2-spinner.html") no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee)); background: inline-image("../bower_components/select2/select2-spinner.html") no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%); background: inline-image("../bower_components/select2/select2-spinner.html") no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%); background: inline-image("../bower_components/select2/select2-spinner.html") no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0 } .select2-container-active .select2-choice, .select2-container-active .select2-choices { outline: none; -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.3); box-shadow: 0 0 5px rgba(0,0,0,0.3) } .select2-dropdown-open .select2-choice { border-bottom-color: transparent; -webkit-box-shadow: 0 1px 0 #fff inset; box-shadow: 0 1px 0 #fff inset; border-bottom-left-radius: 0; border-bottom-right-radius: 0 } .select2-dropdown-open.select2-drop-above .select2-choice, .select2-dropdown-open.select2-drop-above .select2-choices { border-top-color: transparent } .select2-dropdown-open .select2-choice .select2-arrow { background: #870f68; border-left: none; filter: none } .select2-dropdown-open .select2-choice .select2-arrow b { background: url("../images/icones/icon-arrow-up.png") no-repeat center center } .select2-hidden-accessible { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px } .select2-results { max-height: 200px; padding: 0 0 0 4px; margin: 4px 4px 4px 0; position: relative; overflow-x: hidden; overflow-y: auto; -webkit-tap-highlight-color: transparent } .select2-results ul.select2-result-sub { margin: 0; padding-left: 0 } .select2-results ul.select2-result-sub>li .select2-result-label { padding-left: 20px } .select2-results ul.select2-result-sub ul.select2-result-sub>li .select2-result-label { padding-left: 40px } .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub>li .select2-result-label { padding-left: 60px } .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub>li .select2-result-label { padding-left: 80px } .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub>li .select2-result-label { padding-left: 100px } .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub>li .select2-result-label { padding-left: 110px } .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub>li .select2-result-label { padding-left: 120px } .select2-results li { list-style: none; display: list-item; background-image: none } .select2-results li.select2-result-with-children>.select2-result-label { font-weight: bold } .select2-results .select2-result-label { padding: 3px 7px 4px; margin: 0; cursor: pointer; min-height: 1em; -webkit-touch-callout: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none } .select2-results .select2-highlighted { background: #3875d7; color: #fff } .select2-results li em { background: #feffde; font-style: normal } .select2-results .select2-highlighted em { background: transparent } .select2-results .select2-highlighted ul { background: #fff; color: #000 } .select2-results .select2-no-results, .select2-results .select2-searching, .select2-results .select2-selection-limit { background: #f4f4f4; display: list-item; padding-left: 5px } .select2-results .select2-disabled { background: #f4f4f4; display: list-item; cursor: default } .select2-results .select2-disabled.select2-highlighted { color: #666; background: #f4f4f4; display: list-item; cursor: default } .select2-results .select2-selected { display: none } .select2-more-results { background: #f4f4f4; display: list-item } .select2-more-results.select2-active { background: #f4f4f4 inline-image("../bower_components/select2/select2-spinner.html") no-repeat 100% } .select2-container.select2-container-disabled .select2-choice { background-color: #f4f4f4; background-image: none; border: 1px solid #ddd; cursor: default } .select2-container.select2-container-disabled .select2-choice .select2-arrow { background-color: #f4f4f4; background-image: none; border-left: 0 } .select2-container.select2-container-disabled .select2-choice abbr { display: none } .select2-container-multi .select2-choices { height: auto !important; height: 1%; margin: 0; padding: 0; position: relative; border: 1px solid #aaa; cursor: text; overflow: hidden; background-color: #fff } .select2-locked { padding: 3px 5px 3px 5px !important } .select2-container-multi .select2-choices { min-height: 26px } .select2-container-multi.select2-container-active .select2-choices { border: 1px solid #5897fb; outline: none; -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.3); box-shadow: 0 0 5px rgba(0,0,0,0.3) } .select2-container-multi .select2-choices li { float: left; list-style: none } html[dir="rtl"] .select2-container-multi .select2-choices li { float: right } .select2-container-multi .select2-choices .select2-search-field { margin: 0; padding: 0; white-space: nowrap } .select2-container-multi .select2-choices .select2-search-field input { padding: 5px; margin: 1px 0; font-family: sans-serif; font-size: 100%; color: #666; outline: 0; border: 0; -webkit-box-shadow: none; box-shadow: none; background: transparent !important } .select2-container-multi .select2-choices .select2-search-field input.select2-active { background: #fff inline-image("../bower_components/select2/select2-spinner.html") no-repeat 100% !important } .select2-default { color: #999 !important } .select2-container-multi .select2-choices .select2-search-choice { padding: 3px 5px 3px 18px; margin: 3px 0 3px 5px; position: relative; line-height:.9285714286rem; color: #333; cursor: default; border: 1px solid #aaaaaa; border-radius: 3px; -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0,0,0,0.05); box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0,0,0,0.05); background-clip: padding-box; -webkit-touch-callout: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-color: #e4e4e4 } html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice { margin-left: 0; margin-right: 5px } .select2-container-multi .select2-choices .select2-search-choice .select2-chosen { cursor: default } .select2-container-multi .select2-choices .select2-search-choice-focus { background: #d4d4d4 } .select2-search-choice-close { display: block; width: 12px; height: 13px; position: absolute; right: 3px; top: 4px; font-size:.0714285714rem; outline: none; background: inline-image("../bower_components/select2/select2.html") right top no-repeat } html[dir="rtl"] .select2-search-choice-close { right: auto; left: 3px } .select2-container-multi .select2-search-choice-close { left: 3px } .select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover, .select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close { background-position: right -11px } .select2-container-multi.select2-container-disabled .select2-choices { background-color: #f4f4f4; background-image: none; border: 1px solid #ddd; cursor: default } .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice { padding: 3px 5px 3px 5px; border: 1px solid #ddd; background-image: none; background-color: #f4f4f4 } .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close { display: none; background: none } .select2-result-selectable .select2-match, .select2-result-unselectable .select2-match { text-decoration: underline } .select2-offscreen { clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; border: 0 !important; margin: 0 !important; padding: 0 !important; overflow: hidden !important; position: absolute !important; outline: 0 !important; left: 0px !important; top: 0px !important } .select2-offscreen:focus { clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; border: 0 !important; margin: 0 !important; padding: 0 !important; overflow: hidden !important; position: absolute !important; outline: 0 !important; left: 0px !important; top: 0px !important } .select2-display-none { display: none } .select2-measure-scrollbar { position: absolute; top: -10000px; left: -10000px; width: 100px; height: 100px; overflow: scroll } @media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx) { .select2-search input, .select2-search-choice-close { background-image:url("../../images/icones/icon-arrow-up.png") !important; background-repeat:no-repeat !important } .select2-container .select2-choice abbr, .select2-container .select2-choice .select2-arrow b { background-image:url("../../images/icones/icon-arrow-down.png") !important; background-repeat:no-repeat !important } .select2-search input { background-position:100% -21px !important } } @media screen and (min-width: 768px) { .select2-container .select2-choice .select2-arrow { width: 32px } } .home-slider-wrapper .home-banner { width: 100%; float: left } .partners-slider-wrapper img { float: left } .testimonies-slider-wrapper .testimony-slide { float: left } .slider-navigation { width: 32px; height: 32px; display: block; border-radius: 50%; background: #575757 no-repeat center center; color: #fefefe; position: absolute; top: 33% } .prev-navigation { left: 10px; background-image: url("../images/icones/prev.png") } .next-navigation { right: 10px; background-image: url("../imamges/icones/next.png") } .slider-testimony { width: 19px; height: 37px; display: block; position: absolute; top: 33%; background: no-repeat center center } .prev-testimony { left: 10px; background-image: url("../images/icones/testimony-arrow-left.png") } .next-testimony { right: 10px; background-image: url("../images/icones/testimony-arrow-right.png") } .tabs dd { font-weight: bold; float: none } .tabs dd a { border-radius: 2px 2px 0 0; -webkit-box-shadow: inset 0px 4px 8px -5px rgba(50,50,50,0.5); -moz-box-shadow: inset 0px 4px 8px -5px rgba(50,50,50,0.5); box-shadow: inset 0px 4px 8px -5px rgba(50,50,50,0.5) } .tabs dd.active a { color: #fefefe } .tabs-content { border-top: 2px solid #870f68; border-bottom: 2px solid #870f68 } @media screen and (min-width: 768px) { .tabs dd { float: left; margin-right: 6px; text-align: center } .tabs dd:last-child { margin-right: 0 } .tabs dd a { padding:0 .3571428571rem; font-size:.8571428571rem; width: 6.7857142857rem; height: 2.5714285714rem; vertical-align: middle; display: table-cell } .new_formation .tabs dd a { font-size: 1.1428571429rem; width: auto; height: auto; padding: 9px 20px; text-decoration: none } } .close-reveal-modal { z-index: 100 } .closed { display: inline-block; background-color: #1f1f1f; color: #fff; font-weight: bold; position: absolute; width: 26px; height: 26px; border-radius: 50%; right: -10px; top: -10px; text-align: center; font-size: 1.1428571429rem; line-height: 1.8571428571rem } .closed:hover { color: #fff } .reveal-modal { min-height: auto } ul.pagination { padding: 15px } ul.pagination .current { background-color: #870f68 } ul.pagination .arrow { background-color: #870f68; box-shadow: inset 0 2px 4px rgba(0,0,0,0.05) } ul.pagination li { background-color: #575757; display: inline-block; text-align: center; min-width: 26px; min-height: 26px; font-size: 14px; color: #fefefe; font-weight: bold; margin-left: 2px; line-height: 2rem } ul.pagination li a { transition: all ease .8s; display: block; height: 100%; padding: 0; color: #fefefe; font-size: 14px; font-weight: bold; border-radius: 0; line-height: 2rem } ul.pagination .disabled { display: none } .wrap-twitter-button, .wrap-facebook-button, .wrap-google-button { margin-top: 20px; text-align: center } .twitter-share-button, .fb-share-button { vertical-align: bottom !important } .wrap-google-button>div { vertical-align: bottom !important } .twitter-share-button { width: 100px !important } .share-label { font-weight: bold; padding-right: 20px; display: block } @media screen and (min-width: 460px) { .share-label { display: inline-block } .wrap-twitter-button, .wrap-facebook-button, .wrap-google-button { margin-top: 0; display: inline-block } .wrap-facebook-button, .wrap-google-button { margin-right: 10px } } .reveal-modal .alert-ajax { display: none } .reveal-modal .loader { position: fixed; padding: 20px; top: 20px; left: 42%; display: none } .hl-secondary { font-weight: bold; color: #870f68 } .hl-tertiary { font-weight: bold; color: #d2c73b } .mb-xsmall { margin-bottom: 5px } .mb0 { margin-bottom: 0 } .mb-small { margin-bottom: 10px } .mb-medium { margin-bottom: 15px } .mb-large { margin-bottom: 20px } .mb-xlarge { margin-bottom: 25px } .mb-xxlarge { margin-bottom: 30px } .mt-xsmall { margin-top: 5px } .mt-small { margin-top: 10px } .mt-medium { margin-top: 15px } .mt-large { margin-top: 20px } .mt-xlarge { margin-top: 25px } .mt-xxlarge { margin-top: 30px } .ml-xsmall { margin-left: 5px } .ml-small { margin-left: 10px } .ml-medium { margin-left: 15px } .ml-large { margin-left: 20px } .ml-xlarge { margin-left: 25px } .ml-xxlarge { margin-left: 30px } .ml-xsmall { margin-left: 5px } .mr-small { margin-right: 10px } .mr-medium { margin-right: 15px } .mr-large { margin-right: 20px } .mr-xlarge { margin-right: 25px } .mr-xxlarge { margin-right: 30px } .p0 { padding: 0 } .p3 { padding:.2142857143rem } .p5 { padding:.3571428571rem } .p10 { padding:.7142857143rem } .p15 { padding: 1.0714285714rem } .p20 { padding: 1.4285714286rem } .title.primary, .primary.title_landing, .text.primary { color: #575757 } .title.secondary, .secondary.title_landing, .text.secondary { color: #870f68 } .title.tertiary, .tertiary.title_landing, .text.tertiary { color: #d2c73b } .title.grey, .grey.title_landing, .text.grey { color: #dcdcdc } .title.dk-grey, .dk-grey.title_landing, .text.dk-grey { color: #8a8a8a } .title.lt-grey, .lt-grey.title_landing, .text.lt-grey { color: #e5e5e5 } .title.lt-secondary, .lt-secondary.title_landing, .text.lt-secondary { color: #b01488 } .title, .title_landing { display: block; font-weight: bold } .title .number, .title_landing .number { display: inline-block; width: 25px; height: 25px; text-align: center; vertical-align: middle; line-height: 1.8571428571rem } .title .number.secondary, .title_landing .number.secondary { background-color: #870f68; color: #fefefe } .title.xxsmall, .xxsmall.title_landing { font-size:.8571428571rem } .title.xsmall, .xsmall.title_landing { font-size: 1rem } .title.small, .small.title_landing { font-size: 1.0714285714rem } .title.medium, .medium.title_landing { font-size: 1.2142857143rem } .title.large, .large.title_landing { font-size: 1.2857142857rem } .title.xlarge, .xlarge.title_landing { font-size: 1.4285714286rem } .title.xxlarge, .xxlarge.title_landing { font-size: 1.7857142857rem } .title.line, .line.title_landing { border-bottom: 1px solid #870f68; padding-bottom: 2px } .title.line-tertiary, .line-tertiary.title_landing { border-bottom: 1px solid #d2c73b; padding-bottom: 2px } .line-grey { border-bottom: 1px solid #cbcbcb; padding-bottom: 10px; margin-bottom: 10px } .subtitle { font-style: italic; color: #959595; padding-left: 5px; border-left: 2px solid #d2c73b; font-size: 1.2857142857rem } .t-center { text-align: center } .text { font-weight: normal } .text.primary { color: #575757 } .text.xxsmall { font-size:.8571428571rem } .text.xsmall { font-size: 1rem } .text.small { font-size: 1.0714285714rem } .text.medium { font-size: 1.2142857143rem } .text.large { font-size: 1.3571428571rem } .text.xlarge { font-size: 1.4285714286rem } .upper { text-transform: uppercase } .italic { font-style: italic } .bold { font-weight: bold } @media screen and (max-width: 767px) { .title .link, .title_landing .link { display: inline-block; margin-top: 10px } } @font-face { font-family: 'Oswald'; src: url("../fonts/oswald-regular.eot"); src: url("../fonts/oswald-regulard41d.eot?#iefix") format("embedded-opentype"), url("../fonts/oswald-regular.woff") format("woff"), url("../fonts/oswald-regular.html") format("truetype"), url("../fonts/oswald-regular.svg#oswaldbook") format("svg"); font-weight: normal; font-style: normal } .wrap-header { border-top: 4px solid #575757 } .row.row-header { padding: 0 0 10px } @media only screen and (min-width: 70.5em) { .row.row-header { display: flex; justify-content: space-between; align-items: center } } .fede-wrap { display: flex } .fede { line-height: 1.2; font-size:.8571428571rem; color: #006699; display: inline-block; margin: 10px 0 0 10px; padding:.2857142857rem; width: 100% } .logo_fede { float: left; margin:0 .3571428571rem 0 0 } .bloc_home { width: 310px } .logo { max-width: 185px; margin: 10px 5px } @media only screen and (min-width: 48em) { .logo { max-width: 100%; margin: 0 } } .signature { display: none } @media only screen and (min-width: 70.5em) { .signature { display: inline-block; margin-right: auto } } .tagline { display: none } @media only screen and (min-width: 70.5em) { .tagline { display: inline-block; text-transform: uppercase; color: #006699; margin-top: 20px; line-height: 1.35; font-size: 1.1em; } } .no-flexbox .bloc_home { display: inline-block; vertical-align: middle } .topbar { text-align: right; margin-bottom: 20px } .topbar .topbar-link { padding: 12px; display: inline-block; vertical-align: top; background-color: #575757; color: #fefefe } .topbar .topbar-link:not(:first-child) { margin-left: 2px } .topbar .topbar-link img { margin-right: 0 } .topbar .topbar-link.pupil:hover span, .topbar .topbar-link.pupil:focus span { text-decoration: underline } .topbar .topbar-link span { display: none } .icon-phone { display: none } @media screen and (min-width: 768px) and (max-width: 1127px) { .topbar { float: right } } @media screen and (min-width: 1128px) { .icon { display: inline-block } .icon-phone-white { display: none } .topbar { display: none } .topbar .topbar-link { padding: 5px 10px } .topbar .topbar-link span { display: inline-block } .topbar .topbar-link.phone { background-color: transparent; color: #575757; cursor: default } } .breadcrumbs { margin: 10px 0; font-size:.8571428571rem } .breadcrumbs a { font-size:.8571428571rem } .breadcrumbs a:last-child { font-weight: bold; color: #870f68 } .wrap-footer { background-color: #006699; padding: 20px 0; color: #fefefe } .wrap-footer a { color: #fefefe; text-decoration: underline } .block-footer .title, .block-footer .title_landing { margin-bottom: 20px } .cnfdi-list-class { margin: 0 auto 1.2142857143rem auto; margin-left: -1.5714285714rem; margin-right: 0; padding: 0; list-style: none; overflow: hidden; margin: 0; text-align: left; font-size:.8571428571rem } .cnfdi-list-class>li { list-style: none; float: left; margin-left: 1.5714285714rem; display: block } .cnfdi-list-class>li>* { display: block } .cnfdi-list-class li { margin: 0 8px 3px 0 } .social_title { margin-bottom: 15px } .list-social { width: 100%; margin-bottom: 30px } @media only screen and (min-width: 70.5em) { .list-social { width: 60% } } .list-social li { width: 15%; margin-bottom: 20px; display: inline-block; text-align: center } @media only screen and (min-width: 70.5em) { .list-social li { width: 30% } } .social-sprite { display: inline-block; padding-left: 32px; height: 32px; padding-top: 4px } .social-sprite.facebook { background: url("../images/icones/social/facebook2.png") no-repeat 0 0 } .social-sprite.twitter { background: url("../images/icones/social/twitter2.png") no-repeat 0 0 } .social-sprite.gplus { background: url("../images/icones/social/gplus2.png") no-repeat 0 0 } .social-sprite.viadeo { background: url("../images/icones/social/viadeo2.png") no-repeat 0 0 } .social-sprite.linkedin { background: url("../images/icones/social/linkedin2.png") no-repeat 0 0 } .social-sprite.pinterest { background: url("../images/icones/social/pinterest2.png") no-repeat 0 0 } @media screen and (min-width: 450px) and (max-width: 767px) { .block-footer { display: block; padding: 0; margin:0 -.7142857143rem } .block-footer:before, .block-footer:after { content: " "; display: table } .block-footer:after { clear: both } .block-footer>li { display: block; height: auto; float: left; padding:0 .7142857143rem 1.4285714286rem } .block-footer>li { width: 50%; padding:0 .7142857143rem 1.4285714286rem; list-style: none } .block-footer>li:nth-of-type(1n) { clear: none } .block-footer>li:nth-of-type(2n+1) { clear: both } } .doc_footer { background: url("../images/icones/doc_footer.png") no-repeat center; width: 294px; height: 92px; display: inline-block; margin-top: 20px } .fede_footer_body, .controlle_etat_body { margin: 30px 0; font-size:.7857142857rem; line-height: 1.2 } .fede_footer_body img, .controlle_etat_body img { float: left; margin-top: -10px; margin-right: 10px } .wrap-legals { background-color: #1b2832; color: #fefefe; padding: 10px 0; text-align: center } .wrap-legals a { color: #fefefe } .navigation { display: none } @media screen and (min-width: 1128px) { .navigation_wrapper { background-color: #006699 } .navigation { display: flex; justify-content: space-between; list-style: none; margin: 0 auto; text-align: center; max-width: 85.7142857143rem } .no-flexbox .navigation { display: block; text-align: center } .navigation .navigation-item { display: inline-block; text-align: center; position: relative } .navigation .navigation-item:hover .container-sub-navigation { display: block } .navigation .navigation-item:hover .navigation-link, .navigation .navigation-item .navigation-link.active { color: #FFFFFF; background-color: #CC0000 } .navigation .navigation-item:last-child { border-right: none } .navigation .navigation-item .navigation-link, .navigation .navigation-item>span { padding: 10px 22px; font-size: 1.1428571429rem; color: #edebe6; display: block; text-transform: uppercase } .no-flexbox .navigation .navigation-item { float: left } .no-flexbox .navigation .navigation-item:last-child { float: none } .navigation .container-sub-navigation { position: absolute; top: 100%; left: 0; background-color: #fefefe; border: 2px solid #CC0000; display: none; text-align: left; box-shadow: 0px 1px 2px rgba(0,0,0,0.2); z-index: 99 } .navigation .sub-navigation { display: inline-block; vertical-align: top; list-style: url("../images/icones/bullet-point-purple.jpg") inside; margin: 0; min-width: 290px; padding: 10px } .navigation .sub-navigation .sub-navigation-item { width: 265px; list-style-position: outside; margin-left: 10px } .navigation .sub-navigation .sub-navigation-item .sub-navigation-link { padding: 6px; text-align: left; display: block } .navigation .sub-navigation .sub-navigation-item .sub-navigation-link:hover { background-color: #e5e5e5 } } .addDoc { position: relative; width: 217px; height: 38px; display: inline-block } .addDoc:after { content: ''; position: absolute; bottom: -18px; left: 0; background: url("../images/demande-doc.png"); height: 97px; width: 217px; display: block; z-index: 999 } .row-top { display: flex; justify-content: center } @media only screen and (min-width: 48em) { .row-top { justify-content: flex-end } } @media only screen and (min-width: 70.5em) { .row-top { position: absolute; left: 0; right: 0 } .no-flexbox .row-top { text-align: right } } .row-top .row-top_item { margin: 0 5px } .row-top .row-top_item:last-child { margin-right: 0 } .no-flexbox .row-top .row-top_item { display: inline-block } .row-top .item_phone { display: none } @media only screen and (min-width: 48em) { .row-top .item_phone { font-size: 1.1428571429rem; display: block; margin-top: 4px } } .row-top .item_phone .header-phone { font-weight: bold } .row-top .item_student { border-radius: 0 0 5px 5px; background-color: #870f68 } .row-top .item_subscribe { color: #fefefe; background-color: #006699; border-radius: 0 0 5px 5px } .row-top a { color: #fefefe; padding: 5px 15px; display: inline-block } .right-off-canvas-toggle { color: #870f68; font-size: 1.0714285714rem; font-weight: bold; display: inline-block; vertical-align: middle; margin-top: 20px; text-align: right } .right-off-canvas-toggle div { display: inline-block; vertical-align: middle; margin-left: 5px } .right-off-canvas-toggle div span { display: block; width: 30px; height: 4px; margin-bottom: 3px; background-color: #870f68 } .off-canvas-list label:after { content: '+'; color: #fefefe; padding: 5px; display: inline-block; font-size: 15px } .off-canvas-list label.open:after { content: "-" } .off-canvas-list .container-link { display: none } @media screen and (min-width: 1128px) { .left-off-canvas-toggle { display: none } } @media screen and (max-width: 767px) { .column, .columns { padding:0 .7142857143rem } .row { max-width: 480px } } @media screen and (min-width: 768px) and (max-width: 1127px) { .row { max-width: 768px } } ul.off-canvas-list li span { display: block; padding: 0.66667rem; color: rgba(255,255,255,0.7); border-bottom: 1px solid #262626; transition: background 300ms ease } .pointer { cursor: pointer } .slide_bg { background-color: #f5f3f2; margin-bottom: 30px } .no-flexbox .slide_bg { margin: 0 auto 20px; width: 85.7142857143rem; text-align: center } .block-type-formations>li, .block-premium-formations>li { padding-bottom: 0 } .home-contact { margin-top: 40px } #partners-slider img { margin: 5px } #pager { position: absolute; bottom: 10px; z-index: 9999; right: 20px } #pager a span { display: inline-block; width: 15px; height: 15px; background-color: #575757; border-radius: 25px; text-indent: -999999em; margin-right: 10px } #pager a.selected span { background-color: #870f68 } @media screen and (max-width: 767px) { .home-banner-img { position: relative; overflow: hidden; float: left } .home-banner .content { padding: 0 } .home-banner .content .title, .home-banner .content .title_landing { position: relative; text-align: center } .home-banner .content .title div, .home-banner .content .title_landing div { margin-top: 20px; background-color: #575757; font-family: 'Oswald', sans-serif; font-weight: normal; padding: 10px 5px; margin-bottom: 10px; font-size: 1.2857142857rem } .home-banner .content .title div a, .home-banner .content .title_landing div a { color: #FFF } .home-banner .content .text { margin-bottom: 10px; padding: 10px; font-size: 1rem } .home-banner .content .text div { position: relative; z-index: 10 } .home-banner .content .form-actions .btn { position: relative; z-index: 10 } .block-type-formations .text-icon.ml-large, .block-type-formations .text-icon.ml-xlarge { margin-left: 40px; line-height: 1 } } @media screen and (min-width: 768px) { .block-type-formations li { width: 33.333%; float: left; clear: none !important } .block-type-formations .text-icon.ml-large, .block-type-formations .text-icon.ml-xlarge { margin-left: 5px; line-height: 1.4 } .home-banner-img { position: relative; overflow: hidden } .home-banner-img img { width: 100% } .home-banner { position: relative; overflow: hidden } .home-banner:before { content: ''; position: absolute; top: 0; height: 100%; width: 81px; right: 220px; -webkit-transform: skew(10deg); -moz-transform: skew(10deg); -o-transform: skew(10deg); transform: skew(10deg); z-index: 1; background-color: #d2c73b } .home-banner .content { position: absolute; top: 0; right: 0; width: 270px; height: 100%; padding-right: 0 } .home-banner .content .title, .home-banner .content .title_landing { position: relative; font-size: 2.4285714286rem; text-align: left; line-height: 3rem } .home-banner .content .title div, .home-banner .content .title_landing div { margin-top: 20px; background-color: #575757; font-family: 'Oswald', sans-serif; font-weight: normal; padding: 10px; margin-bottom: 10px; position: relative; z-index: 10; margin-left: -30px } .home-banner .content .title div a, .home-banner .content .title_landing div a { color: #FFF } .home-banner .content .title:before, .home-banner .content .title_landing:before { content: ''; position: absolute; top: 0; height: 100%; width: 150px; left: -77px; -webkit-transform: skew(10deg); -moz-transform: skew(10deg); -o-transform: skew(10deg); transform: skew(10deg); z-index: 3; background-color: #575757 } .home-banner .content .title:after, .home-banner .content .title_landing:after { content: ''; position: absolute; bottom: -6px; height: 13px; width: 13px; left: -61px; -webkit-transform: skew(41deg) rotate(124deg); -moz-transform: skew(41deg) rotate(124deg); -o-transform: skew(41deg) rotate(124deg); transform: skew(41deg) rotate(124deg); z-index: 2; background-color: #242424 } .home-banner .content .text { margin-bottom: 10px; padding: 10px; font-size: 1.2857142857rem; line-height: 1.3 } .home-banner .content .text div { position: relative; z-index: 10 } .home-banner .content .form-actions .btn { position: relative; z-index: 10 } } .wrapper_home { width: 100%; max-width: 34.2857142857rem; margin: 0 auto; display: flex; flex-direction: column; overflow: hidden } @media only screen and (min-width: 48em) { .wrapper_home { max-width: 54.8571428571rem } } @media only screen and (min-width: 70.5em) { .wrapper_home { max-width: 85.7142857143rem; flex-direction: row; max-height: 382px } } .slide_content { width: 100%; position: relative } @media only screen and (min-width: 70.5em) { .slide_content { max-width: 870px } .no-flexbox .slide_content { display: inline-block } } .bloc-search { display: flex; flex-direction: column; justify-content: space-around; background-color: #edebe6; width: 100% } @media only screen and (min-width: 70.5em) { .bloc-search { max-width: 330px } .bloc-search.side { margin-bottom: 20px } .no-flexbox .bloc-search { display: inline-block; max-width: 325px; vertical-align: top } } .search { padding: 15px 15px 10px } @media only screen and (min-width: 48em) { .search { padding: 15px 25px 10px } } .search .search-item { display: block } .search .search-action { border-style: solid; border-width: 0px; cursor: pointer; font-family: "Open Sans", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: bold; line-height: normal; margin:0 0 .7142857143rem; position: relative; text-decoration: none; text-align: center; -webkit-appearance: none; -webkit-border-radius: 0; display: inline-block; padding-top:.8571428571rem; padding-right: 1.7142857143rem; padding-bottom:.9285714286rem; padding-left: 1.7142857143rem; background-color: #006699; border-color: #273c4a; color: #fff; width: 100%; border-radius: 4px; margin-top: 10px } .search .search-action:hover, .search .search-action:focus { background-color: #273c4a } .search .search-action:hover, .search .search-action:focus { color: #fff } .search .search-title { font-size: 1.2857142857rem; color: #006699; line-height: 1.3; margin-bottom: 7px } .search .search-title .search-title_big { font-size: 1.5714285714rem; text-transform: uppercase; display: block } .search .search-or { text-align: center; margin: 4px auto; font-size: 1.2857142857rem } .search input, .search select { margin-bottom: 5px; padding: 5px } .search-contact { background-color: #ffdb00; display: flex; flex-direction: row; justify-content: center; padding: 15px; color: #006699 } @media only screen and (min-width: 70.5em) { .search-contact { justify-content: flex-start; padding: 15px 5px } } .search-contact .icon_phone { background: url("../images/tel.png") no-repeat center center; height: 50px; width: 60px; margin-right: 10px } .no-flexbox .search-contact .icon_phone { float: left } @media only screen and (min-width: 70.5em) { .search-contact .icon_phone { width: 45px; margin-right: 0 } } .search-contact .tel { font-size: 1.4285714286rem; font-weight: bold; display: inline-block } .formations_home { display: block; padding: 0; margin:0 -.7142857143rem } .formations_home:before, .formations_home:after { content: " "; display: table } .formations_home:after { clear: both } .formations_home>li { display: block; height: auto; float: left; padding:0 .7142857143rem 1.4285714286rem } .formations_home>li { width: 100%; padding:0 .7142857143rem 1.4285714286rem; list-style: none } .formations_home>li:nth-of-type(1n) { clear: none } .formations_home>li:nth-of-type(1n+1) { clear: both } .formations_home li { padding-bottom: 0 !important } .formations_home img { width: 100% } @media only screen and (min-width: 48em) { .formations_home { display: block; padding: 0; margin:0 -.7142857143rem } .formations_home:before, .formations_home:after { content: " "; display: table } .formations_home:after { clear: both } .formations_home>li { display: block; height: auto; float: left; padding:0 .7142857143rem 1.4285714286rem } .formations_home>li { width: 50%; padding:0 .7142857143rem 1.4285714286rem; list-style: none } .formations_home>li:nth-of-type(1n) { clear: none } .formations_home>li:nth-of-type(2n+1) { clear: both } } @media only screen and (min-width: 70.5em) { .formations_home { display: block; padding: 0; margin:0 -.7142857143rem } .formations_home:before, .formations_home:after { content: " "; display: table } .formations_home:after { clear: both } .formations_home>li { display: block; height: auto; float: left; padding:0 .7142857143rem 1.4285714286rem } .formations_home>li { width: 25%; padding:0 .7142857143rem 1.4285714286rem; list-style: none } .formations_home>li:nth-of-type(1n) { clear: none } .formations_home>li:nth-of-type(4n+1) { clear: both } } .formation_item { margin-bottom: 15px } .formation_home-chapo { line-height: 1.2; margin-bottom: 13px } .formation_item_img { max-height: 190px; display: block; overflow: hidden } .formation_item-body { background-color: #f5f3f2; position: relative } .formation_home { padding: 15px 15px 30px } .formation_home-title { font-size: 1.2em; line-height: 1.5; margin-bottom: 7px; font-weight: bold; } .formation_home-title a { display: block; color: #006699 } .formation_link { display: block; text-align: right; margin-bottom: 7px; position: relative; bottom: 10px; right: 10px } @media only screen and (min-width: 48em) and (max-width: 70.5em) { .formation_link { bottom: -3px } } .formation_link:before { content: ''; display: inline-block; vertical-align: middle; width: 15px; height: 14px; margin-right: 5px; background-image: url("../images/icones/icon-arrow-circle-right.png") } @media only screen and (min-width: 48em) { .formation_link { position: absolute } } .bloc_financement { padding: 15px; background-color: #870f68; color: #fefefe } .bloc_financement_title { font-size: 1.4285714286rem; text-transform: uppercase; line-height: 1.2; margin-bottom: 12px } .bloc_financement_content { font-size: 1.2857142857rem; line-height: 1.3 } .bloc_financement_btn { border-style: solid; border-width: 0px; cursor: pointer; font-family: "Open Sans", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: bold; line-height: normal; margin:0 0 .7142857143rem; position: relative; text-decoration: none; text-align: center; -webkit-appearance: none; -webkit-border-radius: 0; display: inline-block; padding-top:.5714285714rem; padding-right: 1.1428571429rem; padding-bottom:.6428571429rem; padding-left: 1.1428571429rem; background-color: #ffdb00; border-color: #d9ba00; color: #fff; width: 100%; border-radius: 4px; margin-top: 20px; color: #006699; font-size: 1.2857142857rem; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -ms-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s } .bloc_financement_btn:hover, .bloc_financement_btn:focus { background-color: #d9ba00 } .bloc_financement_btn:hover, .bloc_financement_btn:focus { color: #fff } .bloc_financement_btn:hover { color: #006699 } .title_home { color: #870f68; font-size: 1.4285714286rem; margin-bottom: 15px; padding: 0 5px } @media only screen and (min-width: 48em) { .title_home { padding: 0 } } .title_home .title_home_link { font-size: 1rem; text-decoration: underline; display: block } @media only screen and (min-width: 48em) { .title_home .title_home_link { display: inline-block; margin-left: 15px } } .bloc_video { background-color: #006699; padding: 15px; color: #fefefe; width: 100%; max-width: 34.2857142857rem; margin: 15px auto 25px } @media only screen and (min-width: 48em) { .bloc_video { max-width: 54.8571428571rem } } @media only screen and (min-width: 70.5em) { .bloc_video { max-width: 85.7142857143rem; padding: 15px 25px } } @media only screen and (min-width: 70.5em) { .wrapper_bloc_video { display: flex; justify-content: space-between } } @media only screen and (min-width: 70.5em) { .video_wrapper { width: 100% } .no-flexbox .video_wrapper { width: 40%; display: inline-block; vertical-align: top } } @media only screen and (min-width: 70.5em) { .bloc_video_content { display: flex } .no-flexbox .bloc_video_content { width: 59%; display: inline-block } } .bloc_video_title { font-size: 1.7857142857rem; color: #f5f3f2; line-height: 1.35; margin-bottom: 10px } .accroche { font-size: 1.2857142857rem; color: #f5f3f2; text-align: center } .accroche .accroche_yellow { color: #ffdb00; font-size: 1.7857142857rem; display: block } .img_video_doc { text-align: center } @media only screen and (min-width: 48em) { .bloc_video_text { display: inline-block; width: 50% } } @media only screen and (min-width: 70.5em) { .bloc_video_text { margin-left: 25px } .no-flexbox .bloc_video_text { width: 65% } } .bloc_video_text p { font-size: 1.0714285714rem; line-height: 1.6 } .bloc_video_text a, .bloc_video_text a:hover { color: #fefefe; text-decoration: underline } @media only screen and (min-width: 48em) { .bloc_video_doc { display: inline-block; vertical-align: top; margin: 0 auto; width: 49% } } @media only screen and (min-width: 70.5em) { .bloc_video_doc { width: auto; max-width: 200px } } .blogs { background-color: #f5f3f2; padding: 15px; margin-bottom: 20px } .events_title { color: #CC0000; font-size: 1.5em; padding-bottom: 5px; margin-bottom: 10px; margin-top: 10px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #CC0000; } .events_title a { font-size: 1rem; display: block; text-align: right } @media only screen and (min-width: 48em) { .events_title a { float: right } } .events { list-style: none; margin: 0 } .event { margin-bottom: 20px; border-bottom: 1px solid rgba(46,70,87,0.1); padding-bottom: 10px } .event:last-child { border-bottom: none; margin-bottom: 0; padding: 0 } .event_img { padding-bottom: 10px; text-align: center } @media only screen and (min-width: 48em) { .event_img { text-align: left; display: inline-block; width: 30% } } @media only screen and (min-width: 48em) { .event_body { display: inline-block; width: 69%; vertical-align: top } } .event_title { color: #006699; margin-bottom: 15px; display: block; font-size: 1em; font-weight: bold } .event_resume { font-size: 1rem; line-height: 1.3 } .event_period { display: inline-block; background-color: #006699; padding: 3px 8px; color: #fefefe; font-size: 1rem; margin-bottom: 10px } .row-pad { padding: 0 10px } @media only screen and (min-width: 48em) { .row-pad { padding: 0 } } .row.row-videos { margin-bottom: 20px } .google-map { height: 163px } .form-inscription .form-actions { text-align: right } #other-formation { overflow: hidden; width: 100% } .input select.dob { width: 31%; float: left; margin-left: 2% } .checkbox_inscr { margin-bottom: 5px } #container-address { overflow: hidden; width: 100% } .sub-label { font-weight: normal; font-size:.8571428571rem; color: #656565; font-style: italic } @media screen and (min-width: 768px) { .header-formation .container-image { text-align: left } .header-formation .container-image img { float: left; margin-right: 20px; margin-bottom: 20px } .list-formations { width: 50%; list-style: none; margin: 0; padding: 0 } } .eleve .radio label { margin-bottom: 10px } .container-eleve-informations .text span { display: inline-block; width: 100% } @media screen and (min-width: 768px) { .eleve-home .container-image img { float: right } .eleve .form-actions { text-align: right } .container-eleve-informations .text span { width: 200px } } .information-phone { display: none } .information-phone.is-visible { display: block !important } .box-user { padding: 7px; background-color: #006699; color: #fefefe; margin-bottom: 10px } .box-user.user { font-size: 1.0714285714rem; text-align: center } .box-user.user .bloc_financement_btn { display: inline-block; width: inherit } .container-faq { color: #575757; padding: 10px 0 10px 5px; border-bottom: 1px solid #e5e5e5; cursor: pointer } .container-faq .question .plus:before { content: "+"; color: #fefefe; width: 18px; height: 18px; display: inline-block; float: left; vertical-align: text-bottom; background-color: #575757; text-align: center; font-size: 1.2857142857rem; line-height: 1; margin-right: 10px; margin-bottom: 10px; font-weight: normal } .container-faq .question .plus.open { color: #d2c73b } .container-faq .question .plus.open:before { content: "-"; background-color: #d2c73b } .container-faq .answer { margin-top: 10px; display: none; clear: both; margin-left: 25px; padding-left: 10px; border-left: 2px solid #d2c73b } .post-content { margin-bottom: 20px } .wrap-button { text-align: center } .back-posts { margin-top: 20px } .fiches-metier a { color: #870f68; text-decoration: underline } .cookie { text-align: center; padding:.5rem; position: relative; z-index: 9999; top: 0; right: 0; left: 0; border-top: 1px solid #e4e4e4; background-color: #f2f2f2; color: #666; font-size:.8571428571rem } .cookie__link { text-decoration: underline; color: #870f68 } .cookie__btn { margin-bottom: 0; margin-left: 1.0714285714rem; padding:0 .3571428571rem; border: none; border-radius: 2px; color: #FFF; line-height: 17px } .cookie__btn-success { background-color: #870f68 } .cookie__btn-cancel { background-color: #e84e40 } .news .title, .news .title_landing { padding-bottom: 5px; border-bottom: 1px solid #bdbdbd } .bloc-news { padding-bottom: 10px; border-bottom: 1px solid #bdbdbd } .stages { list-style: none; margin-left: 0 } .stages .month { display: inline-block; color: #870f68; margin-bottom:.5714285714rem; margin-left: 1.0714285714rem; font-size: 1.0714285714rem } .stages .list_stages { margin-bottom: 1.4285714286rem } .stages .stage_items { background: url("../imgfront/icones/bullet-point-purple.html") no-repeat left 5px; margin: 0 0 8px 0px; padding-bottom: 8px; padding-left: 15px; border-bottom: 1px solid #e5e5e5 } .stages .stage_items .bloc_stage { display: inline-block; width: 100% } @media only screen and (min-width: 48em) { .stages .stage_items .bloc_stage { width: 60% } } @media only screen and (min-width: 70.5em) { .stages .stage_items .bloc_stage { width: 74% } } .stages .stage_items .bloc_stage .stage_title { font-size:.9285714286rem; color: #870f68 } .stages .stage_items .bloc_stage .stage_periode { font-size: 12px } .stages .stage_items .stage_program { display: inline-block; width: 100%; text-align: right } @media only screen and (min-width: 48em) { .stages .stage_items .stage_program { width: 38% } } @media only screen and (min-width: 70.5em) { .stages .stage_items .stage_program { width: 25% } } .stages .stage_items .stage_program>a { color: #870f68; font-weight: normal; text-decoration: underline } .panel-stage { background-color: #f1f1f1; color: #870f68 } .lh { line-height: 1.3 } .bbord { margin-bottom:.5714285714rem } .program_description { color: #870f68; text-decoration: underline; cursor: pointer } .comment { margin-bottom: 1.0714285714rem; font-style: italic; font-size: 1.0714285714rem; color: #959595 } .panel_formation { display: flex; flex-direction: column } @media only screen and (min-width: 70.5em) { .panel_formation { flex-direction: row } } .content_formation { width: 100%; max-width: 800px } .aside_formation { width: 100% } @media only screen and (min-width: 70.5em) { .aside_formation { margin: 0 0 0 30px; max-width: 390px } } #container-address { display: none } .form-doc { background-color: #870f68; padding: 10px; color: #fefefe; margin-bottom: 15px } .form-doc_btn { display: inline-block; background-color: #d2c73b; border: none; padding: 15px 20px; color: white; margin: 15px 0; font-size: 1.4285714286rem; border-radius: 2px; cursor: pointer; width: 100% } .checkbox_doc [type="checkbox"]:not(:checked), .checkbox_doc [type="checkbox"]:checked { position: absolute; left: -9999px } .checkbox_doc [type="checkbox"]:not(:checked)+label, .checkbox_doc [type="checkbox"]:checked+label { position: relative; padding-left: 25px; cursor: pointer; margin: 0; color: #fefefe; line-height: 1.35; font-size:.8571428571rem; font-weight: normal } .checkbox_doc [type="checkbox"]:not(:checked)+label:before, .checkbox_doc [type="checkbox"]:checked+label:before { content: ''; position: absolute; left: 0; top: 3px; width: 15px; height: 15px; border-radius: 2px; background-color: #fefefe; border: none } .checkbox_doc [type="checkbox"]:not(:checked)+label:after, .checkbox_doc [type="checkbox"]:checked+label:after { content: ''; position: absolute; top: 3px; left: -1px; width: 15px; height: 15px; background: url("../images/icones/check-purple-mini.png") no-repeat center center } .checkbox_doc [type="checkbox"]:not(:checked)+label:after { opacity: 0; transform: scale(0) } .checkbox_doc [type="checkbox"]:checked+label:after { opacity: 1; transform: scale(1) } .checkbox_doc [type="checkbox"]:disabled:not(:checked)+label:before, .checkbox_doc [type="checkbox"]:disabled:checked+label:before { box-shadow: none; border-color: #bbb; background-color: #ddd } .checkbox_doc [type="checkbox"]:disabled:checked+label:after { color: #999 } .checkbox_doc [type="checkbox"]:disabled+label { color: #aaa } .radio_doc [type="radio"]:not(:checked), .radio_doc [type="radio"]:checked { position: absolute; left: -9999px } .radio_doc [type="radio"]:not(:checked)+label, .radio_doc [type="radio"]:checked+label { position: relative; padding-left: 25px; cursor: pointer; margin-left: 0; color: #fefefe; margin-bottom: 10px; font-size:.8571428571rem; font-weight: normal } .radio_doc [type="radio"]:not(:checked)+label:before, .radio_doc [type="radio"]:checked+label:before { content: ''; position: absolute; left: 0; top: -1px; width: 15px; height: 15px; border: none; background-color: #fefefe; border-radius: 50% } .radio_doc [type="radio"]:not(:checked)+label:after, .radio_doc [type="radio"]:checked+label:after { content: ''; position: absolute; top: 2px; left: 3px; width: 9px; height: 9px; border-radius: 50%; background-color: #870f68; transition: all .2s } .radio_doc [type="radio"]:not(:checked)+label:after { opacity: 0; transform: scale(0) } .radio_doc [type="radio"]:checked+label:after { opacity: 1; transform: scale(1) } .radio_doc [type="radio"]:disabled:not(:checked)+label:before, .radio_doc [type="radio"]:disabled:checked+label:before { box-shadow: none; border-color: #bbb; background-color: #ddd } .radio_doc [type="radio"]:disabled:checked+label:after { color: #999 } .radio_doc [type="radio"]:disabled+label { color: #aaa } .radio_doc [type="radio"]:checked:focus+label:before, .radio_doc [type="radio"]:not(:checked):focus+label:before { border: none } .radio_doc [type="radio"]:checked+label:before { border: none } .mention { font-size:.7857142857rem; line-height: 1.3; color: #dcdcdc } #DocumentationViewForm select { padding: 0 0 0 5px; background-color: #fefefe } #DocumentationViewForm .input { margin-bottom: 10px } .form_doc_title { font-size: 1.3571428571rem; line-height: 1.25; color: rgba(254,254,254,0.9); margin: 10px auto 15px; text-align: center } .form_doc_title .big_title { color: #d2c73b; text-transform: uppercase; font-weight: bold; display: inline-block; margin-top: 2px } .form_doc_title .info_mentions { font-size:.8571428571rem; margin-top: 4px } .input_name, .input_firstname { width: 48%; display: inline-block } .input_firstname { margin-left: 2.5% } .input_zipcode { display: inline-block; width: 30% } .input_city { display: inline-block; width: 66%; margin-left: 2.5% } .input_numero { display: inline-block; width: 20% } .input_address { display: inline-block; width: 76%; margin-left: 2.5% } input { background-color: #EDBABE } input::-webkit-input-placeholder { color:#8a8a8a } input::-moz-placeholder { color:#8a8a8a } input:-ms-input-placeholder { color:#8a8a8a } input:-moz-placeholder { color:#8a8a8a } input.form-error, select.form-error { color: #f04124; border-color: #f04124 } input.form-error::-webkit-input-placeholder, select.form-error::-webkit-input-placeholder { color:#f04124 } input.form-error::-moz-placeholder, select.form-error::-moz-placeholder { color:#f04124 } input.form-error:-ms-input-placeholder, select.form-error:-ms-input-placeholder { color:#f04124 } input.form-error:-moz-placeholder { color:#f04124 } .msg-error-title { font-size: 1.1428571429rem; text-align: center; margin-bottom: 10px; color: #fefefe; background-color: #f36a54; padding: 5px; max-width: 95% } #error_list .message { color: #575757 } #error_list .message:before { color: #f36a54; content: 'X'; display: inline-block; margin-right: 10px; font-weight: bold; border: 1px solid; border-radius: 50%; padding: 1px 6px; margin-bottom: 7px } .msg-error-close { font-size: 2.1428571429rem !important; top: 0 !important } .new_formation .subtitle { font-size: 1.2142857143rem; line-height: 1.35 } .new_formation .tabs-content { border-bottom: none } .new_formation .header-formation { display: flex; flex-direction: column; margin-bottom: 20px } @media only screen and (min-width: 48em) { .new_formation .header-formation { flex-direction: row } } .new_formation .header-formation .container-image, .new_formation .header-formation .container-content { flex: 1 } .new_formation .header-formation .container-image { margin-right: 10px } .formation_content { display: flex; flex-direction: column } @media only screen and (min-width: 70.5em) { .formation_content { flex-direction: row } } .formation_content-body { flex: 2; margin-right: 10px } @media only screen and (min-width: 70.5em) { .formation_content-sidebar { width: 37% } } .virtual_class { margin-bottom: 40px } .virtual_class .virtual_class-title { background-color: #d2c73b; text-transform: uppercase; color: #fefefe; font-weight: 500; font-size: 1.2857142857rem; padding: 10px 15px } .virtual_class .virtual_class-content { background-color: #f2f2f2; padding: 10px; font-size: 1rem; line-height: 1.5 } .virtual_class.certif .virtual_class-title { background-color: #006699 } .formation_personalise { padding: 15px; border: 3px solid #870f68; font-size: 1rem; position: relative; margin-bottom: 40px } .formation_personalise .formation_personalise-title { background-color: #fefefe; font-size: 1.2857142857rem; color: #870f68; text-transform: uppercase; position: absolute; top: -10px; padding: 0 10px } @media only screen and (min-width: 70.5em) { .formation_personalise .formation_personalise-title { left: 5px; padding: 0 4px } } .bloc_contact-us { background-color: #d2c73b; color: #fefefe; padding: 10px } .bloc_contact-us .bloc_contact-us_icon { display: inline-block; vertical-align: top; margin-right: 10px } .bloc_contact-us .bloc_contact-us_body { display: inline-block; font-size: 1.2857142857rem; line-height: 1.3 } .bloc_contact-us .bloc_contact-us_title { color: #870f68; font-size: 1.5714285714rem } .button-contact_us { background-color: #fefefe; font-size: 1.7857142857rem; padding: 1px 45px; border-radius: 2px; color: #870f68; font-weight: bold; margin: 10px 0 } .bloc_partner { margin-bottom: 15px; padding: 0 10px } .bloc_partner .bloc_partner_logo { text-align: center; margin-bottom: 10px } .bloc_partner .bloc_partner_content { line-height: 1.3; font-size:.9285714286rem } .bloc_partner_old { margin-bottom: 0px; padding: 10px 0 0 0 } .bloc_partner_old .bloc_partner_logo { display: inline-block; text-align: center; vertical-align: top } .bloc_partner_old .bloc_partner_logo img { max-width: 150px } .bloc_partner_old .bloc_partner_content { display: inline-block; width: 40%; line-height: 1.3; font-size:.9285714286rem } .tiny_class { padding: 20px; background-color: #fefefe } .tiny_class h2, .new_formation h2, .post-content h2 { color: #870f68; font-weight: 400; font-size: 18px; line-height: 1.5 } .tiny_class h3, .new_formation h3, .post-content h3 { color: #870f68; font-weight: 400; font-size: 16px; line-height: 1.5 } .tiny_class h4, .new_formation h4, .post-content h4 { font-weight: 600; font-size: 14px; line-height: 1.5 } .tiny_class a, .new_formation a, .post-content a { text-decoration: underline } .tiny_class .lien, .new_formation .lien, .post-content .lien { color: #870f68 } .tiny_class img .right, .new_formation img .right, .post-content img .right { float: right; margin: 0 0 10px 10px } .tiny_class img .left, .new_formation img .left, .post-content img .left { float: left; margin: 0 10px 10px 0 } .tiny_class .bloc, .new_formation .bloc, .post-content .bloc { background-color: #eee; border: 1px solid #e5e5e5; padding: 10px; overflow: hidden; margin-bottom: 10px } .tiny_class .options_title, .new_formation .options_title, .post-content .options_title { background-color: #870f68; color: #fefefe; padding: 3px 25px; display: inline-block; margin: 0 } .tiny_class .bloc_gris_clair, .new_formation .bloc_gris_clair, .post-content .bloc_gris_clair { background-color: rgba(255,255,255,0.5); padding: 10px; overflow: hidden; margin-bottom: 10px } .form_accord { background-color: #fff; padding: 14px; width: 80%; margin: 0 auto 20px } .form_accord .input { margin-bottom: 0 } .form_accord .checkbox [type="checkbox"]:not(:checked)+label, .form_accord .checkbox [type="checkbox"]:checked+label { font-weight: normal; font-size: 1rem } .form_accord .checkbox [type="checkbox"]:not(:checked)+label:before, .form_accord .checkbox [type="checkbox"]:checked+label:before { top: 10px } .form_accord, .form_accord .checkbox [type="checkbox"]:not(:checked)+label:after, .form_accord .checkbox [type="checkbox"]:checked+label:after { top: 10px } .call_to_action { position: fixed; bottom: 0; left: 0; right: 0; background-color: #ffdb00; text-align: left; z-index: 99; box-shadow: 0 -6px 15px -5px rgba(0,0,0,0.7) } .call_to_action .link_call_to_action { display: block; color: #006699; font-size: 1.3571428571rem; padding: 15px 2px 15px 10px; line-height: 1.35; position: relative; margin: 0; width: 100% } .call_to_action .link_call_to_action .big { font-size: 1.5714285714rem; font-weight: bold; display: block } .call_to_action .link_call_to_action:after { content: '\f138'; font-family: FontAwesome; position: absolute; top: 50%; transform: translateY(-50%); right: 10px; font-size: 2.8571428571rem } @media only screen and (min-width: 48em) and (max-width: 70.5em) { .call_to_action { text-align: center } .call_to_action .link_call_to_action:after { display: none } } @media only screen and (min-width: 70.5em) { .call_to_action { display: none } } .sidebar { padding-left: 1rem; padding-right: 1rem; width: 100%; float: left } @media only screen and (min-width: 70.5em) { .sidebar { padding-left: 1rem; padding-right: 1rem; width: 41.6666666667%; float: left; max-width: 400px; float: left } } .content { padding-left: 1rem; padding-right: 1rem; width: 100%; float: left } @media only screen and (min-width: 70.5em) { .content { padding-left: 1rem; padding-right: 1rem; width: 66.6666666667%; float: left; max-width: 760px; float: right } } .avantage_header { position: relative; padding: 15px; background-color: #870f68; display: flex; flex-direction: column; align-items: center } @media only screen and (min-width: 48em) { .avantage_header { flex-direction: row; align-items: flex-start } } .avantage_header:after { content: ""; position: absolute; bottom: -12px; left: 25px; width: 0; height: 0; border-style: solid; border-width: 12px 10px 0 10px; border-color: #870f68 transparent transparent transparent } .avantage_title { font-size: 2.5rem; color: #fefefe; text-transform: uppercase; font-weight: 700; line-height: 1; margin: auto 0; text-align: center } @media only screen and (min-width: 48em) { .avantage_title { text-align: left } } .avantage_title span { font-size: 1.4285714286rem; font-weight: 400; display: inline-block } .avantage_img { background-image: url(front/img/sprites.png); background-position: 0px 0px; width: 85px; height: 109px } .arguments { padding: 20px 10px 0px 10px; background-color: #006699 } .arguments .argument_title { color: #d2c73b; font-size: 1.2857142857rem; text-transform: uppercase; font-weight: 700 } .arguments p { color: #fefefe } .item { display: flex; margin: 10px 10px 30px } .item .item_argument { flex: 1 } .item .item_img { margin-right: 12px } .un { background-image: url(front/img/sprites.png); background-position: 0px -109px; width: 45px; height: 47px } .deux { background-image: url(front/img/sprites.png); background-position: -85px -47px; width: 45px; height: 47px } .trois { background-image: url(front/img/sprites.png); background-position: -130px -47px; width: 45px; height: 47px } .quatre { background-image: url(front/img/sprites.png); background-position: -130px 0px; width: 45px; height: 47px } .cinq { background-image: url(front/img/sprites.png); background-position: -85px 0px; width: 45px; height: 47px } .title_landing { font-weight: normal } img.left { margin-bottom: 10px; margin-right: 15px; margin-left: 0 } img.right { margin-bottom: 10px; margin-right: 0; margin-left: 15px } .radio_text { margin-bottom: 7px; padding-left: 25px } .landing_title { color: #870f68; font-size: 1.2857142857rem; margin-bottom: 15px } .session_choice { margin-left: 35px } .session_choice input[type="checkbox"]+label, .session_choice input[type="radio"]+label { display: block; margin: 10px 0 } .session_choice [type="radio"]:not(:checked)+label:before, .session_choice [type="radio"]:checked+label:before { width: 15px; height: 15px; top: 2px } .session_choice [type="radio"]:not(:checked)+label:after, .session_choice [type="radio"]:checked+label:after { top: 6px; left: 4px; width: 7px; height: 7px } .date_choice { width: 80%; margin-left: 35px; margin-bottom: 7px } @media only screen and (min-width: 48em) { .date_choice { width: 40% } } .place_choice { margin-left: 35px; margin-top: 15px } .place_choice [type="radio"]:not(:checked)+label:before, .place_choice [type="radio"]:checked+label:before { width: 15px; height: 15px; top: 2px } .place_choice [type="radio"]:not(:checked)+label:after, .place_choice [type="radio"]:checked+label:after { top: 6px; left: 4px; width: 7px; height: 7px } .sub_choice { margin-left: 25px } .sub_choice.first { border-bottom: 1px solid #d8d8d8; margin-bottom: 10px } .sub_choice [type="radio"]:not(:checked)+label:before, .sub_choice [type="radio"]:checked+label:before { width: 15px; height: 15px; top: 2px } .sub_choice [type="radio"]:not(:checked)+label:after, .sub_choice [type="radio"]:checked+label:after { top: 6px; left: 4px; width: 7px; height: 7px } .fiche { padding-left: 1rem; padding-right: 1rem; width: 100%; float: left } @media only screen and (min-width: 70.5em) { .fiche { padding-left: 0; padding-right: 0; width: 66.6666666667%; float: right; float: left; margin-left: auto; margin-right: auto; float: none !important } } .fiche .input p { font-weight: bold; margin-bottom: 7px; margin-top: 10px } .post-fiche { padding-left: 0; padding-right: 0; width: 83.3333333333%; float: right; float: left; margin-left: auto; margin-right: auto; float: none !important } .mention_fiche { font-style: italic; font-size:.9285714286rem } .second { margin-left: 20px; margin-top: 7px } .second p { margin-bottom: 3px !important; margin-top: 3px !important } .fiche_doc .checkbox { margin-bottom: 15px } .fiche_doc .input_field { margin-bottom: 15px; display: none } .form_newsletter { margin-top: 20px } .form_newsletter .title, .form_newsletter .title_landing { padding-left: 0 } @media only screen and (min-width: 48em) { .form_newsletter .title, .form_newsletter .title_landing { padding-left: 15px } } .form_newsletter .success-message { display: block; padding: 5px; background-color: #f4faee; border-color: #d2eab9; color: #2e0523; text-align: center; margin-bottom: 10px } .forums_list { border-collapse: collapse } .forums_title { float: left; margin-right: 15px } .small_title { font-size:.9285714286rem } .forums_resume { clear: both; font-size:.9285714286rem; margin-top: 10px } .forum_title-wrapper { border-bottom: 1px solid #870f68; margin-bottom: 15px } .forum_title { color: #870f68; font-size: 1.7857142857rem; display: inline-block } .btn_action-forum { float: right } .forum_closed { font-size:.9285714286rem; margin-top: 12px } .info_topic-action { font-size:.8571428571rem; margin-left: 10px; display: inline-block; vertical-align: text-bottom } .info_topic-action a { color: #f04124 } .topic-title { margin-bottom: 5px; display: inline-block; text-decoration: none !important } .topic_owner { font-size:.9285714286rem; font-style: italic } .topic { padding: 10px; background-color: #F1F1F1; color: #1b2832 } .topic.message { margin-bottom: 15px } .info_topic { border-bottom: 1px solid #D8D8D8; margin-bottom: 15px; padding-bottom: 10px } .info_topic-created { font-size:.9285714286rem; font-style: italic } .answer_count { margin: 10px 0; font-size: 1.2142857143rem; font-weight: bold; color: #870f68 } .pagination.forum { padding: 0; text-align: right; margin: 0 } .action_post { text-align: right; margin-top: 10px } .img-thrumnail { padding: 5px; border: 1px solid #999; border-radius: 5px; } .mrbt-20 { margin-bottom: 20px; } /* FORM CONTACT */ .jumbotron { background: #358CCE; color: #FFF; border-radius: 0px; } .jumbotron-sm { padding-top: 24px; padding-bottom: 24px; } .jumbotron small { color: #FFF; } .h1 small { font-size: 24px; } .text-bold { font-weight: bold; } .text-blanc { color: #FFF; } .text-blanc:hover { color: #FFF; } .pull-left { float: left; } .mr-10 { margin-right: 10px; } /* The Modal (background) */ .modal { display: none; /* Hidden by default */ position: fixed; /* Stay in place */ z-index: 9999999999; /* Sit on top */ left: 0; top: 0; width: 100%; /* Full width */ height: 100%; /* Full height */ overflow: auto; /* Enable scroll if needed */ background-color: rgb(0,0,0); /* Fallback color */ background-color: rgba(0,0,0,0.4); /* Black w/ opacity */ transition: all 500ms ease-in-out; background-clip: padding-box; transition: opacity 500ms; } .modal:target { visibility: visible; opacity: 1; } /* Modal Content/Box */ .modal-content { background-color: #fefefe; margin: 10% auto; /* 15% from the top and centered */ padding: 20px; border: 1px solid #888; width: 80%; /* Could be more or less, depending on screen size */ } /* The Close Button */ .close { color: #aaa; float: right; font-size: 28px; font-weight: bold; transition: all 200ms; text-decoration: none; } .close:hover, .close:focus { color: black; text-decoration: none; cursor: pointer; }
0.359477
0.096153
.left-bar { background-color: #F5F5F5; } .nav-left a { border-radius: 0 !important; } .left-bar-menu-ul { padding: 0; } .left-bar-menu-ul li { list-style-type: none; display: block; padding: 4px 0 4px 4px; } .panel-body-custom { padding-top: 2px; padding-bottom: 2px; } .dashboard-link { margin: 4px; font-size: 14px; color: #000; text-decoration: none; } .dashboard-link:hover { color: #555; } .left-bar .panel-title { font-size: 13px; } .left-bar .panel-title:hover { color: #888; } .left-bar-menu-ul li a { font-size: 12px; } .borderForNav li { border-bottom: 1px solid #ddd; } /*------------------------- Left Menu end-----------------------------*/ /* ............for delete button start...................*/ .delete-form { display: inline; } .delete-form input[type=submit] { width: 20px; } /* ............for delete button end...................*/ h1 { font-size: 24px; } h2 { font-size: 22px; } .help { font-size: 22px; color: #F97C09; } .required:after { content: '*'; color: red; padding-left: 5px; } .comments { background-color: #f5f5f5; border: 1px solid #ccc; border-radius: 4px; color: #333; display: block; line-height: 1.42857; padding: 9.5px; } .indicator-tilte { font-size: 14px; background-color: #eee; } a.indicator-title-dashboard > p:hover { color: red; } .badge-notify { background: #FB791E; } .address-font-size { font-size: 15px; font-family: "Times New Roman", Times, serif; font-weight: normal; } tr.spaceUnder > td { padding-bottom: 1em; } .partnersinfo { color: #F97222 !important; } .partnerBackground { background-color: #FFC000 !important; font-weight: bold; } #usersLists { width: 200px; border: 1px solid #ddd; } .delete-form input[type='submit']::before { font-family: 'Glyphicons Halflings'; content: ""; display: inline-block; } /*for delete button*/ .btn-xs, .btn-group-xs > .btn { padding: 0 2px; } .preview-div { min-height: 70px; } /*Icon modal*/ .icon-container li { margin: 15px 6px; border: 2px solid #dddddd; display: inline-block; -webkit-transition: all ease 0.50s; -moz-transition: all ease 0.50s; transition: all ease 0.50s; cursor: pointer; } .icon-container li:hover { border: 2px solid #555555; } .icon-container li img { width: auto; height: 25px; } .featur-modal-dialog{ width: 351px !important; }
public/css/admin/custom.css
.left-bar { background-color: #F5F5F5; } .nav-left a { border-radius: 0 !important; } .left-bar-menu-ul { padding: 0; } .left-bar-menu-ul li { list-style-type: none; display: block; padding: 4px 0 4px 4px; } .panel-body-custom { padding-top: 2px; padding-bottom: 2px; } .dashboard-link { margin: 4px; font-size: 14px; color: #000; text-decoration: none; } .dashboard-link:hover { color: #555; } .left-bar .panel-title { font-size: 13px; } .left-bar .panel-title:hover { color: #888; } .left-bar-menu-ul li a { font-size: 12px; } .borderForNav li { border-bottom: 1px solid #ddd; } /*------------------------- Left Menu end-----------------------------*/ /* ............for delete button start...................*/ .delete-form { display: inline; } .delete-form input[type=submit] { width: 20px; } /* ............for delete button end...................*/ h1 { font-size: 24px; } h2 { font-size: 22px; } .help { font-size: 22px; color: #F97C09; } .required:after { content: '*'; color: red; padding-left: 5px; } .comments { background-color: #f5f5f5; border: 1px solid #ccc; border-radius: 4px; color: #333; display: block; line-height: 1.42857; padding: 9.5px; } .indicator-tilte { font-size: 14px; background-color: #eee; } a.indicator-title-dashboard > p:hover { color: red; } .badge-notify { background: #FB791E; } .address-font-size { font-size: 15px; font-family: "Times New Roman", Times, serif; font-weight: normal; } tr.spaceUnder > td { padding-bottom: 1em; } .partnersinfo { color: #F97222 !important; } .partnerBackground { background-color: #FFC000 !important; font-weight: bold; } #usersLists { width: 200px; border: 1px solid #ddd; } .delete-form input[type='submit']::before { font-family: 'Glyphicons Halflings'; content: ""; display: inline-block; } /*for delete button*/ .btn-xs, .btn-group-xs > .btn { padding: 0 2px; } .preview-div { min-height: 70px; } /*Icon modal*/ .icon-container li { margin: 15px 6px; border: 2px solid #dddddd; display: inline-block; -webkit-transition: all ease 0.50s; -moz-transition: all ease 0.50s; transition: all ease 0.50s; cursor: pointer; } .icon-container li:hover { border: 2px solid #555555; } .icon-container li img { width: auto; height: 25px; } .featur-modal-dialog{ width: 351px !important; }
0.396886
0.174903
@import './foundation/variables.css'; @import './foundation/media.css'; @import './foundation/html5reset.css'; @import './foundation/base.css'; /* ***************************************************************** components ***************************************************************** */ @import './components/Container.css'; @import './components/Button.css'; @import './components/BaloonTitle.css'; /* ***************************************************************** partials ***************************************************************** */ @import './partials/GlobalHeader.css'; @import './partials/GlobalNav.css'; @import './partials/SpGlobalHeader.css'; @import './partials/SpGlobalNav.css'; @import './partials/GlobalFooter.css'; @import './partials/HambergarMenu.css'; @import './partials/PageBlock.css'; @import './partials/Document.css'; @import './partials/StartBichikuButton.css'; /* home */ @import './partials/home/HomeLead.css'; @import './partials/home/HomeTool.css'; @import './partials/home/HomeTips.css'; /* link */ @import './partials/link/LinkBlock.css'; /* tool */ @import './partials/tool/ToolInput.css'; @import './partials/tool/ToolStep01.css'; @import './partials/tool/ToolStep02.css'; @import './partials/tool/ToolStep03.css'; @import './partials/tool/ToolResult.css'; /* ***************************************************************** pages ***************************************************************** */ @import './pages/Home.css'; @import './pages/Tool.css'; @import './pages/ToolResult.css'; @import './pages/SiteMap.css'; @import './pages/English.css'; /* *************************************************************** theme *************************************************************** */ @import './theme/theme-blue.css'; @import './theme/theme-yellow.css'; @import './theme/theme-black.css'; @import './theme/font-size.css'; /* *************************************************************** utils *************************************************************** */ @import './utils/_visually-hidden.css'; @import './utils/_display.css';
src/assets/css/style.css
@import './foundation/variables.css'; @import './foundation/media.css'; @import './foundation/html5reset.css'; @import './foundation/base.css'; /* ***************************************************************** components ***************************************************************** */ @import './components/Container.css'; @import './components/Button.css'; @import './components/BaloonTitle.css'; /* ***************************************************************** partials ***************************************************************** */ @import './partials/GlobalHeader.css'; @import './partials/GlobalNav.css'; @import './partials/SpGlobalHeader.css'; @import './partials/SpGlobalNav.css'; @import './partials/GlobalFooter.css'; @import './partials/HambergarMenu.css'; @import './partials/PageBlock.css'; @import './partials/Document.css'; @import './partials/StartBichikuButton.css'; /* home */ @import './partials/home/HomeLead.css'; @import './partials/home/HomeTool.css'; @import './partials/home/HomeTips.css'; /* link */ @import './partials/link/LinkBlock.css'; /* tool */ @import './partials/tool/ToolInput.css'; @import './partials/tool/ToolStep01.css'; @import './partials/tool/ToolStep02.css'; @import './partials/tool/ToolStep03.css'; @import './partials/tool/ToolResult.css'; /* ***************************************************************** pages ***************************************************************** */ @import './pages/Home.css'; @import './pages/Tool.css'; @import './pages/ToolResult.css'; @import './pages/SiteMap.css'; @import './pages/English.css'; /* *************************************************************** theme *************************************************************** */ @import './theme/theme-blue.css'; @import './theme/theme-yellow.css'; @import './theme/theme-black.css'; @import './theme/font-size.css'; /* *************************************************************** utils *************************************************************** */ @import './utils/_visually-hidden.css'; @import './utils/_display.css';
0.126934
0.022934
* { font-family: 'Fira Code'; font-size: 16px; } /* Upper half section: clock and date */ #currentTime { height: 48vh; background: #DDDDFF; } #time { text-align: center; font-size: 25vh; color: black; margin-top: 2vh; } #date { text-align: center; font-size: 10vh; color: gray; margin-bottom: 2vh; } /* Lower left section: countdown information */ #examLength { display: flex; float: left; width: 48vw; height: 48vh; background: #FFDDDD; } #startStopInfo { width: 45vw; } #countdownArea { width: 45vw; } input { background: transparent; margin-left: 5px; } #cdStartButton { background-color: #4CAF50; /* Green */ box-shadow: 0 8px 16px 0 rgba(0,0,0,0.3), 0 6px 20px 0 rgba(0,0,0,0.19); border: none; /* border-radius: 12px; */ color: white; padding: 15px 32px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; /* font-family: 'Anonymous Pro'; */ width: 36%; } #cdPauseButton { background-color: #ffbf00; /* Yellow-ish, Orange-ish */ box-shadow: 0 8px 16px 0 rgba(0,0,0,0.3), 0 6px 20px 0 rgba(0,0,0,0.19); border: none; /* border-radius: 12px; */ color: white; padding: 15px 16px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; /* font-family: 'Anonymous Pro'; */ width: 18%; } #cdStopButton { background-color: #d10000; /* Dark-ish Red */ box-shadow: 0 8px 16px 0 rgba(0,0,0,0.3), 0 6px 20px 0 rgba(0,0,0,0.19); border: none; /* border-radius: 12px; */ color: white; padding: 15px 16px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; /* font-family: 'Anonymous Pro'; */ width: 18%; } #countdownButtons { text-align: center; margin: 10%; } /* Lower right section: optional notes */ #notesArea { display: flex; float: right; width: 48vw; height: 48vh; background: #DDFFDD; } textarea { background: transparent; width: 90%; height: 45vh; margin-top: 1vh; margin-bottom: 1vh; margin-left: 1vw; margin-right: 1vw; } ::placeholder { color: rgb(200, 200, 200); }
exam-clock/css/default.css
* { font-family: 'Fira Code'; font-size: 16px; } /* Upper half section: clock and date */ #currentTime { height: 48vh; background: #DDDDFF; } #time { text-align: center; font-size: 25vh; color: black; margin-top: 2vh; } #date { text-align: center; font-size: 10vh; color: gray; margin-bottom: 2vh; } /* Lower left section: countdown information */ #examLength { display: flex; float: left; width: 48vw; height: 48vh; background: #FFDDDD; } #startStopInfo { width: 45vw; } #countdownArea { width: 45vw; } input { background: transparent; margin-left: 5px; } #cdStartButton { background-color: #4CAF50; /* Green */ box-shadow: 0 8px 16px 0 rgba(0,0,0,0.3), 0 6px 20px 0 rgba(0,0,0,0.19); border: none; /* border-radius: 12px; */ color: white; padding: 15px 32px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; /* font-family: 'Anonymous Pro'; */ width: 36%; } #cdPauseButton { background-color: #ffbf00; /* Yellow-ish, Orange-ish */ box-shadow: 0 8px 16px 0 rgba(0,0,0,0.3), 0 6px 20px 0 rgba(0,0,0,0.19); border: none; /* border-radius: 12px; */ color: white; padding: 15px 16px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; /* font-family: 'Anonymous Pro'; */ width: 18%; } #cdStopButton { background-color: #d10000; /* Dark-ish Red */ box-shadow: 0 8px 16px 0 rgba(0,0,0,0.3), 0 6px 20px 0 rgba(0,0,0,0.19); border: none; /* border-radius: 12px; */ color: white; padding: 15px 16px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; /* font-family: 'Anonymous Pro'; */ width: 18%; } #countdownButtons { text-align: center; margin: 10%; } /* Lower right section: optional notes */ #notesArea { display: flex; float: right; width: 48vw; height: 48vh; background: #DDFFDD; } textarea { background: transparent; width: 90%; height: 45vh; margin-top: 1vh; margin-bottom: 1vh; margin-left: 1vw; margin-right: 1vw; } ::placeholder { color: rgb(200, 200, 200); }
0.430866
0.081264
body { background-color: black; font-family: 'Lancelot', cursive; } h1 { font-family: 'Sancreek', cursive; font-size: 5em; text-align: center; color: white; } h3 { font-family: 'Lancelot', cursive; font-size: 3em; text-align: center; color: seagreen; } p { font-family: 'Lancelot', cursive; text-align: center; font-style: italic; color: grey; font-size: 2em; } a { color: grey; } a:hover { color: white; } h5 { font-size: 25px; } .container { position: relative; text-align: center; color: white; } .centered { position: absolute; top: 20%; left: 50%; transform: translate(-50%, -50%); } .ch-img-1 { background-image: url(../img/record.png); } .ch-item { width: 100%; height: 100%; border-radius: 50%; position: relative; box-shadow: 0 1px 2px rgba(0,0,0,0.1); cursor: default; } .ch-info-wrap{ position: absolute; width: 500px; height: 500px; border-radius: 100%; perspective: 1000px; transition: all 0.4s ease-in-out; top: 0px; left: 400px; box-shadow: 0 0 0 20px rgba(255,255,255,0.2), inset 0 0 3px rgba(115,114, 23, 0.8); } .ch-info{ position: absolute; width: 500px; height: 500px; border-radius: 100%; transition: all 0.4s ease-in-out; transform-style: preserve-3d; } .ch-info > div { display: block; position: absolute; width: 100%; height: 100%; border-radius: 100%; background-position: center center; backface-visibility: hidden; } .ch-info .ch-info-back { transform: rotate3d(0,1,0,180deg); background: #000; } .ch-info p { color: seagreen; padding: 90px 38px; margin: 0 20px; font-size: 35px; font-weight: 800; text-align: center; } .ch-info p a { display: block; color: grey; font-weight: lighter; font-size: 25px; letter-spacing: 1px; padding-top: 4px; font-family: 'Lancelot', cursive; } .ch-info p a:hover { color: white; } .ch-item:hover .ch-info-wrap { box-shadow: 0 0 0 0 rgba(255,255,255,0.8), inset 0 0 3px rgba(115,114, 23, 0.8); } .ch-item:hover .ch-info { transform: rotate3d(0,1,0,-180deg); } /*ROTATE IMAGE */ body { text-align: center; padding: 100px 0 0 0; color: #fff; background: #1d1f20; } #loading { -webkit-animation: rotation 20s infinite linear; } @-webkit-keyframes rotation { from { -webkit-transform: rotate(0deg); } to { -webkit-transform: rotate(359deg); } } /* Close Rotate */ /*Shake Image*/ img:hover { animation: shake 0.5s; animation-iteration-count: infinite; } @keyframes shake { 0% { transform: translate(1px, 1px) rotate(0deg); } 10% { transform: translate(-1px, -2px) rotate(-1deg); } 20% { transform: translate(-3px, 0px) rotate(1deg); } 30% { transform: translate(3px, 2px) rotate(0deg); } 40% { transform: translate(1px, -1px) rotate(1deg); } 50% { transform: translate(-1px, 2px) rotate(-1deg); } 60% { transform: translate(-3px, 1px) rotate(0deg); } 70% { transform: translate(3px, 1px) rotate(-1deg); } 80% { transform: translate(-1px, -1px) rotate(1deg); } 90% { transform: translate(1px, 2px) rotate(0deg); } 100% { transform: translate(1px, -2px) rotate(-1deg); } } /* CLOSE SHAKE */ /*fade text*/ .animation-box { width: 75%; height: 27.5rem; background-color: blue; margin: 0 auto; overflow: hidden; position: relative; } .animation-container { width: 1000rem; height: 30rem; } @keyframes topFadeOut { 0% { position: absolute; top: -3rem; opacity: 0; } 75% { position: absolute; top: 25%; opacity: 1; } 100% { opacity: 0; } } @keyframes bottomFadeOut { 0% { position: absolute; bottom: -5rem; opacity: 0; } 75% { position: absolute; bottom: 25%; opacity: 1; } 100% { opacity: 0; } } @keyframes topFadeOutVertical { 0% { position: absolute; top: -3rem; opacity: 0; } 75% { position: absolute; top: 45%; opacity: 1; } 100% { opacity: 0; } } @keyframes rightFadeInOut { 0% { position: absolute; right: -3rem; opacity: 0; } 75% { position: absolute; right: 10rem; opacity: 1; } 100% { opacity: 0; right: 10rem; } } @keyframes fadeInOut { 0% { opacity: 0; } 45% { opacity: 1; } 100% { opacity: 0; } } .first-text { font-size: 4.4rem; position: absolute; left: 2.5rem; top: 5rem; opacity: 0; animation-name: topFadeOut; animation-duration: 5s; color: grey; } .second-text { font-size: 4.4rem; position: absolute; top: 8.5rem; opacity: 0; animation-name: rightFadeInOut; animation-delay: 3s; animation-duration: 6s; color: grey; } .third-text { font-size: 4.4rem; position: absolute; left: 5%; top: 45%; opacity: 0; animation-name: topFadeOutVertical; animation-delay: 7s; animation-duration: 7.5s; color: grey; white-space: nowrap; } .fourth-text { font-size: 3.4rem; position: absolute; top: 10.5rem; left: 0%; opacity: 0; color: grey; animation-name: fadeInOut; animation-delay: 8s; animation-duration: 10s; } .fifth-text { font-size: 4.4rem; position: absolute; left: 5%; bottom: 25%; opacity: 0; color: grey; animation-name: bottomFadeOut; animation-delay: 12s; animation-duration: 12s; } .sixth-text { font-size: 5rem; position: absolute; top: 30%; left: 10%; bottom: 25%; opacity: 0; color: seagreen; animation-name: topFadeOut; animation-delay: 20s; animation-duration: 20s; text-align: center; } /* close fade text */
animation/animation.css
body { background-color: black; font-family: 'Lancelot', cursive; } h1 { font-family: 'Sancreek', cursive; font-size: 5em; text-align: center; color: white; } h3 { font-family: 'Lancelot', cursive; font-size: 3em; text-align: center; color: seagreen; } p { font-family: 'Lancelot', cursive; text-align: center; font-style: italic; color: grey; font-size: 2em; } a { color: grey; } a:hover { color: white; } h5 { font-size: 25px; } .container { position: relative; text-align: center; color: white; } .centered { position: absolute; top: 20%; left: 50%; transform: translate(-50%, -50%); } .ch-img-1 { background-image: url(../img/record.png); } .ch-item { width: 100%; height: 100%; border-radius: 50%; position: relative; box-shadow: 0 1px 2px rgba(0,0,0,0.1); cursor: default; } .ch-info-wrap{ position: absolute; width: 500px; height: 500px; border-radius: 100%; perspective: 1000px; transition: all 0.4s ease-in-out; top: 0px; left: 400px; box-shadow: 0 0 0 20px rgba(255,255,255,0.2), inset 0 0 3px rgba(115,114, 23, 0.8); } .ch-info{ position: absolute; width: 500px; height: 500px; border-radius: 100%; transition: all 0.4s ease-in-out; transform-style: preserve-3d; } .ch-info > div { display: block; position: absolute; width: 100%; height: 100%; border-radius: 100%; background-position: center center; backface-visibility: hidden; } .ch-info .ch-info-back { transform: rotate3d(0,1,0,180deg); background: #000; } .ch-info p { color: seagreen; padding: 90px 38px; margin: 0 20px; font-size: 35px; font-weight: 800; text-align: center; } .ch-info p a { display: block; color: grey; font-weight: lighter; font-size: 25px; letter-spacing: 1px; padding-top: 4px; font-family: 'Lancelot', cursive; } .ch-info p a:hover { color: white; } .ch-item:hover .ch-info-wrap { box-shadow: 0 0 0 0 rgba(255,255,255,0.8), inset 0 0 3px rgba(115,114, 23, 0.8); } .ch-item:hover .ch-info { transform: rotate3d(0,1,0,-180deg); } /*ROTATE IMAGE */ body { text-align: center; padding: 100px 0 0 0; color: #fff; background: #1d1f20; } #loading { -webkit-animation: rotation 20s infinite linear; } @-webkit-keyframes rotation { from { -webkit-transform: rotate(0deg); } to { -webkit-transform: rotate(359deg); } } /* Close Rotate */ /*Shake Image*/ img:hover { animation: shake 0.5s; animation-iteration-count: infinite; } @keyframes shake { 0% { transform: translate(1px, 1px) rotate(0deg); } 10% { transform: translate(-1px, -2px) rotate(-1deg); } 20% { transform: translate(-3px, 0px) rotate(1deg); } 30% { transform: translate(3px, 2px) rotate(0deg); } 40% { transform: translate(1px, -1px) rotate(1deg); } 50% { transform: translate(-1px, 2px) rotate(-1deg); } 60% { transform: translate(-3px, 1px) rotate(0deg); } 70% { transform: translate(3px, 1px) rotate(-1deg); } 80% { transform: translate(-1px, -1px) rotate(1deg); } 90% { transform: translate(1px, 2px) rotate(0deg); } 100% { transform: translate(1px, -2px) rotate(-1deg); } } /* CLOSE SHAKE */ /*fade text*/ .animation-box { width: 75%; height: 27.5rem; background-color: blue; margin: 0 auto; overflow: hidden; position: relative; } .animation-container { width: 1000rem; height: 30rem; } @keyframes topFadeOut { 0% { position: absolute; top: -3rem; opacity: 0; } 75% { position: absolute; top: 25%; opacity: 1; } 100% { opacity: 0; } } @keyframes bottomFadeOut { 0% { position: absolute; bottom: -5rem; opacity: 0; } 75% { position: absolute; bottom: 25%; opacity: 1; } 100% { opacity: 0; } } @keyframes topFadeOutVertical { 0% { position: absolute; top: -3rem; opacity: 0; } 75% { position: absolute; top: 45%; opacity: 1; } 100% { opacity: 0; } } @keyframes rightFadeInOut { 0% { position: absolute; right: -3rem; opacity: 0; } 75% { position: absolute; right: 10rem; opacity: 1; } 100% { opacity: 0; right: 10rem; } } @keyframes fadeInOut { 0% { opacity: 0; } 45% { opacity: 1; } 100% { opacity: 0; } } .first-text { font-size: 4.4rem; position: absolute; left: 2.5rem; top: 5rem; opacity: 0; animation-name: topFadeOut; animation-duration: 5s; color: grey; } .second-text { font-size: 4.4rem; position: absolute; top: 8.5rem; opacity: 0; animation-name: rightFadeInOut; animation-delay: 3s; animation-duration: 6s; color: grey; } .third-text { font-size: 4.4rem; position: absolute; left: 5%; top: 45%; opacity: 0; animation-name: topFadeOutVertical; animation-delay: 7s; animation-duration: 7.5s; color: grey; white-space: nowrap; } .fourth-text { font-size: 3.4rem; position: absolute; top: 10.5rem; left: 0%; opacity: 0; color: grey; animation-name: fadeInOut; animation-delay: 8s; animation-duration: 10s; } .fifth-text { font-size: 4.4rem; position: absolute; left: 5%; bottom: 25%; opacity: 0; color: grey; animation-name: bottomFadeOut; animation-delay: 12s; animation-duration: 12s; } .sixth-text { font-size: 5rem; position: absolute; top: 30%; left: 10%; bottom: 25%; opacity: 0; color: seagreen; animation-name: topFadeOut; animation-delay: 20s; animation-duration: 20s; text-align: center; } /* close fade text */
0.461988
0.066509
html, body { margin: 0; padding: 0; font-family: 'Source Sans Pro', sans-serif; font-size: 1.1rem; background-color: rgb(19, 18, 18); color: white; } body { overflow-x: hidden; } @keyframes fadeOut { 0% { opacity: 1; } 100% { opacity: 0; } } @keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } a { color: white; text-decoration: underline; transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out; } a:hover { text-decoration: none; } .logo { text-align: center; padding: 40px; } .logo img { width: 100%; max-width: 1000px; } .right { text-align: right; } h1, h2, h3, h4 { font-weight: 800; font-family: 'Raleway', sans-serif; margin: 16px 0; padding: 0; font-size: 2rem; } h2 { font-size: 1.8rem; } h3 { font-size: 1.6rem; font-weight: 600; margin-top: 40px; } h4 { font-size: 1.4rem; font-weight: 600; margin-top: 40px; } h1 { font-weight: 900 !important; } h2::before { content: ''; display: block; margin-left: calc(50% - 50px); height: 0.25rem; width: 6.5rem; border-radius: 4px; background-color: #DFAB3C; text-align: center; margin-bottom: 20px; } h2 { text-transform: uppercase; box-sizing: border-box; display: block; text-align: center; vertical-align: baseline; line-height: 1.3; font-size: 2.25rem; clear: both; } h3::before { content: ''; display: inline-block; /*margin-left: calc(50% - 50px);*/ margin-right: 24px; height: 1px; /*width: 6.5rem;*/ width: 10vw; background-color: silver; text-align: center; box-sizing: border-box; margin-bottom: 12px; } h3::after { content: ''; display: inline-block; /*margin-left: calc(50% - 50px);*/ margin-left: 24px; height: 1px; width: 10vw; background-color: silver; text-align: center; box-sizing: border-box; margin-bottom: 12px; } h3 { text-transform: uppercase; box-sizing: border-box; text-align: center; vertical-align: baseline; line-height: 1.3; font-size: 2rem; } .section { margin-top: 0px; margin-bottom: 0px; padding: 0 40px 0 40px; } .section .container { margin: 0 auto; padding-left: 50px; padding-right: 50px; max-width: 1000px; } .header { margin: 0 auto; padding-left: 50px; padding-right: 50px; border: 1px solid red; } .accent { background-color: #DFAB3C; } #footer { text-align: center; } .copyright { color: gray; font-size: 0.9rem; margin-top: 60px; margin-bottom: 60px; } .copyright a { color: silver; } .copyright a:hover { color: white; } .noselect { -ms-user-select: none; user-select: none; } .top { display: block; left: 0; right: 0; top: 0; margin: 24px 30px; z-index: 1000; color: white; animation: fadeIn ease-in-out 1s; } .centered { text-align: center; } .mobile-show { display: none; visibility: hidden; } .icon-inline-left { float:left; margin-right: 20px; } .icon-inline-right { float:right; margin-left: 20px; } .quote { font-style: italic; font-size: 1.8rem; margin-bottom: 10px; } .quote-image { padding-top: 40px; } .quote-image img { width: 30%; min-width: 96px; } .footer-quote { min-height: 300px; } .third-party { text-align: right; } .third-party img { height: 40px; margin-right: 40px; } .smaller { font-size: 0.85rem; } .centered { text-align: center; } .social-icons { color: white; text-align: center; } .social-icons a { color: white; margin-right: 20px; } .social-icon { color: white; } .social-icon:hover { color: gray; } .downloads { text-align: center; } .downloads a { display: inline-block; margin-bottom: 40px; } .downloads img { height: 60px; } .spaced { padding-top: 60px; } .profiles { display: flex; flex-direction: row; /*border: 1px solid red;*/ justify-content: center; /* align-self: center; align-items: center; align-content: center; */ } .profile { margin: 20px; } .profile-image { width: 200px; border-radius: 50%; border: 5px solid transparent; box-shadow: 0px 0px 0px 2px #DFAB3C; transition: box-shadow 0.25s linear; margin: 0.5em; } .profile-image:hover { box-shadow: 0px 0px 0px 10px #DFAB3C; } .profile-name { font-weight: bolder; text-transform: uppercase; } .profile-title { margin-bottom: 8px; } .profile > a { margin-left: 4px; margin-right: 4px; } .profile > a:hover { color: gray; } .chart-container { width: 100%; text-align: center; display: flex; flex-direction: row; justify-content: center; } @media screen and (max-width: 740px) { .profile > img { width: 120px; } } @media screen and (max-width: 480px) { .profiles { flex-direction: column; } } /* Make the menu items take up a little more space on smaller screens. */ @media screen and (min-width: 920px) { ::-webkit-scrollbar { width: 12px; /* for vertical scrollbars */ height: 12px; /* for horizontal scrollbars */ } ::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.8); } ::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.5); } } /* Make the menu items take up a little more space on smaller screens. */ @media screen and (max-width: 920px) { .action-button { margin-left: 10px !important; } } /* At this size, we'll hide the menu links and show menu button */ @media screen and (max-width: 840px) { .mobile-show { visibility: visible; } .action-button-second { margin-right: 60px; } .mobile-hidden { display: none !important; } .section .container { padding-left: 40px; padding-right: 40px; } .article { flex-wrap: wrap; } .article .content { width: 100%; border-radius: 0 0 10px 10px; padding: 10px; } .article .image { width: 100%; } .article .image img { border-radius: 10px 10px 0 0; } } @media screen and (max-width: 580px) { .action-button { display: none !important; } .section .container { padding-left: 20px; padding-right: 20px; } h1, h2 { font-size: 1.6rem; } h3, h4, h5 { font-size: 1.4rem; } .feature div { font-size: 1.2rem; } } @media screen and (max-width: 450px) { .mobile-show { visibility: visible; } .section .container { padding-left: 20px; padding-right: 20px; } h1, h2 { font-size: 1.6rem; } h3, h4, h5 { font-size: 1.4rem; } }
src/styles.css
html, body { margin: 0; padding: 0; font-family: 'Source Sans Pro', sans-serif; font-size: 1.1rem; background-color: rgb(19, 18, 18); color: white; } body { overflow-x: hidden; } @keyframes fadeOut { 0% { opacity: 1; } 100% { opacity: 0; } } @keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } a { color: white; text-decoration: underline; transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out; } a:hover { text-decoration: none; } .logo { text-align: center; padding: 40px; } .logo img { width: 100%; max-width: 1000px; } .right { text-align: right; } h1, h2, h3, h4 { font-weight: 800; font-family: 'Raleway', sans-serif; margin: 16px 0; padding: 0; font-size: 2rem; } h2 { font-size: 1.8rem; } h3 { font-size: 1.6rem; font-weight: 600; margin-top: 40px; } h4 { font-size: 1.4rem; font-weight: 600; margin-top: 40px; } h1 { font-weight: 900 !important; } h2::before { content: ''; display: block; margin-left: calc(50% - 50px); height: 0.25rem; width: 6.5rem; border-radius: 4px; background-color: #DFAB3C; text-align: center; margin-bottom: 20px; } h2 { text-transform: uppercase; box-sizing: border-box; display: block; text-align: center; vertical-align: baseline; line-height: 1.3; font-size: 2.25rem; clear: both; } h3::before { content: ''; display: inline-block; /*margin-left: calc(50% - 50px);*/ margin-right: 24px; height: 1px; /*width: 6.5rem;*/ width: 10vw; background-color: silver; text-align: center; box-sizing: border-box; margin-bottom: 12px; } h3::after { content: ''; display: inline-block; /*margin-left: calc(50% - 50px);*/ margin-left: 24px; height: 1px; width: 10vw; background-color: silver; text-align: center; box-sizing: border-box; margin-bottom: 12px; } h3 { text-transform: uppercase; box-sizing: border-box; text-align: center; vertical-align: baseline; line-height: 1.3; font-size: 2rem; } .section { margin-top: 0px; margin-bottom: 0px; padding: 0 40px 0 40px; } .section .container { margin: 0 auto; padding-left: 50px; padding-right: 50px; max-width: 1000px; } .header { margin: 0 auto; padding-left: 50px; padding-right: 50px; border: 1px solid red; } .accent { background-color: #DFAB3C; } #footer { text-align: center; } .copyright { color: gray; font-size: 0.9rem; margin-top: 60px; margin-bottom: 60px; } .copyright a { color: silver; } .copyright a:hover { color: white; } .noselect { -ms-user-select: none; user-select: none; } .top { display: block; left: 0; right: 0; top: 0; margin: 24px 30px; z-index: 1000; color: white; animation: fadeIn ease-in-out 1s; } .centered { text-align: center; } .mobile-show { display: none; visibility: hidden; } .icon-inline-left { float:left; margin-right: 20px; } .icon-inline-right { float:right; margin-left: 20px; } .quote { font-style: italic; font-size: 1.8rem; margin-bottom: 10px; } .quote-image { padding-top: 40px; } .quote-image img { width: 30%; min-width: 96px; } .footer-quote { min-height: 300px; } .third-party { text-align: right; } .third-party img { height: 40px; margin-right: 40px; } .smaller { font-size: 0.85rem; } .centered { text-align: center; } .social-icons { color: white; text-align: center; } .social-icons a { color: white; margin-right: 20px; } .social-icon { color: white; } .social-icon:hover { color: gray; } .downloads { text-align: center; } .downloads a { display: inline-block; margin-bottom: 40px; } .downloads img { height: 60px; } .spaced { padding-top: 60px; } .profiles { display: flex; flex-direction: row; /*border: 1px solid red;*/ justify-content: center; /* align-self: center; align-items: center; align-content: center; */ } .profile { margin: 20px; } .profile-image { width: 200px; border-radius: 50%; border: 5px solid transparent; box-shadow: 0px 0px 0px 2px #DFAB3C; transition: box-shadow 0.25s linear; margin: 0.5em; } .profile-image:hover { box-shadow: 0px 0px 0px 10px #DFAB3C; } .profile-name { font-weight: bolder; text-transform: uppercase; } .profile-title { margin-bottom: 8px; } .profile > a { margin-left: 4px; margin-right: 4px; } .profile > a:hover { color: gray; } .chart-container { width: 100%; text-align: center; display: flex; flex-direction: row; justify-content: center; } @media screen and (max-width: 740px) { .profile > img { width: 120px; } } @media screen and (max-width: 480px) { .profiles { flex-direction: column; } } /* Make the menu items take up a little more space on smaller screens. */ @media screen and (min-width: 920px) { ::-webkit-scrollbar { width: 12px; /* for vertical scrollbars */ height: 12px; /* for horizontal scrollbars */ } ::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.8); } ::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.5); } } /* Make the menu items take up a little more space on smaller screens. */ @media screen and (max-width: 920px) { .action-button { margin-left: 10px !important; } } /* At this size, we'll hide the menu links and show menu button */ @media screen and (max-width: 840px) { .mobile-show { visibility: visible; } .action-button-second { margin-right: 60px; } .mobile-hidden { display: none !important; } .section .container { padding-left: 40px; padding-right: 40px; } .article { flex-wrap: wrap; } .article .content { width: 100%; border-radius: 0 0 10px 10px; padding: 10px; } .article .image { width: 100%; } .article .image img { border-radius: 10px 10px 0 0; } } @media screen and (max-width: 580px) { .action-button { display: none !important; } .section .container { padding-left: 20px; padding-right: 20px; } h1, h2 { font-size: 1.6rem; } h3, h4, h5 { font-size: 1.4rem; } .feature div { font-size: 1.2rem; } } @media screen and (max-width: 450px) { .mobile-show { visibility: visible; } .section .container { padding-left: 20px; padding-right: 20px; } h1, h2 { font-size: 1.6rem; } h3, h4, h5 { font-size: 1.4rem; } }
0.734596
0.085137
*, *::after, *::before { box-sizing: border-box; } :root { --clr-primary: #F70058; --clr-dark: #0C0E36; --clr-light: #FFF; --fw-normal: 400; --fw-bold: 700; --fw-black: 900; --grid: minmax(1em, 1fr) minmax(20rem, 44ch) minmax(1em, 3fr); } body { margin: 0; font-family: 'Work Sans', sans-serif; font-size: 1.125rem; color: var(--clr-dark); line-height: 1.6; /* background: gray; */ } h1, h2, h3 {line-height: 1;} .btn { cursor: pointer; display: inline-block; font-size: 1rem; padding: .5em 1.5em; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; font-weight: var(--fw-bold); margin-bottom: .5em; outline: none; } .btn--primary { background-color: var(--clr-primary); color: var(--clr-light); } .btn--primary:hover, .btn--primary:focus { background-color: var(--clr-dark); color: var(--clr-light); } .btn--outline { outline: 3px solid var(--clr-primary); outline-offset: -3px; color: var(--clr-primary); } .btn--outline:hover, .btn--outline:focus { outline: 3px solid var(--clr-dark); color: var(--clr-dark); } header { background: var(--clr-light); text-align: center; } .logo { margin-top: 1em; } nav { padding: 1em; opacity: .8; } .nav__list { display: flex; justify-content: space-between; margin: 0; /* margin-top: 1em; */ padding: 0; list-style: none; font-size: 0.875rem; text-transform: uppercase; font-weight: var(--fw-bold); letter-spacing: 1px; } .nav__link { text-decoration: none; color: gray; margin: 0 0 2em; position: relative; text-decoration: none; } /* .nav__link:hover { color: var(--clr-primary); } */ .weather { display: grid; grid-template-columns: min-content 1fr; background-color: var(--clr-dark); color: var(--clr-light); } .weather__icon { grid-row: span 2; /* align-self: center; */ background-color: var(--clr-primary); padding: .5em; display: flex; } .weather__info { margin: 0; margin-left: .75rem; padding-right: .75rem; text-align: left; color: rgba(255,255,255, 0.7); text-transform: uppercase; font-weight: var(--fw-bold); letter-spacing: 1px; font-size: .75rem; display: flex; align-items: center; } .weather__info:first-of-type { margin-top: .5rem; margin-bottom: .5rem; position: relative; } .weather__info:first-of-type::after { content: ''; position: absolute; background-color: var(--clr-light); opacity: .25; height: 3px; width: calc(100% - .25em); bottom: -.25rem; } .weather__info:last-of-type { margin-bottom: .5rem; } .weather__info span { color: var(--clr-light); margin-left: auto; font-size: 1rem; text-transform: none; } .main { padding: 3em 1em 5rem; } .main--ski { background-image: url(../images/skiier.jpg); background-size: cover; } .main__title { font-weight: var(--fw-black); font-size: 3rem; } .active, .nav__link:hover { font-weight: var(--fw-black); letter-spacing: 1px; color: inherit } svg { display: none; } @media (min-width: 520px) { .main__title { margin-bottom: 0; } .main { display: grid; grid-template-columns: var(--grid); justify-items: start; } .main__intro { width: 40ch; margin-bottom: 2em; } .main > * { grid-column: 2 / 3; } .main--ski { background-position: bottom left; } .weather { width: max-content; margin: 0 auto; } .weather__info span { padding-left: 2em } } @media (min-width: 800px) { header { display: grid; grid-template-columns: var(--grid); align-items: center; } .wrapper, .weather { grid-row: 1; } .weather { grid-column: -1; justify-self: end; } .weather__info span { padding-left: 1em } .wrapper { grid-column: 2 / 4; display: grid; grid-template-columns: 180px 1fr; align-items: center; } .logo { margin-top: 0; } /* BUTTON */ .nav__link { text-transform: uppercase; width: 100%; /* color:red; */ font-weight: var(--fw-bold); padding: 0.52rem; } svg { display: block; height: 100%; left: 0; position: absolute; top: 0; width: 100%; } rect { fill: none; stroke: #FFF; stroke-width: 2; stroke-dasharray: 422, 0; transition: all 0.35s linear; } /* .nav__link:hover:nth-child(1) rect { stroke-dasharray: 15, 160; } .nav__link:hover:nth-child(2) rect { stroke-dasharray: 21, 174; } */ .active rect, .nav__link:focus rect, .nav__link:hover rect { stroke: var(--clr-primary); stroke-width: 5; stroke-dashoffset: 48; transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1); } .ski rect{ stroke-dasharray: 15, 86; } .golf rect{ stroke-dasharray: 15, 100; } .hiking rect{ stroke-dasharray: 16, 114; } .contact rect{ stroke-dasharray: 16, 132; } } @media (min-width: 800px) { .main__title { width: 18ch; } } @media (min-width: 810px) { .main--ski { background-position: center right; } .nav__list { justify-content: space-around; } }
css/main.css
*, *::after, *::before { box-sizing: border-box; } :root { --clr-primary: #F70058; --clr-dark: #0C0E36; --clr-light: #FFF; --fw-normal: 400; --fw-bold: 700; --fw-black: 900; --grid: minmax(1em, 1fr) minmax(20rem, 44ch) minmax(1em, 3fr); } body { margin: 0; font-family: 'Work Sans', sans-serif; font-size: 1.125rem; color: var(--clr-dark); line-height: 1.6; /* background: gray; */ } h1, h2, h3 {line-height: 1;} .btn { cursor: pointer; display: inline-block; font-size: 1rem; padding: .5em 1.5em; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; font-weight: var(--fw-bold); margin-bottom: .5em; outline: none; } .btn--primary { background-color: var(--clr-primary); color: var(--clr-light); } .btn--primary:hover, .btn--primary:focus { background-color: var(--clr-dark); color: var(--clr-light); } .btn--outline { outline: 3px solid var(--clr-primary); outline-offset: -3px; color: var(--clr-primary); } .btn--outline:hover, .btn--outline:focus { outline: 3px solid var(--clr-dark); color: var(--clr-dark); } header { background: var(--clr-light); text-align: center; } .logo { margin-top: 1em; } nav { padding: 1em; opacity: .8; } .nav__list { display: flex; justify-content: space-between; margin: 0; /* margin-top: 1em; */ padding: 0; list-style: none; font-size: 0.875rem; text-transform: uppercase; font-weight: var(--fw-bold); letter-spacing: 1px; } .nav__link { text-decoration: none; color: gray; margin: 0 0 2em; position: relative; text-decoration: none; } /* .nav__link:hover { color: var(--clr-primary); } */ .weather { display: grid; grid-template-columns: min-content 1fr; background-color: var(--clr-dark); color: var(--clr-light); } .weather__icon { grid-row: span 2; /* align-self: center; */ background-color: var(--clr-primary); padding: .5em; display: flex; } .weather__info { margin: 0; margin-left: .75rem; padding-right: .75rem; text-align: left; color: rgba(255,255,255, 0.7); text-transform: uppercase; font-weight: var(--fw-bold); letter-spacing: 1px; font-size: .75rem; display: flex; align-items: center; } .weather__info:first-of-type { margin-top: .5rem; margin-bottom: .5rem; position: relative; } .weather__info:first-of-type::after { content: ''; position: absolute; background-color: var(--clr-light); opacity: .25; height: 3px; width: calc(100% - .25em); bottom: -.25rem; } .weather__info:last-of-type { margin-bottom: .5rem; } .weather__info span { color: var(--clr-light); margin-left: auto; font-size: 1rem; text-transform: none; } .main { padding: 3em 1em 5rem; } .main--ski { background-image: url(../images/skiier.jpg); background-size: cover; } .main__title { font-weight: var(--fw-black); font-size: 3rem; } .active, .nav__link:hover { font-weight: var(--fw-black); letter-spacing: 1px; color: inherit } svg { display: none; } @media (min-width: 520px) { .main__title { margin-bottom: 0; } .main { display: grid; grid-template-columns: var(--grid); justify-items: start; } .main__intro { width: 40ch; margin-bottom: 2em; } .main > * { grid-column: 2 / 3; } .main--ski { background-position: bottom left; } .weather { width: max-content; margin: 0 auto; } .weather__info span { padding-left: 2em } } @media (min-width: 800px) { header { display: grid; grid-template-columns: var(--grid); align-items: center; } .wrapper, .weather { grid-row: 1; } .weather { grid-column: -1; justify-self: end; } .weather__info span { padding-left: 1em } .wrapper { grid-column: 2 / 4; display: grid; grid-template-columns: 180px 1fr; align-items: center; } .logo { margin-top: 0; } /* BUTTON */ .nav__link { text-transform: uppercase; width: 100%; /* color:red; */ font-weight: var(--fw-bold); padding: 0.52rem; } svg { display: block; height: 100%; left: 0; position: absolute; top: 0; width: 100%; } rect { fill: none; stroke: #FFF; stroke-width: 2; stroke-dasharray: 422, 0; transition: all 0.35s linear; } /* .nav__link:hover:nth-child(1) rect { stroke-dasharray: 15, 160; } .nav__link:hover:nth-child(2) rect { stroke-dasharray: 21, 174; } */ .active rect, .nav__link:focus rect, .nav__link:hover rect { stroke: var(--clr-primary); stroke-width: 5; stroke-dashoffset: 48; transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1); } .ski rect{ stroke-dasharray: 15, 86; } .golf rect{ stroke-dasharray: 15, 100; } .hiking rect{ stroke-dasharray: 16, 114; } .contact rect{ stroke-dasharray: 16, 132; } } @media (min-width: 800px) { .main__title { width: 18ch; } } @media (min-width: 810px) { .main--ski { background-position: center right; } .nav__list { justify-content: space-around; } }
0.472197
0.088623
html, body { background-color: #dedce5; } *, *:before, *:after { box-sizing: border-box; } body { margin: 0; padding: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } body, input { color: #373438; } .container { max-width: 400px; margin: 0 auto; } .header { text-align: center; background-color: #130c0e; color: white; padding: 10px 10px 40px; } h1 { font-size: 36px; font-weight: bold; } .slogan { max-width: 320px; margin: 10px auto 0; } .card { background-color: #fff; padding: 20px 30px; margin: 30px; border-radius: 5px; box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); position: relative; min-height: 100px; } .starship-item { padding: 10px 30px; margin: 0 -30px; transition: all 0.25s ease; cursor: pointer; font-size: 18px; font-weight: 300; } .starship-item:hover { background-color: #6590b9; color: #fff; } .starship-modal-container, .starship-modal-background { position: fixed; top: 0; right: 0; bottom: 0; left: 0; } .starship-modal-container { display: flex; justify-content: center; align-items: center; z-index: 200; } .starship-modal-background { background-color: #000; opacity: 0.5; } .starship { background-color: #fff; box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); z-index: 300; padding: 20px 30px 10px; border-radius: 5px; width: 300px; } .starship h2 { font-size: 30px; font-weight: 300; margin: 0; } .price { color: #625f63; margin: 10px 0; } .starship-info { margin: 30px -15px 0; display: flex; justify-content: center; } .starship-info-item { text-align: center; padding: 5px 15px; } .starship-info .label { font-size: 14px; color: #625f63; } .starship-info .data { font-size: 20px; margin: 5px; } .crew { margin-top: 20px; } .form-title { font-size: 20px; text-align: center; } label { display: block; margin: 10px 0 5px; } input { display: block; font-size: 18px; padding: 5px; border-radius: 3px; box-shadow: none; border: 1px solid #a7a3a2; width: 100%; } input:focus { outline-color: #1f8dcc; outline-width: 3px; } .button-container { display: flex; justify-content: center; } button { font-size: 18px; padding: 8px 15px; margin: 15px 0; border-radius: 5px; border-width: 0; outline: none; background-color: #1f8dcc; color: #fff; } .loader-container, .loader-container:before { position: absolute; top: 0; right: 0; bottom: 0; left: 0; } .loader-container { display: flex; justify-content: center; align-items: center; } .loader-container:before { content: ''; background-color: #a7a3a2; opacity: 0.3; } .loader { animation: loader-spin infinite 1s linear; height: 40px; width: 40px; border-radius: 50%; border: 5px solid #bcc8dc; border-top-color: #1f8dcc; } @keyframes loader-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
src/app/Labs/styles.css
html, body { background-color: #dedce5; } *, *:before, *:after { box-sizing: border-box; } body { margin: 0; padding: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } body, input { color: #373438; } .container { max-width: 400px; margin: 0 auto; } .header { text-align: center; background-color: #130c0e; color: white; padding: 10px 10px 40px; } h1 { font-size: 36px; font-weight: bold; } .slogan { max-width: 320px; margin: 10px auto 0; } .card { background-color: #fff; padding: 20px 30px; margin: 30px; border-radius: 5px; box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); position: relative; min-height: 100px; } .starship-item { padding: 10px 30px; margin: 0 -30px; transition: all 0.25s ease; cursor: pointer; font-size: 18px; font-weight: 300; } .starship-item:hover { background-color: #6590b9; color: #fff; } .starship-modal-container, .starship-modal-background { position: fixed; top: 0; right: 0; bottom: 0; left: 0; } .starship-modal-container { display: flex; justify-content: center; align-items: center; z-index: 200; } .starship-modal-background { background-color: #000; opacity: 0.5; } .starship { background-color: #fff; box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); z-index: 300; padding: 20px 30px 10px; border-radius: 5px; width: 300px; } .starship h2 { font-size: 30px; font-weight: 300; margin: 0; } .price { color: #625f63; margin: 10px 0; } .starship-info { margin: 30px -15px 0; display: flex; justify-content: center; } .starship-info-item { text-align: center; padding: 5px 15px; } .starship-info .label { font-size: 14px; color: #625f63; } .starship-info .data { font-size: 20px; margin: 5px; } .crew { margin-top: 20px; } .form-title { font-size: 20px; text-align: center; } label { display: block; margin: 10px 0 5px; } input { display: block; font-size: 18px; padding: 5px; border-radius: 3px; box-shadow: none; border: 1px solid #a7a3a2; width: 100%; } input:focus { outline-color: #1f8dcc; outline-width: 3px; } .button-container { display: flex; justify-content: center; } button { font-size: 18px; padding: 8px 15px; margin: 15px 0; border-radius: 5px; border-width: 0; outline: none; background-color: #1f8dcc; color: #fff; } .loader-container, .loader-container:before { position: absolute; top: 0; right: 0; bottom: 0; left: 0; } .loader-container { display: flex; justify-content: center; align-items: center; } .loader-container:before { content: ''; background-color: #a7a3a2; opacity: 0.3; } .loader { animation: loader-spin infinite 1s linear; height: 40px; width: 40px; border-radius: 50%; border: 5px solid #bcc8dc; border-top-color: #1f8dcc; } @keyframes loader-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
0.478529
0.093554
body { margin: 0; padding: 0; background-color: #EEE; } header { background: none repeat scroll 0 0 white; height: 130px; -webkit-box-shadow: 0px -1px 6px black; box-shadow: 0px -1px 6px black; position: relative; z-index: 10; } header div { margin: 0 auto; padding: 30px 0; width: 960px; position: relative; } .promo { bottom: 8px; color: #666666; font-family: "Helvetica Neue","Lucida Grande",Helvetica,Arial,Verdana,sans-serif; font-size: 11px; padding: 14px; position: absolute; right: 4px; text-align: right; width: 200px; } .promo a { color: #666; text-decoration: none; text-decoration: underline; } .promo a:hover { color: #F3C133; } .promo img { width: 130px; } h1 { font-family: Rokkitt; font-size: 40px; font-weight: normal; margin: 0; } h1 a { color: #333; text-decoration: none; } h2 { color: #767676; font-family: Rokkitt; font-size: 20px; font-weight: normal; margin: 0; } textarea { width: 100%; height: 100%; outline: none; resize: none; font-family: Courier New,Courier,mono,sans-serif; font-size: 14px; padding: 10px; border: none; } .content { width: 960px; margin: 20px auto; font-family: "Helvetica Neue","Lucida Grande",Helvetica,Arial,Verdana,sans-serif; } .inputForm { background-color: #F9F9F9; border: 1px solid silver; margin: 60px auto; padding: 20px; text-align: center; width: 400px; -webkit-box-shadow: 0 1px 0 #464646; box-shadow: 0 1px 0 #464646; } .inputForm p { color: #333333; font-family: Rokkitt; font-size: 19px; margin: 10px 0 27px; } input.send { background-color: #C5C5C5; border: 1px solid #A2A2A2; -webkit-box-shadow: 2px 2px 0 #BBBBBB; box-shadow: 2px 2px 0 #BBBBBB; color: #2B2B2B; font-family: Rokkitt; font-size: 20px; height: 40px; margin: 20px 0 0; width: 140px; } input.send:hover { background-color: #E3E3E3; } #box { left: 10px; margin: 0; position: fixed; border: 1px solid silver; width: 200px; z-index: 0; } .box_content { background-color: #F9F9F9; line-height: 28px; padding: 3px; } .box_content div { padding: 3px 10px 0; } .box_content div:hover { background-color: #E1EBC8; } .box_header { background-color: #77A600; border: 1px solid silver; border-top: 0; color: #FFFFFF; font-size: 14px; font-weight: bold; padding: 9px 20px 7px; } #box a { color: #666; text-decoration: none; } #box a:hover { color: #333; } .lang_header { background-color: #77A600; border: 1px solid silver; border-bottom: 0; color: #FFFFFF; font-size: 14px; font-weight: bold; padding: 9px 0px 7px; width: 900px; position: relative; z-index: 1; } .selectall { background-color: #88BC08; font-weight: normal; padding: 8px; position: absolute; right: 0; text-decoration: underline; top: 0; height: 18px; cursor: pointer; } .selectall:hover { background-color: #97CB1B !important; } .lang { background-color: #F9F9F9; border: 1px solid silver; color: #000000; font-family: Courier New,Courier,mono,sans-serif; font-size: 13px; height: 300px; line-height: 17px; margin: 0 0 50px; overflow: auto; padding: 0px; width: 900px; z-index: 1; position: relative; } footer { background-color: #464646; -webkit-box-shadow: 0 2px 5px black inset; box-shadow: 0 2px 5px black inset; margin: 100px 0 0; padding: 10px 0; } .help { width: 960px; margin: 20px auto; font-family: "Helvetica Neue","Lucida Grande",Helvetica,Arial,Verdana,sans-serif; color: #EEE; } .help h3 { color: #EEEEEE; font-family: Rokkitt; font-size: 40px; font-weight: normal; text-shadow: 1px 1px 0 #000000; } .help ol { margin: 50px 100px 40px; } .help li { font-size: 24px; margin: 6px 0 0; text-shadow: 1px 1px 0 #000000; }
Public/styles.css
body { margin: 0; padding: 0; background-color: #EEE; } header { background: none repeat scroll 0 0 white; height: 130px; -webkit-box-shadow: 0px -1px 6px black; box-shadow: 0px -1px 6px black; position: relative; z-index: 10; } header div { margin: 0 auto; padding: 30px 0; width: 960px; position: relative; } .promo { bottom: 8px; color: #666666; font-family: "Helvetica Neue","Lucida Grande",Helvetica,Arial,Verdana,sans-serif; font-size: 11px; padding: 14px; position: absolute; right: 4px; text-align: right; width: 200px; } .promo a { color: #666; text-decoration: none; text-decoration: underline; } .promo a:hover { color: #F3C133; } .promo img { width: 130px; } h1 { font-family: Rokkitt; font-size: 40px; font-weight: normal; margin: 0; } h1 a { color: #333; text-decoration: none; } h2 { color: #767676; font-family: Rokkitt; font-size: 20px; font-weight: normal; margin: 0; } textarea { width: 100%; height: 100%; outline: none; resize: none; font-family: Courier New,Courier,mono,sans-serif; font-size: 14px; padding: 10px; border: none; } .content { width: 960px; margin: 20px auto; font-family: "Helvetica Neue","Lucida Grande",Helvetica,Arial,Verdana,sans-serif; } .inputForm { background-color: #F9F9F9; border: 1px solid silver; margin: 60px auto; padding: 20px; text-align: center; width: 400px; -webkit-box-shadow: 0 1px 0 #464646; box-shadow: 0 1px 0 #464646; } .inputForm p { color: #333333; font-family: Rokkitt; font-size: 19px; margin: 10px 0 27px; } input.send { background-color: #C5C5C5; border: 1px solid #A2A2A2; -webkit-box-shadow: 2px 2px 0 #BBBBBB; box-shadow: 2px 2px 0 #BBBBBB; color: #2B2B2B; font-family: Rokkitt; font-size: 20px; height: 40px; margin: 20px 0 0; width: 140px; } input.send:hover { background-color: #E3E3E3; } #box { left: 10px; margin: 0; position: fixed; border: 1px solid silver; width: 200px; z-index: 0; } .box_content { background-color: #F9F9F9; line-height: 28px; padding: 3px; } .box_content div { padding: 3px 10px 0; } .box_content div:hover { background-color: #E1EBC8; } .box_header { background-color: #77A600; border: 1px solid silver; border-top: 0; color: #FFFFFF; font-size: 14px; font-weight: bold; padding: 9px 20px 7px; } #box a { color: #666; text-decoration: none; } #box a:hover { color: #333; } .lang_header { background-color: #77A600; border: 1px solid silver; border-bottom: 0; color: #FFFFFF; font-size: 14px; font-weight: bold; padding: 9px 0px 7px; width: 900px; position: relative; z-index: 1; } .selectall { background-color: #88BC08; font-weight: normal; padding: 8px; position: absolute; right: 0; text-decoration: underline; top: 0; height: 18px; cursor: pointer; } .selectall:hover { background-color: #97CB1B !important; } .lang { background-color: #F9F9F9; border: 1px solid silver; color: #000000; font-family: Courier New,Courier,mono,sans-serif; font-size: 13px; height: 300px; line-height: 17px; margin: 0 0 50px; overflow: auto; padding: 0px; width: 900px; z-index: 1; position: relative; } footer { background-color: #464646; -webkit-box-shadow: 0 2px 5px black inset; box-shadow: 0 2px 5px black inset; margin: 100px 0 0; padding: 10px 0; } .help { width: 960px; margin: 20px auto; font-family: "Helvetica Neue","Lucida Grande",Helvetica,Arial,Verdana,sans-serif; color: #EEE; } .help h3 { color: #EEEEEE; font-family: Rokkitt; font-size: 40px; font-weight: normal; text-shadow: 1px 1px 0 #000000; } .help ol { margin: 50px 100px 40px; } .help li { font-size: 24px; margin: 6px 0 0; text-shadow: 1px 1px 0 #000000; }
0.235812
0.075961
*{ padding: 0px; margin: 0px; outline: none; } header { display: flex; flex-direction: row; list-style: none; justify-content: center; height: 60px ; width:100%; background-color:rgb(0, 0, 0); position: fixed; z-index: 5; margin:-50px 0px 0px 0px ; } div #menu-dep{ display: flex; flex-direction: row; list-style: none; justify-content: center; height: 60px ; width:100%; background-color:rgb(0, 0, 0); position: fixed; z-index: 5; margin:-50px 0px 0px 0px ; } .dep h1{ font-family:Arial, Helvetica, sans-serif; padding: 15px 0px 0px 50px; } .menu-dep{ width: 100%; height: 60px; float:center; background-color:black; } .menu-dep ul li{ padding:20px; cursor: pointer; height: 60px; } .menu-dep ul li a { color:#40D3DC; cursor: pointer; } .menu-dep ul li a { text-decoration: none; } .menu-dep ul li a:hover { border-bottom:white; background-color:#388bd8; padding: 23px; color:white; } .menu-dep ul { width: 100%; height:60px; display: flex; flex-direction: row; list-style: none; justify-content: flex-end; margin:0px 0px 0px -65px; } body{ align-items: center; font-family: arial; margin:0px; align-items: center; } .menu { width: 25%; height: 60px; float:center; background-color:black; } .tituloDepoimento{ margin:0px; padding: 0%; max-width: 100%; width: 50%; } .btn-dep button { display: flex; justify-content: center; flex-direction: row; margin:0px 0px 0px 55px; padding: 0%; max-width: 100%; width: 100px; min-width: 25%; height: 25px; min-height: 30px; background-color:#388bd8;; align-items: center; } .depoimento { margin:0px; padding: 0%; max-width: 100%; width: 50%; } .link-back{ margin:0px; padding: 0%; max-width: 100%; width: 50%; } .btndepoimento { padding: 15px 45px; border: none; border-radius: 10px; font-size: 14px; cursor: pointer; margin:20px 0px 30px 570px ; } .dep{ margin: 0%; padding: 0%; max-width: 100%; } .dep textarea{ margin: 50px 0px 0px 15px; font-family: Arial, Helvetica, sans-serif; font-size:15px ; } .container-dep{ margin: 0%; padding: 0%; align-items: center; max-width: 100%; width: 100%; background-color: rgb(166, 166, 194); } .link-back { text-align: center; width:98%; max-width: 100%; align-items: 100%; padding: 10px 0px 0px 0px; color:rgb(0, 0, 0) } .link-back a{ color:rgb(0, 0, 0) } .menu ul { width: 100%; height:60px; display: flex; flex-direction: row; list-style: none; justify-content: center; margin:0px; } .menu ul li{ padding:20px; cursor: pointer; height: 60px; } .menu ul li a { color:#40D3DC; cursor: pointer; } a { text-decoration: none; } .menu ul li a:hover { border-bottom:white; background-color:#388bd8; padding: 23px; color:white; } .container-background { font-family: arial; background-image: url('notecode.JPG'); background-size:100%; height: 600px; width:100%; background-size:cover, 100%; display:flex ; justify-content: center; align-items: center; background-color: rgba(0, 0, 0, .75); background-blend-mode:multiply; } .cards { display:flex; justify-content: center; flex-direction: row; width: 98%; align-items: center; margin:0px 0px 5px 30px; } .card-shadow { background-color:rgba(0, 0, 0, 0.1); border-radius: 5px; overflow:auto; float:left; margin:0 7px; width:28%; text-align: center; min-height: 250px; height:250px; box-shadow: 0 2px 2px 0 rgba(202, 202, 202, 0.17), 0 3px 1px -2px rgba(209, 209, 209, 0.17), 0 1px 5px 0 rgba(195, 195, 195, 0.17), 0 1px 5px 0 rgba(194, 194, 194, 0.17); } ::-webkit-scrollbar { width:5px; display:none; } .card-shadow img{ padding: 2px 0px 0px 0px; width: 100px; } .wrap { width: 98%; display:flex; justify-content: center; flex-wrap: wrap; align-items: center; padding:0px 0px 60px 0px; margin:0px 40px 0px 0px; } .content{ width:100%; height:100%; padding:40px 0px; } .content h2 { text-align: center; font-size: 3em; font-family: 'teko', 'robot', 'sans-serif'; } .parallax { LINE-HEIGHT:25px; text-align: right; flex-direction: row; justify-content: center; height: 400px; display:flex; width:100%; align-items: center; background-image: url('notecode1.jpg'); background-size:cover; background-color: rgba(0, 0, 0, .75); background-blend-mode: multiply; background-attachment: fixed; margin:10px 0px 0px 30px ; overflow: hidden; } .parallax-dep{ text-align: right; flex-direction: row; justify-content: center; height: 400px; display:flex; width:100%; align-items: center; background-image: url('notecode.jpg'); background-size:cover; background-color: rgba(0, 0, 0, .75); background-blend-mode: multiply; background-attachment: fixed; margin:10px 0px 0px 0px ; overflow: hidden; } #text { font-size: 14px; color:white; text-align: center; align-items: center; padding:20px; margin: 30px 0px 0px 0px; } #live { color:white; max-width: 100px 200px; margin: 0px 20px 180px 0px; position: absolute; font-size:30px; font:bold; } .parallax h3{ color: black; align-items: center; } #sobre { color: black; margin:15px 0px 0px 18px; } /* icones de contato */ .textcontatos { align-items: center; display:flex; justify-content: center; flex-direction: row; width:98%; padding:40px 0px 40px 30px; margin:0px; } .textcontatos h2 { font-family: 'teko', 'robot', 'sans-serif'; color:black; font-size: 30px; align-items: center; display:flex; justify-content: center; flex-direction: row; margin: 0px 20px 0px 0px; } .contatos { align-items: center; display:flex; flex-direction: row; justify-content: center; } .contatos img { width: 50px; } .contatos ul li{ list-style: none; float:left; padding:25px; } .contatos ul { margin:10px 5px 0px 0px; } /*transição ao passar o mouse dos icons contatos*/ .contatos ul li a:hover { padding:20px; }
index.css
*{ padding: 0px; margin: 0px; outline: none; } header { display: flex; flex-direction: row; list-style: none; justify-content: center; height: 60px ; width:100%; background-color:rgb(0, 0, 0); position: fixed; z-index: 5; margin:-50px 0px 0px 0px ; } div #menu-dep{ display: flex; flex-direction: row; list-style: none; justify-content: center; height: 60px ; width:100%; background-color:rgb(0, 0, 0); position: fixed; z-index: 5; margin:-50px 0px 0px 0px ; } .dep h1{ font-family:Arial, Helvetica, sans-serif; padding: 15px 0px 0px 50px; } .menu-dep{ width: 100%; height: 60px; float:center; background-color:black; } .menu-dep ul li{ padding:20px; cursor: pointer; height: 60px; } .menu-dep ul li a { color:#40D3DC; cursor: pointer; } .menu-dep ul li a { text-decoration: none; } .menu-dep ul li a:hover { border-bottom:white; background-color:#388bd8; padding: 23px; color:white; } .menu-dep ul { width: 100%; height:60px; display: flex; flex-direction: row; list-style: none; justify-content: flex-end; margin:0px 0px 0px -65px; } body{ align-items: center; font-family: arial; margin:0px; align-items: center; } .menu { width: 25%; height: 60px; float:center; background-color:black; } .tituloDepoimento{ margin:0px; padding: 0%; max-width: 100%; width: 50%; } .btn-dep button { display: flex; justify-content: center; flex-direction: row; margin:0px 0px 0px 55px; padding: 0%; max-width: 100%; width: 100px; min-width: 25%; height: 25px; min-height: 30px; background-color:#388bd8;; align-items: center; } .depoimento { margin:0px; padding: 0%; max-width: 100%; width: 50%; } .link-back{ margin:0px; padding: 0%; max-width: 100%; width: 50%; } .btndepoimento { padding: 15px 45px; border: none; border-radius: 10px; font-size: 14px; cursor: pointer; margin:20px 0px 30px 570px ; } .dep{ margin: 0%; padding: 0%; max-width: 100%; } .dep textarea{ margin: 50px 0px 0px 15px; font-family: Arial, Helvetica, sans-serif; font-size:15px ; } .container-dep{ margin: 0%; padding: 0%; align-items: center; max-width: 100%; width: 100%; background-color: rgb(166, 166, 194); } .link-back { text-align: center; width:98%; max-width: 100%; align-items: 100%; padding: 10px 0px 0px 0px; color:rgb(0, 0, 0) } .link-back a{ color:rgb(0, 0, 0) } .menu ul { width: 100%; height:60px; display: flex; flex-direction: row; list-style: none; justify-content: center; margin:0px; } .menu ul li{ padding:20px; cursor: pointer; height: 60px; } .menu ul li a { color:#40D3DC; cursor: pointer; } a { text-decoration: none; } .menu ul li a:hover { border-bottom:white; background-color:#388bd8; padding: 23px; color:white; } .container-background { font-family: arial; background-image: url('notecode.JPG'); background-size:100%; height: 600px; width:100%; background-size:cover, 100%; display:flex ; justify-content: center; align-items: center; background-color: rgba(0, 0, 0, .75); background-blend-mode:multiply; } .cards { display:flex; justify-content: center; flex-direction: row; width: 98%; align-items: center; margin:0px 0px 5px 30px; } .card-shadow { background-color:rgba(0, 0, 0, 0.1); border-radius: 5px; overflow:auto; float:left; margin:0 7px; width:28%; text-align: center; min-height: 250px; height:250px; box-shadow: 0 2px 2px 0 rgba(202, 202, 202, 0.17), 0 3px 1px -2px rgba(209, 209, 209, 0.17), 0 1px 5px 0 rgba(195, 195, 195, 0.17), 0 1px 5px 0 rgba(194, 194, 194, 0.17); } ::-webkit-scrollbar { width:5px; display:none; } .card-shadow img{ padding: 2px 0px 0px 0px; width: 100px; } .wrap { width: 98%; display:flex; justify-content: center; flex-wrap: wrap; align-items: center; padding:0px 0px 60px 0px; margin:0px 40px 0px 0px; } .content{ width:100%; height:100%; padding:40px 0px; } .content h2 { text-align: center; font-size: 3em; font-family: 'teko', 'robot', 'sans-serif'; } .parallax { LINE-HEIGHT:25px; text-align: right; flex-direction: row; justify-content: center; height: 400px; display:flex; width:100%; align-items: center; background-image: url('notecode1.jpg'); background-size:cover; background-color: rgba(0, 0, 0, .75); background-blend-mode: multiply; background-attachment: fixed; margin:10px 0px 0px 30px ; overflow: hidden; } .parallax-dep{ text-align: right; flex-direction: row; justify-content: center; height: 400px; display:flex; width:100%; align-items: center; background-image: url('notecode.jpg'); background-size:cover; background-color: rgba(0, 0, 0, .75); background-blend-mode: multiply; background-attachment: fixed; margin:10px 0px 0px 0px ; overflow: hidden; } #text { font-size: 14px; color:white; text-align: center; align-items: center; padding:20px; margin: 30px 0px 0px 0px; } #live { color:white; max-width: 100px 200px; margin: 0px 20px 180px 0px; position: absolute; font-size:30px; font:bold; } .parallax h3{ color: black; align-items: center; } #sobre { color: black; margin:15px 0px 0px 18px; } /* icones de contato */ .textcontatos { align-items: center; display:flex; justify-content: center; flex-direction: row; width:98%; padding:40px 0px 40px 30px; margin:0px; } .textcontatos h2 { font-family: 'teko', 'robot', 'sans-serif'; color:black; font-size: 30px; align-items: center; display:flex; justify-content: center; flex-direction: row; margin: 0px 20px 0px 0px; } .contatos { align-items: center; display:flex; flex-direction: row; justify-content: center; } .contatos img { width: 50px; } .contatos ul li{ list-style: none; float:left; padding:25px; } .contatos ul { margin:10px 5px 0px 0px; } /*transição ao passar o mouse dos icons contatos*/ .contatos ul li a:hover { padding:20px; }
0.287268
0.046595
.log-reg-module{ width: 1100px; height: auto; border-left: 1px solid #e0e1e2; border-right: 1px solid #e0e1e2; } .log-reg-pretext{ width: 1055px; height: 72px; position: relative; margin-right: auto; margin-left: auto; background-color: #FEFBE1; text-align: center; padding-top: 5px; } .log-reg-pretext-title{ font-size: 16px; color: #F00; font-weight: bold; } .log-reg-pretext-content{ font-size: 14px; color: #676767; } .log-reg-pretext-content > a{ color: #F00; font-weight: bold; } .log-reg-midwrap{ width: inherit; height: auto; margin-top: 25px; position: relative; display: flex; } .log-reg-title{ font-size: 20px; text-align: center; color: #F00; } .log-reg-subtitle{ font-size: 16px; text-align: center; font-style: italic; color: #676767; margin-bottom: 25px; } .log-reg-regbar > input{ width: 427px; height: 51px; display: block; margin-left: auto; margin-right: auto; padding-left: 15px; margin-bottom: 15px; border: 1px solid #e5e6e7; border-radius: 6px; -webkit-border-radius: 6px; -moz-border-radius: 6px; -o-border-radius: 6px; -ms-border-radius: 6px; } .log-reg-button{ position: relative; } .log-reg-button > button{ display: block; margin-left: auto; margin-right: auto; width: 117px; height: 40px; background-color: orange; color: #FFF; border: none; padding-right:20px; } .log-reg-button > button:hover{ background-color: #F00; color: #FFF; } .log-reg-button-img > img{ position:absolute; width: 15px; height: 15px; top: 12px; left: 300px; } .log-reg-left{ position: relative; height: auto; border-right: 1px dashed #e0e1e2; } .log-reg-left > .log-reg-subtitle{ margin-bottom: 30px; } .log-reg-right{ position: relative; height: auto; border-left: 1px dashed #ebebec; } .log-reg-logbar{ position: relative; } .log-reg-logbar > input{ width: 427px; height: 51px; display: block; margin-left: auto; margin-right: auto; padding-left: 15px; margin-bottom: 15px; border: 1px solid #e5e6e7; border-radius: 6px; -webkit-border-radius: 6px; -moz-border-radius: 6px; -o-border-radius: 6px; -ms-border-radius: 6px; } .log-reg-logbar > img{ position: absolute; width: 16px; height: 20px; top: 15px; left: 450px; } .log-reg-misc{ } .log-reg-misc .warning{ width: 427px; height: 51px; display: block; margin-left: auto; margin-right: auto; padding-left: 15px; margin-bottom: 15px; } .log-reg-misc a{ color: orange; font-style: italic; font-weight: bold; } .log-reg-misc-left{ float:left; text-align:left; position: relative; width: 50%; height: auto; } .log-reg-misc-left{ float:right; text-align:right; position: relative; width: 50%; height: auto; } .log-reg-button-long{ position: relative; } .log-reg-atau > img{ display: block; margin-left: auto; margin-right: auto; margin-bottom: 20px; width: 440px; height: 30px; } .log-reg-button-long-0 > button{ display: block; margin-left: auto; margin-right: auto; margin-bottom: 20px; width: 196px; height: 40px; background-color: orange; color: #FFF; border: none; } .log-reg-button-long > button{ display: block; margin-left: auto; margin-right: auto; margin-bottom: 20px; width: 196px; height: 40px; background-color: orange; color: #FFF; border: none; padding-left: 35px; } .log-reg-button-long > img{ position: absolute; width: 48px; height: 48px; top: -4px; left: 175px; }
app/webroot/front_file/makassar-terkini/css/custom/node-login-register.css
.log-reg-module{ width: 1100px; height: auto; border-left: 1px solid #e0e1e2; border-right: 1px solid #e0e1e2; } .log-reg-pretext{ width: 1055px; height: 72px; position: relative; margin-right: auto; margin-left: auto; background-color: #FEFBE1; text-align: center; padding-top: 5px; } .log-reg-pretext-title{ font-size: 16px; color: #F00; font-weight: bold; } .log-reg-pretext-content{ font-size: 14px; color: #676767; } .log-reg-pretext-content > a{ color: #F00; font-weight: bold; } .log-reg-midwrap{ width: inherit; height: auto; margin-top: 25px; position: relative; display: flex; } .log-reg-title{ font-size: 20px; text-align: center; color: #F00; } .log-reg-subtitle{ font-size: 16px; text-align: center; font-style: italic; color: #676767; margin-bottom: 25px; } .log-reg-regbar > input{ width: 427px; height: 51px; display: block; margin-left: auto; margin-right: auto; padding-left: 15px; margin-bottom: 15px; border: 1px solid #e5e6e7; border-radius: 6px; -webkit-border-radius: 6px; -moz-border-radius: 6px; -o-border-radius: 6px; -ms-border-radius: 6px; } .log-reg-button{ position: relative; } .log-reg-button > button{ display: block; margin-left: auto; margin-right: auto; width: 117px; height: 40px; background-color: orange; color: #FFF; border: none; padding-right:20px; } .log-reg-button > button:hover{ background-color: #F00; color: #FFF; } .log-reg-button-img > img{ position:absolute; width: 15px; height: 15px; top: 12px; left: 300px; } .log-reg-left{ position: relative; height: auto; border-right: 1px dashed #e0e1e2; } .log-reg-left > .log-reg-subtitle{ margin-bottom: 30px; } .log-reg-right{ position: relative; height: auto; border-left: 1px dashed #ebebec; } .log-reg-logbar{ position: relative; } .log-reg-logbar > input{ width: 427px; height: 51px; display: block; margin-left: auto; margin-right: auto; padding-left: 15px; margin-bottom: 15px; border: 1px solid #e5e6e7; border-radius: 6px; -webkit-border-radius: 6px; -moz-border-radius: 6px; -o-border-radius: 6px; -ms-border-radius: 6px; } .log-reg-logbar > img{ position: absolute; width: 16px; height: 20px; top: 15px; left: 450px; } .log-reg-misc{ } .log-reg-misc .warning{ width: 427px; height: 51px; display: block; margin-left: auto; margin-right: auto; padding-left: 15px; margin-bottom: 15px; } .log-reg-misc a{ color: orange; font-style: italic; font-weight: bold; } .log-reg-misc-left{ float:left; text-align:left; position: relative; width: 50%; height: auto; } .log-reg-misc-left{ float:right; text-align:right; position: relative; width: 50%; height: auto; } .log-reg-button-long{ position: relative; } .log-reg-atau > img{ display: block; margin-left: auto; margin-right: auto; margin-bottom: 20px; width: 440px; height: 30px; } .log-reg-button-long-0 > button{ display: block; margin-left: auto; margin-right: auto; margin-bottom: 20px; width: 196px; height: 40px; background-color: orange; color: #FFF; border: none; } .log-reg-button-long > button{ display: block; margin-left: auto; margin-right: auto; margin-bottom: 20px; width: 196px; height: 40px; background-color: orange; color: #FFF; border: none; padding-left: 35px; } .log-reg-button-long > img{ position: absolute; width: 48px; height: 48px; top: -4px; left: 175px; }
0.374219
0.069132
* {margin:0; padding:0;} ol, ul {list-style:none;} blockquote, q {quotes:none;} a img, fieldset {border:none;} a {text-decoration:none; color:#F60;} a:hover {text-decoration:underline;} table {border-collapse:collapse; border-spacing:0;} body {text-align:center; font:88%/1.3em Arial, "Free Sans", sans-serif; width:100%; background:url(/img/body_fundo.png) repeat;} .hidden {display:none;} body, html { margin:0; height:100%; } #top {margin:0 auto; width:1000px; padding-top:10px;} h1#logo {width:220px;} #page {width:100%; height:auto;} #content {text-align:left; margin:0 auto; width:1000px; overflow:hidden; background:url(/img/content.png) repeat-y;} .twitter {display:block; overflow:hidden; margin-bottom:20px; position:relative;} .twitter .photo {float:left; margin-right:17px; padding:3px; width:48px; height:48px; background-color:#e3e3e3;} .vcard .photo, .update .photo {padding:3px; width:48px; height:48px; background-color:#e3e3e3;} .mention .status {background-color:#1B1B1B; color:#fff;} .sortear {font-size:3em; text-align:center; margin:80px 0;} #participant {font-size:3em; text-align:center; margin:40px 0; color:red;} #destroy {font-size:1.5em; text-align:center; margin-top:20px;} .keyword {font-weight:bold;} .listing {width:665px; float:left; margin-right:20px; padding:50px 20px 30px 35px;} .panel {float:left; width:232px; padding-top:35px;} .users {padding:20px 0 10px;} .update .photo {margin-right:0.7em; float:left;} .update h2 {font-size:1.1em; color:#dadada;} .update .location {color:#dadada; font-size:0.9em;} .logout {font-size:0.8em; font-weight:bold; background-color:#000; color:#71C7E4; padding:1px 8px; -moz-border-radius:8px; -webkit-border-radius:8px;} #update {margin-top:1.5em;} p.status {background-color:#FFF; vertical-align:center; line-height:1.5; padding:10px 40px 10px 20px; border:2px solid #dfdfdf; float:right; width:528px; -webkit-border-radius:7px; -moz-border-radius:7px;} a.date {color:#bbb;} .arr {left:63px; position:absolute; top:8px; z-index:5;} .info {vertical-align:center; float:right; color:#000; font-size:0.85em; margin:4px 16px; width:553px;} .actions {position:absolute; right:0; top:3px; line-height:1.7em; font-size:0.8em; width:30px;} .actions a {color:#888;} .actions a:hover {text-decoration:none;} .follow {-moz-border-radius-bottomleft:6px; -moz-border-radius-bottomright:6px; -webkit-border-radius-bottomleft:6px; -webkit-border-radius-bottomright:6px;} .follow {background-color:#000; width:54px; color:#71C7E4; text-align:center; font-size:0.8em; display:block; border-top:1px solid #71C7E4; float:left;}
public/css/layout.css
* {margin:0; padding:0;} ol, ul {list-style:none;} blockquote, q {quotes:none;} a img, fieldset {border:none;} a {text-decoration:none; color:#F60;} a:hover {text-decoration:underline;} table {border-collapse:collapse; border-spacing:0;} body {text-align:center; font:88%/1.3em Arial, "Free Sans", sans-serif; width:100%; background:url(/img/body_fundo.png) repeat;} .hidden {display:none;} body, html { margin:0; height:100%; } #top {margin:0 auto; width:1000px; padding-top:10px;} h1#logo {width:220px;} #page {width:100%; height:auto;} #content {text-align:left; margin:0 auto; width:1000px; overflow:hidden; background:url(/img/content.png) repeat-y;} .twitter {display:block; overflow:hidden; margin-bottom:20px; position:relative;} .twitter .photo {float:left; margin-right:17px; padding:3px; width:48px; height:48px; background-color:#e3e3e3;} .vcard .photo, .update .photo {padding:3px; width:48px; height:48px; background-color:#e3e3e3;} .mention .status {background-color:#1B1B1B; color:#fff;} .sortear {font-size:3em; text-align:center; margin:80px 0;} #participant {font-size:3em; text-align:center; margin:40px 0; color:red;} #destroy {font-size:1.5em; text-align:center; margin-top:20px;} .keyword {font-weight:bold;} .listing {width:665px; float:left; margin-right:20px; padding:50px 20px 30px 35px;} .panel {float:left; width:232px; padding-top:35px;} .users {padding:20px 0 10px;} .update .photo {margin-right:0.7em; float:left;} .update h2 {font-size:1.1em; color:#dadada;} .update .location {color:#dadada; font-size:0.9em;} .logout {font-size:0.8em; font-weight:bold; background-color:#000; color:#71C7E4; padding:1px 8px; -moz-border-radius:8px; -webkit-border-radius:8px;} #update {margin-top:1.5em;} p.status {background-color:#FFF; vertical-align:center; line-height:1.5; padding:10px 40px 10px 20px; border:2px solid #dfdfdf; float:right; width:528px; -webkit-border-radius:7px; -moz-border-radius:7px;} a.date {color:#bbb;} .arr {left:63px; position:absolute; top:8px; z-index:5;} .info {vertical-align:center; float:right; color:#000; font-size:0.85em; margin:4px 16px; width:553px;} .actions {position:absolute; right:0; top:3px; line-height:1.7em; font-size:0.8em; width:30px;} .actions a {color:#888;} .actions a:hover {text-decoration:none;} .follow {-moz-border-radius-bottomleft:6px; -moz-border-radius-bottomright:6px; -webkit-border-radius-bottomleft:6px; -webkit-border-radius-bottomright:6px;} .follow {background-color:#000; width:54px; color:#71C7E4; text-align:center; font-size:0.8em; display:block; border-top:1px solid #71C7E4; float:left;}
0.3295
0.145844
@media only screen and (max-width: 991px) { .vig-hide-md { display: none !important; } } #shlogo span { animation: glow 2s ease-in-out both infinite; } #shlogo span:nth-child(1) { animation-delay: -0.2857142857s; } #shlogo span:nth-child(2) { animation-delay: -0.5714285714s; } #shlogo span:nth-child(3) { animation-delay: -0.8571428571s; } #shlogo span:nth-child(4) { animation-delay: -1.1428571429s; } #shlogo span:nth-child(5) { animation-delay: -1.4285714286s; } #shlogo span:nth-child(6) { animation-delay: -1.7142857143s; } .shglow span:nth-child(7) { animation-delay: -2s; } @keyframes glow { 0%, 100% { text-shadow: 0 0 8.3333333333px snow, 0 -25px 50px tomato, -25px 25px 50px yellow, 25px 25px 50px tomato; } 33% { text-shadow: 0 0 8.3333333333px snow, 0 -25px 50px cyan, -25px 25px 50px tomato, 25px 25px 50px cyan; } 66% { text-shadow: 0 0 8.3333333333px snow, 0 -25px 50px yellow, -25px 25px 50px cyan, 25px 25px 50px yellow; } } .videoWrapper { position: relative; padding-bottom: 56.25%; /* 16:9 */ height: 0; } .videoWrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .viglet-video-main-list { display: inline-flex; } .viglet-video-main-item { display: inline-table; width: 640px; height: 320px; } .viglet-video-main-iframe { width: 100%; height: 300px; } .viglet-video-other-item { display: inline-table; width: 300px; height: 150px; } .viglet-video-other-iframe { width: 100%; height: 150px; } .viglet-more-videos-label { display: table; width: 100%; margin-top: 20px; text-align: center; } .viglet-more-videos-label-inner { width: 945px; text-align: right; display: inline-block; } .fa-viglet { color: #ff874b; } .fa-viglet:focus .fa-viglet:hover { color: white !important; } .btn-viglet { background-color: #ff874b; color: white !important; } .btn-viglet:hover { background-color: #ff691f; color: white !important; } .video-container { position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden; } .video-container iframe, .video-container object, .video-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } @font-face { font-family: "ProximaNovaLight"; src: url("../fonts/proximanova-light-webfont.eot"); src: url("../fonts/proximanova-light-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/proximanova-light-webfont.woff") format("woff"), url("../fonts/proximanova-light-webfont.ttf") format("truetype"), url("../fonts/proximanova-light-webfont.svg#ProximaNovaLight") format("svg"); font-weight: normal; font-style: normal; } @font-face { font-family: "ProximaNovaReg"; src: url("../fonts/proximanova-reg-webfont.eot"); src: url("../fonts/proximanova-reg-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/proximanova-reg-webfont.woff") format("woff"), url("../fonts/proximanova-reg-webfont.ttf") format("truetype"), url("../fonts/proximanova-reg-webfont.svg#ProximaNovaReg") format("svg"); font-weight: normal; font-style: normal; } /* Wrapper for page content to push down footer */ #wrap { min-height: 100%; height: auto; /* Negative indent footer by its height */ margin: 0 auto -60px; /* Pad bottom by footer height */ padding: 0 0 60px; } /* Set the fixed height of the footer here */ #footer { height: 60px; background-color: #f5f5f5; } /* centered columns styles */ .row-centered { text-align: center; } .col-centered { display: inline-block; float: none; /* reset the text-align */ text-align: left; /* inline-block space fix */ margin-right: -4px; vertical-align: text-top; } body { font-family: "ProximaNovaLight", "Helvetica Neue", Helvetica, Arial, sans-serif; } @media (max-width: 991px) { .viglet-more-videos-label { text-align: right; } .viglet-more-videos-label-inner { width: unset; padding-right: 30px; } .viglet-videos-label { padding-left: 18px; text-align: left; } .viglet-video-main-list { display: inherit; padding-left: 25px; padding-right: 25px; } .viglet-video-main-item { display: inline-table; width: 100%; height: 150px; padding-bottom: 20px; border: none; } .viglet-video-main-iframe { width: 100%; height: 150px; } .viglet-video-other-item { display: inline-table; width: 100%; height: 150px; padding-left: 0px; padding-bottom: 20px; } .viglet-video-other-iframe { width: 100%; height: 150px; } }
docs/static_files/css/viglet.css
@media only screen and (max-width: 991px) { .vig-hide-md { display: none !important; } } #shlogo span { animation: glow 2s ease-in-out both infinite; } #shlogo span:nth-child(1) { animation-delay: -0.2857142857s; } #shlogo span:nth-child(2) { animation-delay: -0.5714285714s; } #shlogo span:nth-child(3) { animation-delay: -0.8571428571s; } #shlogo span:nth-child(4) { animation-delay: -1.1428571429s; } #shlogo span:nth-child(5) { animation-delay: -1.4285714286s; } #shlogo span:nth-child(6) { animation-delay: -1.7142857143s; } .shglow span:nth-child(7) { animation-delay: -2s; } @keyframes glow { 0%, 100% { text-shadow: 0 0 8.3333333333px snow, 0 -25px 50px tomato, -25px 25px 50px yellow, 25px 25px 50px tomato; } 33% { text-shadow: 0 0 8.3333333333px snow, 0 -25px 50px cyan, -25px 25px 50px tomato, 25px 25px 50px cyan; } 66% { text-shadow: 0 0 8.3333333333px snow, 0 -25px 50px yellow, -25px 25px 50px cyan, 25px 25px 50px yellow; } } .videoWrapper { position: relative; padding-bottom: 56.25%; /* 16:9 */ height: 0; } .videoWrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .viglet-video-main-list { display: inline-flex; } .viglet-video-main-item { display: inline-table; width: 640px; height: 320px; } .viglet-video-main-iframe { width: 100%; height: 300px; } .viglet-video-other-item { display: inline-table; width: 300px; height: 150px; } .viglet-video-other-iframe { width: 100%; height: 150px; } .viglet-more-videos-label { display: table; width: 100%; margin-top: 20px; text-align: center; } .viglet-more-videos-label-inner { width: 945px; text-align: right; display: inline-block; } .fa-viglet { color: #ff874b; } .fa-viglet:focus .fa-viglet:hover { color: white !important; } .btn-viglet { background-color: #ff874b; color: white !important; } .btn-viglet:hover { background-color: #ff691f; color: white !important; } .video-container { position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden; } .video-container iframe, .video-container object, .video-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } @font-face { font-family: "ProximaNovaLight"; src: url("../fonts/proximanova-light-webfont.eot"); src: url("../fonts/proximanova-light-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/proximanova-light-webfont.woff") format("woff"), url("../fonts/proximanova-light-webfont.ttf") format("truetype"), url("../fonts/proximanova-light-webfont.svg#ProximaNovaLight") format("svg"); font-weight: normal; font-style: normal; } @font-face { font-family: "ProximaNovaReg"; src: url("../fonts/proximanova-reg-webfont.eot"); src: url("../fonts/proximanova-reg-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/proximanova-reg-webfont.woff") format("woff"), url("../fonts/proximanova-reg-webfont.ttf") format("truetype"), url("../fonts/proximanova-reg-webfont.svg#ProximaNovaReg") format("svg"); font-weight: normal; font-style: normal; } /* Wrapper for page content to push down footer */ #wrap { min-height: 100%; height: auto; /* Negative indent footer by its height */ margin: 0 auto -60px; /* Pad bottom by footer height */ padding: 0 0 60px; } /* Set the fixed height of the footer here */ #footer { height: 60px; background-color: #f5f5f5; } /* centered columns styles */ .row-centered { text-align: center; } .col-centered { display: inline-block; float: none; /* reset the text-align */ text-align: left; /* inline-block space fix */ margin-right: -4px; vertical-align: text-top; } body { font-family: "ProximaNovaLight", "Helvetica Neue", Helvetica, Arial, sans-serif; } @media (max-width: 991px) { .viglet-more-videos-label { text-align: right; } .viglet-more-videos-label-inner { width: unset; padding-right: 30px; } .viglet-videos-label { padding-left: 18px; text-align: left; } .viglet-video-main-list { display: inherit; padding-left: 25px; padding-right: 25px; } .viglet-video-main-item { display: inline-table; width: 100%; height: 150px; padding-bottom: 20px; border: none; } .viglet-video-main-iframe { width: 100%; height: 150px; } .viglet-video-other-item { display: inline-table; width: 100%; height: 150px; padding-left: 0px; padding-bottom: 20px; } .viglet-video-other-iframe { width: 100%; height: 150px; } }
0.424173
0.1443
@charset "UTF-8"; .blog-comment-container { min-height: 300px; background-color: #fff; margin-top: 50px; padding: 30px; border-radius: 2px; } .blog-comment-container .blog-option-box { display: flex; justify-content: center; } .blog-comment-container .blog-comment-form-box { width: 100%; display: flex; margin-top: 50px; } .blog-comment-container .blog-comment-form-box .avatar { width: 35px; height: 35px; border-radius: 35px; box-shadow: 0 0 5px #eee; } .blog-comment-container .blog-comment-form-box .blog-comment-form { width: 100%; margin-left: 20px; } .blog-comment-container .blog-comment-box { margin-top: 50px; } .blog-comment-container .blog-comment-box .title { border-left: 3px solid #FF5722; padding-left: 10px; display: flex; align-items: center; } .blog-comment-container .blog-comment-box .title .comment-count { margin-left: 10px; font-size: 12px; color: #777; } .blog-comment-container .blog-comment-box .blog-comment-list { } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item { margin-top: 30px; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .user-avatar-info-box { display: flex; align-items: center; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .user-avatar-info-box .avatar { width: 40px; height: 40px; border-radius: 40px; box-shadow: 0 0 10px #ccc; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .user-avatar-info-box .user-time-box { margin-left: 20px; display: flex; flex-direction: column; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .user-avatar-info-box .user-time-box .nickname { } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .user-avatar-info-box .user-time-box .time { color: #777; font-size: 12px; margin-top: 3px; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .comment-content { margin-top: 10px; margin-left: 60px; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .btn-comment-reply { margin-top: 10px; margin-left: 60px; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .blog-comment-reply-box { margin-top: 10px; margin-left: 60px; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .blog-comment-reply-box .reply-list { } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .blog-comment-reply-box .reply-list .reply-item { border-top: 1px solid #eee; padding-top: 10px; padding-bottom: 10px; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .blog-comment-reply-box .reply-list .reply-item .reply-user-avatar-info-box { display: flex; justify-content: space-between; align-items: center; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .blog-comment-reply-box .reply-list .reply-item .reply-user-avatar-info-box .user-avatar-info-box { display: flex; align-items: center; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .blog-comment-reply-box .reply-list .reply-item .reply-user-avatar-info-box .user-avatar-info-box .avatar { width: 35px; height: 35px; border-radius: 35px; box-shadow: 0 0 10px #eee; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .blog-comment-reply-box .reply-list .reply-item .reply-user-avatar-info-box .user-avatar-info-box .user-nickname { margin-left: 10px; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .blog-comment-reply-box .reply-list .reply-item .reply-user-avatar-info-box .time { font-size: 12px; color: #777; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .blog-comment-reply-box .reply-list .reply-item .reply-content-box { margin-top: 5px; margin-left: 45px; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .blog-comment-reply-box .reply-list .reply-item .reply-content-box .replied-user-box { margin-right: 20px; color: #007fff; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .blog-comment-reply-box .reply-list .reply-item .btn-reply-reply { margin-top: 10px; margin-left: 45px; } .pop-form-box { display: none; padding: 30px; } @media only screen and (max-width: 960px) { .blog-article { padding: 10px; border-radius: 2px; } .btn-mobile-reply { display: block; } .btn-pc-reply { display: none; } .blog-comment-container { padding: 10px; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .blog-comment-reply-box .reply-list .reply-item .reply-content-box { margin-top: 5px; margin-left: 0; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .blog-comment-reply-box .reply-list .reply-item .btn-reply-reply { margin-top: 10px; margin-left: 0; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .blog-comment-reply-box .reply-list .reply-item .reply-btn-box { display: flex; flex-direction: row-reverse; } } @media only screen and (min-width: 960px) { .btn-mobile-reply { display: none; } .btn-pc-reply { display: block; } }
static/css/blog/components/comment.css
@charset "UTF-8"; .blog-comment-container { min-height: 300px; background-color: #fff; margin-top: 50px; padding: 30px; border-radius: 2px; } .blog-comment-container .blog-option-box { display: flex; justify-content: center; } .blog-comment-container .blog-comment-form-box { width: 100%; display: flex; margin-top: 50px; } .blog-comment-container .blog-comment-form-box .avatar { width: 35px; height: 35px; border-radius: 35px; box-shadow: 0 0 5px #eee; } .blog-comment-container .blog-comment-form-box .blog-comment-form { width: 100%; margin-left: 20px; } .blog-comment-container .blog-comment-box { margin-top: 50px; } .blog-comment-container .blog-comment-box .title { border-left: 3px solid #FF5722; padding-left: 10px; display: flex; align-items: center; } .blog-comment-container .blog-comment-box .title .comment-count { margin-left: 10px; font-size: 12px; color: #777; } .blog-comment-container .blog-comment-box .blog-comment-list { } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item { margin-top: 30px; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .user-avatar-info-box { display: flex; align-items: center; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .user-avatar-info-box .avatar { width: 40px; height: 40px; border-radius: 40px; box-shadow: 0 0 10px #ccc; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .user-avatar-info-box .user-time-box { margin-left: 20px; display: flex; flex-direction: column; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .user-avatar-info-box .user-time-box .nickname { } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .user-avatar-info-box .user-time-box .time { color: #777; font-size: 12px; margin-top: 3px; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .comment-content { margin-top: 10px; margin-left: 60px; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .btn-comment-reply { margin-top: 10px; margin-left: 60px; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .blog-comment-reply-box { margin-top: 10px; margin-left: 60px; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .blog-comment-reply-box .reply-list { } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .blog-comment-reply-box .reply-list .reply-item { border-top: 1px solid #eee; padding-top: 10px; padding-bottom: 10px; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .blog-comment-reply-box .reply-list .reply-item .reply-user-avatar-info-box { display: flex; justify-content: space-between; align-items: center; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .blog-comment-reply-box .reply-list .reply-item .reply-user-avatar-info-box .user-avatar-info-box { display: flex; align-items: center; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .blog-comment-reply-box .reply-list .reply-item .reply-user-avatar-info-box .user-avatar-info-box .avatar { width: 35px; height: 35px; border-radius: 35px; box-shadow: 0 0 10px #eee; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .blog-comment-reply-box .reply-list .reply-item .reply-user-avatar-info-box .user-avatar-info-box .user-nickname { margin-left: 10px; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .blog-comment-reply-box .reply-list .reply-item .reply-user-avatar-info-box .time { font-size: 12px; color: #777; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .blog-comment-reply-box .reply-list .reply-item .reply-content-box { margin-top: 5px; margin-left: 45px; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .blog-comment-reply-box .reply-list .reply-item .reply-content-box .replied-user-box { margin-right: 20px; color: #007fff; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .blog-comment-reply-box .reply-list .reply-item .btn-reply-reply { margin-top: 10px; margin-left: 45px; } .pop-form-box { display: none; padding: 30px; } @media only screen and (max-width: 960px) { .blog-article { padding: 10px; border-radius: 2px; } .btn-mobile-reply { display: block; } .btn-pc-reply { display: none; } .blog-comment-container { padding: 10px; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .blog-comment-reply-box .reply-list .reply-item .reply-content-box { margin-top: 5px; margin-left: 0; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .blog-comment-reply-box .reply-list .reply-item .btn-reply-reply { margin-top: 10px; margin-left: 0; } .blog-comment-container .blog-comment-box .blog-comment-list .blog-comment-item .blog-comment-reply-box .reply-list .reply-item .reply-btn-box { display: flex; flex-direction: row-reverse; } } @media only screen and (min-width: 960px) { .btn-mobile-reply { display: none; } .btn-pc-reply { display: block; } }
0.252937
0.04725
/*background: lighten($bg-color, 10%);*/ /*$CITMBlue: rgba( 86, 132, 204, 1);*/ /*$CITMGray: rgba(143, 145, 149, 1);*/ .buttons { display: flex; margin-top: 30px; } .button { background: #ffba83; background-image: linear-gradient(to bottom, #ffc99e, #ffba83); color: #b36630; padding: 10px 20px; margin-left: 5px; border-radius: 4px; border: 0px; box-shadow: 2px 2px 6px #999; } .button .text { display: inline-block; } .button .text .text2 { display: inline-block; padding-left: 8px; vertical-align: top; padding-top: 7px; } .button:hover { background-color: #fbd1af; background-image: linear-gradient(to bottom, #ffe5d1, #fbd1af); color: #cb8f64; } .button:active { box-shadow: 0 1px 2px #999; transform: translateY(4px); } .button:focus { outline: 0px; } .button:disabled { background-color: #eee2d7; background-image: none; color: #ceb9aa; box-shadow: none; } #XMLExport { padding-top: 40px; } .DataImportDiv { display: table; width: 100%; } #DataImportHead { display: table-row; height: 30px; font-weight: bold; } #DataImportHead > .Counter { display: table-cell; text-align: right; padding: 2px 4px; } #DataImportHead > .ServiceTag { display: table-cell; padding: 2px 8px; white-space: nowrap; } #DataImportHead > .StationName { display: table-cell; padding: 2px 8px; width: 50%; } #DataImportHead > .Latitude { display: table-cell; padding: 2px 8px; } #DataImportHead > .Longitude { display: table-cell; padding: 2px 8px; } #DataImportHead > .StationId { display: table-cell; padding: 2px 8px; } #DataImportHead > .Latitude { display: table-cell; padding: 2px 4px 2px 8px; font-size: 85%; } #DataImportHead > .Longitude { display: table-cell; padding: 2px 8px 2px 0px; font-size: 85%; white-space: nowrap; } #DataImportHead > .EVSEIds { display: table-cell; padding: 2px 8px; } #DataImportHead > .EVSEIds > .EVSEId { display: table-cell; padding: 2px 8px; font-size: 75%; } #DataImportHead > .Comment { display: table-cell; padding: 2px 8px; width: 100%; } .DataImportRow { display: table-row; } .DataImportRow:nth-child(even) { background-color: rgba(218, 218, 218, 0.8); } .DataImportRow:nth-child(odd) { background-color: rgba(255, 255, 255, 0.8); } /*.DataImportRowProd { background-color: rgba(255, 216, 0, 0.42); }*/ .DataImportRow:hover { background-color: rgba(136, 136, 238, 0.5); } .DataImportRow > .Counter { display: table-cell; text-align: right; padding: 2px 4px; } .DataImportRow > .ServiceTag { display: table-cell; padding: 2px 8px; font-size: 85%; white-space: nowrap; } .DataImportRow > .StationName { display: table-cell; padding: 2px 8px; width: 50%; } .DataImportRow > .Latitude { display: table-cell; padding: 2px 8px; } .DataImportRow > .Longitude { display: table-cell; padding: 2px 8px; } .DataImportRow > .StationId { display: table-cell; padding: 2px 8px; font-size: 85%; } .DataImportRow > .Latitude { display: table-cell; padding: 2px 4px 2px 8px; font-size: 85%; } .DataImportRow > .Longitude { display: table-cell; padding: 2px 8px 2px 0px; font-size: 85%; white-space: nowrap; } .DataImportRow > .EVSEIds { display: table-cell; padding: 2px 8px; } .DataImportRow > .EVSEIds > .EVSEId { display: table-cell; padding: 2px 8px; font-size: 75%; } .DataImportRow > .Comment { display: table-cell; padding: 2px 8px; width: 100%; } .DataImportRowOutOfService { font-style: italic; color: #d84a4a; } select[disabled] { color: #CCCCCC; border-color: #CCCCCC; font-style: italic; } span.hidden { display: none; } .SingleRN { display: table-row; } .SingleRN:hover { background-color: rgba(182, 13, 46, 0.17); } .SingleRNId { display: table-cell; padding: 3px 40px 3px 6px; border-radius: 3px 0px 0px 3px; } .SingleRNName { display: table-cell; padding: 3px 40px 3px 6px; border-radius: 0px 3px 3px 0px; }
OpenChargingCloudAPI/HTTPRoot/adapters/lists.css
/*background: lighten($bg-color, 10%);*/ /*$CITMBlue: rgba( 86, 132, 204, 1);*/ /*$CITMGray: rgba(143, 145, 149, 1);*/ .buttons { display: flex; margin-top: 30px; } .button { background: #ffba83; background-image: linear-gradient(to bottom, #ffc99e, #ffba83); color: #b36630; padding: 10px 20px; margin-left: 5px; border-radius: 4px; border: 0px; box-shadow: 2px 2px 6px #999; } .button .text { display: inline-block; } .button .text .text2 { display: inline-block; padding-left: 8px; vertical-align: top; padding-top: 7px; } .button:hover { background-color: #fbd1af; background-image: linear-gradient(to bottom, #ffe5d1, #fbd1af); color: #cb8f64; } .button:active { box-shadow: 0 1px 2px #999; transform: translateY(4px); } .button:focus { outline: 0px; } .button:disabled { background-color: #eee2d7; background-image: none; color: #ceb9aa; box-shadow: none; } #XMLExport { padding-top: 40px; } .DataImportDiv { display: table; width: 100%; } #DataImportHead { display: table-row; height: 30px; font-weight: bold; } #DataImportHead > .Counter { display: table-cell; text-align: right; padding: 2px 4px; } #DataImportHead > .ServiceTag { display: table-cell; padding: 2px 8px; white-space: nowrap; } #DataImportHead > .StationName { display: table-cell; padding: 2px 8px; width: 50%; } #DataImportHead > .Latitude { display: table-cell; padding: 2px 8px; } #DataImportHead > .Longitude { display: table-cell; padding: 2px 8px; } #DataImportHead > .StationId { display: table-cell; padding: 2px 8px; } #DataImportHead > .Latitude { display: table-cell; padding: 2px 4px 2px 8px; font-size: 85%; } #DataImportHead > .Longitude { display: table-cell; padding: 2px 8px 2px 0px; font-size: 85%; white-space: nowrap; } #DataImportHead > .EVSEIds { display: table-cell; padding: 2px 8px; } #DataImportHead > .EVSEIds > .EVSEId { display: table-cell; padding: 2px 8px; font-size: 75%; } #DataImportHead > .Comment { display: table-cell; padding: 2px 8px; width: 100%; } .DataImportRow { display: table-row; } .DataImportRow:nth-child(even) { background-color: rgba(218, 218, 218, 0.8); } .DataImportRow:nth-child(odd) { background-color: rgba(255, 255, 255, 0.8); } /*.DataImportRowProd { background-color: rgba(255, 216, 0, 0.42); }*/ .DataImportRow:hover { background-color: rgba(136, 136, 238, 0.5); } .DataImportRow > .Counter { display: table-cell; text-align: right; padding: 2px 4px; } .DataImportRow > .ServiceTag { display: table-cell; padding: 2px 8px; font-size: 85%; white-space: nowrap; } .DataImportRow > .StationName { display: table-cell; padding: 2px 8px; width: 50%; } .DataImportRow > .Latitude { display: table-cell; padding: 2px 8px; } .DataImportRow > .Longitude { display: table-cell; padding: 2px 8px; } .DataImportRow > .StationId { display: table-cell; padding: 2px 8px; font-size: 85%; } .DataImportRow > .Latitude { display: table-cell; padding: 2px 4px 2px 8px; font-size: 85%; } .DataImportRow > .Longitude { display: table-cell; padding: 2px 8px 2px 0px; font-size: 85%; white-space: nowrap; } .DataImportRow > .EVSEIds { display: table-cell; padding: 2px 8px; } .DataImportRow > .EVSEIds > .EVSEId { display: table-cell; padding: 2px 8px; font-size: 75%; } .DataImportRow > .Comment { display: table-cell; padding: 2px 8px; width: 100%; } .DataImportRowOutOfService { font-style: italic; color: #d84a4a; } select[disabled] { color: #CCCCCC; border-color: #CCCCCC; font-style: italic; } span.hidden { display: none; } .SingleRN { display: table-row; } .SingleRN:hover { background-color: rgba(182, 13, 46, 0.17); } .SingleRNId { display: table-cell; padding: 3px 40px 3px 6px; border-radius: 3px 0px 0px 3px; } .SingleRNName { display: table-cell; padding: 3px 40px 3px 6px; border-radius: 0px 3px 3px 0px; }
0.32146
0.0809
html, body{ height: 100%; margin: 0px; padding: 0px; width: 100%; } #wrapper { height: 100%; position: relative; } #map { height: 100%; } #app { width: 100%; height: 200px; background: rgba(255, 255, 255, 0.2); position:absolute; left: 0; right:0; top:0; margin:auto; /*this to solve "the content will not be cut when the window is smaller than the content": */ max-width:100%; max-height:100%; overflow:auto; text-align: center; vertical-align: middle; } #app:hover { background: rgba(255, 255, 255, 0.5); } #search { display: block; position: absolute; z-index: 2; top: 20px; left: 74px; } #LocateButton { position: absolute; top: 95px; left: 20px; z-index: 50; } .initial { /*padding-top: 40%;*/ position:relative; left:0; right:0; top:0; bottom:0; margin:auto; /*this to solve "the content will not be cut when the window is smaller than the content": */ max-width:100%; max-height:100%; overflow:auto; text-align: center; vertical-align: middle; } #viewDiv { padding: 0; margin: 0; height: 100%; width: 100%; } .zoom-btns { float: left; transition: opacity .25s ease-in-out; -moz-transition: opacity .25s ease-in-out; -webkit-transition: opacity .25s ease-in-out; } .button { display: inline-block; position: relative; margin: 5px; width: 50px; height: 50px; line-height: 50px; font-size: 2em; color: #646464; cursor: pointer; text-align: center; vertical-align: middle; } .button.circle { border-radius: 50%; } .button:hover { opacity: 0.8; color: rgba(0, 0, 0, 0.25); } .button.raised { transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1); transition-delay: 0.2s; box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25); } .button.raised:active { box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2); transition-delay: 0s; } .disable { opacity: 0.8; color: rgba(0, 0, 0, 0.25); } .disable:hover { opacity: 0.8; color: rgba(0, 0, 0, 0.25); } .material-icons { font-size: 1.2em; line-height: 50px; } @-webkit-keyframes pulse { 0% { opacity: 1.0; } 45% { opacity: .20; } 100% { opacity: 1.0; } } @-moz-keyframes pulse { 0% { opacity: 1.0; } 45% { opacity: .20; } 100% { opacity: 1.0; } } #map_graphics_layer { -webkit-animation-duration: 3s; -webkit-animation-iteration-count: infinite; -webkit-animation-name: pulse; -moz-animation-duration: 3s; -moz-animation-iteration-count: infinite; -moz-animation-name: pulse; }
public/css/style.css
html, body{ height: 100%; margin: 0px; padding: 0px; width: 100%; } #wrapper { height: 100%; position: relative; } #map { height: 100%; } #app { width: 100%; height: 200px; background: rgba(255, 255, 255, 0.2); position:absolute; left: 0; right:0; top:0; margin:auto; /*this to solve "the content will not be cut when the window is smaller than the content": */ max-width:100%; max-height:100%; overflow:auto; text-align: center; vertical-align: middle; } #app:hover { background: rgba(255, 255, 255, 0.5); } #search { display: block; position: absolute; z-index: 2; top: 20px; left: 74px; } #LocateButton { position: absolute; top: 95px; left: 20px; z-index: 50; } .initial { /*padding-top: 40%;*/ position:relative; left:0; right:0; top:0; bottom:0; margin:auto; /*this to solve "the content will not be cut when the window is smaller than the content": */ max-width:100%; max-height:100%; overflow:auto; text-align: center; vertical-align: middle; } #viewDiv { padding: 0; margin: 0; height: 100%; width: 100%; } .zoom-btns { float: left; transition: opacity .25s ease-in-out; -moz-transition: opacity .25s ease-in-out; -webkit-transition: opacity .25s ease-in-out; } .button { display: inline-block; position: relative; margin: 5px; width: 50px; height: 50px; line-height: 50px; font-size: 2em; color: #646464; cursor: pointer; text-align: center; vertical-align: middle; } .button.circle { border-radius: 50%; } .button:hover { opacity: 0.8; color: rgba(0, 0, 0, 0.25); } .button.raised { transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1); transition-delay: 0.2s; box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25); } .button.raised:active { box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2); transition-delay: 0s; } .disable { opacity: 0.8; color: rgba(0, 0, 0, 0.25); } .disable:hover { opacity: 0.8; color: rgba(0, 0, 0, 0.25); } .material-icons { font-size: 1.2em; line-height: 50px; } @-webkit-keyframes pulse { 0% { opacity: 1.0; } 45% { opacity: .20; } 100% { opacity: 1.0; } } @-moz-keyframes pulse { 0% { opacity: 1.0; } 45% { opacity: .20; } 100% { opacity: 1.0; } } #map_graphics_layer { -webkit-animation-duration: 3s; -webkit-animation-iteration-count: infinite; -webkit-animation-name: pulse; -moz-animation-duration: 3s; -moz-animation-iteration-count: infinite; -moz-animation-name: pulse; }
0.357119
0.066025
:root { --default-transition-duration: 0.3s; --default-transition-function: ease-out; --background-color: #fafafa; --foreground-color: #e07; --gutter-width: 10px; --text-color: #333; } body{ background: var(--background-color); font-family: "Helvetica Neue", "Trebuchet MS", Trebuchet, sans-serif; font-size: 14px; margin: 0; padding: 0; min-width: 300px; max-width: 450px; } @supports (-webkit-appearance:none) and (not (overflow:-webkit-marquee)) and (not (-ms-ime-align:auto)) and (not (-moz-appearance:none)) { body { min-width: 450px; } } .ng-hide { display: none; } label, input[type="checkbox"], input[type="range"]{ cursor: pointer; } a:focus, a:hover{ text-decoration: none; } h1{ font-weight: normal; margin: 0; } h2{ font-size: 1.25em; margin: 0 0 var(--gutter-width); } /** * Popup Header */ header, footer { --bg-color: var(--foreground-color); --border-color: var(--background-color); } header.alternate, footer.alternate { --bg-color: var(--background-color); --border-color: var(--foreground-color); background-color: #f0f0f0; } header, footer { background: var(--bg-color); border-color: var(--border-color); clear: both; color: var(--text-color); padding: var(--gutter-width); position: relative; } header a, footer a { color: var(--border-color); } footer.alternate { opacity: 0.3; transition: opacity .5s; } header { display: flex; flex-flow: row nowrap; justify-content: flex-end; align-items: center; } .alternate:focus, .alternate:hover{ opacity: 1; } header.alternate{ border-bottom: 1px solid var(--border-color); } footer.alternate{ border-top: 2px solid var(--border-color); } #volume-range{ background: transparent; } #volume-range::-moz-range-track, #volume-range::-webkit-slider-runnable-track { background: var(--border-color); } #volume-range::-moz-range-thumb, #volume-range::-webkit-slider-thumb { background: var(--bg-color); } .volume-range { margin-right: 2px; } .volume-range:before { font-family: fontello; color: var(--border-color); } .volume-range.level-off:before { content: "\e805"; } .volume-range.level-low:before { content: "\e804"; } .volume-range.level-regular:before { content: "\e803"; } .volume-range.level-high:before { content: "\e800"; } #playback-button{ background: transparent; border: none; color: var(--border-color); cursor: pointer; font-size: 1em; opacity: 1; padding: 0 0 0 calc(var(--gutter-width) * 2); } #playback-button:hover, #playback-button:focus{ color: var(--text-color); } #playback-button:focus{ outline: none; } #playback-button:before{ font-size: 2em; margin: 0; width: auto; } #playback-button.STOPPED::before, #playback-button.ERRORED::before{ content: "\e801"; } #playback-button.PLAYING::before, #playback-button.BUFFERING::before{ content: "\e802"; } /** * Popup Footer */ footer { font-size: .9em; } footer nav ul { display: flex; justify-content: space-between; list-style: none; margin: 0; padding: 0; } footer nav ul li{ text-align: right; } //Expanding any main row to use the whole width footer nav ul li.main{ text-align: left; } /** * Popup Content */ main{ min-height: 170px; padding-bottom: var(--gutter-width) * 2; position: relative; } main nav{ bottom: 0; padding: var(--gutter-width); position: absolute; right: 0; z-index: 100; } main nav > ul{ list-style: none; } main nav li{ float: left; margin-left: 0; padding-right: 0; white-space: nowrap; } main nav button{ background: transparent; border: none; color: var(--foreground-color); cursor: pointer; font-size: 1.3em; margin-left: 3px; padding: 0; } main nav button:disabled { color: gray !important; cursor: default; } main nav button:hover, main nav button:focus { color: var(--text-color); outline: none; } main nav .label{ display: none; } .tiles{ display: flex; flex-flow: row wrap; margin-left: 0; } .tiles[data-current-index]{ /* --current-index is set dynamically in the HTML document via Angular */ /* margin-left: calc(var(--current-index) * 425px * -1); */ } section{ display: none; width: 100%; will-change: display; } section.show { display: flex; } aside, article { padding: var(--gutter-width); } aside{ flex: 0; text-align: center; vertical-align: top; } .album-cover{ background: var(--foreground-color); border: 1px solid var(--text-color); height: 100px; margin-bottom: var(--gutter-width) / 2; width: 100px; } article{ flex: 1 1 auto; padding-left: 0; } article a{ color: var(--text-color); text-decoration: none; } article a:focus, article a:hover{ color: #E2007A; text-decoration: underline; } .metadata{ display: flex; flex-flow: row wrap; list-style: none; margin: 0; padding: 0; } .metadata > li{ flex: 1 1 100%; margin-bottom: calc(var(--gutter-width) / 2); } .metadata > .album-date { white-space: nowrap; } .metadata > .artist > ul { display: inline; list-style: none; padding: 0; margin: 0; } .metadata > .artist li { display: inline; } .metadata > .artist li:not(:first-child):before { content: ", "; } @media screen and (min-width: 400px) { .metadata > .album-title{ flex: 1 1 70%; } .metadata > .album-date{ flex: 0 1 0; } } // authenticated [ng-controller="ScrobblingController"] [for="scrobbling-switch"] span{ font-style: italic; } //not-authenticated [ng-controller="ScrobblingController"] [ng-click]{ color: var(--foreground-color); text-decoration: underline; } [ng-controller="ScrobblingController"] [ng-click]:hover, [ng-controller="ScrobblingController"] [ng-click]:focus{ text-decoration: none; } /** * Iconification */ .iconify::before{ background: transparent no-repeat center center; background-size: cover; content: ""; display: inline-block; height: 1em; margin-right: 0.3em; vertical-align: middle; width: 1em; } [href*="fip.fr"].iconify::before{ background-image: url('../resources/fip.png'); } .icon-deactivated::before { color: #777; text-decoration: none !important; } .icon-activated::before { color: #090; text-decoration: none !important; } /** * Statuses */ .status[data-status]{ border: 1px solid #ccc; border-radius: 20px; color: var(--text-color); display: block; font-size: 0.8em; padding: 2px 0; white-space: nowrap; } .status[data-status="current"]{ border-color: var(--foreground-color); color: var(--foreground-color); font-weight: bold; }
src/now-playing/popup.css
:root { --default-transition-duration: 0.3s; --default-transition-function: ease-out; --background-color: #fafafa; --foreground-color: #e07; --gutter-width: 10px; --text-color: #333; } body{ background: var(--background-color); font-family: "Helvetica Neue", "Trebuchet MS", Trebuchet, sans-serif; font-size: 14px; margin: 0; padding: 0; min-width: 300px; max-width: 450px; } @supports (-webkit-appearance:none) and (not (overflow:-webkit-marquee)) and (not (-ms-ime-align:auto)) and (not (-moz-appearance:none)) { body { min-width: 450px; } } .ng-hide { display: none; } label, input[type="checkbox"], input[type="range"]{ cursor: pointer; } a:focus, a:hover{ text-decoration: none; } h1{ font-weight: normal; margin: 0; } h2{ font-size: 1.25em; margin: 0 0 var(--gutter-width); } /** * Popup Header */ header, footer { --bg-color: var(--foreground-color); --border-color: var(--background-color); } header.alternate, footer.alternate { --bg-color: var(--background-color); --border-color: var(--foreground-color); background-color: #f0f0f0; } header, footer { background: var(--bg-color); border-color: var(--border-color); clear: both; color: var(--text-color); padding: var(--gutter-width); position: relative; } header a, footer a { color: var(--border-color); } footer.alternate { opacity: 0.3; transition: opacity .5s; } header { display: flex; flex-flow: row nowrap; justify-content: flex-end; align-items: center; } .alternate:focus, .alternate:hover{ opacity: 1; } header.alternate{ border-bottom: 1px solid var(--border-color); } footer.alternate{ border-top: 2px solid var(--border-color); } #volume-range{ background: transparent; } #volume-range::-moz-range-track, #volume-range::-webkit-slider-runnable-track { background: var(--border-color); } #volume-range::-moz-range-thumb, #volume-range::-webkit-slider-thumb { background: var(--bg-color); } .volume-range { margin-right: 2px; } .volume-range:before { font-family: fontello; color: var(--border-color); } .volume-range.level-off:before { content: "\e805"; } .volume-range.level-low:before { content: "\e804"; } .volume-range.level-regular:before { content: "\e803"; } .volume-range.level-high:before { content: "\e800"; } #playback-button{ background: transparent; border: none; color: var(--border-color); cursor: pointer; font-size: 1em; opacity: 1; padding: 0 0 0 calc(var(--gutter-width) * 2); } #playback-button:hover, #playback-button:focus{ color: var(--text-color); } #playback-button:focus{ outline: none; } #playback-button:before{ font-size: 2em; margin: 0; width: auto; } #playback-button.STOPPED::before, #playback-button.ERRORED::before{ content: "\e801"; } #playback-button.PLAYING::before, #playback-button.BUFFERING::before{ content: "\e802"; } /** * Popup Footer */ footer { font-size: .9em; } footer nav ul { display: flex; justify-content: space-between; list-style: none; margin: 0; padding: 0; } footer nav ul li{ text-align: right; } //Expanding any main row to use the whole width footer nav ul li.main{ text-align: left; } /** * Popup Content */ main{ min-height: 170px; padding-bottom: var(--gutter-width) * 2; position: relative; } main nav{ bottom: 0; padding: var(--gutter-width); position: absolute; right: 0; z-index: 100; } main nav > ul{ list-style: none; } main nav li{ float: left; margin-left: 0; padding-right: 0; white-space: nowrap; } main nav button{ background: transparent; border: none; color: var(--foreground-color); cursor: pointer; font-size: 1.3em; margin-left: 3px; padding: 0; } main nav button:disabled { color: gray !important; cursor: default; } main nav button:hover, main nav button:focus { color: var(--text-color); outline: none; } main nav .label{ display: none; } .tiles{ display: flex; flex-flow: row wrap; margin-left: 0; } .tiles[data-current-index]{ /* --current-index is set dynamically in the HTML document via Angular */ /* margin-left: calc(var(--current-index) * 425px * -1); */ } section{ display: none; width: 100%; will-change: display; } section.show { display: flex; } aside, article { padding: var(--gutter-width); } aside{ flex: 0; text-align: center; vertical-align: top; } .album-cover{ background: var(--foreground-color); border: 1px solid var(--text-color); height: 100px; margin-bottom: var(--gutter-width) / 2; width: 100px; } article{ flex: 1 1 auto; padding-left: 0; } article a{ color: var(--text-color); text-decoration: none; } article a:focus, article a:hover{ color: #E2007A; text-decoration: underline; } .metadata{ display: flex; flex-flow: row wrap; list-style: none; margin: 0; padding: 0; } .metadata > li{ flex: 1 1 100%; margin-bottom: calc(var(--gutter-width) / 2); } .metadata > .album-date { white-space: nowrap; } .metadata > .artist > ul { display: inline; list-style: none; padding: 0; margin: 0; } .metadata > .artist li { display: inline; } .metadata > .artist li:not(:first-child):before { content: ", "; } @media screen and (min-width: 400px) { .metadata > .album-title{ flex: 1 1 70%; } .metadata > .album-date{ flex: 0 1 0; } } // authenticated [ng-controller="ScrobblingController"] [for="scrobbling-switch"] span{ font-style: italic; } //not-authenticated [ng-controller="ScrobblingController"] [ng-click]{ color: var(--foreground-color); text-decoration: underline; } [ng-controller="ScrobblingController"] [ng-click]:hover, [ng-controller="ScrobblingController"] [ng-click]:focus{ text-decoration: none; } /** * Iconification */ .iconify::before{ background: transparent no-repeat center center; background-size: cover; content: ""; display: inline-block; height: 1em; margin-right: 0.3em; vertical-align: middle; width: 1em; } [href*="fip.fr"].iconify::before{ background-image: url('../resources/fip.png'); } .icon-deactivated::before { color: #777; text-decoration: none !important; } .icon-activated::before { color: #090; text-decoration: none !important; } /** * Statuses */ .status[data-status]{ border: 1px solid #ccc; border-radius: 20px; color: var(--text-color); display: block; font-size: 0.8em; padding: 2px 0; white-space: nowrap; } .status[data-status="current"]{ border-color: var(--foreground-color); color: var(--foreground-color); font-weight: bold; }
0.482673
0.122235
@font-face { font-family: 'Lato'; font-style: normal; font-weight: 300; src: local('Lato Light'), local('Lato-Light'), url(http://themes.googleusercontent.com/static/fonts/lato/v7/kcf5uOXucLcbFOydGU24WALUuEpTyoUstqEm5AMlJo4.woff) format('woff'); } @font-face { font-family: 'Lato'; font-style: italic; font-weight: 300; src: local('Lato Light Italic'), local('Lato-LightItalic'), url(http://themes.googleusercontent.com/static/fonts/lato/v7/2HG_tEPiQ4Z6795cGfdivLO3LdcAZYWl9Si6vvxL-qU.woff) format('woff'); } @font-face { font-family: 'Josefin Sans'; font-style: normal; font-weight: 100; src: local('Josefin Sans Thin'), local('JosefinSans-Thin'), url(http://themes.googleusercontent.com/static/fonts/josefinsans/v4/q9w3H4aeBxj0hZ8Osfi3dy1dfeF-hbOdKKuBDEXxqhQ.woff) format('woff'); } @font-face { font-family: 'proxima-nova'; font-style: normal; font-weight: 100; src: local('proxima-nova-light'), local('proxima-nova'), url(../fonts/proxima-nova-light.otf) format('otf'); } /* src: local('Lato Light'), local('Lato-Light'), url('../fonts/lato.woff') format('woff'); src: local('Lato Light Italic'), local('Lato-LightItalic'), url('../fonts/lato-italic.woff') format('woff'); @font-face { font-family: 'Lato'; font-style: normal; font-weight: 400; src: local('Lato Regular'), local('Lato-Regular'), url(http://themes.googleusercontent.com/static/fonts/lato/v7/qIIYRU-oROkIk8vfvxw6QvesZW2xOQ-xsNqO47m55DA.woff) format('woff'); } @font-face { font-family: 'Lato'; font-style: italic; font-weight: 400; src: local('Lato Italic'), local('Lato-Italic'), url(http://themes.googleusercontent.com/static/fonts/lato/v7/RYyZNoeFgb0l7W3Vu1aSWOvvDin1pK8aKteLpeZ5c0A.woff) format('woff'); } */ body { font-family: "Trebuchet MS", sans-serif; font-size: 16px; overflow-x: hidden; } body.modal-open { overflow: auto; } .full-width { width: 100%; } .full-height { height: 100vh; } .valign-middle { vertical-align: middle; } .half-width { width: 50%; } .half-height { height: 50vh; } .quarter-width { width: 25%; } .quarter-height { height: 25vh; } .full-relative-height { height: 100%; max-height: 100%; } .half-relative-height { height: 50%; max-height: 50%; } .full-height, .half-height { position: relative; top: 0px; left: 0px; right: 0px; bottom: 0px; overflow: auto; } .overflow-auto { overflow: auto; } .overflow-hidden { overflow: hidden; } .menu-icon-bottom { position: absolute; bottom: 0%; left: 48%; z-index: 10; } .menu-icon-top { position: absolute; top: 0%; left: 48%; z-index: 10; } .menu-icon-left { position: absolute; top: 46%; left: 0%; z-index: 10; } .menu-icon-right { position: absolute; top: 46%; right: 0%; z-index: 10; } .menu-icon-top-right { position: absolute; top: 0%; right: 0%; z-index: 10; } .menu-icon-top-left { position: absolute; top: 0%; left: 0%; z-index: 10; } .menu-icon-bottom-right { position: absolute; bottom: 0%; right: 0%; z-index: 10; } .menu-icon-bottom-left { position: absolute; bottom: 0%; left: 0%; z-index: 10; } .font-stylish { font-family: 'Rouge Script', sans-serif; } h1, h2, h3, h4, h5 { font-family: inherit; } legend { border-bottom: 0px; } label { font-weight: 100; } table.gradient-style th, table.gradient-style td { padding: 5px; text-align: center; } table.gradient-style th.text-left, table.gradient-style td.text-left { text-align: left; } table.gradient-style tr { margin: 5px 0px 5px 0px; /* Space out the Bootstrap <hr> more */ } table.fixed-layout { table-layout: fixed; } .no-margin { margin: 0px 0px 0px 0px !important; } .no-padding { padding: 0px 0px 0px 0px !important; } .opacity-mild { opacity: 0.3; } .opacity-none { opacity: 0; } .background-opacity { background: rgba(254, 254, 254, 0.2); } .background-opacity1-2 { background: rgba(254, 254, 254, 0.2); } .background-opacity1-4 { background: rgba(254, 254, 254, 0.4); } .background-opacity0 { background: rgba(0, 0, 0, 0.2); } .owesyou { color: #27ae60; } .youowe { color: #e74c3c; } .featurette { padding-top: 30px; } .featurette-image { margin-top: -30px; } .featurette-heading { text-align: left; } .featurette-divider { margin: 80px 0px 20px 0px; /* Space out the Bootstrap <hr> more */ } .featurette-divider3 { margin: 20px 0px 20px 0px; /* Space out the Bootstrap <hr> more */ clear: both; } .featurette-divider4 { margin: 5px 0px 5px 0px; /* Space out the Bootstrap <hr> more */ clear: both; } .featurette-divider5 { margin: 10px 0px 5px 0px; /* Space out the Bootstrap <hr> more */ clear: both; } .featurette-divider2 { margin: 40px 0px; /* Space out the Bootstrap <hr> more */ } .width-auto { width: auto; } .width-200 { width: 200px; max-width: 200px; } .width-400 { width: 400px; max-width: 400px; } .width-500 { width: 500px; max-width: 500px; } .width-300 { width: 300px; max-width: 300px; } .width-250 { max-width: 250px; } .width-150 { width: 150px; max-width: 150px; } .width-100 { width: 100px; max-width: 100px; } .width-50 { width: 50px; max-width: 50px; } .width-25 { width: 25px; max-width: 25px; } .width-20 { width: 20px; max-width: 20px; } .width-15 { width: 15px; max-width: 15px; } .height-auto { height: auto; } .height-200 { height: 200px; max-height: 200px; } .height-400 { height: 400px; max-height: 400px; } .height-500 { height: 500px; max-height: 500px; } .height-300 { height: 300px; max-height: 300px; } .height-250 { max-height: 250px; } .height-150 { height: 150px; max-height: 150px; } .height-100 { height: 100px; max-height: 100px; } .height-50 { height: 50px; max-height: 50px; } .height-25 { height: 25px; max-height: 25px; } .height-20 { height: 20px; max-height: 20px; } .height-15 { height: 15px; max-height: 15px; } .img-responsive { margin: 0px auto; } .margin-20 { margin: 20px; } .margin-15 { margin: 15px; } .margin-10 { margin: 10px; } .margin-5 { margin: 5px; } .margin-2 { margin: 2px; } .block0 { margin: 0px auto; width: auto; height: 200px; line-height: 200px; } .block { margin: 0px auto; width: auto; height: 150px; line-height: 150px; } .block1 { margin: 0px auto; width: auto; height: 125px; line-height: 125px; } .block2 { margin: 0px auto; width: auto; height: 100px; line-height: 100px; } .block2a { margin: 0px auto; width: auto; height: 75px; line-height: 75px; } .block3 { margin: 0px auto; width: auto; height: 50px; line-height: 50px; } .block4 { margin: 0px auto; width: auto; height: 25px; line-height: 25px; } .pointer { cursor: pointer !important; } .no-pointer { cursor: auto !important; } .text-underline { text-decoration: underline; } .font-uppercase { text-transform: uppercase; } .font-heading { line-height: 1; letter-spacing: 6px; word-spacing: -0.3em; } .font-15 { font-size: 15px !important; } .font-20 { font-size: 20px !important; } .font-25 { font-size: 25px !important; } .font-30 { font-size: 30px !important; } .font-40 { font-size: 40px !important; } .font-50 { font-size: 50px !important; } .font-60 { font-size: 60px !important; } .font-70 { font-size: 70px !important; } .font-80 { font-size: 80px !important; } .background-white { background: #FFF !important; } .background-black { background: #000 !important; } .color-black { color: #000 !important; } .background-limeGreen { background: #63ea41 !important; } .background-darkGreen { background: #006940 !important; } /* Create a Parametric mixin and add a guard operation */ @media (min-width: 1201px) { p { font-size: 20px !important; } } @media (min-width: 1601px) { p { font-size: 22px !important; } } @media (min-width: 1901px) { p { font-size: 24px !important; } } @media (max-width: 1200px) { p { font-size: 18px; } } @media (max-width: 998px) { p { font-size: 16px; } } @media (max-width: 767px) { p { font-size: 14px; } } @media (max-width: 501px) { p { font-size: 12px; } } body.money { background-image: url('../images/money-7.1.jpg'); background-size: cover; background-repeat: repeat; font-weight: 100; min-height: 90%; } .transaction-table { max-height: 750px; overflow: auto; } .ind-amount { width: 75px; } /* Downsize the brand/project name a bit */ .navbar-brand { font-size: 35px; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5); letter-spacing: 1.5px; margin-top: 10px; font-family: 'Kaushan Script', cursive; } .navbar-brand img { width: 34px; height: 40px; margin-top: -10px; } ul.nav li { margin-top: 10px; font-size: 18px; font-family: 'Mate', serif; }
app/public/money/style/money.css
@font-face { font-family: 'Lato'; font-style: normal; font-weight: 300; src: local('Lato Light'), local('Lato-Light'), url(http://themes.googleusercontent.com/static/fonts/lato/v7/kcf5uOXucLcbFOydGU24WALUuEpTyoUstqEm5AMlJo4.woff) format('woff'); } @font-face { font-family: 'Lato'; font-style: italic; font-weight: 300; src: local('Lato Light Italic'), local('Lato-LightItalic'), url(http://themes.googleusercontent.com/static/fonts/lato/v7/2HG_tEPiQ4Z6795cGfdivLO3LdcAZYWl9Si6vvxL-qU.woff) format('woff'); } @font-face { font-family: 'Josefin Sans'; font-style: normal; font-weight: 100; src: local('Josefin Sans Thin'), local('JosefinSans-Thin'), url(http://themes.googleusercontent.com/static/fonts/josefinsans/v4/q9w3H4aeBxj0hZ8Osfi3dy1dfeF-hbOdKKuBDEXxqhQ.woff) format('woff'); } @font-face { font-family: 'proxima-nova'; font-style: normal; font-weight: 100; src: local('proxima-nova-light'), local('proxima-nova'), url(../fonts/proxima-nova-light.otf) format('otf'); } /* src: local('Lato Light'), local('Lato-Light'), url('../fonts/lato.woff') format('woff'); src: local('Lato Light Italic'), local('Lato-LightItalic'), url('../fonts/lato-italic.woff') format('woff'); @font-face { font-family: 'Lato'; font-style: normal; font-weight: 400; src: local('Lato Regular'), local('Lato-Regular'), url(http://themes.googleusercontent.com/static/fonts/lato/v7/qIIYRU-oROkIk8vfvxw6QvesZW2xOQ-xsNqO47m55DA.woff) format('woff'); } @font-face { font-family: 'Lato'; font-style: italic; font-weight: 400; src: local('Lato Italic'), local('Lato-Italic'), url(http://themes.googleusercontent.com/static/fonts/lato/v7/RYyZNoeFgb0l7W3Vu1aSWOvvDin1pK8aKteLpeZ5c0A.woff) format('woff'); } */ body { font-family: "Trebuchet MS", sans-serif; font-size: 16px; overflow-x: hidden; } body.modal-open { overflow: auto; } .full-width { width: 100%; } .full-height { height: 100vh; } .valign-middle { vertical-align: middle; } .half-width { width: 50%; } .half-height { height: 50vh; } .quarter-width { width: 25%; } .quarter-height { height: 25vh; } .full-relative-height { height: 100%; max-height: 100%; } .half-relative-height { height: 50%; max-height: 50%; } .full-height, .half-height { position: relative; top: 0px; left: 0px; right: 0px; bottom: 0px; overflow: auto; } .overflow-auto { overflow: auto; } .overflow-hidden { overflow: hidden; } .menu-icon-bottom { position: absolute; bottom: 0%; left: 48%; z-index: 10; } .menu-icon-top { position: absolute; top: 0%; left: 48%; z-index: 10; } .menu-icon-left { position: absolute; top: 46%; left: 0%; z-index: 10; } .menu-icon-right { position: absolute; top: 46%; right: 0%; z-index: 10; } .menu-icon-top-right { position: absolute; top: 0%; right: 0%; z-index: 10; } .menu-icon-top-left { position: absolute; top: 0%; left: 0%; z-index: 10; } .menu-icon-bottom-right { position: absolute; bottom: 0%; right: 0%; z-index: 10; } .menu-icon-bottom-left { position: absolute; bottom: 0%; left: 0%; z-index: 10; } .font-stylish { font-family: 'Rouge Script', sans-serif; } h1, h2, h3, h4, h5 { font-family: inherit; } legend { border-bottom: 0px; } label { font-weight: 100; } table.gradient-style th, table.gradient-style td { padding: 5px; text-align: center; } table.gradient-style th.text-left, table.gradient-style td.text-left { text-align: left; } table.gradient-style tr { margin: 5px 0px 5px 0px; /* Space out the Bootstrap <hr> more */ } table.fixed-layout { table-layout: fixed; } .no-margin { margin: 0px 0px 0px 0px !important; } .no-padding { padding: 0px 0px 0px 0px !important; } .opacity-mild { opacity: 0.3; } .opacity-none { opacity: 0; } .background-opacity { background: rgba(254, 254, 254, 0.2); } .background-opacity1-2 { background: rgba(254, 254, 254, 0.2); } .background-opacity1-4 { background: rgba(254, 254, 254, 0.4); } .background-opacity0 { background: rgba(0, 0, 0, 0.2); } .owesyou { color: #27ae60; } .youowe { color: #e74c3c; } .featurette { padding-top: 30px; } .featurette-image { margin-top: -30px; } .featurette-heading { text-align: left; } .featurette-divider { margin: 80px 0px 20px 0px; /* Space out the Bootstrap <hr> more */ } .featurette-divider3 { margin: 20px 0px 20px 0px; /* Space out the Bootstrap <hr> more */ clear: both; } .featurette-divider4 { margin: 5px 0px 5px 0px; /* Space out the Bootstrap <hr> more */ clear: both; } .featurette-divider5 { margin: 10px 0px 5px 0px; /* Space out the Bootstrap <hr> more */ clear: both; } .featurette-divider2 { margin: 40px 0px; /* Space out the Bootstrap <hr> more */ } .width-auto { width: auto; } .width-200 { width: 200px; max-width: 200px; } .width-400 { width: 400px; max-width: 400px; } .width-500 { width: 500px; max-width: 500px; } .width-300 { width: 300px; max-width: 300px; } .width-250 { max-width: 250px; } .width-150 { width: 150px; max-width: 150px; } .width-100 { width: 100px; max-width: 100px; } .width-50 { width: 50px; max-width: 50px; } .width-25 { width: 25px; max-width: 25px; } .width-20 { width: 20px; max-width: 20px; } .width-15 { width: 15px; max-width: 15px; } .height-auto { height: auto; } .height-200 { height: 200px; max-height: 200px; } .height-400 { height: 400px; max-height: 400px; } .height-500 { height: 500px; max-height: 500px; } .height-300 { height: 300px; max-height: 300px; } .height-250 { max-height: 250px; } .height-150 { height: 150px; max-height: 150px; } .height-100 { height: 100px; max-height: 100px; } .height-50 { height: 50px; max-height: 50px; } .height-25 { height: 25px; max-height: 25px; } .height-20 { height: 20px; max-height: 20px; } .height-15 { height: 15px; max-height: 15px; } .img-responsive { margin: 0px auto; } .margin-20 { margin: 20px; } .margin-15 { margin: 15px; } .margin-10 { margin: 10px; } .margin-5 { margin: 5px; } .margin-2 { margin: 2px; } .block0 { margin: 0px auto; width: auto; height: 200px; line-height: 200px; } .block { margin: 0px auto; width: auto; height: 150px; line-height: 150px; } .block1 { margin: 0px auto; width: auto; height: 125px; line-height: 125px; } .block2 { margin: 0px auto; width: auto; height: 100px; line-height: 100px; } .block2a { margin: 0px auto; width: auto; height: 75px; line-height: 75px; } .block3 { margin: 0px auto; width: auto; height: 50px; line-height: 50px; } .block4 { margin: 0px auto; width: auto; height: 25px; line-height: 25px; } .pointer { cursor: pointer !important; } .no-pointer { cursor: auto !important; } .text-underline { text-decoration: underline; } .font-uppercase { text-transform: uppercase; } .font-heading { line-height: 1; letter-spacing: 6px; word-spacing: -0.3em; } .font-15 { font-size: 15px !important; } .font-20 { font-size: 20px !important; } .font-25 { font-size: 25px !important; } .font-30 { font-size: 30px !important; } .font-40 { font-size: 40px !important; } .font-50 { font-size: 50px !important; } .font-60 { font-size: 60px !important; } .font-70 { font-size: 70px !important; } .font-80 { font-size: 80px !important; } .background-white { background: #FFF !important; } .background-black { background: #000 !important; } .color-black { color: #000 !important; } .background-limeGreen { background: #63ea41 !important; } .background-darkGreen { background: #006940 !important; } /* Create a Parametric mixin and add a guard operation */ @media (min-width: 1201px) { p { font-size: 20px !important; } } @media (min-width: 1601px) { p { font-size: 22px !important; } } @media (min-width: 1901px) { p { font-size: 24px !important; } } @media (max-width: 1200px) { p { font-size: 18px; } } @media (max-width: 998px) { p { font-size: 16px; } } @media (max-width: 767px) { p { font-size: 14px; } } @media (max-width: 501px) { p { font-size: 12px; } } body.money { background-image: url('../images/money-7.1.jpg'); background-size: cover; background-repeat: repeat; font-weight: 100; min-height: 90%; } .transaction-table { max-height: 750px; overflow: auto; } .ind-amount { width: 75px; } /* Downsize the brand/project name a bit */ .navbar-brand { font-size: 35px; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5); letter-spacing: 1.5px; margin-top: 10px; font-family: 'Kaushan Script', cursive; } .navbar-brand img { width: 34px; height: 40px; margin-top: -10px; } ul.nav li { margin-top: 10px; font-size: 18px; font-family: 'Mate', serif; }
0.392919
0.07088
@font-face { font-family: "iconfont-sm"; src: url('font_1433401008_2229297.woff') format('woff'); /* iOS 4.1- */ } .icon { font-family: "iconfont-sm" !important; font-style: normal; display: inline-block; vertical-align: middle; background-size: 100% auto; background-position: center; -webkit-font-smoothing: antialiased; -webkit-text-stroke-width: 0.2px; -moz-osx-font-smoothing: grayscale; } .icon-app:before { content: "\e605"; } .icon-browser:before { content: "\e606"; } .icon-card:before { content: "\e607"; } .icon-cart:before { content: "\e600"; } .icon-code:before { content: "\e609"; } .icon-computer:before { content: "\e616"; } .icon-remove:before { content: "\e60a"; } .icon-download:before { content: "\e60b"; } .icon-edit:before { content: "\e60c"; } .icon-emoji:before { content: "\e615"; } .icon-star:before { content: "\e60e"; } .icon-friends:before { content: "\e601"; } .icon-gift:before { content: "\e618"; } .icon-phone:before { content: "\e60f"; } .icon-clock:before { content: "\e619"; } .icon-home:before { content: "\e602"; } .icon-menu:before { content: "\e60d"; } .icon-message:before { content: "\e617"; } .icon-me:before { content: "\e603"; } .icon-picture:before { content: "\e61a"; } .icon-share:before { content: "\e61b"; } .icon-settings:before { content: "\e604"; } .icon-refresh:before { content: "\e61c"; } .icon-caret:before { content: "\e610"; } .icon-down:before { content: "\e611"; } .icon-up:before { content: "\e612"; } .icon-right:before { content: "\e613"; } .icon-left:before { content: "\e614"; } .icon-check:before { content: "\e608"; } .icon-search:before { content: "\e61d"; } .icon-new:before { content: "\e61e"; } .icon-next, .icon-prev { width: 0.75rem; height: 0.75rem; } .icon-next { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%23007aff'%20d%3D'M1%2C1.6l11.8%2C5.8L1%2C13.4V1.6%20M0%2C0v15l15-7.6L0%2C0L0%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } .icon-prev { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%23007aff'%20d%3D'M14%2C1.6v11.8L2.2%2C7.6L14%2C1.6%20M15%2C0L0%2C7.6L15%2C15V0L15%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } .bar-tab { bottom: 0; width: 100%; padding: 0; table-layout: fixed; } .bar-tab:before { content: ''; position: absolute; left: 0; top: 0; bottom: auto; right: auto; height: 1px; width: 100%; background-color: #e7e7e7; display: block; z-index: 15; -webkit-transform-origin: 50% 0%; transform-origin: 50% 0%; } .bar { position: inherit; right: 0; left: 0; z-index: 10; background-color: #f7f7f8; -webkit-backface-visibility: hidden; backface-visibility: hidden; } .bar:after { content: ''; position: absolute; left: 0; bottom: 0; right: auto; top: auto; height: 1px; width: 100%; background-color: #e7e7e7; display: block; z-index: 15; -webkit-transform-origin: 50% 100%; transform-origin: 50% 100%; } .bar-tab:after { display: none; } .bar-tab .tab-item { position: relative; display: table-cell; width: 1%; height: 2.5rem; color: #929292; text-align: center; vertical-align: middle; } .bar-tab .tab-item.active, .bar-tab .tab-item:active { color: #0894ec; } .bar-tab .tab-item .badge { position: absolute; top: .1rem; left: 50%; z-index: 100; height: .8rem; min-width: .8rem; padding: 0 .2rem; font-size: .6rem; line-height: .8rem; color: white; vertical-align: top; background: red; border-radius: .5rem; margin-left: .1rem; } .bar-tab .tab-item .icon { top: 0.05rem; height: 1.2rem; font-size: 1.2rem; line-height: 1.2rem; padding-top: 0; padding-bottom: 0; } .bar-tab .tab-item .icon ~ .tab-label { display: block; font-size: 0.55rem; position: relative; top: 0.15rem; } .bar .button { position: relative; top: 0.35rem; z-index: 20; margin-top: 0; font-weight: 400; } .bar .button.pull-right { margin-left: 0.5rem; } .bar .button.pull-left { margin-right: 0.5rem; } .bar .button-link { top: 0; padding: 0; font-size: 0.8rem; line-height: 2.2rem; height: 2.2rem; color: #0894ec; border: 0; } .bar .button-link:active, .bar .button-link.active { color: #0675bb; } .bar .button-block { top: 0.35rem; font-size: 0.8rem; width: 100%; } .bar .button-nav.pull-left { margin-left: -0.25rem; } .bar .button-nav.pull-left .icon-left-nav { margin-right: -0.15rem; } .bar .button-nav.pull-right { margin-right: -0.25rem; } .bar .button-nav.pull-right .icon-right-nav { margin-left: -0.15rem; } .bar .icon { position: relative; z-index: 20; padding: .5rem .1rem; font-size: 1rem; line-height: 1.2rem; } .bar .button .icon { padding: 0; } .bar .title .icon { padding: 0; }
form/src/main/webapp/css/component/m-toolbar.css
@font-face { font-family: "iconfont-sm"; src: url('font_1433401008_2229297.woff') format('woff'); /* iOS 4.1- */ } .icon { font-family: "iconfont-sm" !important; font-style: normal; display: inline-block; vertical-align: middle; background-size: 100% auto; background-position: center; -webkit-font-smoothing: antialiased; -webkit-text-stroke-width: 0.2px; -moz-osx-font-smoothing: grayscale; } .icon-app:before { content: "\e605"; } .icon-browser:before { content: "\e606"; } .icon-card:before { content: "\e607"; } .icon-cart:before { content: "\e600"; } .icon-code:before { content: "\e609"; } .icon-computer:before { content: "\e616"; } .icon-remove:before { content: "\e60a"; } .icon-download:before { content: "\e60b"; } .icon-edit:before { content: "\e60c"; } .icon-emoji:before { content: "\e615"; } .icon-star:before { content: "\e60e"; } .icon-friends:before { content: "\e601"; } .icon-gift:before { content: "\e618"; } .icon-phone:before { content: "\e60f"; } .icon-clock:before { content: "\e619"; } .icon-home:before { content: "\e602"; } .icon-menu:before { content: "\e60d"; } .icon-message:before { content: "\e617"; } .icon-me:before { content: "\e603"; } .icon-picture:before { content: "\e61a"; } .icon-share:before { content: "\e61b"; } .icon-settings:before { content: "\e604"; } .icon-refresh:before { content: "\e61c"; } .icon-caret:before { content: "\e610"; } .icon-down:before { content: "\e611"; } .icon-up:before { content: "\e612"; } .icon-right:before { content: "\e613"; } .icon-left:before { content: "\e614"; } .icon-check:before { content: "\e608"; } .icon-search:before { content: "\e61d"; } .icon-new:before { content: "\e61e"; } .icon-next, .icon-prev { width: 0.75rem; height: 0.75rem; } .icon-next { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%23007aff'%20d%3D'M1%2C1.6l11.8%2C5.8L1%2C13.4V1.6%20M0%2C0v15l15-7.6L0%2C0L0%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } .icon-prev { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%23007aff'%20d%3D'M14%2C1.6v11.8L2.2%2C7.6L14%2C1.6%20M15%2C0L0%2C7.6L15%2C15V0L15%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } .bar-tab { bottom: 0; width: 100%; padding: 0; table-layout: fixed; } .bar-tab:before { content: ''; position: absolute; left: 0; top: 0; bottom: auto; right: auto; height: 1px; width: 100%; background-color: #e7e7e7; display: block; z-index: 15; -webkit-transform-origin: 50% 0%; transform-origin: 50% 0%; } .bar { position: inherit; right: 0; left: 0; z-index: 10; background-color: #f7f7f8; -webkit-backface-visibility: hidden; backface-visibility: hidden; } .bar:after { content: ''; position: absolute; left: 0; bottom: 0; right: auto; top: auto; height: 1px; width: 100%; background-color: #e7e7e7; display: block; z-index: 15; -webkit-transform-origin: 50% 100%; transform-origin: 50% 100%; } .bar-tab:after { display: none; } .bar-tab .tab-item { position: relative; display: table-cell; width: 1%; height: 2.5rem; color: #929292; text-align: center; vertical-align: middle; } .bar-tab .tab-item.active, .bar-tab .tab-item:active { color: #0894ec; } .bar-tab .tab-item .badge { position: absolute; top: .1rem; left: 50%; z-index: 100; height: .8rem; min-width: .8rem; padding: 0 .2rem; font-size: .6rem; line-height: .8rem; color: white; vertical-align: top; background: red; border-radius: .5rem; margin-left: .1rem; } .bar-tab .tab-item .icon { top: 0.05rem; height: 1.2rem; font-size: 1.2rem; line-height: 1.2rem; padding-top: 0; padding-bottom: 0; } .bar-tab .tab-item .icon ~ .tab-label { display: block; font-size: 0.55rem; position: relative; top: 0.15rem; } .bar .button { position: relative; top: 0.35rem; z-index: 20; margin-top: 0; font-weight: 400; } .bar .button.pull-right { margin-left: 0.5rem; } .bar .button.pull-left { margin-right: 0.5rem; } .bar .button-link { top: 0; padding: 0; font-size: 0.8rem; line-height: 2.2rem; height: 2.2rem; color: #0894ec; border: 0; } .bar .button-link:active, .bar .button-link.active { color: #0675bb; } .bar .button-block { top: 0.35rem; font-size: 0.8rem; width: 100%; } .bar .button-nav.pull-left { margin-left: -0.25rem; } .bar .button-nav.pull-left .icon-left-nav { margin-right: -0.15rem; } .bar .button-nav.pull-right { margin-right: -0.25rem; } .bar .button-nav.pull-right .icon-right-nav { margin-left: -0.15rem; } .bar .icon { position: relative; z-index: 20; padding: .5rem .1rem; font-size: 1rem; line-height: 1.2rem; } .bar .button .icon { padding: 0; } .bar .title .icon { padding: 0; }
0.289372
0.046184
@font-face { font-family: 'Bebas'; src: url('./bebasneue.woff') format('woff'); src: url('./bebasneue.woff2') format('woff2'); src: url('./bebasneue.ttf') format('truetype'); font-weight: normal; font-style: normal; } body { overflow: hidden; font-family: 'Bebas', helvetica, arial; font-size: 170%; margin: 0; padding: 0; } #window-container { width: 1920px; height: 1080px; overflow: hidden; } #player1 { float: left; height: 70px; width: 415px; margin-left: 330px; margin-top: -1px; } #player2 { float: right; height: 70px; width: 415px; margin-right: 330px; margin-top: -1px; } #player1 .playerContainer { background: url("./player1bgnew.png"); background-size: cover; float: left; } #player2 .playerContainer { background: url("./player2bgnew.png"); background-size: cover; float: right; } .playerContainer { align-items: center; height: 100%; width: 100%; color: #fff; overflow: hidden; position: relative; } #midbar { background: url("./midbar.png"); background-size: cover; position: relative; height: 87px; width: 439px; margin: auto; z-index: 5; text-align: center; top: -85px; } #tournamentRound { position: relative; text-align: center; margin: 0 auto; background: url("./tournamentround.png") center top no-repeat; top: 0; height: 65px; width: 254px; font-variant: small-caps; color: #fff; text-shadow: 0 0 10px #000, 0 0 10px #000; z-index: 1; } #tournamentRoundText { position: relative; top: 19px; } #player1Spinner { position: absolute; background: url("./spinner.png"); background-size: cover; top: -29px; left: 316px; width: 88px; height: 88px; zoom: 1; } #player2Spinner { position: absolute; background: url("./spinner.png"); background-size: cover; top: -29px; right: 316px; width: 88px; height: 88px; zoom: 1; } #player1Name { text-align: left; float: left; position: relative; padding: 20px 0 0 53px; } #player2Name { float: right; text-align: right; position: relative; padding: 20px 53px 0 0; } #player1Score { float: right; text-align: right; color: #000; text-shadow: 0 0 20px #ffffff; padding: 18px 75px 0 0; visibility: hidden; } #player2Score { float: right; text-align: left; color: #000; text-shadow: 0 0 20px #ffffff; padding: 18px 75px 0 0; visibility: hidden; } #player1ScoreHighlight1 { left: -100px; } #player1ScoreHighlight2 { left: -100px; } #player1ScoreHighlight3 { left: -100px; } #player2ScoreHighlight3 { transform: scaleX(-1); float: right; right: -100px; } #player2ScoreHighlight2 { transform: scaleX(-1); float: right; right: -100px; } #player2ScoreHighlight1 { transform: scaleX(-1); float: right; right: -100px; } .playerScoreHighlight { background: url("./scorehighlight.png"); float: left; position: absolute; width: 101px; height: 59px; top: -10px; } .pointScored { background: url("./scorehighlightpoint.png") !important; } .flag { float: right; height: 32px; width: 32px; background: #f00; margin: 18px 38px 0 0; } .rotatingCW { transform:rotate(720deg); transition: all 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95); } .rotatingCCW { transform:rotate(-720deg); transition: all 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95); } .backToZero { transform:rotate(0); transition: all 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95); }
graphics/themes/destinationfight/destinationfight.css
@font-face { font-family: 'Bebas'; src: url('./bebasneue.woff') format('woff'); src: url('./bebasneue.woff2') format('woff2'); src: url('./bebasneue.ttf') format('truetype'); font-weight: normal; font-style: normal; } body { overflow: hidden; font-family: 'Bebas', helvetica, arial; font-size: 170%; margin: 0; padding: 0; } #window-container { width: 1920px; height: 1080px; overflow: hidden; } #player1 { float: left; height: 70px; width: 415px; margin-left: 330px; margin-top: -1px; } #player2 { float: right; height: 70px; width: 415px; margin-right: 330px; margin-top: -1px; } #player1 .playerContainer { background: url("./player1bgnew.png"); background-size: cover; float: left; } #player2 .playerContainer { background: url("./player2bgnew.png"); background-size: cover; float: right; } .playerContainer { align-items: center; height: 100%; width: 100%; color: #fff; overflow: hidden; position: relative; } #midbar { background: url("./midbar.png"); background-size: cover; position: relative; height: 87px; width: 439px; margin: auto; z-index: 5; text-align: center; top: -85px; } #tournamentRound { position: relative; text-align: center; margin: 0 auto; background: url("./tournamentround.png") center top no-repeat; top: 0; height: 65px; width: 254px; font-variant: small-caps; color: #fff; text-shadow: 0 0 10px #000, 0 0 10px #000; z-index: 1; } #tournamentRoundText { position: relative; top: 19px; } #player1Spinner { position: absolute; background: url("./spinner.png"); background-size: cover; top: -29px; left: 316px; width: 88px; height: 88px; zoom: 1; } #player2Spinner { position: absolute; background: url("./spinner.png"); background-size: cover; top: -29px; right: 316px; width: 88px; height: 88px; zoom: 1; } #player1Name { text-align: left; float: left; position: relative; padding: 20px 0 0 53px; } #player2Name { float: right; text-align: right; position: relative; padding: 20px 53px 0 0; } #player1Score { float: right; text-align: right; color: #000; text-shadow: 0 0 20px #ffffff; padding: 18px 75px 0 0; visibility: hidden; } #player2Score { float: right; text-align: left; color: #000; text-shadow: 0 0 20px #ffffff; padding: 18px 75px 0 0; visibility: hidden; } #player1ScoreHighlight1 { left: -100px; } #player1ScoreHighlight2 { left: -100px; } #player1ScoreHighlight3 { left: -100px; } #player2ScoreHighlight3 { transform: scaleX(-1); float: right; right: -100px; } #player2ScoreHighlight2 { transform: scaleX(-1); float: right; right: -100px; } #player2ScoreHighlight1 { transform: scaleX(-1); float: right; right: -100px; } .playerScoreHighlight { background: url("./scorehighlight.png"); float: left; position: absolute; width: 101px; height: 59px; top: -10px; } .pointScored { background: url("./scorehighlightpoint.png") !important; } .flag { float: right; height: 32px; width: 32px; background: #f00; margin: 18px 38px 0 0; } .rotatingCW { transform:rotate(720deg); transition: all 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95); } .rotatingCCW { transform:rotate(-720deg); transition: all 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95); } .backToZero { transform:rotate(0); transition: all 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95); }
0.47244
0.154185
@font-face { font-family: IRANSans; font-style: normal; font-weight: 900; src: url('../fonts/iransans/eot/IRANSansWeb_Black.eot'); src: url('../fonts/iransans/eot/IRANSansWeb_Black.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/iransans/woff2/IRANSansWeb_Black.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/iransans/woff/IRANSansWeb_Black.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/iransans/ttf/IRANSansWeb_Black.ttf') format('truetype'); } @font-face { font-family: IRANSans; font-style: normal; font-weight: bold; src: url('../fonts/iransans/eot/IRANSansWeb_Bold.eot'); src: url('../fonts/iransans/eot/IRANSansWeb_Bold.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/iransans/woff2/IRANSansWeb_Bold.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/iransans/woff/IRANSansWeb_Bold.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/iransans/ttf/IRANSansWeb_Bold.ttf') format('truetype'); } @font-face { font-family: IRANSans; font-style: normal; font-weight: 500; src: url('../fonts/iransans/eot/IRANSansWeb_Medium.eot'); src: url('../fonts/iransans/eot/IRANSansWeb_Medium.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/iransans/woff2/IRANSansWeb_Medium.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/iransans/woff/IRANSansWeb_Medium.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/iransans/ttf/IRANSansWeb_Medium.ttf') format('truetype'); } @font-face { font-family: IRANSans; font-style: normal; font-weight: 300; src: url('../fonts/iransans/eot/IRANSansWeb_Light.eot'); src: url('../fonts/iransans/eot/IRANSansWeb_Light.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/iransans/woff2/IRANSansWeb_Light.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/iransans/woff/IRANSansWeb_Light.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/iransans/ttf/IRANSansWeb_Light.ttf') format('truetype'); } @font-face { font-family: IRANSans; font-style: normal; font-weight: 200; src: url('../fonts/iransans/eot/IRANSansWeb_UltraLight.eot'); src: url('../fonts/iransans/eot/IRANSansWeb_UltraLight.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/iransans/woff2/IRANSansWeb_UltraLight.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/iransans/woff/IRANSansWeb_UltraLight.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/iransans/ttf/IRANSansWeb_UltraLight.ttf') format('truetype'); } @font-face { font-family: IRANSans; font-style: normal; font-weight: normal; src: url('../fonts/iransans/eot/IRANSansWeb.eot'); src: url('../fonts/iransans/eot/IRANSansWeb.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/iransans/woff2/IRANSansWeb.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/iransans/woff/IRANSansWeb.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/iransans/ttf/IRANSansWeb.ttf') format('truetype'); } body { font-family: IRANSans; }
public/css/styles.css
@font-face { font-family: IRANSans; font-style: normal; font-weight: 900; src: url('../fonts/iransans/eot/IRANSansWeb_Black.eot'); src: url('../fonts/iransans/eot/IRANSansWeb_Black.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/iransans/woff2/IRANSansWeb_Black.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/iransans/woff/IRANSansWeb_Black.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/iransans/ttf/IRANSansWeb_Black.ttf') format('truetype'); } @font-face { font-family: IRANSans; font-style: normal; font-weight: bold; src: url('../fonts/iransans/eot/IRANSansWeb_Bold.eot'); src: url('../fonts/iransans/eot/IRANSansWeb_Bold.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/iransans/woff2/IRANSansWeb_Bold.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/iransans/woff/IRANSansWeb_Bold.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/iransans/ttf/IRANSansWeb_Bold.ttf') format('truetype'); } @font-face { font-family: IRANSans; font-style: normal; font-weight: 500; src: url('../fonts/iransans/eot/IRANSansWeb_Medium.eot'); src: url('../fonts/iransans/eot/IRANSansWeb_Medium.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/iransans/woff2/IRANSansWeb_Medium.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/iransans/woff/IRANSansWeb_Medium.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/iransans/ttf/IRANSansWeb_Medium.ttf') format('truetype'); } @font-face { font-family: IRANSans; font-style: normal; font-weight: 300; src: url('../fonts/iransans/eot/IRANSansWeb_Light.eot'); src: url('../fonts/iransans/eot/IRANSansWeb_Light.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/iransans/woff2/IRANSansWeb_Light.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/iransans/woff/IRANSansWeb_Light.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/iransans/ttf/IRANSansWeb_Light.ttf') format('truetype'); } @font-face { font-family: IRANSans; font-style: normal; font-weight: 200; src: url('../fonts/iransans/eot/IRANSansWeb_UltraLight.eot'); src: url('../fonts/iransans/eot/IRANSansWeb_UltraLight.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/iransans/woff2/IRANSansWeb_UltraLight.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/iransans/woff/IRANSansWeb_UltraLight.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/iransans/ttf/IRANSansWeb_UltraLight.ttf') format('truetype'); } @font-face { font-family: IRANSans; font-style: normal; font-weight: normal; src: url('../fonts/iransans/eot/IRANSansWeb.eot'); src: url('../fonts/iransans/eot/IRANSansWeb.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/iransans/woff2/IRANSansWeb.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/iransans/woff/IRANSansWeb.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/iransans/ttf/IRANSansWeb.ttf') format('truetype'); } body { font-family: IRANSans; }
0.289773
0.039527
.cardholder{ position: relative; width: 500px; min-width: 350px; display: block; top: -3000px; text-align: center; margin: 0 auto; box-shadow: 2px 2px 11px 1px rgba(0, 0, 0, 0.39); } .cover-container{ position: absolute; top: 0; width: 100%; height: 260px; z-index: 12; } .cover{ width: 100%; height: 100%; } .cover .front{ border: 5px solid #6c006c; box-shadow: rgba(255, 255, 255, 0.117647) 4px 4px 18px 5px inset, rgba(0, 0, 0, 0.168627) -4px -4px 18px 5px inset; cursor: pointer; } .cover-front-texture{ background: url(../img/patterns/symphony.png); } .cover-back-texture{ box-shadow: rgba(0, 0, 0, 0.380392) 3px 0px 18px 3px inset; background-color: rgb(181, 100, 191); background-image: url(../img/patterns/brushed-alum.png); } .cover .back{ border: 5px solid #6c006c; width: 100%; height: 100%; cursor: pointer; } .cover .back p{ position: relative; top: 100px; color: rgba(107, 16, 107, 0.62); font-weight: bold; text-shadow: 1px 1px 3px rgba(16, 16, 16, 0.25); font-family: 'Roboto', sans-serif; text-transform: lowercase; font-size: 14px; display: none; } .cover h3.openme{ position: absolute; bottom: 0; text-align: center; width: 100%; color: #FFBB00; font-weight: bold; font-size: 50px; text-shadow: 0px 2px 0px #A67A00; } .cover h3.openme:hover{ text-shadow: 0px 2px 0px #c59300; cursor: pointer; } .case{ position: relative; border: 5px solid #6c006c; //background: url(../img/patterns/brushed_alu3.png); width: 100%; height: 300px; z-index: 10; } .case .embossed{ position: relative; text-transform: uppercase; top: 40%; font-weight: bold; color: rgba(108, 0, 108, 0.16); font-size: 40px; text-shadow: rgba(255, 255, 255, 0.13) 3px 2px 3px; cursor: default; } .bottom{ background-color: #7c1f7c; border: 5px solid #6c006c; position: absolute; bottom: 0; width: 100%; height: 80px; z-index: 11; box-shadow: rgba(255, 255, 255, 0.117647) 4px 4px 18px 5px inset, rgba(0, 0, 0, 0.168627) -4px -4px 18px 5px inset; } .cardtext{ font-family: 'Roboto', sans-serif; padding: 0 20px; } /*Cards themselves*/ .cards{ position: absolute; top: 10px; width: 100%; } .cards .card{ box-shadow: 1px 1px 3px -1px rgba(0,0,0,0.75); overflow: hidden; position: absolute; width: 400px; height: 250px; background: white; border: 2px solid #6c006c; z-index: 10; margin-left:-200px; left:50%; background: url('../img/patterns/handmadepaper.png'); cursor: move; } .card.card-0{ } .card.card-0 h5{ font-family: 'Droid Sans', sans-serif; color: #6C006C; font-size: 16px; font-weight: bold; margin-bottom: 5px; } .skill-label{ position: relative; display: inline-block; float: left; width: 50px; height: 50px; margin: 10px; } .skill-label img{ width: 50px; height: auto; position: absolute; top: 0; left: 0; transition: all .2s ease-in-out; } .skill-label img:hover { transform: scale(1.2); } .card.card-1{ top: 5px; } .card.card-1 h3{ margin-bottom: 15px; margin-top: 30px; } .card.card-1 p{ font-size: 15px; } .card.card-2{ top: 10px; } .card.card-2 .photo{ max-width: 100%; top: 20px; position: absolute; display: block; } .card.card-2 .contacts{ margin-top: 40px; text-align: left; margin-left: 20px; } .card.card-2 h2{ text-transform: uppercase; color: #6C006C; font-weight: bold; font-size: 25px; text-align: left; margin-left: 20px; letter-spacing: -1px; text-shadow: none; } .card.card-2 h4{ text-align: left; margin-left: 20px; margin-top: -4px; letter-spacing: -1px; color: #6C006C; } .card.card-2 .contacts p{ font-size: 15px; }
css/cards.css
.cardholder{ position: relative; width: 500px; min-width: 350px; display: block; top: -3000px; text-align: center; margin: 0 auto; box-shadow: 2px 2px 11px 1px rgba(0, 0, 0, 0.39); } .cover-container{ position: absolute; top: 0; width: 100%; height: 260px; z-index: 12; } .cover{ width: 100%; height: 100%; } .cover .front{ border: 5px solid #6c006c; box-shadow: rgba(255, 255, 255, 0.117647) 4px 4px 18px 5px inset, rgba(0, 0, 0, 0.168627) -4px -4px 18px 5px inset; cursor: pointer; } .cover-front-texture{ background: url(../img/patterns/symphony.png); } .cover-back-texture{ box-shadow: rgba(0, 0, 0, 0.380392) 3px 0px 18px 3px inset; background-color: rgb(181, 100, 191); background-image: url(../img/patterns/brushed-alum.png); } .cover .back{ border: 5px solid #6c006c; width: 100%; height: 100%; cursor: pointer; } .cover .back p{ position: relative; top: 100px; color: rgba(107, 16, 107, 0.62); font-weight: bold; text-shadow: 1px 1px 3px rgba(16, 16, 16, 0.25); font-family: 'Roboto', sans-serif; text-transform: lowercase; font-size: 14px; display: none; } .cover h3.openme{ position: absolute; bottom: 0; text-align: center; width: 100%; color: #FFBB00; font-weight: bold; font-size: 50px; text-shadow: 0px 2px 0px #A67A00; } .cover h3.openme:hover{ text-shadow: 0px 2px 0px #c59300; cursor: pointer; } .case{ position: relative; border: 5px solid #6c006c; //background: url(../img/patterns/brushed_alu3.png); width: 100%; height: 300px; z-index: 10; } .case .embossed{ position: relative; text-transform: uppercase; top: 40%; font-weight: bold; color: rgba(108, 0, 108, 0.16); font-size: 40px; text-shadow: rgba(255, 255, 255, 0.13) 3px 2px 3px; cursor: default; } .bottom{ background-color: #7c1f7c; border: 5px solid #6c006c; position: absolute; bottom: 0; width: 100%; height: 80px; z-index: 11; box-shadow: rgba(255, 255, 255, 0.117647) 4px 4px 18px 5px inset, rgba(0, 0, 0, 0.168627) -4px -4px 18px 5px inset; } .cardtext{ font-family: 'Roboto', sans-serif; padding: 0 20px; } /*Cards themselves*/ .cards{ position: absolute; top: 10px; width: 100%; } .cards .card{ box-shadow: 1px 1px 3px -1px rgba(0,0,0,0.75); overflow: hidden; position: absolute; width: 400px; height: 250px; background: white; border: 2px solid #6c006c; z-index: 10; margin-left:-200px; left:50%; background: url('../img/patterns/handmadepaper.png'); cursor: move; } .card.card-0{ } .card.card-0 h5{ font-family: 'Droid Sans', sans-serif; color: #6C006C; font-size: 16px; font-weight: bold; margin-bottom: 5px; } .skill-label{ position: relative; display: inline-block; float: left; width: 50px; height: 50px; margin: 10px; } .skill-label img{ width: 50px; height: auto; position: absolute; top: 0; left: 0; transition: all .2s ease-in-out; } .skill-label img:hover { transform: scale(1.2); } .card.card-1{ top: 5px; } .card.card-1 h3{ margin-bottom: 15px; margin-top: 30px; } .card.card-1 p{ font-size: 15px; } .card.card-2{ top: 10px; } .card.card-2 .photo{ max-width: 100%; top: 20px; position: absolute; display: block; } .card.card-2 .contacts{ margin-top: 40px; text-align: left; margin-left: 20px; } .card.card-2 h2{ text-transform: uppercase; color: #6C006C; font-weight: bold; font-size: 25px; text-align: left; margin-left: 20px; letter-spacing: -1px; text-shadow: none; } .card.card-2 h4{ text-align: left; margin-left: 20px; margin-top: -4px; letter-spacing: -1px; color: #6C006C; } .card.card-2 .contacts p{ font-size: 15px; }
0.445047
0.085824
body { font-family: '<NAME>', serif; } #wrapper { position: relative; overflow-x: hidden; margin: 0px auto; } #wrapper1 { position: relative; overflow-x: hidden; margin: 0px auto; max-width: 800px; height: 600px; } .A { position: relative; background-color: green; width: 70%; height: 50%; border: white 10px solid; } .textA { position: absolute; top: 45%; right: 50%; color: white; font-size: 28px; } .letterA { position: sticky; top: 50px; } .B { position: absolute; background-color: rgb(236, 143, 106); top: 0; right: 0; width: 30%; height: 100%; border: white 10px solid; } .textB { position: absolute; top: 46%; right: 50%; color: white; font-size: 28px; } .C { position: fixed; background-color: white; z-index: 1; width: 100px; height: 100px; top: 38%; left: 36.5%; } .textC { position: absolute; top: 30%; right: 40%; color: rgb(167, 106, 236); font-size: 28px; } .C1 { position: absolute; background-color: rgb(167, 106, 236); bottom: 0; width: 70%; height: 50%; border: white 10px solid; } .textC1 { position: absolute; top: 45%; right: 50%; color: white; font-size: 28px; } #wrapper2 { position: relative; overflow-x: hidden; margin: 0px auto; max-width: 1200px; height: 300px; } .A1 { position: absolute; top: 0; left: 0; background-color: yellow; width: 800px; height: 200px; border: black 1px solid; z-index: 4; } .text1 { position: absolute; top: 30%; right: 50%; color: black; font-size: 28px; } .A2 { position: absolute; top: 0; right: 0; background-color: blue; width: 800px; height: 200px; border: black 1px solid; z-index: 2; } .text2 { position: absolute; top: 30%; right: 47%; color: black; font-size: 28px; } .A3 { position: absolute; bottom: 0; left: 0; background-color: green; width: 800px; height: 200px; border: black 1px solid; z-index: 3; } .text3 { position: absolute; top: 50%; right: 50%; color: black; font-size: 28px; } .A4 { position: absolute; background-color: red; bottom: 0; right: 0; width: 800px; height: 200px; border: black 1px solid; z-index: 3; } .text4 { position: absolute; top: 50%; right: 47%; color: black; font-size: 28px; }
Task7/css/styles.css
body { font-family: '<NAME>', serif; } #wrapper { position: relative; overflow-x: hidden; margin: 0px auto; } #wrapper1 { position: relative; overflow-x: hidden; margin: 0px auto; max-width: 800px; height: 600px; } .A { position: relative; background-color: green; width: 70%; height: 50%; border: white 10px solid; } .textA { position: absolute; top: 45%; right: 50%; color: white; font-size: 28px; } .letterA { position: sticky; top: 50px; } .B { position: absolute; background-color: rgb(236, 143, 106); top: 0; right: 0; width: 30%; height: 100%; border: white 10px solid; } .textB { position: absolute; top: 46%; right: 50%; color: white; font-size: 28px; } .C { position: fixed; background-color: white; z-index: 1; width: 100px; height: 100px; top: 38%; left: 36.5%; } .textC { position: absolute; top: 30%; right: 40%; color: rgb(167, 106, 236); font-size: 28px; } .C1 { position: absolute; background-color: rgb(167, 106, 236); bottom: 0; width: 70%; height: 50%; border: white 10px solid; } .textC1 { position: absolute; top: 45%; right: 50%; color: white; font-size: 28px; } #wrapper2 { position: relative; overflow-x: hidden; margin: 0px auto; max-width: 1200px; height: 300px; } .A1 { position: absolute; top: 0; left: 0; background-color: yellow; width: 800px; height: 200px; border: black 1px solid; z-index: 4; } .text1 { position: absolute; top: 30%; right: 50%; color: black; font-size: 28px; } .A2 { position: absolute; top: 0; right: 0; background-color: blue; width: 800px; height: 200px; border: black 1px solid; z-index: 2; } .text2 { position: absolute; top: 30%; right: 47%; color: black; font-size: 28px; } .A3 { position: absolute; bottom: 0; left: 0; background-color: green; width: 800px; height: 200px; border: black 1px solid; z-index: 3; } .text3 { position: absolute; top: 50%; right: 50%; color: black; font-size: 28px; } .A4 { position: absolute; background-color: red; bottom: 0; right: 0; width: 800px; height: 200px; border: black 1px solid; z-index: 3; } .text4 { position: absolute; top: 50%; right: 47%; color: black; font-size: 28px; }
0.714728
0.118691
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap'); * { font-family: 'Montserrat', sans-serif; box-sizing: border-box; margin: 0; padding: 0; scroll-behavior: smooth; } li, a, button { font-weight: 500; font-size: 16px; color: var(--text-primary); text-decoration: none; } .logo { cursor: pointer; max-height: 50px; margin: 10px; margin-right: auto; background-color: transparent; } .site_name { user-select: none; /* Standard */ text-align: center; font-weight: 500; font-size: 25px; color: var(--text-primary); } .main { min-height: 68vh; } .main_inner { margin: auto; margin-top: 15vh; } .site_description { user-select: none; /* Standard */ margin-top: 10px; text-align: center; font-weight: 500; font-size: 16px; color: var(--text-primary); } .nav-links a:hover { color: var(--button-color-hover) !important; } button { margin-right: 10px; padding: 9px 25px; background-color: var(--button-color); border: none; border-radius: 50px; cursor: pointer; transition: all 1s ease 0s; } .fade-in { opacity: 1; animation-name: fadeInOpacity; animation-iteration-count: 1; animation-timing-function: ease-in; animation-duration: 2s; } button:hover { background-color: var(--button-color-hover); } body { background-color: var(--background-color); /* background-image: url('../img/bg.svg'); background-size: 100vw; background-repeat: no-repeat; */ } a { -webkit-tap-highlight-color: transparent; -webkit-touch-callout: none; /* iOS Safari */ -webkit-user-select: none; /* Safari */ -khtml-user-select: none; /* Konqueror HTML */ -moz-user-select: none; /* Old versions of Firefox */ -ms-user-select: none; /* Internet Explorer/Edge */ user-select: none; } body::-webkit-scrollbar { display: none; } @keyframes fadeInOpacity { 0% { opacity: 0; } 100% { opacity: 1; } } .mainBody { border-top: 1px solid darkgray; margin: 0; min-height: 95%; width: 101%; } .purchase { background-color: rgba(0, 0, 0, 0.1); margin-bottom: 50px; max-width: 500px; margin-top: 20px; border: 1px solid var(--text-tertiary); border-radius: 0.2rem; } fieldset { user-select: none; /* Standard */ } .purchase_field { margin-top: 20px; max-width: 80%; margin-left: auto; margin-right: auto; margin-bottom: 20px; border-bottom: 1px solid var(--text-tertiary); padding-bottom: 5px; } .double_purchase { max-width: 88%; margin-left: auto; margin-right: auto; } .double_purchase .purchase_field { max-width: 100%; padding-left: 0px; } .purchase_label { padding-left: 2px; color: var(--text-secondary); user-select: none; /* Standard */ } .enter_site_btn { margin-left: auto; margin-right: auto; width: 225px; margin-bottom: 20px; } legend { text-align: center; color: var(--text-primary); padding-left: 10px; padding-right: 10px; } input[type='text'], input[type='email'] { background-color: transparent; margin-top: 5px; font-size: 16px; color: var(--text-primary); height: 17px; border: 0; width: calc(100% - 2px); margin-left: 1px; border-spacing: 2px; -webkit-transition: box-shadow 0.3s; transition: box-shadow 0.3s; outline: none; } .purchase_field:focus-within { transition: border-color 1s; border-bottom: 1px solid var(--text-primary); } /* select box */ .select_bundle { max-width: 75%; margin-left: auto; margin-right: auto; } /* Reset Select */ select { -webkit-appearance: none; -moz-appearance: none; -ms-appearance: none; appearance: none; outline: 0; box-shadow: none; border: 0 !important; background: transparent; background-image: none; } /* Remove IE arrow */ select::-ms-expand { display: none; } /* Custom Select */ .select { margin-top: 5px; position: relative; display: flex; width: 20em; height: 3em; line-height: 3; background: transparent; border: 1px solid var(--text-tertiary); overflow: hidden; border-radius: 0.25em; } select { flex: 1; padding: 0 0.5em; color: var(--text-primary); cursor: pointer; } /* Arrow */ .select::after { content: '\25BC'; position: absolute; top: 0; right: 0; padding: 0 1em; cursor: pointer; pointer-events: none; -webkit-transition: 0.25s all ease; -o-transition: 0.25s all ease; transition: 0.25s all ease; color: var(--text-secondary); } /* Transition */ .select:hover::after { color: var(--text-primary); } .select:hover { border: 1px solid var(--text-primary); transition: border-color 1s; } /* select box end */ .card { margin-top: 20px; max-width: 80%; margin-left: auto; margin-right: auto; margin-bottom: 20px; } .StripeElement { border: 1px solid var(--text-tertiary); border-radius: 0.2rem; color: #fff !important; } .StripeElement--focus { border: 1px solid var(--text-primary); transition: border-color 1s; } .StripeElement--invalid { border: 1px solid rgba(255, 0, 0, 0.5); } #card-element { padding: 10px; } .purchase_btn { border-radius: 3px !important; width: 200px; margin: 0; margin-left: auto; margin-right: auto; } .tos_text { margin: 0; width: 100%; font-size: 10px; margin-bottom: 20px; margin-top: 10px; } .tos_text p { font-size: 10px; margin-left: auto; margin-right: auto; text-align: center !important; color: var(--text-secondary); } .bold { font-size: 10px; font-weight: 700; color: var(--text-primary); } .soldout { text-align: center; color: var(--text-primary) !important; padding: 30px; } .features { color: white; text-align: center; margin-bottom: 100px; } .features_header { margin-bottom: 20px; } .feature { min-width: 300px !important; height: 200px; background-color: var(--box-color); margin-right: 10px; margin-left: 10px; border-radius: 2px; -webkit-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.1); } .feature p { margin-top: 15px; background-color: transparent; } .feature_body { color: var(--text-primary); } footer { padding-left: 20px; } footer p { font-size: 15px !important; color: var(--text-secondary); } footer .bold { font-size: 15px; font-weight: 700; color: var(--text-primary); } .feature_row { margin-bottom: 20px; } .faq_row { margin-bottom: 20px; -webkit-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.1); } .faq_row .col { width: 80%; height: 180px; background-color: var(--box-color); } .faq { color: white; text-align: left; margin-bottom: 100px; } .faq_header { margin-bottom: 20px; text-align: center; } .faq p { padding: 20px; margin-top: 15px; background-color: transparent; } .faq_body { padding-top: 0px !important; color: var(--text-primary); } .contact { color: white; text-align: center; } .contact_header { margin-bottom: 20px; } .contacts i { display: inline-block; font-size: 35px; padding-left: 10px; padding-right: 10px; color: var(--text-primary); } .proPic { max-width: 75px; border-radius: 50%; border: 2px solid var(--text-primary); } .profile { background-color: rgba(0, 0, 0, 0.1); margin-bottom: 50px; max-width: 500px; margin-top: 20px; border: 1px solid var(--text-tertiary); border-radius: 0.2rem; } .profile legend { text-align: center; color: var(--text-primary); padding-left: 0px; padding-right: 0px; } .profile_inner { margin-top: 10px; color: var(--text-secondary); } .welcome_message { text-align: center; color: var(--text-primary); } .status { margin-top: 5px; margin-bottom: 20px; margin-left: auto; margin-right: auto; justify-content: center; align-items: center; display: flex; pointer-events: none; cursor: pointer; border: 1px solid; background-color: transparent; border-radius: 2px; font-size: 8px; padding: 2px 5px; } .green { color: green; border-color: green; } .orange { color: orange; border-color: orange; } .red { color: red; border-color: red; } .profile_addition { margin-bottom: 10px; margin-top: 5px; border: 1px solid var(--text-tertiary); border-radius: 0.2rem; padding: 5px 10px; } .profile_addition legend { font-size: 12px; color: var(--text-primary); } .profile_addition p { text-align: center; font-size: 12px; user-select: text; } .activate_btn { margin-left: 5px; margin-right: 5px; background-color: var(--button-color); width: 175px; } .deactivate_btn { margin-left: 5px; margin-right: 5px; background-color: var(--anti-button-color) !important; width: 175px; } .deactivate_btn:hover { background-color: var(--anti-button-color-hover) !important; } .activation { text-align: center; margin: 15px 0px; } .unlink { text-align: center; margin: 15px 0px; } .unlink_btn { border-radius: 3px !important; width: 225px; margin: 0; margin-left: auto; margin-right: auto; } .card_container { background-color: rgba(0, 0, 0, 0.1); margin-bottom: 50px; max-width: 500px; margin-top: 20px; border: 1px solid var(--text-tertiary); border-radius: 0.2rem; } .update_billing_btn button { margin-left: auto; margin-right: auto; width: 225px; margin-bottom: 20px; } .button_m_bottom { margin-bottom: 15px; } .flash-container .flash-message.flash-danger .flash-progress, .flash-container .flash-message.flash-error .flash-progress { background-color: var(--text-secondary) !important; } .flash-container .flash-message.flash-danger:before, .flash-container .flash-message.flash-error:before { background-color: var(--anti-button-color) !important; } .flash-container .flash-message.flash-danger:after, .flash-container .flash-message.flash-error:after { color: var(--text-secondary) !important; content: '\F06A'; } .flash-container .flash-message.flash-error { background-color: var(--anti-button-color-hover) !important; color: var(--text-primary) !important; } .flash-container .flash-message.flash-success .flash-progress, .flash-container .flash-message.flash-success .flash-progress { background-color: var(--text-secondary) !important; } .flash-container .flash-message.flash-success:before, .flash-container .flash-message.flash-success:before { background-color: var(--button-color) !important; } .flash-container .flash-message.flash-success:after, .flash-container .flash-message.flash-success:after { color: var(--text-secondary) !important; content: '\F06A'; } .flash-container .flash-message.flash-success { background-color: var(--button-color-hover) !important; color: var(--text-primary) !important; } html, body { overflow-x: hidden !important; } * { box-sizing: border-box; } body { margin: 0px; } .nav { height: 70px; width: 100%; position: relative; background-color: var(--header-color) !important; } .nav > .nav-header { display: inline; } .nav > .nav-header > .nav-title { display: inline-block; font-size: 22px; color: #fff; padding: 10px 10px 10px 10px; } .nav > .nav-btn { display: none; } .nav > .nav-links { display: inline; float: right; font-size: 18px; } .nav > .nav-links > a { display: inline-block; padding: 18px 10px 13px 10px; text-decoration: none; color: #efefef; } .nav > #nav-check { display: none; } .login { margin: none; position: relative; } button { outline: none; border: none; } @media (max-width: 700px) { .nav > .nav-btn { display: inline-block; position: absolute; right: 0px; top: 0px; } .nav > .nav-btn > label { display: inline-block; width: 70px; height: 70px; padding: 25px; } .nav-btn:hover span { border-top: 2px solid var(--text-primary) !important; } .nav-btn span { transition: border-top 0.5s ease; } .nav > .nav-btn > label > span { display: block; width: 25px; height: 10px; border-top: 2px solid var(--text-tertiary); } .nav > .nav-links { position: absolute; display: block; width: 100%; background-color: var(--header-color) !important; height: 0px; overflow-y: hidden; top: 50px; left: 0px; } .nav > .nav-links > a { display: block; width: 100%; } .nav > #nav-check:not(:checked) ~ .nav-links { height: 0px; transform: scaleY(0); } .nav > #nav-check ~ .nav-links { margin-top: 20px !important; } .nav-links { transform-origin: top; transition: transform 0.26s ease-in-out; } .nav > #nav-check:checked ~ .nav-links { height: auto; overflow-y: auto; transform: scaleY(1); } .feature { margin-bottom: 20px !important; } .feature_row { margin-bottom: 0px !important; } footer { text-align: center; padding-top: 20px; padding-left: 0px; } fieldset { margin-left: 15px; margin-right: 15px; } .container { width: 85% !important; padding: 0 !important; } .activate_btn { margin-bottom: 15px; } .activate_btn, .deactivate_btn { width: 225px !important; } .profile_addition p { padding: 10; } }
testing/assets/css/main.css
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap'); * { font-family: 'Montserrat', sans-serif; box-sizing: border-box; margin: 0; padding: 0; scroll-behavior: smooth; } li, a, button { font-weight: 500; font-size: 16px; color: var(--text-primary); text-decoration: none; } .logo { cursor: pointer; max-height: 50px; margin: 10px; margin-right: auto; background-color: transparent; } .site_name { user-select: none; /* Standard */ text-align: center; font-weight: 500; font-size: 25px; color: var(--text-primary); } .main { min-height: 68vh; } .main_inner { margin: auto; margin-top: 15vh; } .site_description { user-select: none; /* Standard */ margin-top: 10px; text-align: center; font-weight: 500; font-size: 16px; color: var(--text-primary); } .nav-links a:hover { color: var(--button-color-hover) !important; } button { margin-right: 10px; padding: 9px 25px; background-color: var(--button-color); border: none; border-radius: 50px; cursor: pointer; transition: all 1s ease 0s; } .fade-in { opacity: 1; animation-name: fadeInOpacity; animation-iteration-count: 1; animation-timing-function: ease-in; animation-duration: 2s; } button:hover { background-color: var(--button-color-hover); } body { background-color: var(--background-color); /* background-image: url('../img/bg.svg'); background-size: 100vw; background-repeat: no-repeat; */ } a { -webkit-tap-highlight-color: transparent; -webkit-touch-callout: none; /* iOS Safari */ -webkit-user-select: none; /* Safari */ -khtml-user-select: none; /* Konqueror HTML */ -moz-user-select: none; /* Old versions of Firefox */ -ms-user-select: none; /* Internet Explorer/Edge */ user-select: none; } body::-webkit-scrollbar { display: none; } @keyframes fadeInOpacity { 0% { opacity: 0; } 100% { opacity: 1; } } .mainBody { border-top: 1px solid darkgray; margin: 0; min-height: 95%; width: 101%; } .purchase { background-color: rgba(0, 0, 0, 0.1); margin-bottom: 50px; max-width: 500px; margin-top: 20px; border: 1px solid var(--text-tertiary); border-radius: 0.2rem; } fieldset { user-select: none; /* Standard */ } .purchase_field { margin-top: 20px; max-width: 80%; margin-left: auto; margin-right: auto; margin-bottom: 20px; border-bottom: 1px solid var(--text-tertiary); padding-bottom: 5px; } .double_purchase { max-width: 88%; margin-left: auto; margin-right: auto; } .double_purchase .purchase_field { max-width: 100%; padding-left: 0px; } .purchase_label { padding-left: 2px; color: var(--text-secondary); user-select: none; /* Standard */ } .enter_site_btn { margin-left: auto; margin-right: auto; width: 225px; margin-bottom: 20px; } legend { text-align: center; color: var(--text-primary); padding-left: 10px; padding-right: 10px; } input[type='text'], input[type='email'] { background-color: transparent; margin-top: 5px; font-size: 16px; color: var(--text-primary); height: 17px; border: 0; width: calc(100% - 2px); margin-left: 1px; border-spacing: 2px; -webkit-transition: box-shadow 0.3s; transition: box-shadow 0.3s; outline: none; } .purchase_field:focus-within { transition: border-color 1s; border-bottom: 1px solid var(--text-primary); } /* select box */ .select_bundle { max-width: 75%; margin-left: auto; margin-right: auto; } /* Reset Select */ select { -webkit-appearance: none; -moz-appearance: none; -ms-appearance: none; appearance: none; outline: 0; box-shadow: none; border: 0 !important; background: transparent; background-image: none; } /* Remove IE arrow */ select::-ms-expand { display: none; } /* Custom Select */ .select { margin-top: 5px; position: relative; display: flex; width: 20em; height: 3em; line-height: 3; background: transparent; border: 1px solid var(--text-tertiary); overflow: hidden; border-radius: 0.25em; } select { flex: 1; padding: 0 0.5em; color: var(--text-primary); cursor: pointer; } /* Arrow */ .select::after { content: '\25BC'; position: absolute; top: 0; right: 0; padding: 0 1em; cursor: pointer; pointer-events: none; -webkit-transition: 0.25s all ease; -o-transition: 0.25s all ease; transition: 0.25s all ease; color: var(--text-secondary); } /* Transition */ .select:hover::after { color: var(--text-primary); } .select:hover { border: 1px solid var(--text-primary); transition: border-color 1s; } /* select box end */ .card { margin-top: 20px; max-width: 80%; margin-left: auto; margin-right: auto; margin-bottom: 20px; } .StripeElement { border: 1px solid var(--text-tertiary); border-radius: 0.2rem; color: #fff !important; } .StripeElement--focus { border: 1px solid var(--text-primary); transition: border-color 1s; } .StripeElement--invalid { border: 1px solid rgba(255, 0, 0, 0.5); } #card-element { padding: 10px; } .purchase_btn { border-radius: 3px !important; width: 200px; margin: 0; margin-left: auto; margin-right: auto; } .tos_text { margin: 0; width: 100%; font-size: 10px; margin-bottom: 20px; margin-top: 10px; } .tos_text p { font-size: 10px; margin-left: auto; margin-right: auto; text-align: center !important; color: var(--text-secondary); } .bold { font-size: 10px; font-weight: 700; color: var(--text-primary); } .soldout { text-align: center; color: var(--text-primary) !important; padding: 30px; } .features { color: white; text-align: center; margin-bottom: 100px; } .features_header { margin-bottom: 20px; } .feature { min-width: 300px !important; height: 200px; background-color: var(--box-color); margin-right: 10px; margin-left: 10px; border-radius: 2px; -webkit-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.1); } .feature p { margin-top: 15px; background-color: transparent; } .feature_body { color: var(--text-primary); } footer { padding-left: 20px; } footer p { font-size: 15px !important; color: var(--text-secondary); } footer .bold { font-size: 15px; font-weight: 700; color: var(--text-primary); } .feature_row { margin-bottom: 20px; } .faq_row { margin-bottom: 20px; -webkit-box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.1); } .faq_row .col { width: 80%; height: 180px; background-color: var(--box-color); } .faq { color: white; text-align: left; margin-bottom: 100px; } .faq_header { margin-bottom: 20px; text-align: center; } .faq p { padding: 20px; margin-top: 15px; background-color: transparent; } .faq_body { padding-top: 0px !important; color: var(--text-primary); } .contact { color: white; text-align: center; } .contact_header { margin-bottom: 20px; } .contacts i { display: inline-block; font-size: 35px; padding-left: 10px; padding-right: 10px; color: var(--text-primary); } .proPic { max-width: 75px; border-radius: 50%; border: 2px solid var(--text-primary); } .profile { background-color: rgba(0, 0, 0, 0.1); margin-bottom: 50px; max-width: 500px; margin-top: 20px; border: 1px solid var(--text-tertiary); border-radius: 0.2rem; } .profile legend { text-align: center; color: var(--text-primary); padding-left: 0px; padding-right: 0px; } .profile_inner { margin-top: 10px; color: var(--text-secondary); } .welcome_message { text-align: center; color: var(--text-primary); } .status { margin-top: 5px; margin-bottom: 20px; margin-left: auto; margin-right: auto; justify-content: center; align-items: center; display: flex; pointer-events: none; cursor: pointer; border: 1px solid; background-color: transparent; border-radius: 2px; font-size: 8px; padding: 2px 5px; } .green { color: green; border-color: green; } .orange { color: orange; border-color: orange; } .red { color: red; border-color: red; } .profile_addition { margin-bottom: 10px; margin-top: 5px; border: 1px solid var(--text-tertiary); border-radius: 0.2rem; padding: 5px 10px; } .profile_addition legend { font-size: 12px; color: var(--text-primary); } .profile_addition p { text-align: center; font-size: 12px; user-select: text; } .activate_btn { margin-left: 5px; margin-right: 5px; background-color: var(--button-color); width: 175px; } .deactivate_btn { margin-left: 5px; margin-right: 5px; background-color: var(--anti-button-color) !important; width: 175px; } .deactivate_btn:hover { background-color: var(--anti-button-color-hover) !important; } .activation { text-align: center; margin: 15px 0px; } .unlink { text-align: center; margin: 15px 0px; } .unlink_btn { border-radius: 3px !important; width: 225px; margin: 0; margin-left: auto; margin-right: auto; } .card_container { background-color: rgba(0, 0, 0, 0.1); margin-bottom: 50px; max-width: 500px; margin-top: 20px; border: 1px solid var(--text-tertiary); border-radius: 0.2rem; } .update_billing_btn button { margin-left: auto; margin-right: auto; width: 225px; margin-bottom: 20px; } .button_m_bottom { margin-bottom: 15px; } .flash-container .flash-message.flash-danger .flash-progress, .flash-container .flash-message.flash-error .flash-progress { background-color: var(--text-secondary) !important; } .flash-container .flash-message.flash-danger:before, .flash-container .flash-message.flash-error:before { background-color: var(--anti-button-color) !important; } .flash-container .flash-message.flash-danger:after, .flash-container .flash-message.flash-error:after { color: var(--text-secondary) !important; content: '\F06A'; } .flash-container .flash-message.flash-error { background-color: var(--anti-button-color-hover) !important; color: var(--text-primary) !important; } .flash-container .flash-message.flash-success .flash-progress, .flash-container .flash-message.flash-success .flash-progress { background-color: var(--text-secondary) !important; } .flash-container .flash-message.flash-success:before, .flash-container .flash-message.flash-success:before { background-color: var(--button-color) !important; } .flash-container .flash-message.flash-success:after, .flash-container .flash-message.flash-success:after { color: var(--text-secondary) !important; content: '\F06A'; } .flash-container .flash-message.flash-success { background-color: var(--button-color-hover) !important; color: var(--text-primary) !important; } html, body { overflow-x: hidden !important; } * { box-sizing: border-box; } body { margin: 0px; } .nav { height: 70px; width: 100%; position: relative; background-color: var(--header-color) !important; } .nav > .nav-header { display: inline; } .nav > .nav-header > .nav-title { display: inline-block; font-size: 22px; color: #fff; padding: 10px 10px 10px 10px; } .nav > .nav-btn { display: none; } .nav > .nav-links { display: inline; float: right; font-size: 18px; } .nav > .nav-links > a { display: inline-block; padding: 18px 10px 13px 10px; text-decoration: none; color: #efefef; } .nav > #nav-check { display: none; } .login { margin: none; position: relative; } button { outline: none; border: none; } @media (max-width: 700px) { .nav > .nav-btn { display: inline-block; position: absolute; right: 0px; top: 0px; } .nav > .nav-btn > label { display: inline-block; width: 70px; height: 70px; padding: 25px; } .nav-btn:hover span { border-top: 2px solid var(--text-primary) !important; } .nav-btn span { transition: border-top 0.5s ease; } .nav > .nav-btn > label > span { display: block; width: 25px; height: 10px; border-top: 2px solid var(--text-tertiary); } .nav > .nav-links { position: absolute; display: block; width: 100%; background-color: var(--header-color) !important; height: 0px; overflow-y: hidden; top: 50px; left: 0px; } .nav > .nav-links > a { display: block; width: 100%; } .nav > #nav-check:not(:checked) ~ .nav-links { height: 0px; transform: scaleY(0); } .nav > #nav-check ~ .nav-links { margin-top: 20px !important; } .nav-links { transform-origin: top; transition: transform 0.26s ease-in-out; } .nav > #nav-check:checked ~ .nav-links { height: auto; overflow-y: auto; transform: scaleY(1); } .feature { margin-bottom: 20px !important; } .feature_row { margin-bottom: 0px !important; } footer { text-align: center; padding-top: 20px; padding-left: 0px; } fieldset { margin-left: 15px; margin-right: 15px; } .container { width: 85% !important; padding: 0 !important; } .activate_btn { margin-bottom: 15px; } .activate_btn, .deactivate_btn { width: 225px !important; } .profile_addition p { padding: 10; } }
0.385953
0.061031
* { margin: 0; padding: 0; } html, body { height: 100%; min-height: 100%; } body { font-size: 14px; -webkit-user-select: none; /* Chrome all / Safari all */ -moz-user-select: none; /* Firefox all */ -ms-user-select: none; /* IE 10+ */ /* No support for these yet, use at own risk */ -o-user-select: none; user-select: none; } .area { width: 50%; position: relative; } .area_playground { min-height: 100%; text-align: center; font-size: 0; } .area_console { position: fixed; top: 0; right: 0; bottom: 0; background: #CCC; } .btn { padding: 4px 6px; } .spot { display: inline-block; position: relative; background: #ddd; margin: 20px 20px 0; padding: 20px; } .spot_alt { background:#EEE; } .spot-inner { position: relative; width: 160px; height: 160px; background: #FFF; border: 1px solid #333; display: block; } .spot-back { position: absolute; top: 50px; left: 50px; } .inactive { opacity: 0.5; } .inside { background: #aaa; } .spot-inner.inside { background: #CCC; } .active { background: green !important; } .console { width: 100%; font-family: monospace; border-spacing: 0; } .console-wrap { padding: 10px; } .console td { vertical-align: top; } .console-col { width: 50%; float: left; } .console-log { overflow: auto; } .console-log span { padding: 0 4px; display: block; white-space: nowrap; } .console-points, .console-options { padding: 10px; margin: 10px; border: 1px solid #bbb; } .hide-simulated .simulated { display: none; } .hide-non-simulated .non-simulated { display: none; } .hide-pointer .pointer { display: none; } .controls { position: fixed; bottom: 0; left: 0; right: 0; background: red; } .simulated { opacity: 0.5; } .pointer { font-weight: bold; } .point { padding: 0 4px; list-style: none; } @media screen and (max-width: 800px) { .console-col { width: 100%; float: none; } .spot-inner { width: 110px; height: 110px; } body { font-size: 12px; } } @media screen and (max-width: 500px) { .spot-inner { width: 80px; height: 80px; } body { font-size: 8px; } }
examples/assets/styles/style.css
* { margin: 0; padding: 0; } html, body { height: 100%; min-height: 100%; } body { font-size: 14px; -webkit-user-select: none; /* Chrome all / Safari all */ -moz-user-select: none; /* Firefox all */ -ms-user-select: none; /* IE 10+ */ /* No support for these yet, use at own risk */ -o-user-select: none; user-select: none; } .area { width: 50%; position: relative; } .area_playground { min-height: 100%; text-align: center; font-size: 0; } .area_console { position: fixed; top: 0; right: 0; bottom: 0; background: #CCC; } .btn { padding: 4px 6px; } .spot { display: inline-block; position: relative; background: #ddd; margin: 20px 20px 0; padding: 20px; } .spot_alt { background:#EEE; } .spot-inner { position: relative; width: 160px; height: 160px; background: #FFF; border: 1px solid #333; display: block; } .spot-back { position: absolute; top: 50px; left: 50px; } .inactive { opacity: 0.5; } .inside { background: #aaa; } .spot-inner.inside { background: #CCC; } .active { background: green !important; } .console { width: 100%; font-family: monospace; border-spacing: 0; } .console-wrap { padding: 10px; } .console td { vertical-align: top; } .console-col { width: 50%; float: left; } .console-log { overflow: auto; } .console-log span { padding: 0 4px; display: block; white-space: nowrap; } .console-points, .console-options { padding: 10px; margin: 10px; border: 1px solid #bbb; } .hide-simulated .simulated { display: none; } .hide-non-simulated .non-simulated { display: none; } .hide-pointer .pointer { display: none; } .controls { position: fixed; bottom: 0; left: 0; right: 0; background: red; } .simulated { opacity: 0.5; } .pointer { font-weight: bold; } .point { padding: 0 4px; list-style: none; } @media screen and (max-width: 800px) { .console-col { width: 100%; float: none; } .spot-inner { width: 110px; height: 110px; } body { font-size: 12px; } } @media screen and (max-width: 500px) { .spot-inner { width: 80px; height: 80px; } body { font-size: 8px; } }
0.414425
0.087681
nav.navbar{ z-index: 999; border: 0; } html, body{ height: 100%; } body { font-family: "Helvetica Neue", Helvetica, Microsoft Yahei, Hiragino Sans GB, WenQuanYi Micro Hei, sans-serif; } .col-md-6{ width:65%; } .col-md-7{ width:35%; } .col-md-8{ width:100%; } .hero{ background-image: url("../../images/freeshare/login_big.png"); background-position: center center; overflow: hidden; background-size: cover; height: 685px; position: relative; top: -70px; padding-top: 200px; } .login-page-btn{ border: 2px solid white; } .top_margin30{ margin-top: 30px; } .top_margin7{ margin-top: 7px; } .padding-right-left{ padding-right:0px; padding-left:0px; } .hero-login{ background-image: url('../../images/freeshare/login_banner.png'); background-position: center center; overflow: hidden; background-size: cover; height: 180px; } .front-inner{ min-height:100%; height: auto !important; margin: 0 auto -80px; } .footer-login, .front-push{ height: 80px; } .footer-login{ border-top: 1px solid #ccc; } .footer-login>div{ padding-top: 30px; } .front-login-hr{ height: 1px; background-color: #ccc; margin: 30px 0; } .front-login-hr1{ height: 1px; background-color: #ccc; margin: 10px 0; } .margin1{ margin-top:10px; } .front-brand-img{ height: 73px; width: 540px; background-image: url('../../images/webrtc/logo_index.png'); } .feature{ padding-top: 5px; padding-bottom: 5px; } .toppadding-10{ padding-top: 10px; } .footer{ background-color: #333; height: 160px; padding-top: 45px; margin-top: 100px; } .footer-copyright{ color: #333; } .front-brand{ padding-top: 11px; } .front-remfield { margin: 0; font-size: 18px; line-height: 1.3333333; } .redletter, .redletter:visited{ color:red!important} @media (max-width: 767px) { .nav-brand { float: left; width: 25%; height: 80px; position: relative; margin-left: 15px; } .nav-brand img { position: absolute; top: 0; left: 0; right: 0; bottom: 0; margin: auto; width:300px; } } @media (min-width: 768px) { .nav-brand { float: left; padding: 0px 15px 10px 0; } } .padding0{ padding-left: 0px; padding-right: 0px; } .margin0{ margin-right: 0px; margin-left: 0px; } .padding-top45{ padding-top: 45px; } .customer_service{ width:100px; height:140px; display:block; position:fixed; z-index:999; right:20px; bottom:100px; }
wms/src/main/webapp/bootstrap-3.3.2/css/front.css
nav.navbar{ z-index: 999; border: 0; } html, body{ height: 100%; } body { font-family: "Helvetica Neue", Helvetica, Microsoft Yahei, Hiragino Sans GB, WenQuanYi Micro Hei, sans-serif; } .col-md-6{ width:65%; } .col-md-7{ width:35%; } .col-md-8{ width:100%; } .hero{ background-image: url("../../images/freeshare/login_big.png"); background-position: center center; overflow: hidden; background-size: cover; height: 685px; position: relative; top: -70px; padding-top: 200px; } .login-page-btn{ border: 2px solid white; } .top_margin30{ margin-top: 30px; } .top_margin7{ margin-top: 7px; } .padding-right-left{ padding-right:0px; padding-left:0px; } .hero-login{ background-image: url('../../images/freeshare/login_banner.png'); background-position: center center; overflow: hidden; background-size: cover; height: 180px; } .front-inner{ min-height:100%; height: auto !important; margin: 0 auto -80px; } .footer-login, .front-push{ height: 80px; } .footer-login{ border-top: 1px solid #ccc; } .footer-login>div{ padding-top: 30px; } .front-login-hr{ height: 1px; background-color: #ccc; margin: 30px 0; } .front-login-hr1{ height: 1px; background-color: #ccc; margin: 10px 0; } .margin1{ margin-top:10px; } .front-brand-img{ height: 73px; width: 540px; background-image: url('../../images/webrtc/logo_index.png'); } .feature{ padding-top: 5px; padding-bottom: 5px; } .toppadding-10{ padding-top: 10px; } .footer{ background-color: #333; height: 160px; padding-top: 45px; margin-top: 100px; } .footer-copyright{ color: #333; } .front-brand{ padding-top: 11px; } .front-remfield { margin: 0; font-size: 18px; line-height: 1.3333333; } .redletter, .redletter:visited{ color:red!important} @media (max-width: 767px) { .nav-brand { float: left; width: 25%; height: 80px; position: relative; margin-left: 15px; } .nav-brand img { position: absolute; top: 0; left: 0; right: 0; bottom: 0; margin: auto; width:300px; } } @media (min-width: 768px) { .nav-brand { float: left; padding: 0px 15px 10px 0; } } .padding0{ padding-left: 0px; padding-right: 0px; } .margin0{ margin-right: 0px; margin-left: 0px; } .padding-top45{ padding-top: 45px; } .customer_service{ width:100px; height:140px; display:block; position:fixed; z-index:999; right:20px; bottom:100px; }
0.325628
0.049543
.manager-div { max-width: 1100px; margin: 0 auto; position:relative; } .leftsidebar_box { width: 160px; height: auto !important; overflow: visible !important; position: absolute; background-color: #898E91; } .line { height: 2px; width: 100%; background-repeat: repeat-x; } .leftsidebar_box dt { padding-left: 40px; padding-right: 10px; background-repeat: no-repeat; background-position: 10px center; color: #f5f5f5; font-size: 12px; position: relative; line-height: 28px; cursor: pointer; } .leftsidebar_box dt img { margin: auto 10px; } .leftsidebar_box dd { background-color: #98A395; padding-left: 40px; } .leftsidebar_box dd a { color: #f5f5f5; line-height: 20px; text-decoration: none; } .system_log dt { background-image: url(/image/system.png) } .custom dt { background-image: url(/image/custom.png) } .channel dt { background-image: url(/image/channel.png) } .app dt { background-image: url(/image/app.png) } .cloud dt { background-image: url(/image/cloud.png) } .syetem_management dt { background-image: url(/image/syetem_management.png) } .source dt { background-image: url(/image/source.png) } .statistics dt { background-image: url(/image/statistics.png) } .leftsidebar_box dl dd:last-child { padding-bottom: 10px; } /*common.css*/ .container-fluid { padding-left: 0!important; } #wrap { min-width: 100%; position: absolute; background: #eff3f6 bottom; min-height: 100%; overflow: hidden; } /*@media (min-width: 660px) #wrap { min-width: 650px; } @media (min-width: 768px) #wrap { width: 100%; min-width: 750px; } @media (min-width: 992px) #wrap { width: 100%; min-width: 970px; } @media (min-width: 1200px) #wrap { width: 100%; min-width: 1170px; }*/ .leftMeun { position: absolute; box-sizing: border-box; width: 200px; height: 100%; background: #4d5e70 bottom; } .leftMeun >div { padding-left: 20px; } #rightContent { box-sizing: border-box; float: left; padding-left: 200px; overflow-y: overlay; overflow-x: hidden; clear: both; color: #717592; min-height: 500px; } /*左侧菜单栏*/ #logoDiv { padding-top: 20px; padding-bottom: 20px; height: 70px; background-color: #354457; font-size: 17px; color: #fff; vertical-align: bottom; } #logo { height: 30px; padding-right: 5px; } #logoDiv span { vertical-align: bottom; } #personInfor { padding: 10px 5px 10px; margin: 0 5px; color: #b3bcc5; border-bottom: 1px solid #354457; overflow-x: hidden; padding-left: 20px; } #personInfor p { font-size: 12px; margin-left: -5px; } #personInfor a { color: #B3BCC5; text-decoration: underline; } #userName { font-size: 15px!important; padding: 0; margin: 0; } .line-div { color: #F00; height: 5px; } .meun dl { padding: 0 10px; } .meun-title { color: #828e9a; padding-top: 10px; padding-bottom: 10px; font-size: 14px; font-weight: bold; } .meun-item { line-height: 40px; height: 40px; color: #aab1b7; cursor: pointer; } .meun-item a { color: #aab1b7; display: block; } .meun-item-active a { color: #c4c7cc; display: block; } .meun-item img { padding-right: 8px; height: 20px; } .meun-item-active { background-color: #3d4e60; border-right: 4px solid #647f9d; color: #fff; } /*右侧具体内容栏目*/ .check-div { height: 70px; line-height: 70px; *line-height: 60px; background-color: #fff; padding-left: 30px; min-width: 824px !important; box-sizing: border-box; } .check-div button { font-size: 12px; font-weight: bold; } .check-div select { height: 26px; width: 120px!important; display: inline; color: #ccc; } .check-div input { width: 200px !important; display: inline; } .tab-pane { color: #9095ab; } .tableHeader { height: 35px; line-height: 35px; font-size: 12px; font-weight: bold; color: #646987; background-color: #e3e8ee; padding: 0 30px; text-align: left; } .codeTop { text-align: right; } .tablebody { margin: 20px 30px; text-align: left; } .tablebody .row { margin-top: 10px; background-color: #fff; height: 70px; line-height: 70px; } .footer { float: right; margin-right: 20px } .modal-header { /*background-color: #e3e8ee;*/ } .modal-title { font-weight: bold; } .expand-col { padding: 0; margin-top: 30px; } .levl2 { padding-left: 30px; } .levl3 { padding-left: 40px; } .sitTable { background-color: #fff; padding-right: 30px; } .sitTable table { border-top: none; background-color: #FFF; } /*表格上部边框线*/ .sitTable .table>tbody>tr:first-child>td { border-top: none; } .table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th { vertical-align: middle !important; padding: 8px 15px!important; } .btn { border: none; } .toggle-btn { display: none; width: 52px; height: 50px; font-size: 20px; padding: 15px; cursor: pointer; float: left; color: #212121; -moz-transition: all 0.2s ease-out 0s; -webkit-transition: all 0.2s ease-out 0s; transition: all 0.2s ease-out 0s; } .pd0px { padding-left: 200px!important; } select { padding: 0 auto!important; } /*进度条样式*/ @media (max-width: 1123px) { #rightContent { padding-left: 0; } .tab-pane { min-width: 973px; } .leftMeun { display: none; } .toggle-btn { display: block; } } .input-xs { height: 25px; line-height: 25px; } .btn-white { background: #fff; border: 1px solid #ccc!important; font-weight: normal!important; margin-right: 10px; } .btn-green { border: 1px solid #ccc!important; font-weight: normal!important; margin-right: 10px; color: #fff; background: #529373; } .btn-yellow { background: #fff; border: 1px solid #ccc!important; font-weight: normal!important; margin-right: 10px; color: #eab67c!important; border: 1px solid #eab67c!important; } /*颜色*/ .gray { color: #b7b7b7; font-weight: normal; padding: 0 10px; } .footer .glyphicon { font-size: 12px; color: #00BDEF; padding: 4px; background-color: #fff; margin-right: 10px; } .zhi { margin-top: 33px; border-radius: 0!important; width: 50px!important; height: 21px!important; line-height: 20px; border: none; box-shadow: none!important; } .duiqi { margin-left: -26px!important; margin-top: 7px; width: 200px!important; } .form-horizontal .form-group { margin-right: -100px!important; } .select-duiqi { height: 25px!important; color: #ccc!important; margin-left: -25px; margin-top: 6px; width: 200px!important; } .linkCcc { color: #9095ab!important; text-decoration: underline; padding-right: 10px; } .linkCcc:hover { color: #000!important; text-decoration: underline; } .modal { color: #4b4b4b; } .top100 { margin-top: -25px!important; height: 40px!important; line-height: 67px!important; } .left { float: left; } .right { float: right; } /*slide.css*/ /*设置滑块*/ .grade_warp { /*width:840px;margin:10px auto 15px auto;*/ } .User_grade { width: 520px; overflow: hidden; margin: 0 auto; /*float:left;*/ } .User_ratings .ratings_title { width: 815px; height: 78px; font-family: "微软雅黑", "宋体"; font-size: 24px; color: #aaaaaa; } .User_ratings .ratings_title01 { width: 407px; height: auto; font-family: "微软雅黑", "宋体"; font-size: 14px; color: #aaaaaa; } .User_ratings .ratings_title p { float: left; } .User_ratings .ratings_title p span { font-size: 48px; } .User_ratings .ratings_title p i { color: #7dc234; font-style: normal; } .User_ratings .ratings_title01 p span { font-size: 18px; } .User_ratings .ratings_title01 p i { color: #7dc234; font-style: normal; } .User_ratings .ratings_title01 input { width: 120px; height: 48px; border: 0; margin: 15px auto auto 45px; float: left; background: url(../images/batton_01.png) -202px -2441px no-repeat; } .User_ratings .ratings_title01 input:hover { background: url(../images/batton_01.png) -202px -2489px no-repeat; } .User_ratings .ratings_title01 input01 { background: url(../images/batton_01.png) -202px -2537px no-repeat; } .User_ratings .ratings_title input { width: 120px; height: 48px; border: 0; margin: 15px auto auto 45px; float: left; background: url(../images/batton_01.png) -202px -2441px no-repeat; } .User_ratings .ratings_title input:hover { background: url(../images/batton_01.png) -202px -2489px no-repeat; } .User_ratings .ratings_title input01 { background: url(../images/batton_01.png) -202px -2537px no-repeat; } .User_ratings .ratings_bars { width: 520px; height: 60px; margin-top: 20px; float: left; } .User_ratings .ratings_bars .bars_10 { font-size: 16px; line-height: 25px; float: left; color: #a0a0a0; } .User_ratings .ratings_bars .scale { width: 400px; height: 13px; float: left; margin: 7px 10px auto 10px; position: relative; background: url(../images/progress02.png) 0 0 no-repeat; } .User_ratings .ratings_bars .scale div { width: 0px; position: absolute; width: 0; left: 0; height: 13px; bottom: 0; background: url(../images/progress02.png) 0 -14px no-repeat; } .User_ratings .ratings_bars .scale>span { width: 50px; height: 32px; position: absolute; left: -2px; top: -9px; cursor: pointer; background: url(../images/circle.png) no-repeat; line-height: 80px; } /*nouislider.css*/ .noUi-target * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-touch-callout: none; -ms-touch-action: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; cursor: default; } .slider-label { padding-top: 8px; display: block; } /* Main slider bar; * Standard styles no longer incorrectly force a * width or height on the slider. */ .noUi-base { width: 100%; height: 8px; position: relative; max-width: 100%; max-height: 100%; /* border: 1px solid #DDDDDD; */ z-index: 1; } /* Handles + active state; * The :after pseudo-element wont inherit * box-sizing, so it needs to applied manually. */ .noUi-handle { height: 32px; margin: -13px 0 0 -9px; width: 80px; cursor: pointer; background: url("../images/circle.png") no-repeat; outline: none; padding-top: 7px; } .noUi-active { background: #E9E9E9; outline: none; } .noUi-active:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; content: ""; /*display: block;*/ height: 100%; /*border: 1px solid #DDD;*/ } /* Styling-only classes; * Structured to prevent double declarations * for various states of the slider. */ .noUi-connect { background: #EFF3F6; } .noUi-background { background: #f79e90; } .slider-danger .noUi-connect { background: #fe635f; } .slider-success .noUi-connect { background: #8dc859; } .slider-warning .noUi-connect { background: #f1c40f; } .slider-info .noUi-connect { background: #8F44AD; } /* Functional styles for handle positioning; * Note that the origins have z-index 0, the base has * z-index 1; This fixes a bug where borders become invisible. */ .noUi-origin { position: absolute; right: 0; top: 0; bottom: 0; z-index: 0; border-radius: inherit; } .noUi-origin-upper { background: inherit !important; } .noUi-z-index { z-index: 10; } /* Adaptations for the vertical slider; * Some standard styles have been extended to keep * exceptions for the vertical slider as minimal as possible. */ .noUi-vertical { width: 8px; height: 100%; } .noUi-vertical .noUi-origin { bottom: 0; left: 0; } .noUi-vertical .noUi-handle { margin: -9px 0 0 -4px; } .noUi-target[disabled] .noUi-base { background: #999; } .noUi-target[disabled] .noUi-connect { background: #BBB; } .noUi-state-tap .noUi-origin { -webkit-transition: left 0.3s, top 0.3s; transition: left 0.3s, top 0.3s; }
public/libs/style/manager.css
.manager-div { max-width: 1100px; margin: 0 auto; position:relative; } .leftsidebar_box { width: 160px; height: auto !important; overflow: visible !important; position: absolute; background-color: #898E91; } .line { height: 2px; width: 100%; background-repeat: repeat-x; } .leftsidebar_box dt { padding-left: 40px; padding-right: 10px; background-repeat: no-repeat; background-position: 10px center; color: #f5f5f5; font-size: 12px; position: relative; line-height: 28px; cursor: pointer; } .leftsidebar_box dt img { margin: auto 10px; } .leftsidebar_box dd { background-color: #98A395; padding-left: 40px; } .leftsidebar_box dd a { color: #f5f5f5; line-height: 20px; text-decoration: none; } .system_log dt { background-image: url(/image/system.png) } .custom dt { background-image: url(/image/custom.png) } .channel dt { background-image: url(/image/channel.png) } .app dt { background-image: url(/image/app.png) } .cloud dt { background-image: url(/image/cloud.png) } .syetem_management dt { background-image: url(/image/syetem_management.png) } .source dt { background-image: url(/image/source.png) } .statistics dt { background-image: url(/image/statistics.png) } .leftsidebar_box dl dd:last-child { padding-bottom: 10px; } /*common.css*/ .container-fluid { padding-left: 0!important; } #wrap { min-width: 100%; position: absolute; background: #eff3f6 bottom; min-height: 100%; overflow: hidden; } /*@media (min-width: 660px) #wrap { min-width: 650px; } @media (min-width: 768px) #wrap { width: 100%; min-width: 750px; } @media (min-width: 992px) #wrap { width: 100%; min-width: 970px; } @media (min-width: 1200px) #wrap { width: 100%; min-width: 1170px; }*/ .leftMeun { position: absolute; box-sizing: border-box; width: 200px; height: 100%; background: #4d5e70 bottom; } .leftMeun >div { padding-left: 20px; } #rightContent { box-sizing: border-box; float: left; padding-left: 200px; overflow-y: overlay; overflow-x: hidden; clear: both; color: #717592; min-height: 500px; } /*左侧菜单栏*/ #logoDiv { padding-top: 20px; padding-bottom: 20px; height: 70px; background-color: #354457; font-size: 17px; color: #fff; vertical-align: bottom; } #logo { height: 30px; padding-right: 5px; } #logoDiv span { vertical-align: bottom; } #personInfor { padding: 10px 5px 10px; margin: 0 5px; color: #b3bcc5; border-bottom: 1px solid #354457; overflow-x: hidden; padding-left: 20px; } #personInfor p { font-size: 12px; margin-left: -5px; } #personInfor a { color: #B3BCC5; text-decoration: underline; } #userName { font-size: 15px!important; padding: 0; margin: 0; } .line-div { color: #F00; height: 5px; } .meun dl { padding: 0 10px; } .meun-title { color: #828e9a; padding-top: 10px; padding-bottom: 10px; font-size: 14px; font-weight: bold; } .meun-item { line-height: 40px; height: 40px; color: #aab1b7; cursor: pointer; } .meun-item a { color: #aab1b7; display: block; } .meun-item-active a { color: #c4c7cc; display: block; } .meun-item img { padding-right: 8px; height: 20px; } .meun-item-active { background-color: #3d4e60; border-right: 4px solid #647f9d; color: #fff; } /*右侧具体内容栏目*/ .check-div { height: 70px; line-height: 70px; *line-height: 60px; background-color: #fff; padding-left: 30px; min-width: 824px !important; box-sizing: border-box; } .check-div button { font-size: 12px; font-weight: bold; } .check-div select { height: 26px; width: 120px!important; display: inline; color: #ccc; } .check-div input { width: 200px !important; display: inline; } .tab-pane { color: #9095ab; } .tableHeader { height: 35px; line-height: 35px; font-size: 12px; font-weight: bold; color: #646987; background-color: #e3e8ee; padding: 0 30px; text-align: left; } .codeTop { text-align: right; } .tablebody { margin: 20px 30px; text-align: left; } .tablebody .row { margin-top: 10px; background-color: #fff; height: 70px; line-height: 70px; } .footer { float: right; margin-right: 20px } .modal-header { /*background-color: #e3e8ee;*/ } .modal-title { font-weight: bold; } .expand-col { padding: 0; margin-top: 30px; } .levl2 { padding-left: 30px; } .levl3 { padding-left: 40px; } .sitTable { background-color: #fff; padding-right: 30px; } .sitTable table { border-top: none; background-color: #FFF; } /*表格上部边框线*/ .sitTable .table>tbody>tr:first-child>td { border-top: none; } .table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th { vertical-align: middle !important; padding: 8px 15px!important; } .btn { border: none; } .toggle-btn { display: none; width: 52px; height: 50px; font-size: 20px; padding: 15px; cursor: pointer; float: left; color: #212121; -moz-transition: all 0.2s ease-out 0s; -webkit-transition: all 0.2s ease-out 0s; transition: all 0.2s ease-out 0s; } .pd0px { padding-left: 200px!important; } select { padding: 0 auto!important; } /*进度条样式*/ @media (max-width: 1123px) { #rightContent { padding-left: 0; } .tab-pane { min-width: 973px; } .leftMeun { display: none; } .toggle-btn { display: block; } } .input-xs { height: 25px; line-height: 25px; } .btn-white { background: #fff; border: 1px solid #ccc!important; font-weight: normal!important; margin-right: 10px; } .btn-green { border: 1px solid #ccc!important; font-weight: normal!important; margin-right: 10px; color: #fff; background: #529373; } .btn-yellow { background: #fff; border: 1px solid #ccc!important; font-weight: normal!important; margin-right: 10px; color: #eab67c!important; border: 1px solid #eab67c!important; } /*颜色*/ .gray { color: #b7b7b7; font-weight: normal; padding: 0 10px; } .footer .glyphicon { font-size: 12px; color: #00BDEF; padding: 4px; background-color: #fff; margin-right: 10px; } .zhi { margin-top: 33px; border-radius: 0!important; width: 50px!important; height: 21px!important; line-height: 20px; border: none; box-shadow: none!important; } .duiqi { margin-left: -26px!important; margin-top: 7px; width: 200px!important; } .form-horizontal .form-group { margin-right: -100px!important; } .select-duiqi { height: 25px!important; color: #ccc!important; margin-left: -25px; margin-top: 6px; width: 200px!important; } .linkCcc { color: #9095ab!important; text-decoration: underline; padding-right: 10px; } .linkCcc:hover { color: #000!important; text-decoration: underline; } .modal { color: #4b4b4b; } .top100 { margin-top: -25px!important; height: 40px!important; line-height: 67px!important; } .left { float: left; } .right { float: right; } /*slide.css*/ /*设置滑块*/ .grade_warp { /*width:840px;margin:10px auto 15px auto;*/ } .User_grade { width: 520px; overflow: hidden; margin: 0 auto; /*float:left;*/ } .User_ratings .ratings_title { width: 815px; height: 78px; font-family: "微软雅黑", "宋体"; font-size: 24px; color: #aaaaaa; } .User_ratings .ratings_title01 { width: 407px; height: auto; font-family: "微软雅黑", "宋体"; font-size: 14px; color: #aaaaaa; } .User_ratings .ratings_title p { float: left; } .User_ratings .ratings_title p span { font-size: 48px; } .User_ratings .ratings_title p i { color: #7dc234; font-style: normal; } .User_ratings .ratings_title01 p span { font-size: 18px; } .User_ratings .ratings_title01 p i { color: #7dc234; font-style: normal; } .User_ratings .ratings_title01 input { width: 120px; height: 48px; border: 0; margin: 15px auto auto 45px; float: left; background: url(../images/batton_01.png) -202px -2441px no-repeat; } .User_ratings .ratings_title01 input:hover { background: url(../images/batton_01.png) -202px -2489px no-repeat; } .User_ratings .ratings_title01 input01 { background: url(../images/batton_01.png) -202px -2537px no-repeat; } .User_ratings .ratings_title input { width: 120px; height: 48px; border: 0; margin: 15px auto auto 45px; float: left; background: url(../images/batton_01.png) -202px -2441px no-repeat; } .User_ratings .ratings_title input:hover { background: url(../images/batton_01.png) -202px -2489px no-repeat; } .User_ratings .ratings_title input01 { background: url(../images/batton_01.png) -202px -2537px no-repeat; } .User_ratings .ratings_bars { width: 520px; height: 60px; margin-top: 20px; float: left; } .User_ratings .ratings_bars .bars_10 { font-size: 16px; line-height: 25px; float: left; color: #a0a0a0; } .User_ratings .ratings_bars .scale { width: 400px; height: 13px; float: left; margin: 7px 10px auto 10px; position: relative; background: url(../images/progress02.png) 0 0 no-repeat; } .User_ratings .ratings_bars .scale div { width: 0px; position: absolute; width: 0; left: 0; height: 13px; bottom: 0; background: url(../images/progress02.png) 0 -14px no-repeat; } .User_ratings .ratings_bars .scale>span { width: 50px; height: 32px; position: absolute; left: -2px; top: -9px; cursor: pointer; background: url(../images/circle.png) no-repeat; line-height: 80px; } /*nouislider.css*/ .noUi-target * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-touch-callout: none; -ms-touch-action: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; cursor: default; } .slider-label { padding-top: 8px; display: block; } /* Main slider bar; * Standard styles no longer incorrectly force a * width or height on the slider. */ .noUi-base { width: 100%; height: 8px; position: relative; max-width: 100%; max-height: 100%; /* border: 1px solid #DDDDDD; */ z-index: 1; } /* Handles + active state; * The :after pseudo-element wont inherit * box-sizing, so it needs to applied manually. */ .noUi-handle { height: 32px; margin: -13px 0 0 -9px; width: 80px; cursor: pointer; background: url("../images/circle.png") no-repeat; outline: none; padding-top: 7px; } .noUi-active { background: #E9E9E9; outline: none; } .noUi-active:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; content: ""; /*display: block;*/ height: 100%; /*border: 1px solid #DDD;*/ } /* Styling-only classes; * Structured to prevent double declarations * for various states of the slider. */ .noUi-connect { background: #EFF3F6; } .noUi-background { background: #f79e90; } .slider-danger .noUi-connect { background: #fe635f; } .slider-success .noUi-connect { background: #8dc859; } .slider-warning .noUi-connect { background: #f1c40f; } .slider-info .noUi-connect { background: #8F44AD; } /* Functional styles for handle positioning; * Note that the origins have z-index 0, the base has * z-index 1; This fixes a bug where borders become invisible. */ .noUi-origin { position: absolute; right: 0; top: 0; bottom: 0; z-index: 0; border-radius: inherit; } .noUi-origin-upper { background: inherit !important; } .noUi-z-index { z-index: 10; } /* Adaptations for the vertical slider; * Some standard styles have been extended to keep * exceptions for the vertical slider as minimal as possible. */ .noUi-vertical { width: 8px; height: 100%; } .noUi-vertical .noUi-origin { bottom: 0; left: 0; } .noUi-vertical .noUi-handle { margin: -9px 0 0 -4px; } .noUi-target[disabled] .noUi-base { background: #999; } .noUi-target[disabled] .noUi-connect { background: #BBB; } .noUi-state-tap .noUi-origin { -webkit-transition: left 0.3s, top 0.3s; transition: left 0.3s, top 0.3s; }
0.346431
0.082107
html { -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; } body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, hr, button, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { margin: 0; padding: 0; } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; } body, button, input, select, textarea { font: 12px/1.5 "Helvetica Neue", "Lucida Grande", "Lantinghei SC", "Open Sans", "Microsoft YaHei", "WenQuanYi Micro Hei", SimSun, sans-serif; background-color: #fff; box-sizing: content-box; } input, select, textarea { font-size: 100%; -webkit-appearance: none; } body, body a { color: #333; -webkit-transition: color 0.3s ease; -moz-transition: color 0.3s ease; -o-transition: color 0.3s ease; transition: color 0.3s ease; } body a:hover { color: #0069aa; } table { border-collapse: collapse; border-spacing: 0; } th { text-align: inherit; } fieldset, img { border: 0; } img { vertical-align: top; } iframe { display: block; } abbr, acronym { border: 0; font-variant: normal; } del { text-decoration: line-through; } address, caption, cite, code, dfn, em, th, var { font-style: normal; } ol, ul, li { list-style: none; } caption, th { text-align: center; } q:before, q:after { content: ""; } sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } a:hover { text-decoration: none; } ins, a { text-decoration: none; } .clear:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; } .clear { zoom: 1; } .show { display: block; } .hide { display: none; } .fl{ display: inline; } .fl { float: left; } @font-face { font-family: "iconfont"; src: url("https://security.samsclub.cn/front-passport/passport/css/sam/iconfont.woff") format("woff"); } .iconfont { font-family: "iconfont" !important; font-size: 16px; font-style: normal; -webkit-font-smoothing: antialiased; -webkit-text-stroke-width: 0.2px; -moz-osx-font-smoothing: grayscale; } .global-center { width: 100%; margin: 0 auto; } .global-center-box { margin-left: 0; margin-right: 0; } .bold { font-weight: bold; } a.blue-link, .blue-font { color: #06c; } input[type="text"], input[type="password"], input[type="search"], input[type="tel"], input[type="number"], input[type="email"], input[type="url"], textarea { -webkit-appearance: none; } input:focus, select:focus, textarea:focus, button:focus { outline: none; } .submit-btn { display: block; width: 100%; height: 50px; margin-top: 5px; -moz-border-radius: 3px; border-radius: 3px; background: #006aaf; text-align: center; color: #fff; line-height: 50px; font-size: 18px; font-family: "Microsoft YaHei"; font-weight: bold; } .submit-btn:hover { background-color: #005f9e; color: #fff; } .submit-btn-mt { margin-top: 20px; } .submit-btn-loading { background: #e5e5e5; color: #ccc; } .submit-btn-loading:hover { background: #e5e5e5; color: #ccc; } .vip-note { padding: 5px 10px; border: 1px solid #e6deb8; -moz-border-radius: 2px; border-radius: 2px; background-color: #fff7cd; -moz-box-sizing: border-box; box-sizing: border-box; color: #977a6f; } a.pic-verification { position: relative; float: right; width: 93px; height: 36px; overflow: hidden; border: 1px solid #dcdcdc; } a.pic-verification img { position: absolute; top: 1px; left: 1px; } a.pic-verification .refresh-code { display: none; position: absolute; left: 0; top: 0; width: 95px; height: 38px; background-color: rgba(0, 0, 0, 0.7); text-align: center; line-height: 38px; color: #fff; } a.pic-verification em { margin-right: 5px; } a.pic-verification:hover .refresh-code { display: block; } .vip-select-simulate { position: relative; } .vip-select-simulate .simulate-text { display: block; position: relative; width: 100%; height: 40px; padding: 0 10px; border: 1px solid #eee; -moz-border-radius: 2px; border-radius: 2px; -moz-box-sizing: border-box; box-sizing: border-box; color: #333; line-height: 40px; } .vip-select-simulate .simulate-text:after { content: ""; position: absolute; top: 17px; right: 15px; border: 5px solid transparent; border-top-color: #666; } .vip-select-simulate .vip-select { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; filter: alpha(opacity=0); opacity: 0; } .agreement { position: relative; } .agreement input[type="checkbox"] { position: relative; width: 13px; height: 13px; border: 1px solid #006aaf; -moz-border-radius: 2px; border-radius: 2px; vertical-align: middle; } .agreement input[type="checkbox"]:checked { background-color: #006aaf; } .agreement input[type="checkbox"]:checked:after { content: ""; position: absolute; left: 1px; top: 1px; width: 7px; height: 4px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } .agreement label { vertical-align: middle; } .passport-pop-box { display: none; margin: -1px -25px -25px; position: relative; width: 480px; -moz-border-radius: 4px; border-radius: 4px; background: #fff; border: 1px solid #eee; border-top: 2px solid #246dba; z-index: 1200; } .passport-pop-box-member { width: 580px; padding-bottom: 25px; } .passport-pop-box .close-btn { position: absolute; top: 0; right: 10px; width: 24px; height: 48px; font-size: 24px; color: #666; cursor: pointer; text-align: center; line-height: 48px; } .passport-pop-box .member-terms { height: 265px; overflow-y: auto; margin: 0 15px; padding: 0 15px 15px; border: 1px solid #dcdcdc; color: #333; line-height: 18px; } .passport-pop-box .member-terms dt { margin-top: 15px; } .passport-pop-box .member-terms dd { text-indent: 24px; } .login-bg { background: #fff; } .login-top-bg { background: #f8f8f8; } .login-top { width: 190px; margin: 0 auto; padding: 50px 0; } .logo-box { width: 100px; height: 100px; margin: 0 auto; } .logo-box img { width: 100px; height: 100px; } .login-tit { margin-top: 30px; border-top: 1px solid #b3b3b3; text-align: center; color: #333; font-size: 20px; font-family: "Microsoft YaHei"; font-weight: normal; } .login-tit em { position: relative; top: -15px; background: #f8f8f8; padding: 0 20px; line-height: 30px; } .form-wrap { padding: 30px 0 30px; border-top: 1px solid #eee; } .form-wrap h4 { text-align: center; color: #333; font-size: 18px; font-family: "Microsoft YaHei"; font-weight: normal; line-height: 50px; } .form-wrap .form-box { width: 320px; margin: 0 auto; text-align: center; } .form-wrap .form-box input::-ms-clear { display: none; } .form-wrap .form-box input::-ms-reveal { display: none; } .form-wrap .form-box .form-item-tips { position: relative; margin-bottom: 30px; padding: 0; } .form-wrap .form-box .form-item-tips .ipt-text { margin: 0; } .form-wrap .form-box .form-item-wrong .ipt-text { border: 1px solid #f22727; } .form-wrap .form-box .form-item-wrong .tips-box-default { display: none; } .form-wrap .form-box .form-item-wrong .tips-box-wrong { display: block; } .form-wrap .form-box .ipt-text { width: 318px; height: 36px; margin: 10px 0; text-indent: 10px; border: 1px solid #dcdcdc; -moz-border-radius: 2px; border-radius: 2px; background: #fff; line-height: 36px; color: #666; color: #666; font-size: 14px; font-family: "Microsoft YaHei"; } .form-wrap .form-box .ipt-text:focus { border: 1px solid #00abdd; } .form-wrap .form-box .placeholder { display: none; } .form-wrap .form-box .tips-box { height: 18px; text-align: left; color: #f22727; line-height: 18px; font-family: "Microsoft YaHei"; } .form-wrap .form-box .tips-box-default { position: absolute; top: 37px; left: 0; color: #aaa; text-align: left; text-indent: 10px; line-height: 30px; } .form-wrap .form-box .tips-box-wrong { display: none; position: absolute; top: 37px; left: 0; color: #aaa; text-align: left; text-indent: 10px; line-height: 30px; color: #f22727; } .form-wrap .form-box .tips-box-red { color: #f22727; } .form-wrap .form-box .forget-password { float: left; line-height: 30px; color: #666; } .form-wrap .form-box .regist { float: right; line-height: 30px; color: #06c; } .form-wrap .form-box .verification-item { border: 0 none; } .form-wrap .form-box .ipt-verification { width: 215px; float: left; border: 1px solid #dcdcdc; } .form-wrap .form-box a.pic-verification { margin: 10px 0; } .form-wrap .success-box { width: 550px; margin: 0 auto; } .form-wrap .success-box h5 { text-align: center; font-size: 14px; font-weight: normal; } .form-wrap .success-box h5.tl { text-align: left; } .form-wrap .success-box .btn-box { margin-top: 20px; text-align: center; } .form-wrap .success-box .btn-box a { width: 150px; height: 50px; display: inline-block; margin: 0 10px; text-align: center; line-height: 50px; -moz-border-radius: 2px; border-radius: 2px; font-size: 18px; font-family: "Microsoft YaHei"; font-weight: bold; color: #fff; } .form-wrap .success-box .btn-box a.blue-btn { background: #246dba; } .form-wrap .success-box .btn-box a.blue-btn-long { width: 220px; } .form-wrap .success-box .btn-box a.blue-btn:hover { background-color: #005f9e; } .form-wrap .success-box .btn-box a.green-btn { background: #57ba47; } .form-wrap .success-box .btn-box a.green-btn:hover { background-color: #5e9732; } .form-wrap .phone-box { width: 455px; margin: 0 auto; } .form-wrap .phone-box .phone-verification-text { font-size: 14px; line-height: 20px; } .form-wrap .phone-box .phone-verification-text .blue-font { font-weight: bold; } .form-wrap .phone-box .form-box { width: 455px; } .form-wrap .phone-box .form-box .ipt-verification { width: 300px; } .form-wrap .phone-box .form-box .phone-verification { float: right; width: 138px; height: 36px; margin: 10px 0; border: 1px solid #eee; background-color: #f7f7f7; text-align: center; color: #666; line-height: 36px; } .form-wrap .phone-box .form-box .resend-verification { background-color: #eee; color: #ccc; } .form-wrap .phone-box .submit-btn { width: 220px; height: 35px; margin: 30px auto 0; line-height: 35px; font-size: 14px; } .form-wrap .er-codePic { width: 130px; height: 130px; margin: 18px auto; padding: 5px; border: 1px solid #f3f3f3; } .form-wrap .er-codeTips { height: 30px; padding-bottom: 30px; color: #999; font-size: 18px; font-weight: normal; font-family: "Microsoft YaHei"; line-height: 30px; text-align: center; } .member-form-wrap { border-top: 1px solid #eee; padding: 50px 0; } .member-form-wrap .member-form-box { width: 440px; margin: 0 auto; } .member-form-wrap .member-tab { margin-right: -40px; } .member-form-wrap .member-tab a { position: relative; float: left; width: 198px; height: 134px; margin-right: 40px; border: 1px solid #e5e5e5; -moz-border-radius: 4px; border-radius: 4px; background: #f8f8f8; line-height: 20px; text-align: center; color: #374551; } .member-form-wrap .member-tab a em { display: block; font-size: 36px; padding: 24px 0; color: #0799c9; line-height: 36px; } .member-form-wrap .member-tab a b { font-size: 18px; font-family: "Microsoft YaHei"; font-color: #374551; } .member-form-wrap .member-tab a p { font-size: 14px; family: "Microsoft YaHei"; color: #374551; } .member-form-wrap .member-tab a span { display: none; position: absolute; right: -7px; top: -7px; width: 24px; height: 24px; -moz-border-radius: 50%; border-radius: 50%; border: 2px solid #0799c9; background: #fff; } .member-form-wrap .member-tab a span i { color: #3f4c58; font-weight: bold; } .member-form-wrap .member-tab a:hover { width: 196px; height: 132px; border: 2px solid #0799c9; background: #fff; } .member-form-wrap .member-tab a.cur { width: 196px; height: 132px; border: 2px solid #0799c9; background: #fff; } .member-form-wrap .member-tab a.cur span { display: block; } .member-form-wrap .member-tab-detail h4 { margin-top: 15px; text-align: center; color: #333; font-size: 18px; font-family: "Microsoft YaHei"; font-weight: normal; line-height: 50px; } .member-form-wrap .member-tab-detail .blue-font { margin-bottom: 15px; line-height: 18px; } .member-form-wrap .vip-login-inf { display: inline-block; width: 100%; -moz-box-sizing: border-box; box-sizing: border-box; } .member-form-wrap .vip-login-inf .find-card-num { position: relative; z-index: 130; } .member-form-wrap .vip-login-inf .find-card-num .card-box { display: none; position: absolute; top: 0; left: 130px; border: 1px solid #79cde5; -moz-box-shadow: 0 0 5px #00a9dd; box-shadow: 0 0 5px #00a9dd; } .member-form-wrap .vip-login-inf .find-card-num .card-box img { position: relative; z-index: 135; } .member-form-wrap .vip-login-inf .find-card-num .card-box:after { content: ""; position: absolute; top: 8px; left: -5px; z-index: 130; width: 10px; height: 10px; overflow: hidden; background-color: #fff; border-left: 1px solid #79cde5; border-bottom: 1px solid #79cde5; -moz-box-shadow: -2px 2px 2px #c6e3eb; box-shadow: -2px 2px 2px #c6e3eb; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .member-form-wrap .vip-login-inf .login-list { width: 100%; } .member-form-wrap .vip-login-inf .login-list li { font-size: 14px; margin-bottom: 10px; } .member-form-wrap .vip-login-inf .login-list li .error-note, .member-form-wrap .vip-login-inf .login-list li .reminder-note { padding-left: 10px; line-height: 22px; } .member-form-wrap .vip-login-inf .login-list li .error-note { display: none; color: #f22727; } .member-form-wrap .vip-login-inf .login-list li .reminder-note { color: #999; } .member-form-wrap .vip-login-inf .login-list li input[type="text"] { padding: 10px; border: 1px solid #eee; -moz-border-radius: 2px; border-radius: 2px; -moz-box-sizing: border-box; box-sizing: border-box; } .member-form-wrap .vip-login-inf .login-list li input[type="text"]:focus { border: 1px solid #00abdd; } .member-form-wrap .vip-login-inf .login-list li .placeholder { display: none; } .member-form-wrap .vip-login-inf .login-list li .agreement { margin-top: 8px; } .member-form-wrap .vip-login-inf .login-list li .login-ipt { width: 100%; } .member-form-wrap .vip-login-inf .login-list li .vip-select-option { width: 32%; margin-left: 2%; } .member-form-wrap .vip-login-inf .login-list li .vip-select-option:first-child { margin-left: 0; } .member-form-wrap .vip-login-inf .login-list li .credentials-num { width: 66%; } .member-form-wrap .vip-login-inf .login-list li .phone-code { width: 66%; } .member-form-wrap .vip-login-inf .login-list li .receive_code { display: inline-block; width: 32%; padding: 10px; -moz-box-sizing: border-box; box-sizing: border-box; border: 1px solid #eee; background-color: #f7f7f7; color: #999; text-align: center; } .member-form-wrap .vip-login-inf .login-list li .reacquire_code { background-color: #f7f7f7; color: #999; cursor: default; } .member-form-wrap .vip-login-inf .submit-btn { width: 220px; margin: 0 auto; } .regist-form-wrap { padding: 30px 0; border-top: 1px solid #eee; } .regist-form-wrap h4 { padding: 25px 0; font-size: 18px; text-align: center; font-weight: normal; line-height: 20px; } .regist-form-wrap .member-tab { width: 200px; height: 140px; padding: 20px 0 30px; margin: 0 auto; } .regist-form-wrap .member-tab a { position: relative; width: 198px; height: 134px; border: 1px solid #e5e5e5; -moz-border-radius: 4px; border-radius: 4px; background: #f8f8f8; line-height: 20px; text-align: center; color: #374551; } .regist-form-wrap .member-tab a em { display: block; font-size: 36px; padding: 24px 0; color: #0799c9; line-height: 36px; } .regist-form-wrap .member-tab a b { font-size: 18px; font-family: "Microsoft YaHei"; font-color: #374551; } .regist-form-wrap .member-tab a p { font-size: 14px; family: "Microsoft YaHei"; color: #374551; } .regist-form-wrap .member-tab a span { display: none; position: absolute; right: -7px; top: -7px; width: 24px; height: 24px; -moz-border-radius: 50%; border-radius: 50%; border: 2px solid #0799c9; background: #fff; } .regist-form-wrap .member-tab a span i { color: #3f4c58; font-weight: bold; } .regist-form-wrap .member-tab a:hover { width: 196px; height: 132px; border: 2px solid #0799c9; background: #fff; } .regist-form-wrap .member-tab a.cur { width: 196px; height: 132px; border: 2px solid #0799c9; background: #fff; } .regist-form-wrap .member-tab a.cur span { display: block; } .regist-form-wrap .regist-form-box { width: 442px; margin: 0 auto; } .regist-form-wrap .regist-form-box .hascard-regist { display: none; } .regist-form-wrap .regist-form-box .regist-form-item { position: relative; margin-bottom: 20px; } .regist-form-wrap .regist-form-box .regist-form-tips { margin-bottom: 32px; } .regist-form-wrap .regist-form-box .regist-formcard-tips { margin-bottom: 0; } .regist-form-wrap .regist-form-box .reminder-note { position: relative; z-index: 130; height: 32px; line-height: 32px; text-indent: 10px; color: #999; } .regist-form-wrap .regist-form-box .reminder-note .card-box { display: none; position: absolute; top: 0; left: 130px; border: 1px solid #79cde5; -moz-box-shadow: 0 0 5px #00a9dd; box-shadow: 0 0 5px #00a9dd; text-indent: 0; } .regist-form-wrap .regist-form-box .reminder-note .card-box img { position: relative; z-index: 135; } .regist-form-wrap .regist-form-box .reminder-note .card-box:after { content: ""; position: absolute; top: 8px; left: -5px; z-index: 130; width: 10px; height: 10px; overflow: hidden; background-color: #fff; border-left: 1px solid #79cde5; border-bottom: 1px solid #79cde5; -moz-box-shadow: -2px 2px 2px #c6e3eb; box-shadow: -2px 2px 2px #c6e3eb; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .regist-form-wrap .regist-form-box .log-list-con .vip-select-simulate { position: relative; width: 32%; margin-left: 2%; } .regist-form-wrap .regist-form-box .log-list-con .vip-select-simulate:first-child { margin-left: 0; } .regist-form-wrap .regist-form-box .log-list-con .vip-select-simulate .simulate-text { font-size: 14px; color: #999; } .regist-form-wrap .regist-form-box .ipt-text { width: 440px; height: 36px; border: 1px solid #dcdcdc; -moz-border-radius: 2px; border-radius: 2px; line-height: 36px; text-indent: 10px; font-size: 14px; } .regist-form-wrap .regist-form-box .ipt-text:focus { border: 1px solid #00abdd; } .regist-form-wrap .regist-form-box .placeholder { display: none; } .regist-form-wrap .regist-form-box .tips-box-default, .regist-form-wrap .regist-form-box .tips-box-wrong { position: absolute; top: 38px; color: #aaa; text-indent: 10px; line-height: 32px; } .regist-form-wrap .regist-form-box .tips-box-wrong { display: none; } .regist-form-wrap .regist-form-box .regist-form-wrong { margin-bottom: 32px; } .regist-form-wrap .regist-form-box .regist-form-wrong .ipt-text { border: 1px solid #f22727; } .regist-form-wrap .regist-form-box .regist-form-wrong .ipt-text:focus { border: 1px solid #00abdd; } .regist-form-wrap .regist-form-box .regist-form-wrong .tips-box-default { display: none; } .regist-form-wrap .regist-form-box .regist-form-wrong .tips-box-wrong { display: block; color: #f22727; } .regist-form-wrap .regist-form-box .password-strength { position: absolute; top: 38px; right: 0; padding-top: 9px; line-height: 12px; color: #aaa; } .regist-form-wrap .regist-form-box .password-strength em, .regist-form-wrap .regist-form-box .password-strength i, .regist-form-wrap .regist-form-box .password-strength span, .regist-form-wrap .regist-form-box .password-strength u, .regist-form-wrap .regist-form-box .password-strength s { display: inline-block; width: 6px; height: 12px; margin-left: 4px; background: #d0d0d0; -moz-border-radius: 1px; border-radius: 1px; } .regist-form-wrap .regist-form-box .password-strength i { background: #5dbcfa; } .regist-form-wrap .regist-form-box .password-strength span { background: #3d9fdf; } .regist-form-wrap .regist-form-box .password-strength u { background: #1b84c8; } .regist-form-wrap .regist-form-box .password-strength s { background: #006aaf; } .regist-form-wrap .regist-form-box .ipt-verification { float: left; width: 335px; } .regist-form-wrap .regist-form-box .verification-item { border: 0 none; } .regist-form-wrap .regist-form-box .verification-phone .ipt-verification { width: 290px; } .regist-form-wrap .regist-form-box .verification-phone .phone-verification-btn, .regist-form-wrap .regist-form-box .verification-phone .resend-btn { float: right; width: 140px; height: 36px; border: 1px solid #eee; background-color: #f7f7f7; line-height: 36px; text-align: center; -moz-border-radius: 2px; border-radius: 2px; color: #666; } .regist-form-wrap .regist-form-box .verification-phone .resend-btn { background-color: #eee; color: #ccc; } .regist-form-wrap .regist-form-box .yellow-tips { border: 1px solid #e6deb8; background-color: #fff7cd; color: #977a6f; line-height: 28px; margin-bottom: 10px; padding: 0 10px; } .regist-form-wrap .regist-form-box .btn-box { margin: 24px 15px 0; } .regist-form-wrap .regist-form-box .btn-box .submit-btn { width: 220px; margin: 0 auto; } .activation-form-wrap { padding-top: 30px; border-top: 1px solid #eee; } .activation-form-wrap h4 { padding: 25px 0; font-size: 18px; text-align: center; font-weight: normal; line-height: 20px; } .activation-form-wrap .activation-form-box { width: 440px; margin: 0 auto; } .activation-form-wrap h5 { padding-bottom: 15px; text-align: center; font-size: 14px; font-weight: normal; } .activation-form-wrap .btn-box { position: relative; padding-top: 10px; } .activation-form-wrap .btn-box .submit-btn { height: 35px; width: 220px; margin: 0 auto; font-size: 14px; line-height: 35px; } .activation-form-wrap .btn-box .blue-link { position: absolute; top: 15px; left: 50%; margin-left: 125px; line-height: 35px; } .activation-form-wrap .activation-tit { font-size: 14px; line-height: 36px; } .activation-form-wrap .activation-form-item { position: relative; margin-bottom: 32px; } .activation-form-wrap .ipt-text { width: 440px; height: 36px; border: 1px solid #dcdcdc; -moz-border-radius: 2px; border-radius: 2px; line-height: 36px; text-indent: 10px; font-size: 14px; } .activation-form-wrap .ipt-text:focus { border: 1px solid #00abdd; } .activation-form-wrap .tips-box-wrong { position: absolute; top: 36px; display: none; color: #aaa; text-indent: 10px; line-height: 32px; color: #f22727; } .activation-form-wrap .activation-form-wrong .ipt-text { border: 1px solid #f22727; } .activation-form-wrap .activation-form-wrong .ipt-text:focus { border: 1px solid #00abdd; } .activation-form-wrap .activation-form-wrong .tips-box-wrong { display: block; } .select-method { width: 386px; margin: 0 auto; text-align: center; } .select-method h4 { margin: 50px 0 20px; font-size: 18px; font-weight: normal; } .select-method .select-tab-wrap a { display: inline-block; width: 163px; height: 77px; margin: 0 13px; padding: 26px 0 0 0; border: 1px solid #e5e5e5; -moz-border-radius: 4px; border-radius: 4px; background-color: #f8f8f8; } .select-method .select-tab-wrap a em { font-size: 52px; color: #0799c9; vertical-align: middle; line-height: 52px; } .select-method .select-tab-wrap a span { vertical-align: middle; font-size: 14px; } .select-method .select-tab-wrap a:hover { width: 161px; height: 76px; padding: 25px 0 0 0; border: 2px solid #0799c9; background-color: #fff; color: #333; } .tips-select-wrong-pc { padding-left: 10px; display: none; position: static; height: 26px; line-height: 26px; color: #f22727; text-align: left; } .wx-submit-btn { display: block; width: 100%; height: 50px; margin-top: 5px; background: url(https://security.samsclub.cn/front-passport/passport/images/sam/icon-wechat.png) center no-repeat; border: 1px #12b401 solid; -moz-border-radius: 3px; border-radius: 3px; text-align: center; color: #fff; line-height: 50px; font-size: 18px; font-family: "Microsoft YaHei"; font-weight: bold; } .wx-submit-btn:hover { background: url(https://security.samsclub.cn/front-passport/passport/images/sam/icon-hover-wechat.png) center no-repeat; border-color: #109e01; }
src/css/login_reg.css
html { -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; } body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, hr, button, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { margin: 0; padding: 0; } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; } body, button, input, select, textarea { font: 12px/1.5 "Helvetica Neue", "Lucida Grande", "Lantinghei SC", "Open Sans", "Microsoft YaHei", "WenQuanYi Micro Hei", SimSun, sans-serif; background-color: #fff; box-sizing: content-box; } input, select, textarea { font-size: 100%; -webkit-appearance: none; } body, body a { color: #333; -webkit-transition: color 0.3s ease; -moz-transition: color 0.3s ease; -o-transition: color 0.3s ease; transition: color 0.3s ease; } body a:hover { color: #0069aa; } table { border-collapse: collapse; border-spacing: 0; } th { text-align: inherit; } fieldset, img { border: 0; } img { vertical-align: top; } iframe { display: block; } abbr, acronym { border: 0; font-variant: normal; } del { text-decoration: line-through; } address, caption, cite, code, dfn, em, th, var { font-style: normal; } ol, ul, li { list-style: none; } caption, th { text-align: center; } q:before, q:after { content: ""; } sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } a:hover { text-decoration: none; } ins, a { text-decoration: none; } .clear:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; } .clear { zoom: 1; } .show { display: block; } .hide { display: none; } .fl{ display: inline; } .fl { float: left; } @font-face { font-family: "iconfont"; src: url("https://security.samsclub.cn/front-passport/passport/css/sam/iconfont.woff") format("woff"); } .iconfont { font-family: "iconfont" !important; font-size: 16px; font-style: normal; -webkit-font-smoothing: antialiased; -webkit-text-stroke-width: 0.2px; -moz-osx-font-smoothing: grayscale; } .global-center { width: 100%; margin: 0 auto; } .global-center-box { margin-left: 0; margin-right: 0; } .bold { font-weight: bold; } a.blue-link, .blue-font { color: #06c; } input[type="text"], input[type="password"], input[type="search"], input[type="tel"], input[type="number"], input[type="email"], input[type="url"], textarea { -webkit-appearance: none; } input:focus, select:focus, textarea:focus, button:focus { outline: none; } .submit-btn { display: block; width: 100%; height: 50px; margin-top: 5px; -moz-border-radius: 3px; border-radius: 3px; background: #006aaf; text-align: center; color: #fff; line-height: 50px; font-size: 18px; font-family: "Microsoft YaHei"; font-weight: bold; } .submit-btn:hover { background-color: #005f9e; color: #fff; } .submit-btn-mt { margin-top: 20px; } .submit-btn-loading { background: #e5e5e5; color: #ccc; } .submit-btn-loading:hover { background: #e5e5e5; color: #ccc; } .vip-note { padding: 5px 10px; border: 1px solid #e6deb8; -moz-border-radius: 2px; border-radius: 2px; background-color: #fff7cd; -moz-box-sizing: border-box; box-sizing: border-box; color: #977a6f; } a.pic-verification { position: relative; float: right; width: 93px; height: 36px; overflow: hidden; border: 1px solid #dcdcdc; } a.pic-verification img { position: absolute; top: 1px; left: 1px; } a.pic-verification .refresh-code { display: none; position: absolute; left: 0; top: 0; width: 95px; height: 38px; background-color: rgba(0, 0, 0, 0.7); text-align: center; line-height: 38px; color: #fff; } a.pic-verification em { margin-right: 5px; } a.pic-verification:hover .refresh-code { display: block; } .vip-select-simulate { position: relative; } .vip-select-simulate .simulate-text { display: block; position: relative; width: 100%; height: 40px; padding: 0 10px; border: 1px solid #eee; -moz-border-radius: 2px; border-radius: 2px; -moz-box-sizing: border-box; box-sizing: border-box; color: #333; line-height: 40px; } .vip-select-simulate .simulate-text:after { content: ""; position: absolute; top: 17px; right: 15px; border: 5px solid transparent; border-top-color: #666; } .vip-select-simulate .vip-select { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; filter: alpha(opacity=0); opacity: 0; } .agreement { position: relative; } .agreement input[type="checkbox"] { position: relative; width: 13px; height: 13px; border: 1px solid #006aaf; -moz-border-radius: 2px; border-radius: 2px; vertical-align: middle; } .agreement input[type="checkbox"]:checked { background-color: #006aaf; } .agreement input[type="checkbox"]:checked:after { content: ""; position: absolute; left: 1px; top: 1px; width: 7px; height: 4px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } .agreement label { vertical-align: middle; } .passport-pop-box { display: none; margin: -1px -25px -25px; position: relative; width: 480px; -moz-border-radius: 4px; border-radius: 4px; background: #fff; border: 1px solid #eee; border-top: 2px solid #246dba; z-index: 1200; } .passport-pop-box-member { width: 580px; padding-bottom: 25px; } .passport-pop-box .close-btn { position: absolute; top: 0; right: 10px; width: 24px; height: 48px; font-size: 24px; color: #666; cursor: pointer; text-align: center; line-height: 48px; } .passport-pop-box .member-terms { height: 265px; overflow-y: auto; margin: 0 15px; padding: 0 15px 15px; border: 1px solid #dcdcdc; color: #333; line-height: 18px; } .passport-pop-box .member-terms dt { margin-top: 15px; } .passport-pop-box .member-terms dd { text-indent: 24px; } .login-bg { background: #fff; } .login-top-bg { background: #f8f8f8; } .login-top { width: 190px; margin: 0 auto; padding: 50px 0; } .logo-box { width: 100px; height: 100px; margin: 0 auto; } .logo-box img { width: 100px; height: 100px; } .login-tit { margin-top: 30px; border-top: 1px solid #b3b3b3; text-align: center; color: #333; font-size: 20px; font-family: "Microsoft YaHei"; font-weight: normal; } .login-tit em { position: relative; top: -15px; background: #f8f8f8; padding: 0 20px; line-height: 30px; } .form-wrap { padding: 30px 0 30px; border-top: 1px solid #eee; } .form-wrap h4 { text-align: center; color: #333; font-size: 18px; font-family: "Microsoft YaHei"; font-weight: normal; line-height: 50px; } .form-wrap .form-box { width: 320px; margin: 0 auto; text-align: center; } .form-wrap .form-box input::-ms-clear { display: none; } .form-wrap .form-box input::-ms-reveal { display: none; } .form-wrap .form-box .form-item-tips { position: relative; margin-bottom: 30px; padding: 0; } .form-wrap .form-box .form-item-tips .ipt-text { margin: 0; } .form-wrap .form-box .form-item-wrong .ipt-text { border: 1px solid #f22727; } .form-wrap .form-box .form-item-wrong .tips-box-default { display: none; } .form-wrap .form-box .form-item-wrong .tips-box-wrong { display: block; } .form-wrap .form-box .ipt-text { width: 318px; height: 36px; margin: 10px 0; text-indent: 10px; border: 1px solid #dcdcdc; -moz-border-radius: 2px; border-radius: 2px; background: #fff; line-height: 36px; color: #666; color: #666; font-size: 14px; font-family: "Microsoft YaHei"; } .form-wrap .form-box .ipt-text:focus { border: 1px solid #00abdd; } .form-wrap .form-box .placeholder { display: none; } .form-wrap .form-box .tips-box { height: 18px; text-align: left; color: #f22727; line-height: 18px; font-family: "Microsoft YaHei"; } .form-wrap .form-box .tips-box-default { position: absolute; top: 37px; left: 0; color: #aaa; text-align: left; text-indent: 10px; line-height: 30px; } .form-wrap .form-box .tips-box-wrong { display: none; position: absolute; top: 37px; left: 0; color: #aaa; text-align: left; text-indent: 10px; line-height: 30px; color: #f22727; } .form-wrap .form-box .tips-box-red { color: #f22727; } .form-wrap .form-box .forget-password { float: left; line-height: 30px; color: #666; } .form-wrap .form-box .regist { float: right; line-height: 30px; color: #06c; } .form-wrap .form-box .verification-item { border: 0 none; } .form-wrap .form-box .ipt-verification { width: 215px; float: left; border: 1px solid #dcdcdc; } .form-wrap .form-box a.pic-verification { margin: 10px 0; } .form-wrap .success-box { width: 550px; margin: 0 auto; } .form-wrap .success-box h5 { text-align: center; font-size: 14px; font-weight: normal; } .form-wrap .success-box h5.tl { text-align: left; } .form-wrap .success-box .btn-box { margin-top: 20px; text-align: center; } .form-wrap .success-box .btn-box a { width: 150px; height: 50px; display: inline-block; margin: 0 10px; text-align: center; line-height: 50px; -moz-border-radius: 2px; border-radius: 2px; font-size: 18px; font-family: "Microsoft YaHei"; font-weight: bold; color: #fff; } .form-wrap .success-box .btn-box a.blue-btn { background: #246dba; } .form-wrap .success-box .btn-box a.blue-btn-long { width: 220px; } .form-wrap .success-box .btn-box a.blue-btn:hover { background-color: #005f9e; } .form-wrap .success-box .btn-box a.green-btn { background: #57ba47; } .form-wrap .success-box .btn-box a.green-btn:hover { background-color: #5e9732; } .form-wrap .phone-box { width: 455px; margin: 0 auto; } .form-wrap .phone-box .phone-verification-text { font-size: 14px; line-height: 20px; } .form-wrap .phone-box .phone-verification-text .blue-font { font-weight: bold; } .form-wrap .phone-box .form-box { width: 455px; } .form-wrap .phone-box .form-box .ipt-verification { width: 300px; } .form-wrap .phone-box .form-box .phone-verification { float: right; width: 138px; height: 36px; margin: 10px 0; border: 1px solid #eee; background-color: #f7f7f7; text-align: center; color: #666; line-height: 36px; } .form-wrap .phone-box .form-box .resend-verification { background-color: #eee; color: #ccc; } .form-wrap .phone-box .submit-btn { width: 220px; height: 35px; margin: 30px auto 0; line-height: 35px; font-size: 14px; } .form-wrap .er-codePic { width: 130px; height: 130px; margin: 18px auto; padding: 5px; border: 1px solid #f3f3f3; } .form-wrap .er-codeTips { height: 30px; padding-bottom: 30px; color: #999; font-size: 18px; font-weight: normal; font-family: "Microsoft YaHei"; line-height: 30px; text-align: center; } .member-form-wrap { border-top: 1px solid #eee; padding: 50px 0; } .member-form-wrap .member-form-box { width: 440px; margin: 0 auto; } .member-form-wrap .member-tab { margin-right: -40px; } .member-form-wrap .member-tab a { position: relative; float: left; width: 198px; height: 134px; margin-right: 40px; border: 1px solid #e5e5e5; -moz-border-radius: 4px; border-radius: 4px; background: #f8f8f8; line-height: 20px; text-align: center; color: #374551; } .member-form-wrap .member-tab a em { display: block; font-size: 36px; padding: 24px 0; color: #0799c9; line-height: 36px; } .member-form-wrap .member-tab a b { font-size: 18px; font-family: "Microsoft YaHei"; font-color: #374551; } .member-form-wrap .member-tab a p { font-size: 14px; family: "Microsoft YaHei"; color: #374551; } .member-form-wrap .member-tab a span { display: none; position: absolute; right: -7px; top: -7px; width: 24px; height: 24px; -moz-border-radius: 50%; border-radius: 50%; border: 2px solid #0799c9; background: #fff; } .member-form-wrap .member-tab a span i { color: #3f4c58; font-weight: bold; } .member-form-wrap .member-tab a:hover { width: 196px; height: 132px; border: 2px solid #0799c9; background: #fff; } .member-form-wrap .member-tab a.cur { width: 196px; height: 132px; border: 2px solid #0799c9; background: #fff; } .member-form-wrap .member-tab a.cur span { display: block; } .member-form-wrap .member-tab-detail h4 { margin-top: 15px; text-align: center; color: #333; font-size: 18px; font-family: "Microsoft YaHei"; font-weight: normal; line-height: 50px; } .member-form-wrap .member-tab-detail .blue-font { margin-bottom: 15px; line-height: 18px; } .member-form-wrap .vip-login-inf { display: inline-block; width: 100%; -moz-box-sizing: border-box; box-sizing: border-box; } .member-form-wrap .vip-login-inf .find-card-num { position: relative; z-index: 130; } .member-form-wrap .vip-login-inf .find-card-num .card-box { display: none; position: absolute; top: 0; left: 130px; border: 1px solid #79cde5; -moz-box-shadow: 0 0 5px #00a9dd; box-shadow: 0 0 5px #00a9dd; } .member-form-wrap .vip-login-inf .find-card-num .card-box img { position: relative; z-index: 135; } .member-form-wrap .vip-login-inf .find-card-num .card-box:after { content: ""; position: absolute; top: 8px; left: -5px; z-index: 130; width: 10px; height: 10px; overflow: hidden; background-color: #fff; border-left: 1px solid #79cde5; border-bottom: 1px solid #79cde5; -moz-box-shadow: -2px 2px 2px #c6e3eb; box-shadow: -2px 2px 2px #c6e3eb; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .member-form-wrap .vip-login-inf .login-list { width: 100%; } .member-form-wrap .vip-login-inf .login-list li { font-size: 14px; margin-bottom: 10px; } .member-form-wrap .vip-login-inf .login-list li .error-note, .member-form-wrap .vip-login-inf .login-list li .reminder-note { padding-left: 10px; line-height: 22px; } .member-form-wrap .vip-login-inf .login-list li .error-note { display: none; color: #f22727; } .member-form-wrap .vip-login-inf .login-list li .reminder-note { color: #999; } .member-form-wrap .vip-login-inf .login-list li input[type="text"] { padding: 10px; border: 1px solid #eee; -moz-border-radius: 2px; border-radius: 2px; -moz-box-sizing: border-box; box-sizing: border-box; } .member-form-wrap .vip-login-inf .login-list li input[type="text"]:focus { border: 1px solid #00abdd; } .member-form-wrap .vip-login-inf .login-list li .placeholder { display: none; } .member-form-wrap .vip-login-inf .login-list li .agreement { margin-top: 8px; } .member-form-wrap .vip-login-inf .login-list li .login-ipt { width: 100%; } .member-form-wrap .vip-login-inf .login-list li .vip-select-option { width: 32%; margin-left: 2%; } .member-form-wrap .vip-login-inf .login-list li .vip-select-option:first-child { margin-left: 0; } .member-form-wrap .vip-login-inf .login-list li .credentials-num { width: 66%; } .member-form-wrap .vip-login-inf .login-list li .phone-code { width: 66%; } .member-form-wrap .vip-login-inf .login-list li .receive_code { display: inline-block; width: 32%; padding: 10px; -moz-box-sizing: border-box; box-sizing: border-box; border: 1px solid #eee; background-color: #f7f7f7; color: #999; text-align: center; } .member-form-wrap .vip-login-inf .login-list li .reacquire_code { background-color: #f7f7f7; color: #999; cursor: default; } .member-form-wrap .vip-login-inf .submit-btn { width: 220px; margin: 0 auto; } .regist-form-wrap { padding: 30px 0; border-top: 1px solid #eee; } .regist-form-wrap h4 { padding: 25px 0; font-size: 18px; text-align: center; font-weight: normal; line-height: 20px; } .regist-form-wrap .member-tab { width: 200px; height: 140px; padding: 20px 0 30px; margin: 0 auto; } .regist-form-wrap .member-tab a { position: relative; width: 198px; height: 134px; border: 1px solid #e5e5e5; -moz-border-radius: 4px; border-radius: 4px; background: #f8f8f8; line-height: 20px; text-align: center; color: #374551; } .regist-form-wrap .member-tab a em { display: block; font-size: 36px; padding: 24px 0; color: #0799c9; line-height: 36px; } .regist-form-wrap .member-tab a b { font-size: 18px; font-family: "Microsoft YaHei"; font-color: #374551; } .regist-form-wrap .member-tab a p { font-size: 14px; family: "Microsoft YaHei"; color: #374551; } .regist-form-wrap .member-tab a span { display: none; position: absolute; right: -7px; top: -7px; width: 24px; height: 24px; -moz-border-radius: 50%; border-radius: 50%; border: 2px solid #0799c9; background: #fff; } .regist-form-wrap .member-tab a span i { color: #3f4c58; font-weight: bold; } .regist-form-wrap .member-tab a:hover { width: 196px; height: 132px; border: 2px solid #0799c9; background: #fff; } .regist-form-wrap .member-tab a.cur { width: 196px; height: 132px; border: 2px solid #0799c9; background: #fff; } .regist-form-wrap .member-tab a.cur span { display: block; } .regist-form-wrap .regist-form-box { width: 442px; margin: 0 auto; } .regist-form-wrap .regist-form-box .hascard-regist { display: none; } .regist-form-wrap .regist-form-box .regist-form-item { position: relative; margin-bottom: 20px; } .regist-form-wrap .regist-form-box .regist-form-tips { margin-bottom: 32px; } .regist-form-wrap .regist-form-box .regist-formcard-tips { margin-bottom: 0; } .regist-form-wrap .regist-form-box .reminder-note { position: relative; z-index: 130; height: 32px; line-height: 32px; text-indent: 10px; color: #999; } .regist-form-wrap .regist-form-box .reminder-note .card-box { display: none; position: absolute; top: 0; left: 130px; border: 1px solid #79cde5; -moz-box-shadow: 0 0 5px #00a9dd; box-shadow: 0 0 5px #00a9dd; text-indent: 0; } .regist-form-wrap .regist-form-box .reminder-note .card-box img { position: relative; z-index: 135; } .regist-form-wrap .regist-form-box .reminder-note .card-box:after { content: ""; position: absolute; top: 8px; left: -5px; z-index: 130; width: 10px; height: 10px; overflow: hidden; background-color: #fff; border-left: 1px solid #79cde5; border-bottom: 1px solid #79cde5; -moz-box-shadow: -2px 2px 2px #c6e3eb; box-shadow: -2px 2px 2px #c6e3eb; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .regist-form-wrap .regist-form-box .log-list-con .vip-select-simulate { position: relative; width: 32%; margin-left: 2%; } .regist-form-wrap .regist-form-box .log-list-con .vip-select-simulate:first-child { margin-left: 0; } .regist-form-wrap .regist-form-box .log-list-con .vip-select-simulate .simulate-text { font-size: 14px; color: #999; } .regist-form-wrap .regist-form-box .ipt-text { width: 440px; height: 36px; border: 1px solid #dcdcdc; -moz-border-radius: 2px; border-radius: 2px; line-height: 36px; text-indent: 10px; font-size: 14px; } .regist-form-wrap .regist-form-box .ipt-text:focus { border: 1px solid #00abdd; } .regist-form-wrap .regist-form-box .placeholder { display: none; } .regist-form-wrap .regist-form-box .tips-box-default, .regist-form-wrap .regist-form-box .tips-box-wrong { position: absolute; top: 38px; color: #aaa; text-indent: 10px; line-height: 32px; } .regist-form-wrap .regist-form-box .tips-box-wrong { display: none; } .regist-form-wrap .regist-form-box .regist-form-wrong { margin-bottom: 32px; } .regist-form-wrap .regist-form-box .regist-form-wrong .ipt-text { border: 1px solid #f22727; } .regist-form-wrap .regist-form-box .regist-form-wrong .ipt-text:focus { border: 1px solid #00abdd; } .regist-form-wrap .regist-form-box .regist-form-wrong .tips-box-default { display: none; } .regist-form-wrap .regist-form-box .regist-form-wrong .tips-box-wrong { display: block; color: #f22727; } .regist-form-wrap .regist-form-box .password-strength { position: absolute; top: 38px; right: 0; padding-top: 9px; line-height: 12px; color: #aaa; } .regist-form-wrap .regist-form-box .password-strength em, .regist-form-wrap .regist-form-box .password-strength i, .regist-form-wrap .regist-form-box .password-strength span, .regist-form-wrap .regist-form-box .password-strength u, .regist-form-wrap .regist-form-box .password-strength s { display: inline-block; width: 6px; height: 12px; margin-left: 4px; background: #d0d0d0; -moz-border-radius: 1px; border-radius: 1px; } .regist-form-wrap .regist-form-box .password-strength i { background: #5dbcfa; } .regist-form-wrap .regist-form-box .password-strength span { background: #3d9fdf; } .regist-form-wrap .regist-form-box .password-strength u { background: #1b84c8; } .regist-form-wrap .regist-form-box .password-strength s { background: #006aaf; } .regist-form-wrap .regist-form-box .ipt-verification { float: left; width: 335px; } .regist-form-wrap .regist-form-box .verification-item { border: 0 none; } .regist-form-wrap .regist-form-box .verification-phone .ipt-verification { width: 290px; } .regist-form-wrap .regist-form-box .verification-phone .phone-verification-btn, .regist-form-wrap .regist-form-box .verification-phone .resend-btn { float: right; width: 140px; height: 36px; border: 1px solid #eee; background-color: #f7f7f7; line-height: 36px; text-align: center; -moz-border-radius: 2px; border-radius: 2px; color: #666; } .regist-form-wrap .regist-form-box .verification-phone .resend-btn { background-color: #eee; color: #ccc; } .regist-form-wrap .regist-form-box .yellow-tips { border: 1px solid #e6deb8; background-color: #fff7cd; color: #977a6f; line-height: 28px; margin-bottom: 10px; padding: 0 10px; } .regist-form-wrap .regist-form-box .btn-box { margin: 24px 15px 0; } .regist-form-wrap .regist-form-box .btn-box .submit-btn { width: 220px; margin: 0 auto; } .activation-form-wrap { padding-top: 30px; border-top: 1px solid #eee; } .activation-form-wrap h4 { padding: 25px 0; font-size: 18px; text-align: center; font-weight: normal; line-height: 20px; } .activation-form-wrap .activation-form-box { width: 440px; margin: 0 auto; } .activation-form-wrap h5 { padding-bottom: 15px; text-align: center; font-size: 14px; font-weight: normal; } .activation-form-wrap .btn-box { position: relative; padding-top: 10px; } .activation-form-wrap .btn-box .submit-btn { height: 35px; width: 220px; margin: 0 auto; font-size: 14px; line-height: 35px; } .activation-form-wrap .btn-box .blue-link { position: absolute; top: 15px; left: 50%; margin-left: 125px; line-height: 35px; } .activation-form-wrap .activation-tit { font-size: 14px; line-height: 36px; } .activation-form-wrap .activation-form-item { position: relative; margin-bottom: 32px; } .activation-form-wrap .ipt-text { width: 440px; height: 36px; border: 1px solid #dcdcdc; -moz-border-radius: 2px; border-radius: 2px; line-height: 36px; text-indent: 10px; font-size: 14px; } .activation-form-wrap .ipt-text:focus { border: 1px solid #00abdd; } .activation-form-wrap .tips-box-wrong { position: absolute; top: 36px; display: none; color: #aaa; text-indent: 10px; line-height: 32px; color: #f22727; } .activation-form-wrap .activation-form-wrong .ipt-text { border: 1px solid #f22727; } .activation-form-wrap .activation-form-wrong .ipt-text:focus { border: 1px solid #00abdd; } .activation-form-wrap .activation-form-wrong .tips-box-wrong { display: block; } .select-method { width: 386px; margin: 0 auto; text-align: center; } .select-method h4 { margin: 50px 0 20px; font-size: 18px; font-weight: normal; } .select-method .select-tab-wrap a { display: inline-block; width: 163px; height: 77px; margin: 0 13px; padding: 26px 0 0 0; border: 1px solid #e5e5e5; -moz-border-radius: 4px; border-radius: 4px; background-color: #f8f8f8; } .select-method .select-tab-wrap a em { font-size: 52px; color: #0799c9; vertical-align: middle; line-height: 52px; } .select-method .select-tab-wrap a span { vertical-align: middle; font-size: 14px; } .select-method .select-tab-wrap a:hover { width: 161px; height: 76px; padding: 25px 0 0 0; border: 2px solid #0799c9; background-color: #fff; color: #333; } .tips-select-wrong-pc { padding-left: 10px; display: none; position: static; height: 26px; line-height: 26px; color: #f22727; text-align: left; } .wx-submit-btn { display: block; width: 100%; height: 50px; margin-top: 5px; background: url(https://security.samsclub.cn/front-passport/passport/images/sam/icon-wechat.png) center no-repeat; border: 1px #12b401 solid; -moz-border-radius: 3px; border-radius: 3px; text-align: center; color: #fff; line-height: 50px; font-size: 18px; font-family: "Microsoft YaHei"; font-weight: bold; } .wx-submit-btn:hover { background: url(https://security.samsclub.cn/front-passport/passport/images/sam/icon-hover-wechat.png) center no-repeat; border-color: #109e01; }
0.445771
0.087019
@font-face { font-family: coign; src: url(./components/font/coign.ttf); } .customButton { background-color: transparent; border: none; color: grey; display: inline-block; vertical-align: middle; } .connectButton { background-color: #5382B0; color: white; } .message { background-color: lightblue; } .mintScreenButton { align-items: center; border: none; border-radius: 40px; display: inline-block; font-size: 17px; font-weight: 700; grid-gap: 20px; gap: 20px; justify-content: space-between; padding: 10px 20px; } .px-xl-5{ padding-left: 134px !important; } .navbar-nav{ background-color: rgba(114,107,107,.3); border-radius: 20px; } .navbar-nav li a{ padding-left: 25px !important; padding-right: 25px !important; color: #FFF !important; font-size: 19px; font-weight: 600; } .navbar-nav { float:none; margin:0 auto; display: block; text-align: center; } @media (min-width: 1000px){ .navbar-nav > li { display: inline-block; float:none; } } @media (min-width: 375px) and (min-height: 667px) { .customContainer { margin-top: 75px; } } @media (max-width: 376px) { .customContainer { margin-top: 120px; } .img-fluid { max-width: 100%; height: 150px; } .connectButton { margin-top: -70px; } } @media (min-width: 375px) and (min-height: 800px) { .customContainer { margin-top: 150px; } } @media (min-width: 500px) { .customContainer { margin-top: 150px; } } .pAll{ padding-left: 50px; padding-right: 50px; padding-top: 100px; padding-bottom: 100px; text-align: justify; } h5, h6{ font-weight: 400; } .alert{ color: #FFF; margin-bottom: 0; } .profilePic{ width: 70px; height: 70px; object-fit: cover; border-radius: 50% !important; } .btnNoHover:hover{ background-color: transparent; color:#FFF; cursor: default; } .cardNoBackground{ background-color: transparent; border: 2px solid rgba(255, 255, 255, 0.1); text-align: justify; } .fixed-row-bottom { background-color: #000; position:fixed; bottom:0; width:100%; } .fixed-row-top { background-color: #000!important; position:fixed; top:0; width:100%; } @font-face { font-family: "Coign-Pro-47"; src: url('./components/font/coign.ttf') format('truetype'); } .avatar { vertical-align: middle; width: 50px; height: 50px; border-radius: 50%; } .btn-read-more { align-items: center; border: none; border-radius: 40px; display: flex; font-size: 15px; grid-gap: 20px; gap: 20px; justify-content: space-between; padding: 10px 20px; } .btn-read-more:hover { background-color: black; border: 5px; border-color: white; color: white; } .icon { background-color: #f7f7f7; height: 35px; width: 35px; border-radius: 35px; display: flex; align-items: center; justify-content: center; } .h1-title { font-family: "Coign-Pro-47"; } h1, h2, h3, h4, h5, h6 { color: white; } .marquee { margin: 0 auto; white-space: nowrap; overflow: hidden; position: absolute; } .marquee span { display: inline-block; padding-left: 100%; animation: marquee 14s linear infinite; } .marquee2 span { animation-delay: 7s; } @keyframes marquee { 0% { transform: translate(0, 0); } 100% { transform: translate(-100%, 0); } }
nft-frontend/src/my-app.css
@font-face { font-family: coign; src: url(./components/font/coign.ttf); } .customButton { background-color: transparent; border: none; color: grey; display: inline-block; vertical-align: middle; } .connectButton { background-color: #5382B0; color: white; } .message { background-color: lightblue; } .mintScreenButton { align-items: center; border: none; border-radius: 40px; display: inline-block; font-size: 17px; font-weight: 700; grid-gap: 20px; gap: 20px; justify-content: space-between; padding: 10px 20px; } .px-xl-5{ padding-left: 134px !important; } .navbar-nav{ background-color: rgba(114,107,107,.3); border-radius: 20px; } .navbar-nav li a{ padding-left: 25px !important; padding-right: 25px !important; color: #FFF !important; font-size: 19px; font-weight: 600; } .navbar-nav { float:none; margin:0 auto; display: block; text-align: center; } @media (min-width: 1000px){ .navbar-nav > li { display: inline-block; float:none; } } @media (min-width: 375px) and (min-height: 667px) { .customContainer { margin-top: 75px; } } @media (max-width: 376px) { .customContainer { margin-top: 120px; } .img-fluid { max-width: 100%; height: 150px; } .connectButton { margin-top: -70px; } } @media (min-width: 375px) and (min-height: 800px) { .customContainer { margin-top: 150px; } } @media (min-width: 500px) { .customContainer { margin-top: 150px; } } .pAll{ padding-left: 50px; padding-right: 50px; padding-top: 100px; padding-bottom: 100px; text-align: justify; } h5, h6{ font-weight: 400; } .alert{ color: #FFF; margin-bottom: 0; } .profilePic{ width: 70px; height: 70px; object-fit: cover; border-radius: 50% !important; } .btnNoHover:hover{ background-color: transparent; color:#FFF; cursor: default; } .cardNoBackground{ background-color: transparent; border: 2px solid rgba(255, 255, 255, 0.1); text-align: justify; } .fixed-row-bottom { background-color: #000; position:fixed; bottom:0; width:100%; } .fixed-row-top { background-color: #000!important; position:fixed; top:0; width:100%; } @font-face { font-family: "Coign-Pro-47"; src: url('./components/font/coign.ttf') format('truetype'); } .avatar { vertical-align: middle; width: 50px; height: 50px; border-radius: 50%; } .btn-read-more { align-items: center; border: none; border-radius: 40px; display: flex; font-size: 15px; grid-gap: 20px; gap: 20px; justify-content: space-between; padding: 10px 20px; } .btn-read-more:hover { background-color: black; border: 5px; border-color: white; color: white; } .icon { background-color: #f7f7f7; height: 35px; width: 35px; border-radius: 35px; display: flex; align-items: center; justify-content: center; } .h1-title { font-family: "Coign-Pro-47"; } h1, h2, h3, h4, h5, h6 { color: white; } .marquee { margin: 0 auto; white-space: nowrap; overflow: hidden; position: absolute; } .marquee span { display: inline-block; padding-left: 100%; animation: marquee 14s linear infinite; } .marquee2 span { animation-delay: 7s; } @keyframes marquee { 0% { transform: translate(0, 0); } 100% { transform: translate(-100%, 0); } }
0.455199
0.077762
@media (max-width: 1279px) { /* ThemeREX Addons */ /* Recent News on expanded pages */ body.expand_content .sc_recent_news_style_news-announce .post_size_full { height: 540px; } body.expand_content .sc_recent_news_style_news-announce .post_size_big { height: 270px; } body.expand_content .sc_recent_news_style_news-announce .post_size_medium, body.expand_content .sc_recent_news_style_news-announce .post_size_small { height: 135px; } /* Content Area: Tablet */ .sc-tablet_inner_width_1_1 > .elementor-column-wrap, .sc-tablet_inner_width_1_1 > .elementor-widget-wrap { width: var(--theme-var-page); } .sc-tablet_inner_width_1_2 > .elementor-column-wrap, .sc-tablet_inner_width_1_2 > .elementor-widget-wrap { width: calc( var(--theme-var-page) / 2); } .sc-tablet_inner_width_1_3 > .elementor-column-wrap, .sc-tablet_inner_width_1_3 > .elementor-widget-wrap { width: calc( var(--theme-var-page) / 3); } .sc-tablet_inner_width_2_3 > .elementor-column-wrap, .sc-tablet_inner_width_2_3 > .elementor-widget-wrap { width: calc( var(--theme-var-page) / 3 * 2); } .sc-tablet_inner_width_1_4 > .elementor-column-wrap, .sc-tablet_inner_width_1_4 > .elementor-widget-wrap { width: calc( var(--theme-var-page) / 4); } .sc-tablet_inner_width_3_4 > .elementor-column-wrap, .sc-tablet_inner_width_3_4 > .elementor-widget-wrap { width: calc( var(--theme-var-page) / 4 * 3); } .sc-tablet_inner_width_none > .elementor-column-wrap, .sc-tablet_inner_width_none > .elementor-widget-wrap { width: 100%; } .menu_side_present .sc-tablet_inner_width_none > .elementor-column-wrap, .menu_side_present .sc-tablet_inner_width_none > .elementor-widget-wrap { width: calc( 100% - var(--theme-var-menu_side)); } } @media (max-width: 1023px) { /* ThemeREX Addons */ /* Recent News on expanded pages */ body.expand_content .sc_recent_news_style_news-announce .post_size_full { width: 100%; height: 198px; } body.expand_content .sc_recent_news_style_news-announce .post_size_big { width: 100%; height: 198px; } body.expand_content .sc_recent_news_style_news-announce .post_size_medium, body.expand_content .sc_recent_news_style_news-announce .post_size_small { width: 100%; height: 198px; } } @media (max-width: 767px) { /* ThemeREX Addons */ /* Recent News on expanded pages */ body.expand_content .sc_recent_news_style_news-announce .post_size_full { width: 100%; height: 124px; } body.expand_content .sc_recent_news_style_news-announce .post_size_big { width: 100%; height: 124px; } body.expand_content .sc_recent_news_style_news-announce .post_size_medium, body.expand_content .sc_recent_news_style_news-announce .post_size_small { width: 100%; height: 124px; } /* Content Area: Mobile */ .sc-mobile_inner_width_1_1 > .elementor-column-wrap, .sc-mobile_inner_width_1_1 > .elementor-widget-wrap { width: var(--theme-var-page); } .sc-mobile_inner_width_1_2 > .elementor-column-wrap, .sc-mobile_inner_width_1_2 > .elementor-widget-wrap { width: calc( var(--theme-var-page) / 2); } .sc-mobile_inner_width_1_3 > .elementor-column-wrap, .sc-mobile_inner_width_1_3 > .elementor-widget-wrap { width: calc( var(--theme-var-page) / 3); } .sc-mobile_inner_width_2_3 > .elementor-column-wrap, .sc-mobile_inner_width_2_3 > .elementor-widget-wrap { width: calc( var(--theme-var-page) / 3 * 2); } .sc-mobile_inner_width_1_4 > .elementor-column-wrap, .sc-mobile_inner_width_1_4 > .elementor-widget-wrap { width: calc( var(--theme-var-page) / 4); } .sc-mobile_inner_width_3_4 > .elementor-column-wrap, .sc-mobile_inner_width_3_4 > .elementor-widget-wrap { width: calc( var(--theme-var-page) / 4 * 3); } .sc-mobile_inner_width_none > .elementor-column-wrap, .sc-mobile_inner_width_none > .elementor-widget-wrap, .menu_side_present .sc-mobile_inner_width_none > .elementor-column-wrap, .menu_side_present .sc-mobile_inner_width_none > .elementor-widget-wrap { width: 100%; } /* Stack rows */ .menu_side_right .sc_stack_section_fixed { right: 0 !important; } .menu_side_left .sc_stack_section_fixed { left: 0 !important; } /* Video player in narrow content */ .narrow_content .trx_addons_video_list_controller_bottom .trx_addons_video_list_controller_wrap .trx_addons_video_list_controller_item .trx_addons_video_list_image { width: 30%; } .narrow_content .trx_addons_video_list_controller_bottom .trx_addons_video_list_controller_wrap .trx_addons_video_list_controller_item .trx_addons_video_list_subtitle, .narrow_content .trx_addons_video_list_controller_bottom .trx_addons_video_list_controller_wrap .trx_addons_video_list_controller_item .trx_addons_video_list_meta { display: none; } /* Video sticky */ .trx_addons_video_sticky_on .trx_addons_video_sticky_inner .trx_addons_video_list_title_wrap { background-color: var(--theme-color-bg_color_09); } .trx_addons_video_sticky_on .trx_addons_video_sticky_inner .trx_addons_video_list_title_wrap .trx_addons_video_list_title { color: var(--theme-color-text_dark); } /* Services: Style 'Callouts' */ .sc_services_callouts.sc_services_featured_top .row.columns_padding_bottom.columns_in_single_row > [class*="column-"], .sc_services_callouts.sc_services_featured_top .columns_wrap.columns_padding_bottom.columns_in_single_row > [class*="column-"], .sc_services_callouts.sc_services_featured_top .trx_addons_columns_wrap.columns_padding_bottom.columns_in_single_row > [class*="trx_addons_column-"], .sc_services_callouts.sc_services_featured_bottom .row.columns_padding_bottom.columns_in_single_row > [class*="column-"], .sc_services_callouts.sc_services_featured_bottom .columns_wrap.columns_padding_bottom.columns_in_single_row > [class*="column-"], .sc_services_callouts.sc_services_featured_bottom .trx_addons_columns_wrap.columns_padding_bottom.columns_in_single_row > [class*="trx_addons_column-"] { padding-bottom: calc( 2 * var(--theme-var-grid_gap)); } /* WooCommerce Search */ .trx_addons_woocommerce_tools .trx_addons_woocommerce_search_type_filter .trx_addons_woocommerce_search_form_fields_wrap { background-color: var(--theme-color-bg_color); scrollbar-width: thin; scrollbar-color: var(--theme-color-alter_bd_color) var(--theme-color-alter_bg_color); } .trx_addons_woocommerce_tools .trx_addons_woocommerce_search_type_filter .trx_addons_woocommerce_search_form_fields_wrap::-webkit-scrollbar { width: 8px; } .trx_addons_woocommerce_tools .trx_addons_woocommerce_search_type_filter .trx_addons_woocommerce_search_form_fields_wrap::-webkit-scrollbar-track { background: var(--theme-color-alter_bg_color); } .trx_addons_woocommerce_tools .trx_addons_woocommerce_search_type_filter .trx_addons_woocommerce_search_form_fields_wrap::-webkit-scrollbar-thumb { background-color: var(--theme-color-alter_bd_hover); border: 1px solid var(--theme-color-alter_bg_color); -webkit-border-radius: 6px; -ms-border-radius: 6px; border-radius: 6px; } .trx_addons_woocommerce_tools .trx_addons_woocommerce_search_type_filter .trx_addons_woocommerce_search_form_fields_wrap .sc_form_field { border-color: var(--theme-color-bd_color); } .trx_addons_woocommerce_tools .trx_addons_woocommerce_search_type_filter .trx_addons_woocommerce_search_form_fields_wrap.trx_addons_woocommerce_search_form_fields_wrap_opened .trx_addons_woocommerce_search_header { background-color: var(--theme-color-bg_color); } .trx_addons_woocommerce_tools .trx_addons_woocommerce_search_type_filter .trx_addons_woocommerce_search_form_fields_wrap.trx_addons_woocommerce_search_form_fields_wrap_opened .trx_addons_woocommerce_search_header .trx_addons_woocommerce_search_clear_all { color: var(--theme-color-text_dark); } } @media (max-width: 479px) { /* ThemeREX Addons */ /* Video player in narrow content */ .narrow_content .trx_addons_video_list_controller_bottom .trx_addons_video_list_controller_wrap .trx_addons_video_list_controller_item .trx_addons_video_list_image { width: 50%; } }
skins/default/plugins/trx_addons/trx_addons-responsive.css
@media (max-width: 1279px) { /* ThemeREX Addons */ /* Recent News on expanded pages */ body.expand_content .sc_recent_news_style_news-announce .post_size_full { height: 540px; } body.expand_content .sc_recent_news_style_news-announce .post_size_big { height: 270px; } body.expand_content .sc_recent_news_style_news-announce .post_size_medium, body.expand_content .sc_recent_news_style_news-announce .post_size_small { height: 135px; } /* Content Area: Tablet */ .sc-tablet_inner_width_1_1 > .elementor-column-wrap, .sc-tablet_inner_width_1_1 > .elementor-widget-wrap { width: var(--theme-var-page); } .sc-tablet_inner_width_1_2 > .elementor-column-wrap, .sc-tablet_inner_width_1_2 > .elementor-widget-wrap { width: calc( var(--theme-var-page) / 2); } .sc-tablet_inner_width_1_3 > .elementor-column-wrap, .sc-tablet_inner_width_1_3 > .elementor-widget-wrap { width: calc( var(--theme-var-page) / 3); } .sc-tablet_inner_width_2_3 > .elementor-column-wrap, .sc-tablet_inner_width_2_3 > .elementor-widget-wrap { width: calc( var(--theme-var-page) / 3 * 2); } .sc-tablet_inner_width_1_4 > .elementor-column-wrap, .sc-tablet_inner_width_1_4 > .elementor-widget-wrap { width: calc( var(--theme-var-page) / 4); } .sc-tablet_inner_width_3_4 > .elementor-column-wrap, .sc-tablet_inner_width_3_4 > .elementor-widget-wrap { width: calc( var(--theme-var-page) / 4 * 3); } .sc-tablet_inner_width_none > .elementor-column-wrap, .sc-tablet_inner_width_none > .elementor-widget-wrap { width: 100%; } .menu_side_present .sc-tablet_inner_width_none > .elementor-column-wrap, .menu_side_present .sc-tablet_inner_width_none > .elementor-widget-wrap { width: calc( 100% - var(--theme-var-menu_side)); } } @media (max-width: 1023px) { /* ThemeREX Addons */ /* Recent News on expanded pages */ body.expand_content .sc_recent_news_style_news-announce .post_size_full { width: 100%; height: 198px; } body.expand_content .sc_recent_news_style_news-announce .post_size_big { width: 100%; height: 198px; } body.expand_content .sc_recent_news_style_news-announce .post_size_medium, body.expand_content .sc_recent_news_style_news-announce .post_size_small { width: 100%; height: 198px; } } @media (max-width: 767px) { /* ThemeREX Addons */ /* Recent News on expanded pages */ body.expand_content .sc_recent_news_style_news-announce .post_size_full { width: 100%; height: 124px; } body.expand_content .sc_recent_news_style_news-announce .post_size_big { width: 100%; height: 124px; } body.expand_content .sc_recent_news_style_news-announce .post_size_medium, body.expand_content .sc_recent_news_style_news-announce .post_size_small { width: 100%; height: 124px; } /* Content Area: Mobile */ .sc-mobile_inner_width_1_1 > .elementor-column-wrap, .sc-mobile_inner_width_1_1 > .elementor-widget-wrap { width: var(--theme-var-page); } .sc-mobile_inner_width_1_2 > .elementor-column-wrap, .sc-mobile_inner_width_1_2 > .elementor-widget-wrap { width: calc( var(--theme-var-page) / 2); } .sc-mobile_inner_width_1_3 > .elementor-column-wrap, .sc-mobile_inner_width_1_3 > .elementor-widget-wrap { width: calc( var(--theme-var-page) / 3); } .sc-mobile_inner_width_2_3 > .elementor-column-wrap, .sc-mobile_inner_width_2_3 > .elementor-widget-wrap { width: calc( var(--theme-var-page) / 3 * 2); } .sc-mobile_inner_width_1_4 > .elementor-column-wrap, .sc-mobile_inner_width_1_4 > .elementor-widget-wrap { width: calc( var(--theme-var-page) / 4); } .sc-mobile_inner_width_3_4 > .elementor-column-wrap, .sc-mobile_inner_width_3_4 > .elementor-widget-wrap { width: calc( var(--theme-var-page) / 4 * 3); } .sc-mobile_inner_width_none > .elementor-column-wrap, .sc-mobile_inner_width_none > .elementor-widget-wrap, .menu_side_present .sc-mobile_inner_width_none > .elementor-column-wrap, .menu_side_present .sc-mobile_inner_width_none > .elementor-widget-wrap { width: 100%; } /* Stack rows */ .menu_side_right .sc_stack_section_fixed { right: 0 !important; } .menu_side_left .sc_stack_section_fixed { left: 0 !important; } /* Video player in narrow content */ .narrow_content .trx_addons_video_list_controller_bottom .trx_addons_video_list_controller_wrap .trx_addons_video_list_controller_item .trx_addons_video_list_image { width: 30%; } .narrow_content .trx_addons_video_list_controller_bottom .trx_addons_video_list_controller_wrap .trx_addons_video_list_controller_item .trx_addons_video_list_subtitle, .narrow_content .trx_addons_video_list_controller_bottom .trx_addons_video_list_controller_wrap .trx_addons_video_list_controller_item .trx_addons_video_list_meta { display: none; } /* Video sticky */ .trx_addons_video_sticky_on .trx_addons_video_sticky_inner .trx_addons_video_list_title_wrap { background-color: var(--theme-color-bg_color_09); } .trx_addons_video_sticky_on .trx_addons_video_sticky_inner .trx_addons_video_list_title_wrap .trx_addons_video_list_title { color: var(--theme-color-text_dark); } /* Services: Style 'Callouts' */ .sc_services_callouts.sc_services_featured_top .row.columns_padding_bottom.columns_in_single_row > [class*="column-"], .sc_services_callouts.sc_services_featured_top .columns_wrap.columns_padding_bottom.columns_in_single_row > [class*="column-"], .sc_services_callouts.sc_services_featured_top .trx_addons_columns_wrap.columns_padding_bottom.columns_in_single_row > [class*="trx_addons_column-"], .sc_services_callouts.sc_services_featured_bottom .row.columns_padding_bottom.columns_in_single_row > [class*="column-"], .sc_services_callouts.sc_services_featured_bottom .columns_wrap.columns_padding_bottom.columns_in_single_row > [class*="column-"], .sc_services_callouts.sc_services_featured_bottom .trx_addons_columns_wrap.columns_padding_bottom.columns_in_single_row > [class*="trx_addons_column-"] { padding-bottom: calc( 2 * var(--theme-var-grid_gap)); } /* WooCommerce Search */ .trx_addons_woocommerce_tools .trx_addons_woocommerce_search_type_filter .trx_addons_woocommerce_search_form_fields_wrap { background-color: var(--theme-color-bg_color); scrollbar-width: thin; scrollbar-color: var(--theme-color-alter_bd_color) var(--theme-color-alter_bg_color); } .trx_addons_woocommerce_tools .trx_addons_woocommerce_search_type_filter .trx_addons_woocommerce_search_form_fields_wrap::-webkit-scrollbar { width: 8px; } .trx_addons_woocommerce_tools .trx_addons_woocommerce_search_type_filter .trx_addons_woocommerce_search_form_fields_wrap::-webkit-scrollbar-track { background: var(--theme-color-alter_bg_color); } .trx_addons_woocommerce_tools .trx_addons_woocommerce_search_type_filter .trx_addons_woocommerce_search_form_fields_wrap::-webkit-scrollbar-thumb { background-color: var(--theme-color-alter_bd_hover); border: 1px solid var(--theme-color-alter_bg_color); -webkit-border-radius: 6px; -ms-border-radius: 6px; border-radius: 6px; } .trx_addons_woocommerce_tools .trx_addons_woocommerce_search_type_filter .trx_addons_woocommerce_search_form_fields_wrap .sc_form_field { border-color: var(--theme-color-bd_color); } .trx_addons_woocommerce_tools .trx_addons_woocommerce_search_type_filter .trx_addons_woocommerce_search_form_fields_wrap.trx_addons_woocommerce_search_form_fields_wrap_opened .trx_addons_woocommerce_search_header { background-color: var(--theme-color-bg_color); } .trx_addons_woocommerce_tools .trx_addons_woocommerce_search_type_filter .trx_addons_woocommerce_search_form_fields_wrap.trx_addons_woocommerce_search_form_fields_wrap_opened .trx_addons_woocommerce_search_header .trx_addons_woocommerce_search_clear_all { color: var(--theme-color-text_dark); } } @media (max-width: 479px) { /* ThemeREX Addons */ /* Video player in narrow content */ .narrow_content .trx_addons_video_list_controller_bottom .trx_addons_video_list_controller_wrap .trx_addons_video_list_controller_item .trx_addons_video_list_image { width: 50%; } }
0.255529
0.059647
margin-top: 80px; margin-bottom: 30px; } .bs-callout { padding: 20px; margin: 20px 0; border: 1px solid #eee; border-left-width: 5px; border-radius: 3px; } .bs-callout h4 { margin-top: 0; margin-bottom: 5px; } .bs-callout p:last-child { margin-bottom: 0; } .bs-callout code { border-radius: 3px; } .bs-callout+.bs-callout { margin-top: -5px; } .bs-callout-default { border-left-color: #777; } .bs-callout-default h4 { color: #777; } .bs-callout-primary { border-left-color: #428bca; } .bs-callout-primary h4 { color: #428bca; } .bs-callout-success { border-left-color: #5cb85c; } .bs-callout-success h4 { color: #5cb85c; } .bs-callout-danger { border-left-color: #d9534f; } .bs-callout-danger h4 { color: #d9534f; } .bs-callout-warning { text-align: center; border-top-width: 5px; border-left-width: 1px; border-color: rgba(136, 89, 24, 0.27); border-top-color: #f0ad4e; background-color: rgba(240, 173, 78, 0.1); margin-bottom: 20px; box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 14px; } .bs-callout-warning h4 { color: #985A00; margin-bottom: 12px; font-weight: 100; text-transform: uppercase; font-size: 13px; } .bs-callout-warning p { font-size: 13px; } .bs-callout-info { text-align: center; border-left-color: #5bc0de; background-color: rgba(91, 192, 222, 0.1); border-left-width: 1px; border-top-width: 5px; border-color: rgba(25, 79, 95, 0.19); border-top-color: rgb(91, 192, 222); box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 14px; } .bs-callout-info p { margin-bottom: 0px; } .bs-callout-info h4 { color: rgba(34, 76, 124, 1); font-weight: 100; text-transform: uppercase; font-size: 13px; margin-bottom: 12px; } .bs-callout-info p { font-size: 13px; } .navbar-brand { font-weight: bold; padding-top: 13px; font-size: 22px; } .navbar-brand .navbar-brand-extended { display: block; font-size: 10px; font-weight: 200; } .navbar-default { background-color: #4E2C50; border-bottom: 4px solid #2D0B2F !important; } .tooltip-inner { text-transform: none; font-size: 12px; } .well { transition: box-shadow 1s ease-out; -webkit-box-shadow: 0px 2px 10px #efefef; box-shadow: 0px 2px 10px #efefef; margin: 28px 0 !important; background-color: rgba(53, 77, 72, 0.04) !important; border: 1px solid rgba(44, 62, 80, 0.26) !important; padding: 0 0 20px 0 !important; border-radius: 0; } .well:hover, .well:focus { -webkit-box-shadow: 0px 4px 16px rgba(68, 18, 18, 0.35); box-shadow: 0px 4px 16px rgba(68, 18, 18, 0.35); } .well:hover h1, .well:focus h1 { color: #000; background-color: rgba(53, 142, 168, 1); } .well h1 { transition: background-color 1s; box-shadow: inset rgba(0, 187, 255, 0.05) 0px 10px 10px; font-family: "Roboto Condensed"; text-transform: uppercase; font-weight: 200; font-size: 26px; margin-top: 0; background-color: rgba(53, 142, 168, 0.72); display: block; padding: 12px; text-align: center; } .well ul { display: block !important; text-align: center !important; margin: 30px 16px 0px 30px; padding-left: 0px; overflow: auto; } .well ul li { list-style-type: none !important; float: left; width: 32%; margin-right: 1%; } .well ul li a { transition: all 0.75s ease-out; font-family: "Source Sans Pro"; font-weight: 400; color: #48A997; text-decoration: none; display: block; padding: 8px 8px !important; margin: 0 0 10px 0; background-color: #fff; } .well ul li a:hover { color: #000000; background-color: rgba(72, 169, 151, 0.25); } .well-inner { margin: 30px 20px 10px 20px; } .part-of-above-well { margin-top: -29px !important; border-top: none !important; } .part-of-above-well h1 { background-color: rgba(0, 61, 123, 0.1) !important; font-size: 16px !important; padding: 6px !important; } .well.part-of-above-well:hover, .well.part-of-above-well:focus { -webkit-box-shadow: 0px 4px 16px rgba(68, 18, 18, 0.5); box-shadow: 0px 4px 16px rgba(68, 18, 18, 0.5); } .well.part-of-above-well:hover h1, .well.part-of-above-well:focus h1 { background-color: rgba(62, 5, 102, 0.18) !important; } .excuse.loading { font-size: 31px !important; } .excuse.loading .fa { color: rgba(19, 110, 137, 0.5) !important; margin-bottom: 8px; } .col-md-12 .excuse { font-size: 18px !important; } p.credit { color: #18bc9c; font-size: 10px !important; margin-top: 6px !important; } #notices-wrapper h4 i { font-size: 15px; cursor: pointer; opacity: 0.4; } #usage-agreement h4 i { font-size: 16px; padding-left: 2px; padding-right: 2px; } #programmer-responses h4 i { padding-left: 3px; padding-right: 2px; } #notices-wrapper h4 i:hover { opacity: 1; } .navbar-default .navbar-nav > li > a { transition: color .5s ease-out; } .navbar-default .navbar-nav > li > a:hover { color: #F5A7A7; } .well-inner pre { display: block; padding: 10px; margin: 20px 10px 10px; font-size: 14px; line-height: 1.42857; word-break: break-all; word-wrap: break-word; color: rgba(60, 8, 37, 0.75); border-radius: 0px; border: 1px solid rgba(174, 92, 193, 0.25); background-color: rgb(255, 255, 255); } .well-inner pre code { padding: 0px; font-size: inherit; color: inherit; white-space: pre-wrap; background-color: transparent; border-radius: 0px; font-family: "Ubuntu Mono", monospace; } .table { border: 1px solid rgba(78, 32, 89, 0.3); } .table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td { border: 1px solid rgba(78, 32, 89, 0.3); } .table-responsive { margin: 20px 10px -10px 10px; } .table td code { font-size: 14px; line-height: 1.42857; word-break: break-all; word-wrap: break-word; color: #000; border-radius: 0px; border: none; background-color: rgb(255, 255, 255); font-weight: 500; font-size: 12px; } .table thead tr th { font-family: "Lato","Helvetica Neue",Helvetica,Arial,sans-serif; background-color: rgba(255, 255, 255, 0.4); } .table tbody tr th { background-color: rgba(255, 255, 255, 0.75); padding-top: 10px; font-family: "Roboto Condensed"; font-weight: 400; } .table tbody tr td { background-color: rgba(254, 107, 0, 0.05); padding-bottom: 12px; } /* EOF */
components/core/main.css
margin-top: 80px; margin-bottom: 30px; } .bs-callout { padding: 20px; margin: 20px 0; border: 1px solid #eee; border-left-width: 5px; border-radius: 3px; } .bs-callout h4 { margin-top: 0; margin-bottom: 5px; } .bs-callout p:last-child { margin-bottom: 0; } .bs-callout code { border-radius: 3px; } .bs-callout+.bs-callout { margin-top: -5px; } .bs-callout-default { border-left-color: #777; } .bs-callout-default h4 { color: #777; } .bs-callout-primary { border-left-color: #428bca; } .bs-callout-primary h4 { color: #428bca; } .bs-callout-success { border-left-color: #5cb85c; } .bs-callout-success h4 { color: #5cb85c; } .bs-callout-danger { border-left-color: #d9534f; } .bs-callout-danger h4 { color: #d9534f; } .bs-callout-warning { text-align: center; border-top-width: 5px; border-left-width: 1px; border-color: rgba(136, 89, 24, 0.27); border-top-color: #f0ad4e; background-color: rgba(240, 173, 78, 0.1); margin-bottom: 20px; box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 14px; } .bs-callout-warning h4 { color: #985A00; margin-bottom: 12px; font-weight: 100; text-transform: uppercase; font-size: 13px; } .bs-callout-warning p { font-size: 13px; } .bs-callout-info { text-align: center; border-left-color: #5bc0de; background-color: rgba(91, 192, 222, 0.1); border-left-width: 1px; border-top-width: 5px; border-color: rgba(25, 79, 95, 0.19); border-top-color: rgb(91, 192, 222); box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 14px; } .bs-callout-info p { margin-bottom: 0px; } .bs-callout-info h4 { color: rgba(34, 76, 124, 1); font-weight: 100; text-transform: uppercase; font-size: 13px; margin-bottom: 12px; } .bs-callout-info p { font-size: 13px; } .navbar-brand { font-weight: bold; padding-top: 13px; font-size: 22px; } .navbar-brand .navbar-brand-extended { display: block; font-size: 10px; font-weight: 200; } .navbar-default { background-color: #4E2C50; border-bottom: 4px solid #2D0B2F !important; } .tooltip-inner { text-transform: none; font-size: 12px; } .well { transition: box-shadow 1s ease-out; -webkit-box-shadow: 0px 2px 10px #efefef; box-shadow: 0px 2px 10px #efefef; margin: 28px 0 !important; background-color: rgba(53, 77, 72, 0.04) !important; border: 1px solid rgba(44, 62, 80, 0.26) !important; padding: 0 0 20px 0 !important; border-radius: 0; } .well:hover, .well:focus { -webkit-box-shadow: 0px 4px 16px rgba(68, 18, 18, 0.35); box-shadow: 0px 4px 16px rgba(68, 18, 18, 0.35); } .well:hover h1, .well:focus h1 { color: #000; background-color: rgba(53, 142, 168, 1); } .well h1 { transition: background-color 1s; box-shadow: inset rgba(0, 187, 255, 0.05) 0px 10px 10px; font-family: "Roboto Condensed"; text-transform: uppercase; font-weight: 200; font-size: 26px; margin-top: 0; background-color: rgba(53, 142, 168, 0.72); display: block; padding: 12px; text-align: center; } .well ul { display: block !important; text-align: center !important; margin: 30px 16px 0px 30px; padding-left: 0px; overflow: auto; } .well ul li { list-style-type: none !important; float: left; width: 32%; margin-right: 1%; } .well ul li a { transition: all 0.75s ease-out; font-family: "Source Sans Pro"; font-weight: 400; color: #48A997; text-decoration: none; display: block; padding: 8px 8px !important; margin: 0 0 10px 0; background-color: #fff; } .well ul li a:hover { color: #000000; background-color: rgba(72, 169, 151, 0.25); } .well-inner { margin: 30px 20px 10px 20px; } .part-of-above-well { margin-top: -29px !important; border-top: none !important; } .part-of-above-well h1 { background-color: rgba(0, 61, 123, 0.1) !important; font-size: 16px !important; padding: 6px !important; } .well.part-of-above-well:hover, .well.part-of-above-well:focus { -webkit-box-shadow: 0px 4px 16px rgba(68, 18, 18, 0.5); box-shadow: 0px 4px 16px rgba(68, 18, 18, 0.5); } .well.part-of-above-well:hover h1, .well.part-of-above-well:focus h1 { background-color: rgba(62, 5, 102, 0.18) !important; } .excuse.loading { font-size: 31px !important; } .excuse.loading .fa { color: rgba(19, 110, 137, 0.5) !important; margin-bottom: 8px; } .col-md-12 .excuse { font-size: 18px !important; } p.credit { color: #18bc9c; font-size: 10px !important; margin-top: 6px !important; } #notices-wrapper h4 i { font-size: 15px; cursor: pointer; opacity: 0.4; } #usage-agreement h4 i { font-size: 16px; padding-left: 2px; padding-right: 2px; } #programmer-responses h4 i { padding-left: 3px; padding-right: 2px; } #notices-wrapper h4 i:hover { opacity: 1; } .navbar-default .navbar-nav > li > a { transition: color .5s ease-out; } .navbar-default .navbar-nav > li > a:hover { color: #F5A7A7; } .well-inner pre { display: block; padding: 10px; margin: 20px 10px 10px; font-size: 14px; line-height: 1.42857; word-break: break-all; word-wrap: break-word; color: rgba(60, 8, 37, 0.75); border-radius: 0px; border: 1px solid rgba(174, 92, 193, 0.25); background-color: rgb(255, 255, 255); } .well-inner pre code { padding: 0px; font-size: inherit; color: inherit; white-space: pre-wrap; background-color: transparent; border-radius: 0px; font-family: "Ubuntu Mono", monospace; } .table { border: 1px solid rgba(78, 32, 89, 0.3); } .table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td { border: 1px solid rgba(78, 32, 89, 0.3); } .table-responsive { margin: 20px 10px -10px 10px; } .table td code { font-size: 14px; line-height: 1.42857; word-break: break-all; word-wrap: break-word; color: #000; border-radius: 0px; border: none; background-color: rgb(255, 255, 255); font-weight: 500; font-size: 12px; } .table thead tr th { font-family: "Lato","Helvetica Neue",Helvetica,Arial,sans-serif; background-color: rgba(255, 255, 255, 0.4); } .table tbody tr th { background-color: rgba(255, 255, 255, 0.75); padding-top: 10px; font-family: "Roboto Condensed"; font-weight: 400; } .table tbody tr td { background-color: rgba(254, 107, 0, 0.05); padding-bottom: 12px; } /* EOF */
0.3295
0.063106
.mdi:before, .mdi-set { display: inline-block; font: normal normal normal 24px/1 "Material Design Icons"; font-size: inherit; text-rendering: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; transform: translate(0, 0); } .mdi-access-point:before { content: "\F002"; } .mdi-access-point-network:before { content: "\F003"; } .mdi-account:before { content: "\F004"; } .mdi-account-alert:before { content: "\F005"; } .mdi-account-box:before { content: "\F006"; } .mdi-account-box-outline:before { content: "\F007"; } .mdi-account-card-details:before { content: "\F5D2"; } .mdi-account-check:before { content: "\F008"; } .mdi-account-circle:before { content: "\F009"; } .mdi-account-convert:before { content: "\F00A"; } .mdi-account-key:before { content: "\F00B"; } .mdi-account-location:before { content: "\F00C"; } .mdi-account-minus:before { content: "\F00D"; } .mdi-account-multiple:before { content: "\F00E"; } .mdi-account-multiple-minus:before { content: "\F5D3"; } .mdi-account-multiple-outline:before { content: "\F00F"; } .mdi-account-multiple-plus:before { content: "\F010"; } .mdi-account-network:before { content: "\F011"; } .mdi-account-off:before { content: "\F012"; } .mdi-account-outline:before { content: "\F013"; } .mdi-account-plus:before { content: "\F014"; } .mdi-account-remove:before { content: "\F015"; } .mdi-account-search:before { content: "\F016"; } .mdi-account-settings:before { content: "\F630"; } .mdi-account-settings-variant:before { content: "\F631"; } .mdi-account-star:before { content: "\F017"; } .mdi-account-star-variant:before { content: "\F018"; } .mdi-account-switch:before { content: "\F019"; } .mdi-adjust:before { content: "\F01A"; } .mdi-air-conditioner:before { content: "\F01B"; } .mdi-airballoon:before { content: "\F01C"; } .mdi-airplane:before { content: "\F01D"; } .mdi-airplane-landing:before { content: "\F5D4"; } .mdi-airplane-off:before { content: "\F01E"; } .mdi-airplane-takeoff:before { content: "\F5D5"; } .mdi-airplay:before { content: "\F01F"; } .mdi-alarm:before { content: "\F020"; } .mdi-alarm-check:before { content: "\F021"; } .mdi-alarm-multiple:before { content: "\F022"; } .mdi-alarm-off:before { content: "\F023"; } .mdi-alarm-plus:before { content: "\F024"; } .mdi-alarm-snooze:before { content: "\F68D"; } .mdi-album:before { content: "\F025"; } .mdi-alert:before { content: "\F026"; } .mdi-alert-box:before { content: "\F027"; } .mdi-alert-circle:before { content: "\F028"; } .mdi-alert-circle-outline:before { content: "\F5D6"; } .mdi-alert-octagon:before { content: "\F029"; } .mdi-alert-outline:before { content: "\F02A"; } .mdi-alpha:before { content: "\F02B"; } .mdi-alphabetical:before { content: "\F02C"; } .mdi-altimeter:before { content: "\F5D7"; } .mdi-amazon:before { content: "\F02D"; } .mdi-amazon-clouddrive:before { content: "\F02E"; } .mdi-ambulance:before { content: "\F02F"; } .mdi-amplifier:before { content: "\F030"; } .mdi-anchor:before { content: "\F031"; } .mdi-android:before { content: "\F032"; } .mdi-android-debug-bridge:before { content: "\F033"; } .mdi-android-studio:before { content: "\F034"; } .mdi-angular:before { content: "\F6B1"; } .mdi-animation:before { content: "\F5D8"; } .mdi-apple:before { content: "\F035"; } .mdi-apple-finder:before { content: "\F036"; } .mdi-apple-ios:before { content: "\F037"; } .mdi-apple-keyboard-caps:before { content: "\F632"; } .mdi-apple-keyboard-command:before { content: "\F633"; } .mdi-apple-keyboard-control:before { content: "\F634"; } .mdi-apple-keyboard-option:before { content: "\F635"; } .mdi-apple-keyboard-shift:before { content: "\F636"; } .mdi-apple-mobileme:before { content: "\F038"; } .mdi-apple-safari:before { content: "\F039"; } .mdi-application:before { content: "\F614"; } .mdi-appnet:before { content: "\F03A"; } .mdi-apps:before { content: "\F03B"; } .mdi-archive:before { content: "\F03C"; } .mdi-arrange-bring-forward:before { content: "\F03D"; } .mdi-arrange-bring-to-front:before { content: "\F03E"; } .mdi-arrange-send-backward:before { content: "\F03F"; } .mdi-arrange-send-to-back:before { content: "\F040"; } .mdi-arrow-all:before { content: "\F041"; } .mdi-arrow-bottom-left:before { content: "\F042"; } .mdi-arrow-bottom-right:before { content: "\F043"; } .mdi-arrow-compress:before { content: "\F615"; } .mdi-arrow-compress-all:before { content: "\F044"; } .mdi-arrow-down:before { content: "\F045"; } .mdi-arrow-down-bold:before { content: "\F046"; } .mdi-arrow-down-bold-circle:before { content: "\F047"; } .mdi-arrow-down-bold-circle-outline:before { content: "\F048"; } .mdi-arrow-down-bold-hexagon-outline:before { content: "\F049"; } .mdi-arrow-down-drop-circle:before { content: "\F04A"; } .mdi-arrow-down-drop-circle-outline:before { content: "\F04B"; } .mdi-arrow-expand:before { content: "\F616"; } .mdi-arrow-expand-all:before { content: "\F04C"; } .mdi-arrow-left:before { content: "\F04D"; } .mdi-arrow-left-bold:before { content: "\F04E"; } .mdi-arrow-left-bold-circle:before { content: "\F04F"; } .mdi-arrow-left-bold-circle-outline:before { content: "\F050"; } .mdi-arrow-left-bold-hexagon-outline:before { content: "\F051"; } .mdi-arrow-left-drop-circle:before { content: "\F052"; } .mdi-arrow-left-drop-circle-outline:before { content: "\F053"; } .mdi-arrow-right:before { content: "\F054"; } .mdi-arrow-right-bold:before { content: "\F055"; } .mdi-arrow-right-bold-circle:before { content: "\F056"; } .mdi-arrow-right-bold-circle-outline:before { content: "\F057"; } .mdi-arrow-right-bold-hexagon-outline:before { content: "\F058"; } .mdi-arrow-right-drop-circle:before { content: "\F059"; } .mdi-arrow-right-drop-circle-outline:before { content: "\F05A"; } .mdi-arrow-top-left:before { content: "\F05B"; } .mdi-arrow-top-right:before { content: "\F05C"; } .mdi-arrow-up:before { content: "\F05D"; } .mdi-arrow-up-bold:before { content: "\F05E"; } .mdi-arrow-up-bold-circle:before { content: "\F05F"; } .mdi-arrow-up-bold-circle-outline:before { content: "\F060"; } .mdi-arrow-up-bold-hexagon-outline:before { content: "\F061"; } .mdi-arrow-up-drop-circle:before { content: "\F062"; } .mdi-arrow-up-drop-circle-outline:before { content: "\F063"; } .mdi-assistant:before { content: "\F064"; } .mdi-at:before { content: "\F065"; } .mdi-attachment:before { content: "\F066"; } .mdi-audiobook:before { content: "\F067"; } .mdi-auto-fix:before { content: "\F068"; } .mdi-auto-upload:before { content: "\F069"; } .mdi-autorenew:before { content: "\F06A"; } .mdi-av-timer:before { content: "\F06B"; } .mdi-baby:before { content: "\F06C"; } .mdi-baby-buggy:before { content: "\F68E"; } .mdi-backburger:before { content: "\F06D"; } .mdi-backspace:before { content: "\F06E"; } .mdi-backup-restore:before { content: "\F06F"; } .mdi-bandcamp:before { content: "\F674"; } .mdi-bank:before { content: "\F070"; } .mdi-barcode:before { content: "\F071"; } .mdi-barcode-scan:before { content: "\F072"; } .mdi-barley:before { content: "\F073"; } .mdi-barrel:before { content: "\F074"; } .mdi-basecamp:before { content: "\F075"; } .mdi-basket:before { content: "\F076"; } .mdi-basket-fill:before { content: "\F077"; } .mdi-basket-unfill:before { content: "\F078"; } .mdi-battery:before { content: "\F079"; } .mdi-battery-10:before { content: "\F07A"; } .mdi-battery-20:before { content: "\F07B"; } .mdi-battery-30:before { content: "\F07C"; } .mdi-battery-40:before { content: "\F07D"; } .mdi-battery-50:before { content: "\F07E"; } .mdi-battery-60:before { content: "\F07F"; } .mdi-battery-70:before { content: "\F080"; } .mdi-battery-80:before { content: "\F081"; } .mdi-battery-90:before { content: "\F082"; } .mdi-battery-alert:before { content: "\F083"; } .mdi-battery-charging:before { content: "\F084"; } .mdi-battery-charging-100:before { content: "\F085"; } .mdi-battery-charging-20:before { content: "\F086"; } .mdi-battery-charging-30:before { content: "\F087"; } .mdi-battery-charging-40:before { content: "\F088"; } .mdi-battery-charging-60:before { content: "\F089"; } .mdi-battery-charging-80:before { content: "\F08A"; } .mdi-battery-charging-90:before { content: "\F08B"; } .mdi-battery-minus:before { content: "\F08C"; } .mdi-battery-negative:before { content: "\F08D"; } .mdi-battery-outline:before { content: "\F08E"; } .mdi-battery-plus:before { content: "\F08F"; } .mdi-battery-positive:before { content: "\F090"; } .mdi-battery-unknown:before { content: "\F091"; } .mdi-beach:before { content: "\F092"; } .mdi-beaker:before { content: "\F68F"; } .mdi-beats:before { content: "\F097"; } .mdi-beer:before { content: "\F098"; } .mdi-behance:before { content: "\F099"; } .mdi-bell:before { content: "\F09A"; } .mdi-bell-off:before { content: "\F09B"; } .mdi-bell-outline:before { content: "\F09C"; } .mdi-bell-plus:before { content: "\F09D"; } .mdi-bell-ring:before { content: "\F09E"; } .mdi-bell-ring-outline:before { content: "\F09F"; } .mdi-bell-sleep:before { content: "\F0A0"; } .mdi-beta:before { content: "\F0A1"; } .mdi-bible:before { content: "\F0A2"; } .mdi-bike:before { content: "\F0A3"; } .mdi-bing:before { content: "\F0A4"; } .mdi-binoculars:before { content: "\F0A5"; } .mdi-bio:before { content: "\F0A6"; } .mdi-biohazard:before { content: "\F0A7"; } .mdi-bitbucket:before { content: "\F0A8"; } .mdi-black-mesa:before { content: "\F0A9"; } .mdi-blackberry:before { content: "\F0AA"; } .mdi-blender:before { content: "\F0AB"; } .mdi-blinds:before { content: "\F0AC"; } .mdi-block-helper:before { content: "\F0AD"; } .mdi-blogger:before { content: "\F0AE"; } .mdi-bluetooth:before { content: "\F0AF"; } .mdi-bluetooth-audio:before { content: "\F0B0"; } .mdi-bluetooth-connect:before { content: "\F0B1"; } .mdi-bluetooth-off:before { content: "\F0B2"; } .mdi-bluetooth-settings:before { content: "\F0B3"; } .mdi-bluetooth-transfer:before { content: "\F0B4"; } .mdi-blur:before { content: "\F0B5"; } .mdi-blur-linear:before { content: "\F0B6"; } .mdi-blur-off:before { content: "\F0B7"; } .mdi-blur-radial:before { content: "\F0B8"; } .mdi-bomb:before { content: "\F690"; } .mdi-bone:before { content: "\F0B9"; } .mdi-book:before { content: "\F0BA"; } .mdi-book-minus:before { content: "\F5D9"; } .mdi-book-multiple:before { content: "\F0BB"; } .mdi-book-multiple-variant:before { content: "\F0BC"; } .mdi-book-open:before { content: "\F0BD"; } .mdi-book-open-page-variant:before { content: "\F5DA"; } .mdi-book-open-variant:before { content: "\F0BE"; } .mdi-book-plus:before { content: "\F5DB"; } .mdi-book-variant:before { content: "\F0BF"; } .mdi-bookmark:before { content: "\F0C0"; } .mdi-bookmark-check:before { content: "\F0C1"; } .mdi-bookmark-music:before { content: "\F0C2"; } .mdi-bookmark-outline:before { content: "\F0C3"; } .mdi-bookmark-plus:before { content: "\F0C5"; } .mdi-bookmark-plus-outline:before { content: "\F0C4"; } .mdi-bookmark-remove:before { content: "\F0C6"; } .mdi-boombox:before { content: "\F5DC"; } .mdi-border-all:before { content: "\F0C7"; } .mdi-border-bottom:before { content: "\F0C8"; } .mdi-border-color:before { content: "\F0C9"; } .mdi-border-horizontal:before { content: "\F0CA"; } .mdi-border-inside:before { content: "\F0CB"; } .mdi-border-left:before { content: "\F0CC"; } .mdi-border-none:before { content: "\F0CD"; } .mdi-border-outside:before { content: "\F0CE"; } .mdi-border-right:before { content: "\F0CF"; } .mdi-border-style:before { content: "\F0D0"; } .mdi-border-top:before { content: "\F0D1"; } .mdi-border-vertical:before { content: "\F0D2"; } .mdi-bow-tie:before { content: "\F677"; } .mdi-bowl:before { content: "\F617"; } .mdi-bowling:before { content: "\F0D3"; } .mdi-box:before { content: "\F0D4"; } .mdi-box-cutter:before { content: "\F0D5"; } .mdi-box-shadow:before { content: "\F637"; } .mdi-bridge:before { content: "\F618"; } .mdi-briefcase:before { content: "\F0D6"; } .mdi-briefcase-check:before { content: "\F0D7"; } .mdi-briefcase-download:before { content: "\F0D8"; } .mdi-briefcase-upload:before { content: "\F0D9"; } .mdi-brightness-1:before { content: "\F0DA"; } .mdi-brightness-2:before { content: "\F0DB"; } .mdi-brightness-3:before { content: "\F0DC"; } .mdi-brightness-4:before { content: "\F0DD"; } .mdi-brightness-5:before { content: "\F0DE"; } .mdi-brightness-6:before { content: "\F0DF"; } .mdi-brightness-7:before { content: "\F0E0"; } .mdi-brightness-auto:before { content: "\F0E1"; } .mdi-broom:before { content: "\F0E2"; } .mdi-brush:before { content: "\F0E3"; } .mdi-buffer:before { content: "\F619"; } .mdi-bug:before { content: "\F0E4"; } .mdi-bulletin-board:before { content: "\F0E5"; } .mdi-bullhorn:before { content: "\F0E6"; } .mdi-bullseye:before { content: "\F5DD"; } .mdi-burst-mode:before { content: "\F5DE"; } .mdi-bus:before { content: "\F0E7"; } .mdi-cached:before { content: "\F0E8"; } .mdi-cake:before { content: "\F0E9"; } .mdi-cake-layered:before { content: "\F0EA"; } .mdi-cake-variant:before { content: "\F0EB"; } .mdi-calculator:before { content: "\F0EC"; } .mdi-calendar:before { content: "\F0ED"; } .mdi-calendar-blank:before { content: "\F0EE"; } .mdi-calendar-check:before { content: "\F0EF"; } .mdi-calendar-clock:before { content: "\F0F0"; } .mdi-calendar-multiple:before { content: "\F0F1"; } .mdi-calendar-multiple-check:before { content: "\F0F2"; } .mdi-calendar-plus:before { content: "\F0F3"; } .mdi-calendar-question:before { content: "\F691"; } .mdi-calendar-range:before { content: "\F678"; } .mdi-calendar-remove:before { content: "\F0F4"; } .mdi-calendar-text:before { content: "\F0F5"; } .mdi-calendar-today:before { content: "\F0F6"; } .mdi-call-made:before { content: "\F0F7"; } .mdi-call-merge:before { content: "\F0F8"; } .mdi-call-missed:before { content: "\F0F9"; } .mdi-call-received:before { content: "\F0FA"; } .mdi-call-split:before { content: "\F0FB"; } .mdi-camcorder:before { content: "\F0FC"; } .mdi-camcorder-box:before { content: "\F0FD"; } .mdi-camcorder-box-off:before { content: "\F0FE"; } .mdi-camcorder-off:before { content: "\F0FF"; } .mdi-camera:before { content: "\F100"; } .mdi-camera-burst:before { content: "\F692"; } .mdi-camera-enhance:before { content: "\F101"; } .mdi-camera-front:before { content: "\F102"; } .mdi-camera-front-variant:before { content: "\F103"; } .mdi-camera-iris:before { content: "\F104"; } .mdi-camera-off:before { content: "\F5DF"; } .mdi-camera-party-mode:before { content: "\F105"; } .mdi-camera-rear:before { content: "\F106"; } .mdi-camera-rear-variant:before { content: "\F107"; } .mdi-camera-switch:before { content: "\F108"; } .mdi-camera-timer:before { content: "\F109"; } .mdi-candle:before { content: "\F5E2"; } .mdi-candycane:before { content: "\F10A"; } .mdi-car:before { content: "\F10B"; } .mdi-car-battery:before { content: "\F10C"; } .mdi-car-connected:before { content: "\F10D"; } .mdi-car-wash:before { content: "\F10E"; } .mdi-cards:before { content: "\F638"; } .mdi-cards-outline:before { content: "\F639"; } .mdi-cards-playing-outline:before { content: "\F63A"; } .mdi-carrot:before { content: "\F10F"; } .mdi-cart:before { content: "\F110"; } .mdi-cart-off:before { content: "\F66B"; } .mdi-cart-outline:before { content: "\F111"; } .mdi-cart-plus:before { content: "\F112"; } .mdi-case-sensitive-alt:before { content: "\F113"; } .mdi-cash:before { content: "\F114"; } .mdi-cash-100:before { content: "\F115"; } .mdi-cash-multiple:before { content: "\F116"; } .mdi-cash-usd:before { content: "\F117"; } .mdi-cast:before { content: "\F118"; } .mdi-cast-connected:before { content: "\F119"; } .mdi-castle:before { content: "\F11A"; } .mdi-cat:before { content: "\F11B"; } .mdi-cellphone:before { content: "\F11C"; } .mdi-cellphone-android:before { content: "\F11D"; } .mdi-cellphone-basic:before { content: "\F11E"; } .mdi-cellphone-dock:before { content: "\F11F"; } .mdi-cellphone-iphone:before { content: "\F120"; } .mdi-cellphone-link:before { content: "\F121"; } .mdi-cellphone-link-off:before { content: "\F122"; } .mdi-cellphone-settings:before { content: "\F123"; } .mdi-certificate:before { content: "\F124"; } .mdi-chair-school:before { content: "\F125"; } .mdi-chart-arc:before { content: "\F126"; } .mdi-chart-areaspline:before { content: "\F127"; } .mdi-chart-bar:before { content: "\F128"; } .mdi-chart-bubble:before { content: "\F5E3"; } .mdi-chart-gantt:before { content: "\F66C"; } .mdi-chart-histogram:before { content: "\F129"; } .mdi-chart-line:before { content: "\F12A"; } .mdi-chart-pie:before { content: "\F12B"; } .mdi-chart-scatterplot-hexbin:before { content: "\F66D"; } .mdi-chart-timeline:before { content: "\F66E"; } .mdi-check:before { content: "\F12C"; } .mdi-check-all:before { content: "\F12D"; } .mdi-check-circle:before { content: "\F5E0"; } .mdi-check-circle-outline:before { content: "\F5E1"; } .mdi-checkbox-blank:before { content: "\F12E"; } .mdi-checkbox-blank-circle:before { content: "\F12F"; } .mdi-checkbox-blank-circle-outline:before { content: "\F130"; } .mdi-checkbox-blank-outline:before { content: "\F131"; } .mdi-checkbox-marked:before { content: "\F132"; } .mdi-checkbox-marked-circle:before { content: "\F133"; } .mdi-checkbox-marked-circle-outline:before { content: "\F134"; } .mdi-checkbox-marked-outline:before { content: "\F135"; } .mdi-checkbox-multiple-blank:before { content: "\F136"; } .mdi-checkbox-multiple-blank-circle:before { content: "\F63B"; } .mdi-checkbox-multiple-blank-circle-outline:before { content: "\F63C"; } .mdi-checkbox-multiple-blank-outline:before { content: "\F137"; } .mdi-checkbox-multiple-marked:before { content: "\F138"; } .mdi-checkbox-multiple-marked-circle:before { content: "\F63D"; } .mdi-checkbox-multiple-marked-circle-outline:before { content: "\F63E"; } .mdi-checkbox-multiple-marked-outline:before { content: "\F139"; } .mdi-checkerboard:before { content: "\F13A"; } .mdi-chemical-weapon:before { content: "\F13B"; } .mdi-chevron-double-down:before { content: "\F13C"; } .mdi-chevron-double-left:before { content: "\F13D"; } .mdi-chevron-double-right:before { content: "\F13E"; } .mdi-chevron-double-up:before { content: "\F13F"; } .mdi-chevron-down:before { content: "\F140"; } .mdi-chevron-left:before { content: "\F141"; } .mdi-chevron-right:before { content: "\F142"; } .mdi-chevron-up:before { content: "\F143"; } .mdi-chip:before { content: "\F61A"; } .mdi-church:before { content: "\F144"; } .mdi-cisco-webex:before { content: "\F145"; } .mdi-city:before { content: "\F146"; } .mdi-clipboard:before { content: "\F147"; } .mdi-clipboard-account:before { content: "\F148"; } .mdi-clipboard-alert:before { content: "\F149"; } .mdi-clipboard-arrow-down:before { content: "\F14A"; } .mdi-clipboard-arrow-left:before { content: "\F14B"; } .mdi-clipboard-check:before { content: "\F14C"; } .mdi-clipboard-outline:before { content: "\F14D"; } .mdi-clipboard-text:before { content: "\F14E"; } .mdi-clippy:before { content: "\F14F"; } .mdi-clock:before { content: "\F150"; } .mdi-clock-alert:before { content: "\F5CE"; } .mdi-clock-end:before { content: "\F151"; } .mdi-clock-fast:before { content: "\F152"; } .mdi-clock-in:before { content: "\F153"; } .mdi-clock-out:before { content: "\F154"; } .mdi-clock-start:before { content: "\F155"; } .mdi-close:before { content: "\F156"; } .mdi-close-box:before { content: "\F157"; } .mdi-close-box-outline:before { content: "\F158"; } .mdi-close-circle:before { content: "\F159"; } .mdi-close-circle-outline:before { content: "\F15A"; } .mdi-close-network:before { content: "\F15B"; } .mdi-close-octagon:before { content: "\F15C"; } .mdi-close-octagon-outline:before { content: "\F15D"; } .mdi-closed-caption:before { content: "\F15E"; } .mdi-cloud:before { content: "\F15F"; } .mdi-cloud-check:before { content: "\F160"; } .mdi-cloud-circle:before { content: "\F161"; } .mdi-cloud-download:before { content: "\F162"; } .mdi-cloud-outline:before { content: "\F163"; } .mdi-cloud-outline-off:before { content: "\F164"; } .mdi-cloud-print:before { content: "\F165"; } .mdi-cloud-print-outline:before { content: "\F166"; } .mdi-cloud-sync:before { content: "\F63F"; } .mdi-cloud-upload:before { content: "\F167"; } .mdi-code-array:before { content: "\F168"; } .mdi-code-braces:before { content: "\F169"; } .mdi-code-brackets:before { content: "\F16A"; } .mdi-code-equal:before { content: "\F16B"; } .mdi-code-greater-than:before { content: "\F16C"; } .mdi-code-greater-than-or-equal:before { content: "\F16D"; } .mdi-code-less-than:before { content: "\F16E"; } .mdi-code-less-than-or-equal:before { content: "\F16F"; } .mdi-code-not-equal:before { content: "\F170"; } .mdi-code-not-equal-variant:before { content: "\F171"; } .mdi-code-parentheses:before { content: "\F172"; } .mdi-code-string:before { content: "\F173"; } .mdi-code-tags:before { content: "\F174"; } .mdi-code-tags-check:before { content: "\F693"; } .mdi-codepen:before { content: "\F175"; } .mdi-coffee:before { content: "\F176"; } .mdi-coffee-to-go:before { content: "\F177"; } .mdi-coin:before { content: "\F178"; } .mdi-coins:before { content: "\F694"; } .mdi-collage:before { content: "\F640"; } .mdi-color-helper:before { content: "\F179"; } .mdi-comment:before { content: "\F17A"; } .mdi-comment-account:before { content: "\F17B"; } .mdi-comment-account-outline:before { content: "\F17C"; } .mdi-comment-alert:before { content: "\F17D"; } .mdi-comment-alert-outline:before { content: "\F17E"; } .mdi-comment-check:before { content: "\F17F"; } .mdi-comment-check-outline:before { content: "\F180"; } .mdi-comment-multiple-outline:before { content: "\F181"; } .mdi-comment-outline:before { content: "\F182"; } .mdi-comment-plus-outline:before { content: "\F183"; } .mdi-comment-processing:before { content: "\F184"; } .mdi-comment-processing-outline:before { content: "\F185"; } .mdi-comment-question-outline:before { content: "\F186"; } .mdi-comment-remove-outline:before { content: "\F187"; } .mdi-comment-text:before { content: "\F188"; } .mdi-comment-text-outline:before { content: "\F189"; } .mdi-compare:before { content: "\F18A"; } .mdi-compass:before { content: "\F18B"; } .mdi-compass-outline:before { content: "\F18C"; } .mdi-console:before { content: "\F18D"; } .mdi-contact-mail:before { content: "\F18E"; } .mdi-content-copy:before { content: "\F18F"; } .mdi-content-cut:before { content: "\F190"; } .mdi-content-duplicate:before { content: "\F191"; } .mdi-content-paste:before { content: "\F192"; } .mdi-content-save:before { content: "\F193"; } .mdi-content-save-all:before { content: "\F194"; } .mdi-content-save-settings:before { content: "\F61B"; } .mdi-contrast:before { content: "\F195"; } .mdi-contrast-box:before { content: "\F196"; } .mdi-contrast-circle:before { content: "\F197"; } .mdi-cookie:before { content: "\F198"; } .mdi-copyright:before { content: "\F5E6"; } .mdi-counter:before { content: "\F199"; } .mdi-cow:before { content: "\F19A"; } .mdi-creation:before { content: "\F1C9"; } .mdi-credit-card:before { content: "\F19B"; } .mdi-credit-card-multiple:before { content: "\F19C"; } .mdi-credit-card-off:before { content: "\F5E4"; } .mdi-credit-card-plus:before { content: "\F675"; } .mdi-credit-card-scan:before { content: "\F19D"; } .mdi-crop:before { content: "\F19E"; } .mdi-crop-free:before { content: "\F19F"; } .mdi-crop-landscape:before { content: "\F1A0"; } .mdi-crop-portrait:before { content: "\F1A1"; } .mdi-crop-rotate:before { content: "\F695"; } .mdi-crop-square:before { content: "\F1A2"; } .mdi-crosshairs:before { content: "\F1A3"; } .mdi-crosshairs-gps:before { content: "\F1A4"; } .mdi-crown:before { content: "\F1A5"; } .mdi-cube:before { content: "\F1A6"; } .mdi-cube-outline:before { content: "\F1A7"; } .mdi-cube-send:before { content: "\F1A8"; } .mdi-cube-unfolded:before { content: "\F1A9"; } .mdi-cup:before { content: "\F1AA"; } .mdi-cup-off:before { content: "\F5E5"; } .mdi-cup-water:before { content: "\F1AB"; } .mdi-currency-btc:before { content: "\F1AC"; } .mdi-currency-eur:before { content: "\F1AD"; } .mdi-currency-gbp:before { content: "\F1AE"; } .mdi-currency-inr:before { content: "\F1AF"; } .mdi-currency-ngn:before { content: "\F1B0"; } .mdi-currency-rub:before { content: "\F1B1"; } .mdi-currency-try:before { content: "\F1B2"; } .mdi-currency-usd:before { content: "\F1B3"; } .mdi-currency-usd-off:before { content: "\F679"; } .mdi-cursor-default:before { content: "\F1B4"; } .mdi-cursor-default-outline:before { content: "\F1B5"; } .mdi-cursor-move:before { content: "\F1B6"; } .mdi-cursor-pointer:before { content: "\F1B7"; } .mdi-cursor-text:before { content: "\F5E7"; } .mdi-database:before { content: "\F1B8"; } .mdi-database-minus:before { content: "\F1B9"; } .mdi-database-plus:before { content: "\F1BA"; } .mdi-debug-step-into:before { content: "\F1BB"; } .mdi-debug-step-out:before { content: "\F1BC"; } .mdi-debug-step-over:before { content: "\F1BD"; } .mdi-decimal-decrease:before { content: "\F1BE"; } .mdi-decimal-increase:before { content: "\F1BF"; } .mdi-delete:before { content: "\F1C0"; } .mdi-delete-circle:before { content: "\F682"; } .mdi-delete-forever:before { content: "\F5E8"; } .mdi-delete-sweep:before { content: "\F5E9"; } .mdi-delete-variant:before { content: "\F1C1"; } .mdi-delta:before { content: "\F1C2"; } .mdi-deskphone:before { content: "\F1C3"; } .mdi-desktop-mac:before { content: "\F1C4"; } .mdi-desktop-tower:before { content: "\F1C5"; } .mdi-details:before { content: "\F1C6"; } .mdi-developer-board:before { content: "\F696"; } .mdi-deviantart:before { content: "\F1C7"; } .mdi-dialpad:before { content: "\F61C"; } .mdi-diamond:before { content: "\F1C8"; } .mdi-dice-1:before { content: "\F1CA"; } .mdi-dice-2:before { content: "\F1CB"; } .mdi-dice-3:before { content: "\F1CC"; } .mdi-dice-4:before { content: "\F1CD"; } .mdi-dice-5:before { content: "\F1CE"; } .mdi-dice-6:before { content: "\F1CF"; } .mdi-dice-d20:before { content: "\F5EA"; } .mdi-dice-d4:before { content: "\F5EB"; } .mdi-dice-d6:before { content: "\F5EC"; } .mdi-dice-d8:before { content: "\F5ED"; } .mdi-dictionary:before { content: "\F61D"; } .mdi-directions:before { content: "\F1D0"; } .mdi-directions-fork:before { content: "\F641"; } .mdi-discord:before { content: "\F66F"; } .mdi-disk:before { content: "\F5EE"; } .mdi-disk-alert:before { content: "\F1D1"; } .mdi-disqus:before { content: "\F1D2"; } .mdi-disqus-outline:before { content: "\F1D3"; } .mdi-division:before { content: "\F1D4"; } .mdi-division-box:before { content: "\F1D5"; } .mdi-dna:before { content: "\F683"; } .mdi-dns:before { content: "\F1D6"; } .mdi-do-not-disturb:before { content: "\F697"; } .mdi-do-not-disturb-off:before { content: "\F698"; } .mdi-dolby:before { content: "\F6B2"; } .mdi-domain:before { content: "\F1D7"; } .mdi-dots-horizontal:before { content: "\F1D8"; } .mdi-dots-vertical:before { content: "\F1D9"; } .mdi-douban:before { content: "\F699"; } .mdi-download:before { content: "\F1DA"; } .mdi-drag:before { content: "\F1DB"; } .mdi-drag-horizontal:before { content: "\F1DC"; } .mdi-drag-vertical:before { content: "\F1DD"; } .mdi-drawing:before { content: "\F1DE"; } .mdi-drawing-box:before { content: "\F1DF"; } .mdi-dribbble:before { content: "\F1E0"; } .mdi-dribbble-box:before { content: "\F1E1"; } .mdi-drone:before { content: "\F1E2"; } .mdi-dropbox:before { content: "\F1E3"; } .mdi-drupal:before { content: "\F1E4"; } .mdi-duck:before { content: "\F1E5"; } .mdi-dumbbell:before { content: "\F1E6"; } .mdi-earth:before { content: "\F1E7"; } .mdi-earth-off:before { content: "\F1E8"; } .mdi-edge:before { content: "\F1E9"; } .mdi-eject:before { content: "\F1EA"; } .mdi-elevation-decline:before { content: "\F1EB"; } .mdi-elevation-rise:before { content: "\F1EC"; } .mdi-elevator:before { content: "\F1ED"; } .mdi-email:before { content: "\F1EE"; } .mdi-email-open:before { content: "\F1EF"; } .mdi-email-open-outline:before { content: "\F5EF"; } .mdi-email-outline:before { content: "\F1F0"; } .mdi-email-secure:before { content: "\F1F1"; } .mdi-email-variant:before { content: "\F5F0"; } .mdi-emby:before { content: "\F6B3"; } .mdi-emoticon:before { content: "\F1F2"; } .mdi-emoticon-cool:before { content: "\F1F3"; } .mdi-emoticon-dead:before { content: "\F69A"; } .mdi-emoticon-devil:before { content: "\F1F4"; } .mdi-emoticon-excited:before { content: "\F69B"; } .mdi-emoticon-happy:before { content: "\F1F5"; } .mdi-emoticon-neutral:before { content: "\F1F6"; } .mdi-emoticon-poop:before { content: "\F1F7"; } .mdi-emoticon-sad:before { content: "\F1F8"; } .mdi-emoticon-tongue:before { content: "\F1F9"; } .mdi-engine:before { content: "\F1FA"; } .mdi-engine-outline:before { content: "\F1FB"; } .mdi-equal:before { content: "\F1FC"; } .mdi-equal-box:before { content: "\F1FD"; } .mdi-eraser:before { content: "\F1FE"; } .mdi-eraser-variant:before { content: "\F642"; } .mdi-escalator:before { content: "\F1FF"; } .mdi-ethernet:before { content: "\F200"; } .mdi-ethernet-cable:before { content: "\F201"; } .mdi-ethernet-cable-off:before { content: "\F202"; } .mdi-etsy:before { content: "\F203"; } .mdi-ev-station:before { content: "\F5F1"; } .mdi-evernote:before { content: "\F204"; } .mdi-exclamation:before { content: "\F205"; } .mdi-exit-to-app:before { content: "\F206"; } .mdi-export:before { content: "\F207"; } .mdi-eye:before { content: "\F208"; } .mdi-eye-off:before { content: "\F209"; } .mdi-eyedropper:before { content: "\F20A"; } .mdi-eyedropper-variant:before { content: "\F20B"; } .mdi-face:before { content: "\F643"; } .mdi-face-profile:before { content: "\F644"; } .mdi-facebook:before { content: "\F20C"; } .mdi-facebook-box:before { content: "\F20D"; } .mdi-facebook-messenger:before { content: "\F20E"; } .mdi-factory:before { content: "\F20F"; } .mdi-fan:before { content: "\F210"; } .mdi-fast-forward:before { content: "\F211"; } .mdi-fax:before { content: "\F212"; } .mdi-ferry:before { content: "\F213"; } .mdi-file:before { content: "\F214"; } .mdi-file-chart:before { content: "\F215"; } .mdi-file-check:before { content: "\F216"; } .mdi-file-cloud:before { content: "\F217"; } .mdi-file-delimited:before { content: "\F218"; } .mdi-file-document:before { content: "\F219"; } .mdi-file-document-box:before { content: "\F21A"; } .mdi-file-excel:before { content: "\F21B"; } .mdi-file-excel-box:before { content: "\F21C"; } .mdi-file-export:before { content: "\F21D"; } .mdi-file-find:before { content: "\F21E"; } .mdi-file-hidden:before { content: "\F613"; } .mdi-file-image:before { content: "\F21F"; } .mdi-file-import:before { content: "\F220"; } .mdi-file-lock:before { content: "\F221"; } .mdi-file-multiple:before { content: "\F222"; } .mdi-file-music:before { content: "\F223"; } .mdi-file-outline:before { content: "\F224"; } .mdi-file-pdf:before { content: "\F225"; } .mdi-file-pdf-box:before { content: "\F226"; } .mdi-file-powerpoint:before { content: "\F227"; } .mdi-file-powerpoint-box:before { content: "\F228"; } .mdi-file-presentation-box:before { content: "\F229"; } .mdi-file-restore:before { content: "\F670"; } .mdi-file-send:before { content: "\F22A"; } .mdi-file-tree:before { content: "\F645"; } .mdi-file-video:before { content: "\F22B"; } .mdi-file-word:before { content: "\F22C"; } .mdi-file-word-box:before { content: "\F22D"; } .mdi-file-xml:before { content: "\F22E"; } .mdi-film:before { content: "\F22F"; } .mdi-filmstrip:before { content: "\F230"; } .mdi-filmstrip-off:before { content: "\F231"; } .mdi-filter:before { content: "\F232"; } .mdi-filter-outline:before { content: "\F233"; } .mdi-filter-remove:before { content: "\F234"; } .mdi-filter-remove-outline:before { content: "\F235"; } .mdi-filter-variant:before { content: "\F236"; } .mdi-fingerprint:before { content: "\F237"; } .mdi-fire:before { content: "\F238"; } .mdi-firefox:before { content: "\F239"; } .mdi-fish:before { content: "\F23A"; } .mdi-flag:before { content: "\F23B"; } .mdi-flag-checkered:before { content: "\F23C"; } .mdi-flag-outline:before { content: "\F23D"; } .mdi-flag-outline-variant:before { content: "\F23E"; } .mdi-flag-triangle:before { content: "\F23F"; } .mdi-flag-variant:before { content: "\F240"; } .mdi-flash:before { content: "\F241"; } .mdi-flash-auto:before { content: "\F242"; } .mdi-flash-off:before { content: "\F243"; } .mdi-flash-red-eye:before { content: "\F67A"; } .mdi-flashlight:before { content: "\F244"; } .mdi-flashlight-off:before { content: "\F245"; } .mdi-flask:before { content: "\F093"; } .mdi-flask-empty:before { content: "\F094"; } .mdi-flask-empty-outline:before { content: "\F095"; } .mdi-flask-outline:before { content: "\F096"; } .mdi-flattr:before { content: "\F246"; } .mdi-flip-to-back:before { content: "\F247"; } .mdi-flip-to-front:before { content: "\F248"; } .mdi-floppy:before { content: "\F249"; } .mdi-flower:before { content: "\F24A"; } .mdi-folder:before { content: "\F24B"; } .mdi-folder-account:before { content: "\F24C"; } .mdi-folder-download:before { content: "\F24D"; } .mdi-folder-google-drive:before { content: "\F24E"; } .mdi-folder-image:before { content: "\F24F"; } .mdi-folder-lock:before { content: "\F250"; } .mdi-folder-lock-open:before { content: "\F251"; } .mdi-folder-move:before { content: "\F252"; } .mdi-folder-multiple:before { content: "\F253"; } .mdi-folder-multiple-image:before { content: "\F254"; } .mdi-folder-multiple-outline:before { content: "\F255"; } .mdi-folder-outline:before { content: "\F256"; } .mdi-folder-plus:before { content: "\F257"; } .mdi-folder-remove:before { content: "\F258"; } .mdi-folder-star:before { content: "\F69C"; } .mdi-folder-upload:before { content: "\F259"; } .mdi-food:before { content: "\F25A"; } .mdi-food-apple:before { content: "\F25B"; } .mdi-food-fork-drink:before { content: "\F5F2"; } .mdi-food-off:before { content: "\F5F3"; } .mdi-food-variant:before { content: "\F25C"; } .mdi-football:before { content: "\F25D"; } .mdi-football-australian:before { content: "\F25E"; } .mdi-football-helmet:before { content: "\F25F"; } .mdi-format-align-center:before { content: "\F260"; } .mdi-format-align-justify:before { content: "\F261"; } .mdi-format-align-left:before { content: "\F262"; } .mdi-format-align-right:before { content: "\F263"; } .mdi-format-annotation-plus:before { content: "\F646"; } .mdi-format-bold:before { content: "\F264"; } .mdi-format-clear:before { content: "\F265"; } .mdi-format-color-fill:before { content: "\F266"; } .mdi-format-color-text:before { content: "\F69D"; } .mdi-format-float-center:before { content: "\F267"; } .mdi-format-float-left:before { content: "\F268"; } .mdi-format-float-none:before { content: "\F269"; } .mdi-format-float-right:before { content: "\F26A"; } .mdi-format-header-1:before { content: "\F26B"; } .mdi-format-header-2:before { content: "\F26C"; } .mdi-format-header-3:before { content: "\F26D"; } .mdi-format-header-4:before { content: "\F26E"; } .mdi-format-header-5:before { content: "\F26F"; } .mdi-format-header-6:before { content: "\F270"; } .mdi-format-header-decrease:before { content: "\F271"; } .mdi-format-header-equal:before { content: "\F272"; } .mdi-format-header-increase:before { content: "\F273"; } .mdi-format-header-pound:before { content: "\F274"; } .mdi-format-horizontal-align-center:before { content: "\F61E"; } .mdi-format-horizontal-align-left:before { content: "\F61F"; } .mdi-format-horizontal-align-right:before { content: "\F620"; } .mdi-format-indent-decrease:before { content: "\F275"; } .mdi-format-indent-increase:before { content: "\F276"; } .mdi-format-italic:before { content: "\F277"; } .mdi-format-line-spacing:before { content: "\F278"; } .mdi-format-line-style:before { content: "\F5C8"; } .mdi-format-line-weight:before { content: "\F5C9"; } .mdi-format-list-bulleted:before { content: "\F279"; } .mdi-format-list-bulleted-type:before { content: "\F27A"; } .mdi-format-list-numbers:before { content: "\F27B"; } .mdi-format-paint:before { content: "\F27C"; } .mdi-format-paragraph:before { content: "\F27D"; } .mdi-format-quote:before { content: "\F27E"; } .mdi-format-section:before { content: "\F69E"; } .mdi-format-size:before { content: "\F27F"; } .mdi-format-strikethrough:before { content: "\F280"; } .mdi-format-strikethrough-variant:before { content: "\F281"; } .mdi-format-subscript:before { content: "\F282"; } .mdi-format-superscript:before { content: "\F283"; } .mdi-format-text:before { content: "\F284"; } .mdi-format-textdirection-l-to-r:before { content: "\F285"; } .mdi-format-textdirection-r-to-l:before { content: "\F286"; } .mdi-format-title:before { content: "\F5F4"; } .mdi-format-underline:before { content: "\F287"; } .mdi-format-vertical-align-bottom:before { content: "\F621"; } .mdi-format-vertical-align-center:before { content: "\F622"; } .mdi-format-vertical-align-top:before { content: "\F623"; } .mdi-format-wrap-inline:before { content: "\F288"; } .mdi-format-wrap-square:before { content: "\F289"; } .mdi-format-wrap-tight:before { content: "\F28A"; } .mdi-format-wrap-top-bottom:before { content: "\F28B"; } .mdi-forum:before { content: "\F28C"; } .mdi-forward:before { content: "\F28D"; } .mdi-foursquare:before { content: "\F28E"; } .mdi-fridge:before { content: "\F28F"; } .mdi-fridge-filled:before { content: "\F290"; } .mdi-fridge-filled-bottom:before { content: "\F291"; } .mdi-fridge-filled-top:before { content: "\F292"; } .mdi-fullscreen:before { content: "\F293"; } .mdi-fullscreen-exit:before { content: "\F294"; } .mdi-function:before { content: "\F295"; } .mdi-gamepad:before { content: "\F296"; } .mdi-gamepad-variant:before { content: "\F297"; } .mdi-gas-cylinder:before { content: "\F647"; } .mdi-gas-station:before { content: "\F298"; } .mdi-gate:before { content: "\F299"; } .mdi-gauge:before { content: "\F29A"; } .mdi-gavel:before { content: "\F29B"; } .mdi-gender-female:before { content: "\F29C"; } .mdi-gender-male:before { content: "\F29D"; } .mdi-gender-male-female:before { content: "\F29E"; } .mdi-gender-transgender:before { content: "\F29F"; } .mdi-ghost:before { content: "\F2A0"; } .mdi-gift:before { content: "\F2A1"; } .mdi-git:before { content: "\F2A2"; } .mdi-github-box:before { content: "\F2A3"; } .mdi-github-circle:before { content: "\F2A4"; } .mdi-glass-flute:before { content: "\F2A5"; } .mdi-glass-mug:before { content: "\F2A6"; } .mdi-glass-stange:before { content: "\F2A7"; } .mdi-glass-tulip:before { content: "\F2A8"; } .mdi-glassdoor:before { content: "\F2A9"; } .mdi-glasses:before { content: "\F2AA"; } .mdi-gmail:before { content: "\F2AB"; } .mdi-gnome:before { content: "\F2AC"; } .mdi-gondola:before { content: "\F685"; } .mdi-google:before { content: "\F2AD"; } .mdi-google-cardboard:before { content: "\F2AE"; } .mdi-google-chrome:before { content: "\F2AF"; } .mdi-google-circles:before { content: "\F2B0"; } .mdi-google-circles-communities:before { content: "\F2B1"; } .mdi-google-circles-extended:before { content: "\F2B2"; } .mdi-google-circles-group:before { content: "\F2B3"; } .mdi-google-controller:before { content: "\F2B4"; } .mdi-google-controller-off:before { content: "\F2B5"; } .mdi-google-drive:before { content: "\F2B6"; } .mdi-google-earth:before { content: "\F2B7"; } .mdi-google-glass:before { content: "\F2B8"; } .mdi-google-maps:before { content: "\F5F5"; } .mdi-google-nearby:before { content: "\F2B9"; } .mdi-google-pages:before { content: "\F2BA"; } .mdi-google-physical-web:before { content: "\F2BB"; } .mdi-google-play:before { content: "\F2BC"; } .mdi-google-plus:before { content: "\F2BD"; } .mdi-google-plus-box:before { content: "\F2BE"; } .mdi-google-translate:before { content: "\F2BF"; } .mdi-google-wallet:before { content: "\F2C0"; } .mdi-gradient:before { content: "\F69F"; } .mdi-grease-pencil:before { content: "\F648"; } .mdi-grid:before { content: "\F2C1"; } .mdi-grid-off:before { content: "\F2C2"; } .mdi-group:before { content: "\F2C3"; } .mdi-guitar-electric:before { content: "\F2C4"; } .mdi-guitar-pick:before { content: "\F2C5"; } .mdi-guitar-pick-outline:before { content: "\F2C6"; } .mdi-hackernews:before { content: "\F624"; } .mdi-hamburger:before { content: "\F684"; } .mdi-hand-pointing-right:before { content: "\F2C7"; } .mdi-hanger:before { content: "\F2C8"; } .mdi-hangouts:before { content: "\F2C9"; } .mdi-harddisk:before { content: "\F2CA"; } .mdi-headphones:before { content: "\F2CB"; } .mdi-headphones-box:before { content: "\F2CC"; } .mdi-headphones-settings:before { content: "\F2CD"; } .mdi-headset:before { content: "\F2CE"; } .mdi-headset-dock:before { content: "\F2CF"; } .mdi-headset-off:before { content: "\F2D0"; } .mdi-heart:before { content: "\F2D1"; } .mdi-heart-box:before { content: "\F2D2"; } .mdi-heart-box-outline:before { content: "\F2D3"; } .mdi-heart-broken:before { content: "\F2D4"; } .mdi-heart-outline:before { content: "\F2D5"; } .mdi-heart-pulse:before { content: "\F5F6"; } .mdi-help:before { content: "\F2D6"; } .mdi-help-circle:before { content: "\F2D7"; } .mdi-help-circle-outline:before { content: "\F625"; } .mdi-hexagon:before { content: "\F2D8"; } .mdi-hexagon-outline:before { content: "\F2D9"; } .mdi-highway:before { content: "\F5F7"; } .mdi-history:before { content: "\F2DA"; } .mdi-hololens:before { content: "\F2DB"; } .mdi-home:before { content: "\F2DC"; } .mdi-home-map-marker:before { content: "\F5F8"; } .mdi-home-modern:before { content: "\F2DD"; } .mdi-home-outline:before { content: "\F6A0"; } .mdi-home-variant:before { content: "\F2DE"; } .mdi-hops:before { content: "\F2DF"; } .mdi-hospital:before { content: "\F2E0"; } .mdi-hospital-building:before { content: "\F2E1"; } .mdi-hospital-marker:before { content: "\F2E2"; } .mdi-hotel:before { content: "\F2E3"; } .mdi-houzz:before { content: "\F2E4"; } .mdi-houzz-box:before { content: "\F2E5"; } .mdi-human:before { content: "\F2E6"; } .mdi-human-child:before { content: "\F2E7"; } .mdi-human-female:before { content: "\F649"; } .mdi-human-greeting:before { content: "\F64A"; } .mdi-human-handsdown:before { content: "\F64B"; } .mdi-human-handsup:before { content: "\F64C"; } .mdi-human-male:before { content: "\F64D"; } .mdi-human-male-female:before { content: "\F2E8"; } .mdi-human-pregnant:before { content: "\F5CF"; } .mdi-image:before { content: "\F2E9"; } .mdi-image-album:before { content: "\F2EA"; } .mdi-image-area:before { content: "\F2EB"; } .mdi-image-area-close:before { content: "\F2EC"; } .mdi-image-broken:before { content: "\F2ED"; } .mdi-image-broken-variant:before { content: "\F2EE"; } .mdi-image-filter:before { content: "\F2EF"; } .mdi-image-filter-black-white:before { content: "\F2F0"; } .mdi-image-filter-center-focus:before { content: "\F2F1"; } .mdi-image-filter-center-focus-weak:before { content: "\F2F2"; } .mdi-image-filter-drama:before { content: "\F2F3"; } .mdi-image-filter-frames:before { content: "\F2F4"; } .mdi-image-filter-hdr:before { content: "\F2F5"; } .mdi-image-filter-none:before { content: "\F2F6"; } .mdi-image-filter-tilt-shift:before { content: "\F2F7"; } .mdi-image-filter-vintage:before { content: "\F2F8"; } .mdi-image-multiple:before { content: "\F2F9"; } .mdi-import:before { content: "\F2FA"; } .mdi-inbox:before { content: "\F686"; } .mdi-inbox-arrow-down:before { content: "\F2FB"; } .mdi-inbox-arrow-up:before { content: "\F3D1"; } .mdi-incognito:before { content: "\F5F9"; } .mdi-information:before { content: "\F2FC"; } .mdi-information-outline:before { content: "\F2FD"; } .mdi-information-variant:before { content: "\F64E"; } .mdi-instagram:before { content: "\F2FE"; } .mdi-instapaper:before { content: "\F2FF"; } .mdi-internet-explorer:before { content: "\F300"; } .mdi-invert-colors:before { content: "\F301"; } .mdi-itunes:before { content: "\F676"; } .mdi-jeepney:before { content: "\F302"; } .mdi-jira:before { content: "\F303"; } .mdi-jsfiddle:before { content: "\F304"; } .mdi-json:before { content: "\F626"; } .mdi-keg:before { content: "\F305"; } .mdi-kettle:before { content: "\F5FA"; } .mdi-key:before { content: "\F306"; } .mdi-key-change:before { content: "\F307"; } .mdi-key-minus:before { content: "\F308"; } .mdi-key-plus:before { content: "\F309"; } .mdi-key-remove:before { content: "\F30A"; } .mdi-key-variant:before { content: "\F30B"; } .mdi-keyboard:before { content: "\F30C"; } .mdi-keyboard-backspace:before { content: "\F30D"; } .mdi-keyboard-caps:before { content: "\F30E"; } .mdi-keyboard-close:before { content: "\F30F"; } .mdi-keyboard-off:before { content: "\F310"; } .mdi-keyboard-return:before { content: "\F311"; } .mdi-keyboard-tab:before { content: "\F312"; } .mdi-keyboard-variant:before { content: "\F313"; } .mdi-kodi:before { content: "\F314"; } .mdi-label:before { content: "\F315"; } .mdi-label-outline:before { content: "\F316"; } .mdi-lambda:before { content: "\F627"; } .mdi-lamp:before { content: "\F6B4"; } .mdi-lan:before { content: "\F317"; } .mdi-lan-connect:before { content: "\F318"; } .mdi-lan-disconnect:before { content: "\F319"; } .mdi-lan-pending:before { content: "\F31A"; } .mdi-language-c:before { content: "\F671"; } .mdi-language-cpp:before { content: "\F672"; } .mdi-language-csharp:before { content: "\F31B"; } .mdi-language-css3:before { content: "\F31C"; } .mdi-language-html5:before { content: "\F31D"; } .mdi-language-javascript:before { content: "\F31E"; } .mdi-language-php:before { content: "\F31F"; } .mdi-language-python:before { content: "\F320"; } .mdi-language-python-text:before { content: "\F321"; } .mdi-laptop:before { content: "\F322"; } .mdi-laptop-chromebook:before { content: "\F323"; } .mdi-laptop-mac:before { content: "\F324"; } .mdi-laptop-windows:before { content: "\F325"; } .mdi-lastfm:before { content: "\F326"; } .mdi-launch:before { content: "\F327"; } .mdi-layers:before { content: "\F328"; } .mdi-layers-off:before { content: "\F329"; } .mdi-lead-pencil:before { content: "\F64F"; } .mdi-leaf:before { content: "\F32A"; } .mdi-led-off:before { content: "\F32B"; } .mdi-led-on:before { content: "\F32C"; } .mdi-led-outline:before { content: "\F32D"; } .mdi-led-variant-off:before { content: "\F32E"; } .mdi-led-variant-on:before { content: "\F32F"; } .mdi-led-variant-outline:before { content: "\F330"; } .mdi-library:before { content: "\F331"; } .mdi-library-books:before { content: "\F332"; } .mdi-library-music:before { content: "\F333"; } .mdi-library-plus:before { content: "\F334"; } .mdi-lightbulb:before { content: "\F335"; } .mdi-lightbulb-outline:before { content: "\F336"; } .mdi-link:before { content: "\F337"; } .mdi-link-off:before { content: "\F338"; } .mdi-link-variant:before { content: "\F339"; } .mdi-link-variant-off:before { content: "\F33A"; } .mdi-linkedin:before { content: "\F33B"; } .mdi-linkedin-box:before { content: "\F33C"; } .mdi-linux:before { content: "\F33D"; } .mdi-lock:before { content: "\F33E"; } .mdi-lock-open:before { content: "\F33F"; } .mdi-lock-open-outline:before { content: "\F340"; } .mdi-lock-outline:before { content: "\F341"; } .mdi-lock-plus:before { content: "\F5FB"; } .mdi-login:before { content: "\F342"; } .mdi-login-variant:before { content: "\F5FC"; } .mdi-logout:before { content: "\F343"; } .mdi-logout-variant:before { content: "\F5FD"; } .mdi-looks:before { content: "\F344"; } .mdi-loupe:before { content: "\F345"; } .mdi-lumx:before { content: "\F346"; } .mdi-magnet:before { content: "\F347"; } .mdi-magnet-on:before { content: "\F348"; } .mdi-magnify:before { content: "\F349"; } .mdi-magnify-minus:before { content: "\F34A"; } .mdi-magnify-plus:before { content: "\F34B"; } .mdi-mail-ru:before { content: "\F34C"; } .mdi-map:before { content: "\F34D"; } .mdi-map-marker:before { content: "\F34E"; } .mdi-map-marker-circle:before { content: "\F34F"; } .mdi-map-marker-minus:before { content: "\F650"; } .mdi-map-marker-multiple:before { content: "\F350"; } .mdi-map-marker-off:before { content: "\F351"; } .mdi-map-marker-plus:before { content: "\F651"; } .mdi-map-marker-radius:before { content: "\F352"; } .mdi-margin:before { content: "\F353"; } .mdi-markdown:before { content: "\F354"; } .mdi-marker:before { content: "\F652"; } .mdi-marker-check:before { content: "\F355"; } .mdi-martini:before { content: "\F356"; } .mdi-material-ui:before { content: "\F357"; } .mdi-math-compass:before { content: "\F358"; } .mdi-matrix:before { content: "\F628"; } .mdi-maxcdn:before { content: "\F359"; } .mdi-medium:before { content: "\F35A"; } .mdi-memory:before { content: "\F35B"; } .mdi-menu:before { content: "\F35C"; } .mdi-menu-down:before { content: "\F35D"; } .mdi-menu-down-outline:before { content: "\F6B5"; } .mdi-menu-left:before { content: "\F35E"; } .mdi-menu-right:before { content: "\F35F"; } .mdi-menu-up:before { content: "\F360"; } .mdi-menu-up-outline:before { content: "\F6B6"; } .mdi-message:before { content: "\F361"; } .mdi-message-alert:before { content: "\F362"; } .mdi-message-bulleted:before { content: "\F6A1"; } .mdi-message-bulleted-off:before { content: "\F6A2"; } .mdi-message-draw:before { content: "\F363"; } .mdi-message-image:before { content: "\F364"; } .mdi-message-outline:before { content: "\F365"; } .mdi-message-plus:before { content: "\F653"; } .mdi-message-processing:before { content: "\F366"; } .mdi-message-reply:before { content: "\F367"; } .mdi-message-reply-text:before { content: "\F368"; } .mdi-message-text:before { content: "\F369"; } .mdi-message-text-outline:before { content: "\F36A"; } .mdi-message-video:before { content: "\F36B"; } .mdi-meteor:before { content: "\F629"; } .mdi-microphone:before { content: "\F36C"; } .mdi-microphone-off:before { content: "\F36D"; } .mdi-microphone-outline:before { content: "\F36E"; } .mdi-microphone-settings:before { content: "\F36F"; } .mdi-microphone-variant:before { content: "\F370"; } .mdi-microphone-variant-off:before { content: "\F371"; } .mdi-microscope:before { content: "\F654"; } .mdi-microsoft:before { content: "\F372"; } .mdi-minecraft:before { content: "\F373"; } .mdi-minus:before { content: "\F374"; } .mdi-minus-box:before { content: "\F375"; } .mdi-minus-circle:before { content: "\F376"; } .mdi-minus-circle-outline:before { content: "\F377"; } .mdi-minus-network:before { content: "\F378"; } .mdi-mixcloud:before { content: "\F62A"; } .mdi-monitor:before { content: "\F379"; } .mdi-monitor-multiple:before { content: "\F37A"; } .mdi-more:before { content: "\F37B"; } .mdi-motorbike:before { content: "\F37C"; } .mdi-mouse:before { content: "\F37D"; } .mdi-mouse-off:before { content: "\F37E"; } .mdi-mouse-variant:before { content: "\F37F"; } .mdi-mouse-variant-off:before { content: "\F380"; } .mdi-move-resize:before { content: "\F655"; } .mdi-move-resize-variant:before { content: "\F656"; } .mdi-movie:before { content: "\F381"; } .mdi-multiplication:before { content: "\F382"; } .mdi-multiplication-box:before { content: "\F383"; } .mdi-music-box:before { content: "\F384"; } .mdi-music-box-outline:before { content: "\F385"; } .mdi-music-circle:before { content: "\F386"; } .mdi-music-note:before { content: "\F387"; } .mdi-music-note-bluetooth:before { content: "\F5FE"; } .mdi-music-note-bluetooth-off:before { content: "\F5FF"; } .mdi-music-note-eighth:before { content: "\F388"; } .mdi-music-note-half:before { content: "\F389"; } .mdi-music-note-off:before { content: "\F38A"; } .mdi-music-note-quarter:before { content: "\F38B"; } .mdi-music-note-sixteenth:before { content: "\F38C"; } .mdi-music-note-whole:before { content: "\F38D"; } .mdi-nature:before { content: "\F38E"; } .mdi-nature-people:before { content: "\F38F"; } .mdi-navigation:before { content: "\F390"; } .mdi-near-me:before { content: "\F5CD"; } .mdi-needle:before { content: "\F391"; } .mdi-nest-protect:before { content: "\F392"; } .mdi-nest-thermostat:before { content: "\F393"; } .mdi-new-box:before { content: "\F394"; } .mdi-newspaper:before { content: "\F395"; } .mdi-nfc:before { content: "\F396"; } .mdi-nfc-tap:before { content: "\F397"; } .mdi-nfc-variant:before { content: "\F398"; } .mdi-nodejs:before { content: "\F399"; } .mdi-note:before { content: "\F39A"; } .mdi-note-multiple:before { content: "\F6B7"; } .mdi-note-multiple-outline:before { content: "\F6B8"; } .mdi-note-outline:before { content: "\F39B"; } .mdi-note-plus:before { content: "\F39C"; } .mdi-note-plus-outline:before { content: "\F39D"; } .mdi-note-text:before { content: "\F39E"; } .mdi-notification-clear-all:before { content: "\F39F"; } .mdi-nuke:before { content: "\F6A3"; } .mdi-numeric:before { content: "\F3A0"; } .mdi-numeric-0-box:before { content: "\F3A1"; } .mdi-numeric-0-box-multiple-outline:before { content: "\F3A2"; } .mdi-numeric-0-box-outline:before { content: "\F3A3"; } .mdi-numeric-1-box:before { content: "\F3A4"; } .mdi-numeric-1-box-multiple-outline:before { content: "\F3A5"; } .mdi-numeric-1-box-outline:before { content: "\F3A6"; } .mdi-numeric-2-box:before { content: "\F3A7"; } .mdi-numeric-2-box-multiple-outline:before { content: "\F3A8"; } .mdi-numeric-2-box-outline:before { content: "\F3A9"; } .mdi-numeric-3-box:before { content: "\F3AA"; } .mdi-numeric-3-box-multiple-outline:before { content: "\F3AB"; } .mdi-numeric-3-box-outline:before { content: "\F3AC"; } .mdi-numeric-4-box:before { content: "\F3AD"; } .mdi-numeric-4-box-multiple-outline:before { content: "\F3AE"; } .mdi-numeric-4-box-outline:before { content: "\F3AF"; } .mdi-numeric-5-box:before { content: "\F3B0"; } .mdi-numeric-5-box-multiple-outline:before { content: "\F3B1"; } .mdi-numeric-5-box-outline:before { content: "\F3B2"; } .mdi-numeric-6-box:before { content: "\F3B3"; } .mdi-numeric-6-box-multiple-outline:before { content: "\F3B4"; } .mdi-numeric-6-box-outline:before { content: "\F3B5"; } .mdi-numeric-7-box:before { content: "\F3B6"; } .mdi-numeric-7-box-multiple-outline:before { content: "\F3B7"; } .mdi-numeric-7-box-outline:before { content: "\F3B8"; } .mdi-numeric-8-box:before { content: "\F3B9"; } .mdi-numeric-8-box-multiple-outline:before { content: "\F3BA"; } .mdi-numeric-8-box-outline:before { content: "\F3BB"; } .mdi-numeric-9-box:before { content: "\F3BC"; } .mdi-numeric-9-box-multiple-outline:before { content: "\F3BD"; } .mdi-numeric-9-box-outline:before { content: "\F3BE"; } .mdi-numeric-9-plus-box:before { content: "\F3BF"; } .mdi-numeric-9-plus-box-multiple-outline:before { content: "\F3C0"; } .mdi-numeric-9-plus-box-outline:before { content: "\F3C1"; } .mdi-nutrition:before { content: "\F3C2"; } .mdi-oar:before { content: "\F67B"; } .mdi-octagon:before { content: "\F3C3"; } .mdi-octagon-outline:before { content: "\F3C4"; } .mdi-odnoklassniki:before { content: "\F3C5"; } .mdi-office:before { content: "\F3C6"; } .mdi-oil:before { content: "\F3C7"; } .mdi-oil-temperature:before { content: "\F3C8"; } .mdi-omega:before { content: "\F3C9"; } .mdi-onedrive:before { content: "\F3CA"; } .mdi-opacity:before { content: "\F5CC"; } .mdi-open-in-app:before { content: "\F3CB"; } .mdi-open-in-new:before { content: "\F3CC"; } .mdi-openid:before { content: "\F3CD"; } .mdi-opera:before { content: "\F3CE"; } .mdi-ornament:before { content: "\F3CF"; } .mdi-ornament-variant:before { content: "\F3D0"; } .mdi-owl:before { content: "\F3D2"; } .mdi-package:before { content: "\F3D3"; } .mdi-package-down:before { content: "\F3D4"; } .mdi-package-up:before { content: "\F3D5"; } .mdi-package-variant:before { content: "\F3D6"; } .mdi-package-variant-closed:before { content: "\F3D7"; } .mdi-page-first:before { content: "\F600"; } .mdi-page-last:before { content: "\F601"; } .mdi-palette:before { content: "\F3D8"; } .mdi-palette-advanced:before { content: "\F3D9"; } .mdi-panda:before { content: "\F3DA"; } .mdi-pandora:before { content: "\F3DB"; } .mdi-panorama:before { content: "\F3DC"; } .mdi-panorama-fisheye:before { content: "\F3DD"; } .mdi-panorama-horizontal:before { content: "\F3DE"; } .mdi-panorama-vertical:before { content: "\F3DF"; } .mdi-panorama-wide-angle:before { content: "\F3E0"; } .mdi-paper-cut-vertical:before { content: "\F3E1"; } .mdi-paperclip:before { content: "\F3E2"; } .mdi-parking:before { content: "\F3E3"; } .mdi-pause:before { content: "\F3E4"; } .mdi-pause-circle:before { content: "\F3E5"; } .mdi-pause-circle-outline:before { content: "\F3E6"; } .mdi-pause-octagon:before { content: "\F3E7"; } .mdi-pause-octagon-outline:before { content: "\F3E8"; } .mdi-paw:before { content: "\F3E9"; } .mdi-paw-off:before { content: "\F657"; } .mdi-pen:before { content: "\F3EA"; } .mdi-pencil:before { content: "\F3EB"; } .mdi-pencil-box:before { content: "\F3EC"; } .mdi-pencil-box-outline:before { content: "\F3ED"; } .mdi-pencil-lock:before { content: "\F3EE"; } .mdi-pencil-off:before { content: "\F3EF"; } .mdi-percent:before { content: "\F3F0"; } .mdi-pharmacy:before { content: "\F3F1"; } .mdi-phone:before { content: "\F3F2"; } .mdi-phone-bluetooth:before { content: "\F3F3"; } .mdi-phone-classic:before { content: "\F602"; } .mdi-phone-forward:before { content: "\F3F4"; } .mdi-phone-hangup:before { content: "\F3F5"; } .mdi-phone-in-talk:before { content: "\F3F6"; } .mdi-phone-incoming:before { content: "\F3F7"; } .mdi-phone-locked:before { content: "\F3F8"; } .mdi-phone-log:before { content: "\F3F9"; } .mdi-phone-minus:before { content: "\F658"; } .mdi-phone-missed:before { content: "\F3FA"; } .mdi-phone-outgoing:before { content: "\F3FB"; } .mdi-phone-paused:before { content: "\F3FC"; } .mdi-phone-plus:before { content: "\F659"; } .mdi-phone-settings:before { content: "\F3FD"; } .mdi-phone-voip:before { content: "\F3FE"; } .mdi-pi:before { content: "\F3FF"; } .mdi-pi-box:before { content: "\F400"; } .mdi-piano:before { content: "\F67C"; } .mdi-pig:before { content: "\F401"; } .mdi-pill:before { content: "\F402"; } .mdi-pin:before { content: "\F403"; } .mdi-pin-off:before { content: "\F404"; } .mdi-pine-tree:before { content: "\F405"; } .mdi-pine-tree-box:before { content: "\F406"; } .mdi-pinterest:before { content: "\F407"; } .mdi-pinterest-box:before { content: "\F408"; } .mdi-pizza:before { content: "\F409"; } .mdi-plane-shield:before { content: "\F6BA"; } .mdi-play:before { content: "\F40A"; } .mdi-play-box-outline:before { content: "\F40B"; } .mdi-play-circle:before { content: "\F40C"; } .mdi-play-circle-outline:before { content: "\F40D"; } .mdi-play-pause:before { content: "\F40E"; } .mdi-play-protected-content:before { content: "\F40F"; } .mdi-playlist-check:before { content: "\F5C7"; } .mdi-playlist-minus:before { content: "\F410"; } .mdi-playlist-play:before { content: "\F411"; } .mdi-playlist-plus:before { content: "\F412"; } .mdi-playlist-remove:before { content: "\F413"; } .mdi-playstation:before { content: "\F414"; } .mdi-plex:before { content: "\F6B9"; } .mdi-plus:before { content: "\F415"; } .mdi-plus-box:before { content: "\F416"; } .mdi-plus-circle:before { content: "\F417"; } .mdi-plus-circle-multiple-outline:before { content: "\F418"; } .mdi-plus-circle-outline:before { content: "\F419"; } .mdi-plus-network:before { content: "\F41A"; } .mdi-plus-one:before { content: "\F41B"; } .mdi-pocket:before { content: "\F41C"; } .mdi-pokeball:before { content: "\F41D"; } .mdi-polaroid:before { content: "\F41E"; } .mdi-poll:before { content: "\F41F"; } .mdi-poll-box:before { content: "\F420"; } .mdi-polymer:before { content: "\F421"; } .mdi-pool:before { content: "\F606"; } .mdi-popcorn:before { content: "\F422"; } .mdi-pot:before { content: "\F65A"; } .mdi-pot-mix:before { content: "\F65B"; } .mdi-pound:before { content: "\F423"; } .mdi-pound-box:before { content: "\F424"; } .mdi-power:before { content: "\F425"; } .mdi-power-plug:before { content: "\F6A4"; } .mdi-power-plug-off:before { content: "\F6A5"; } .mdi-power-settings:before { content: "\F426"; } .mdi-power-socket:before { content: "\F427"; } .mdi-presentation:before { content: "\F428"; } .mdi-presentation-play:before { content: "\F429"; } .mdi-printer:before { content: "\F42A"; } .mdi-printer-3d:before { content: "\F42B"; } .mdi-printer-alert:before { content: "\F42C"; } .mdi-priority-high:before { content: "\F603"; } .mdi-priority-low:before { content: "\F604"; } .mdi-professional-hexagon:before { content: "\F42D"; } .mdi-projector:before { content: "\F42E"; } .mdi-projector-screen:before { content: "\F42F"; } .mdi-publish:before { content: "\F6A6"; } .mdi-pulse:before { content: "\F430"; } .mdi-puzzle:before { content: "\F431"; } .mdi-qqchat:before { content: "\F605"; } .mdi-qrcode:before { content: "\F432"; } .mdi-qrcode-scan:before { content: "\F433"; } .mdi-quadcopter:before { content: "\F434"; } .mdi-quality-high:before { content: "\F435"; } .mdi-quicktime:before { content: "\F436"; } .mdi-radar:before { content: "\F437"; } .mdi-radiator:before { content: "\F438"; } .mdi-radio:before { content: "\F439"; } .mdi-radio-handheld:before { content: "\F43A"; } .mdi-radio-tower:before { content: "\F43B"; } .mdi-radioactive:before { content: "\F43C"; } .mdi-radiobox-blank:before { content: "\F43D"; } .mdi-radiobox-marked:before { content: "\F43E"; } .mdi-raspberrypi:before { content: "\F43F"; } .mdi-ray-end:before { content: "\F440"; } .mdi-ray-end-arrow:before { content: "\F441"; } .mdi-ray-start:before { content: "\F442"; } .mdi-ray-start-arrow:before { content: "\F443"; } .mdi-ray-start-end:before { content: "\F444"; } .mdi-ray-vertex:before { content: "\F445"; } .mdi-rdio:before { content: "\F446"; } .mdi-read:before { content: "\F447"; } .mdi-readability:before { content: "\F448"; } .mdi-receipt:before { content: "\F449"; } .mdi-record:before { content: "\F44A"; } .mdi-record-rec:before { content: "\F44B"; } .mdi-recycle:before { content: "\F44C"; } .mdi-reddit:before { content: "\F44D"; } .mdi-redo:before { content: "\F44E"; } .mdi-redo-variant:before { content: "\F44F"; } .mdi-refresh:before { content: "\F450"; } .mdi-regex:before { content: "\F451"; } .mdi-relative-scale:before { content: "\F452"; } .mdi-reload:before { content: "\F453"; } .mdi-remote:before { content: "\F454"; } .mdi-rename-box:before { content: "\F455"; } .mdi-reorder-horizontal:before { content: "\F687"; } .mdi-reorder-vertical:before { content: "\F688"; } .mdi-repeat:before { content: "\F456"; } .mdi-repeat-off:before { content: "\F457"; } .mdi-repeat-once:before { content: "\F458"; } .mdi-replay:before { content: "\F459"; } .mdi-reply:before { content: "\F45A"; } .mdi-reply-all:before { content: "\F45B"; } .mdi-reproduction:before { content: "\F45C"; } .mdi-resize-bottom-right:before { content: "\F45D"; } .mdi-responsive:before { content: "\F45E"; } .mdi-restore:before { content: "\F6A7"; } .mdi-rewind:before { content: "\F45F"; } .mdi-ribbon:before { content: "\F460"; } .mdi-road:before { content: "\F461"; } .mdi-road-variant:before { content: "\F462"; } .mdi-robot:before { content: "\F6A8"; } .mdi-rocket:before { content: "\F463"; } .mdi-rotate-3d:before { content: "\F464"; } .mdi-rotate-90:before { content: "\F6A9"; } .mdi-rotate-left:before { content: "\F465"; } .mdi-rotate-left-variant:before { content: "\F466"; } .mdi-rotate-right:before { content: "\F467"; } .mdi-rotate-right-variant:before { content: "\F468"; } .mdi-rounded-corner:before { content: "\F607"; } .mdi-router-wireless:before { content: "\F469"; } .mdi-routes:before { content: "\F46A"; } .mdi-rowing:before { content: "\F608"; } .mdi-rss:before { content: "\F46B"; } .mdi-rss-box:before { content: "\F46C"; } .mdi-ruler:before { content: "\F46D"; } .mdi-run:before { content: "\F46E"; } .mdi-sale:before { content: "\F46F"; } .mdi-satellite:before { content: "\F470"; } .mdi-satellite-variant:before { content: "\F471"; } .mdi-saxophone:before { content: "\F609"; } .mdi-scale:before { content: "\F472"; } .mdi-scale-balance:before { content: "\F5D1"; } .mdi-scale-bathroom:before { content: "\F473"; } .mdi-scanner:before { content: "\F6AA"; } .mdi-school:before { content: "\F474"; } .mdi-screen-rotation:before { content: "\F475"; } .mdi-screen-rotation-lock:before { content: "\F476"; } .mdi-screwdriver:before { content: "\F477"; } .mdi-script:before { content: "\F478"; } .mdi-sd:before { content: "\F479"; } .mdi-seal:before { content: "\F47A"; } .mdi-seat-flat:before { content: "\F47B"; } .mdi-seat-flat-angled:before { content: "\F47C"; } .mdi-seat-individual-suite:before { content: "\F47D"; } .mdi-seat-legroom-extra:before { content: "\F47E"; } .mdi-seat-legroom-normal:before { content: "\F47F"; } .mdi-seat-legroom-reduced:before { content: "\F480"; } .mdi-seat-recline-extra:before { content: "\F481"; } .mdi-seat-recline-normal:before { content: "\F482"; } .mdi-security:before { content: "\F483"; } .mdi-security-home:before { content: "\F689"; } .mdi-security-network:before { content: "\F484"; } .mdi-select:before { content: "\F485"; } .mdi-select-all:before { content: "\F486"; } .mdi-select-inverse:before { content: "\F487"; } .mdi-select-off:before { content: "\F488"; } .mdi-selection:before { content: "\F489"; } .mdi-send:before { content: "\F48A"; } .mdi-serial-port:before { content: "\F65C"; } .mdi-server:before { content: "\F48B"; } .mdi-server-minus:before { content: "\F48C"; } .mdi-server-network:before { content: "\F48D"; } .mdi-server-network-off:before { content: "\F48E"; } .mdi-server-off:before { content: "\F48F"; } .mdi-server-plus:before { content: "\F490"; } .mdi-server-remove:before { content: "\F491"; } .mdi-server-security:before { content: "\F492"; } .mdi-settings:before { content: "\F493"; } .mdi-settings-box:before { content: "\F494"; } .mdi-shape-circle-plus:before { content: "\F65D"; } .mdi-shape-plus:before { content: "\F495"; } .mdi-shape-polygon-plus:before { content: "\F65E"; } .mdi-shape-rectangle-plus:before { content: "\F65F"; } .mdi-shape-square-plus:before { content: "\F660"; } .mdi-share:before { content: "\F496"; } .mdi-share-variant:before { content: "\F497"; } .mdi-shield:before { content: "\F498"; } .mdi-shield-outline:before { content: "\F499"; } .mdi-shopping:before { content: "\F49A"; } .mdi-shopping-music:before { content: "\F49B"; } .mdi-shredder:before { content: "\F49C"; } .mdi-shuffle:before { content: "\F49D"; } .mdi-shuffle-disabled:before { content: "\F49E"; } .mdi-shuffle-variant:before { content: "\F49F"; } .mdi-sigma:before { content: "\F4A0"; } .mdi-sigma-lower:before { content: "\F62B"; } .mdi-sign-caution:before { content: "\F4A1"; } .mdi-signal:before { content: "\F4A2"; } .mdi-signal-variant:before { content: "\F60A"; } .mdi-silverware:before { content: "\F4A3"; } .mdi-silverware-fork:before { content: "\F4A4"; } .mdi-silverware-spoon:before { content: "\F4A5"; } .mdi-silverware-variant:before { content: "\F4A6"; } .mdi-sim:before { content: "\F4A7"; } .mdi-sim-alert:before { content: "\F4A8"; } .mdi-sim-off:before { content: "\F4A9"; } .mdi-sitemap:before { content: "\F4AA"; } .mdi-skip-backward:before { content: "\F4AB"; } .mdi-skip-forward:before { content: "\F4AC"; } .mdi-skip-next:before { content: "\F4AD"; } .mdi-skip-next-circle:before { content: "\F661"; } .mdi-skip-next-circle-outline:before { content: "\F662"; } .mdi-skip-previous:before { content: "\F4AE"; } .mdi-skip-previous-circle:before { content: "\F663"; } .mdi-skip-previous-circle-outline:before { content: "\F664"; } .mdi-skull:before { content: "\F68B"; } .mdi-skype:before { content: "\F4AF"; } .mdi-skype-business:before { content: "\F4B0"; } .mdi-slack:before { content: "\F4B1"; } .mdi-sleep:before { content: "\F4B2"; } .mdi-sleep-off:before { content: "\F4B3"; } .mdi-smoking:before { content: "\F4B4"; } .mdi-smoking-off:before { content: "\F4B5"; } .mdi-snapchat:before { content: "\F4B6"; } .mdi-snowman:before { content: "\F4B7"; } .mdi-soccer:before { content: "\F4B8"; } .mdi-sofa:before { content: "\F4B9"; } .mdi-solid:before { content: "\F68C"; } .mdi-sort:before { content: "\F4BA"; } .mdi-sort-alphabetical:before { content: "\F4BB"; } .mdi-sort-ascending:before { content: "\F4BC"; } .mdi-sort-descending:before { content: "\F4BD"; } .mdi-sort-numeric:before { content: "\F4BE"; } .mdi-sort-variant:before { content: "\F4BF"; } .mdi-soundcloud:before { content: "\F4C0"; } .mdi-source-branch:before { content: "\F62C"; } .mdi-source-fork:before { content: "\F4C1"; } .mdi-source-merge:before { content: "\F62D"; } .mdi-source-pull:before { content: "\F4C2"; } .mdi-speaker:before { content: "\F4C3"; } .mdi-speaker-off:before { content: "\F4C4"; } .mdi-speedometer:before { content: "\F4C5"; } .mdi-spellcheck:before { content: "\F4C6"; } .mdi-spotify:before { content: "\F4C7"; } .mdi-spotlight:before { content: "\F4C8"; } .mdi-spotlight-beam:before { content: "\F4C9"; } .mdi-spray:before { content: "\F665"; } .mdi-square-inc:before { content: "\F4CA"; } .mdi-square-inc-cash:before { content: "\F4CB"; } .mdi-stackexchange:before { content: "\F60B"; } .mdi-stackoverflow:before { content: "\F4CC"; } .mdi-stairs:before { content: "\F4CD"; } .mdi-star:before { content: "\F4CE"; } .mdi-star-circle:before { content: "\F4CF"; } .mdi-star-half:before { content: "\F4D0"; } .mdi-star-off:before { content: "\F4D1"; } .mdi-star-outline:before { content: "\F4D2"; } .mdi-steam:before { content: "\F4D3"; } .mdi-steering:before { content: "\F4D4"; } .mdi-step-backward:before { content: "\F4D5"; } .mdi-step-backward-2:before { content: "\F4D6"; } .mdi-step-forward:before { content: "\F4D7"; } .mdi-step-forward-2:before { content: "\F4D8"; } .mdi-stethoscope:before { content: "\F4D9"; } .mdi-sticker:before { content: "\F5D0"; } .mdi-stocking:before { content: "\F4DA"; } .mdi-stop:before { content: "\F4DB"; } .mdi-stop-circle:before { content: "\F666"; } .mdi-stop-circle-outline:before { content: "\F667"; } .mdi-store:before { content: "\F4DC"; } .mdi-store-24-hour:before { content: "\F4DD"; } .mdi-stove:before { content: "\F4DE"; } .mdi-subdirectory-arrow-left:before { content: "\F60C"; } .mdi-subdirectory-arrow-right:before { content: "\F60D"; } .mdi-subway:before { content: "\F6AB"; } .mdi-subway-variant:before { content: "\F4DF"; } .mdi-sunglasses:before { content: "\F4E0"; } .mdi-surround-sound:before { content: "\F5C5"; } .mdi-swap-horizontal:before { content: "\F4E1"; } .mdi-swap-vertical:before { content: "\F4E2"; } .mdi-swim:before { content: "\F4E3"; } .mdi-switch:before { content: "\F4E4"; } .mdi-sword:before { content: "\F4E5"; } .mdi-sync:before { content: "\F4E6"; } .mdi-sync-alert:before { content: "\F4E7"; } .mdi-sync-off:before { content: "\F4E8"; } .mdi-tab:before { content: "\F4E9"; } .mdi-tab-unselected:before { content: "\F4EA"; } .mdi-table:before { content: "\F4EB"; } .mdi-table-column-plus-after:before { content: "\F4EC"; } .mdi-table-column-plus-before:before { content: "\F4ED"; } .mdi-table-column-remove:before { content: "\F4EE"; } .mdi-table-column-width:before { content: "\F4EF"; } .mdi-table-edit:before { content: "\F4F0"; } .mdi-table-large:before { content: "\F4F1"; } .mdi-table-row-height:before { content: "\F4F2"; } .mdi-table-row-plus-after:before { content: "\F4F3"; } .mdi-table-row-plus-before:before { content: "\F4F4"; } .mdi-table-row-remove:before { content: "\F4F5"; } .mdi-tablet:before { content: "\F4F6"; } .mdi-tablet-android:before { content: "\F4F7"; } .mdi-tablet-ipad:before { content: "\F4F8"; } .mdi-tag:before { content: "\F4F9"; } .mdi-tag-faces:before { content: "\F4FA"; } .mdi-tag-heart:before { content: "\F68A"; } .mdi-tag-multiple:before { content: "\F4FB"; } .mdi-tag-outline:before { content: "\F4FC"; } .mdi-tag-text-outline:before { content: "\F4FD"; } .mdi-target:before { content: "\F4FE"; } .mdi-taxi:before { content: "\F4FF"; } .mdi-teamviewer:before { content: "\F500"; } .mdi-telegram:before { content: "\F501"; } .mdi-television:before { content: "\F502"; } .mdi-television-guide:before { content: "\F503"; } .mdi-temperature-celsius:before { content: "\F504"; } .mdi-temperature-fahrenheit:before { content: "\F505"; } .mdi-temperature-kelvin:before { content: "\F506"; } .mdi-tennis:before { content: "\F507"; } .mdi-tent:before { content: "\F508"; } .mdi-terrain:before { content: "\F509"; } .mdi-test-tube:before { content: "\F668"; } .mdi-text-shadow:before { content: "\F669"; } .mdi-text-to-speech:before { content: "\F50A"; } .mdi-text-to-speech-off:before { content: "\F50B"; } .mdi-textbox:before { content: "\F60E"; } .mdi-texture:before { content: "\F50C"; } .mdi-theater:before { content: "\F50D"; } .mdi-theme-light-dark:before { content: "\F50E"; } .mdi-thermometer:before { content: "\F50F"; } .mdi-thermometer-lines:before { content: "\F510"; } .mdi-thumb-down:before { content: "\F511"; } .mdi-thumb-down-outline:before { content: "\F512"; } .mdi-thumb-up:before { content: "\F513"; } .mdi-thumb-up-outline:before { content: "\F514"; } .mdi-thumbs-up-down:before { content: "\F515"; } .mdi-ticket:before { content: "\F516"; } .mdi-ticket-account:before { content: "\F517"; } .mdi-ticket-confirmation:before { content: "\F518"; } .mdi-tie:before { content: "\F519"; } .mdi-timelapse:before { content: "\F51A"; } .mdi-timer:before { content: "\F51B"; } .mdi-timer-10:before { content: "\F51C"; } .mdi-timer-3:before { content: "\F51D"; } .mdi-timer-off:before { content: "\F51E"; } .mdi-timer-sand:before { content: "\F51F"; } .mdi-timer-sand-empty:before { content: "\F6AC"; } .mdi-timetable:before { content: "\F520"; } .mdi-toggle-switch:before { content: "\F521"; } .mdi-toggle-switch-off:before { content: "\F522"; } .mdi-tooltip:before { content: "\F523"; } .mdi-tooltip-edit:before { content: "\F524"; } .mdi-tooltip-image:before { content: "\F525"; } .mdi-tooltip-outline:before { content: "\F526"; } .mdi-tooltip-outline-plus:before { content: "\F527"; } .mdi-tooltip-text:before { content: "\F528"; } .mdi-tooth:before { content: "\F529"; } .mdi-tor:before { content: "\F52A"; } .mdi-tower-beach:before { content: "\F680"; } .mdi-tower-fire:before { content: "\F681"; } .mdi-traffic-light:before { content: "\F52B"; } .mdi-train:before { content: "\F52C"; } .mdi-tram:before { content: "\F52D"; } .mdi-transcribe:before { content: "\F52E"; } .mdi-transcribe-close:before { content: "\F52F"; } .mdi-transfer:before { content: "\F530"; } .mdi-transit-transfer:before { content: "\F6AD"; } .mdi-translate:before { content: "\F5CA"; } .mdi-tree:before { content: "\F531"; } .mdi-trello:before { content: "\F532"; } .mdi-trending-down:before { content: "\F533"; } .mdi-trending-neutral:before { content: "\F534"; } .mdi-trending-up:before { content: "\F535"; } .mdi-triangle:before { content: "\F536"; } .mdi-triangle-outline:before { content: "\F537"; } .mdi-trophy:before { content: "\F538"; } .mdi-trophy-award:before { content: "\F539"; } .mdi-trophy-outline:before { content: "\F53A"; } .mdi-trophy-variant:before { content: "\F53B"; } .mdi-trophy-variant-outline:before { content: "\F53C"; } .mdi-truck:before { content: "\F53D"; } .mdi-truck-delivery:before { content: "\F53E"; } .mdi-tshirt-crew:before { content: "\F53F"; } .mdi-tshirt-v:before { content: "\F540"; } .mdi-tumblr:before { content: "\F541"; } .mdi-tumblr-reblog:before { content: "\F542"; } .mdi-tune:before { content: "\F62E"; } .mdi-tune-vertical:before { content: "\F66A"; } .mdi-twitch:before { content: "\F543"; } .mdi-twitter:before { content: "\F544"; } .mdi-twitter-box:before { content: "\F545"; } .mdi-twitter-circle:before { content: "\F546"; } .mdi-twitter-retweet:before { content: "\F547"; } .mdi-ubuntu:before { content: "\F548"; } .mdi-umbraco:before { content: "\F549"; } .mdi-umbrella:before { content: "\F54A"; } .mdi-umbrella-outline:before { content: "\F54B"; } .mdi-undo:before { content: "\F54C"; } .mdi-undo-variant:before { content: "\F54D"; } .mdi-unfold-less:before { content: "\F54E"; } .mdi-unfold-more:before { content: "\F54F"; } .mdi-ungroup:before { content: "\F550"; } .mdi-unity:before { content: "\F6AE"; } .mdi-untappd:before { content: "\F551"; } .mdi-update:before { content: "\F6AF"; } .mdi-upload:before { content: "\F552"; } .mdi-usb:before { content: "\F553"; } .mdi-vector-arrange-above:before { content: "\F554"; } .mdi-vector-arrange-below:before { content: "\F555"; } .mdi-vector-circle:before { content: "\F556"; } .mdi-vector-circle-variant:before { content: "\F557"; } .mdi-vector-combine:before { content: "\F558"; } .mdi-vector-curve:before { content: "\F559"; } .mdi-vector-difference:before { content: "\F55A"; } .mdi-vector-difference-ab:before { content: "\F55B"; } .mdi-vector-difference-ba:before { content: "\F55C"; } .mdi-vector-intersection:before { content: "\F55D"; } .mdi-vector-line:before { content: "\F55E"; } .mdi-vector-point:before { content: "\F55F"; } .mdi-vector-polygon:before { content: "\F560"; } .mdi-vector-polyline:before { content: "\F561"; } .mdi-vector-rectangle:before { content: "\F5C6"; } .mdi-vector-selection:before { content: "\F562"; } .mdi-vector-square:before { content: "\F001"; } .mdi-vector-triangle:before { content: "\F563"; } .mdi-vector-union:before { content: "\F564"; } .mdi-verified:before { content: "\F565"; } .mdi-vibrate:before { content: "\F566"; } .mdi-video:before { content: "\F567"; } .mdi-video-off:before { content: "\F568"; } .mdi-video-switch:before { content: "\F569"; } .mdi-view-agenda:before { content: "\F56A"; } .mdi-view-array:before { content: "\F56B"; } .mdi-view-carousel:before { content: "\F56C"; } .mdi-view-column:before { content: "\F56D"; } .mdi-view-dashboard:before { content: "\F56E"; } .mdi-view-day:before { content: "\F56F"; } .mdi-view-grid:before { content: "\F570"; } .mdi-view-headline:before { content: "\F571"; } .mdi-view-list:before { content: "\F572"; } .mdi-view-module:before { content: "\F573"; } .mdi-view-quilt:before { content: "\F574"; } .mdi-view-stream:before { content: "\F575"; } .mdi-view-week:before { content: "\F576"; } .mdi-vimeo:before { content: "\F577"; } .mdi-vine:before { content: "\F578"; } .mdi-violin:before { content: "\F60F"; } .mdi-visualstudio:before { content: "\F610"; } .mdi-vk:before { content: "\F579"; } .mdi-vk-box:before { content: "\F57A"; } .mdi-vk-circle:before { content: "\F57B"; } .mdi-vlc:before { content: "\F57C"; } .mdi-voice:before { content: "\F5CB"; } .mdi-voicemail:before { content: "\F57D"; } .mdi-volume-high:before { content: "\F57E"; } .mdi-volume-low:before { content: "\F57F"; } .mdi-volume-medium:before { content: "\F580"; } .mdi-volume-off:before { content: "\F581"; } .mdi-vpn:before { content: "\F582"; } .mdi-walk:before { content: "\F583"; } .mdi-wallet:before { content: "\F584"; } .mdi-wallet-giftcard:before { content: "\F585"; } .mdi-wallet-membership:before { content: "\F586"; } .mdi-wallet-travel:before { content: "\F587"; } .mdi-wan:before { content: "\F588"; } .mdi-watch:before { content: "\F589"; } .mdi-watch-export:before { content: "\F58A"; } .mdi-watch-import:before { content: "\F58B"; } .mdi-watch-vibrate:before { content: "\F6B0"; } .mdi-water:before { content: "\F58C"; } .mdi-water-off:before { content: "\F58D"; } .mdi-water-percent:before { content: "\F58E"; } .mdi-water-pump:before { content: "\F58F"; } .mdi-watermark:before { content: "\F612"; } .mdi-weather-cloudy:before { content: "\F590"; } .mdi-weather-fog:before { content: "\F591"; } .mdi-weather-hail:before { content: "\F592"; } .mdi-weather-lightning:before { content: "\F593"; } .mdi-weather-lightning-rainy:before { content: "\F67D"; } .mdi-weather-night:before { content: "\F594"; } .mdi-weather-partlycloudy:before { content: "\F595"; } .mdi-weather-pouring:before { content: "\F596"; } .mdi-weather-rainy:before { content: "\F597"; } .mdi-weather-snowy:before { content: "\F598"; } .mdi-weather-snowy-rainy:before { content: "\F67E"; } .mdi-weather-sunny:before { content: "\F599"; } .mdi-weather-sunset:before { content: "\F59A"; } .mdi-weather-sunset-down:before { content: "\F59B"; } .mdi-weather-sunset-up:before { content: "\F59C"; } .mdi-weather-windy:before { content: "\F59D"; } .mdi-weather-windy-variant:before { content: "\F59E"; } .mdi-web:before { content: "\F59F"; } .mdi-webcam:before { content: "\F5A0"; } .mdi-webhook:before { content: "\F62F"; } .mdi-wechat:before { content: "\F611"; } .mdi-weight:before { content: "\F5A1"; } .mdi-weight-kilogram:before { content: "\F5A2"; } .mdi-whatsapp:before { content: "\F5A3"; } .mdi-wheelchair-accessibility:before { content: "\F5A4"; } .mdi-white-balance-auto:before { content: "\F5A5"; } .mdi-white-balance-incandescent:before { content: "\F5A6"; } .mdi-white-balance-iridescent:before { content: "\F5A7"; } .mdi-white-balance-sunny:before { content: "\F5A8"; } .mdi-wifi:before { content: "\F5A9"; } .mdi-wifi-off:before { content: "\F5AA"; } .mdi-wii:before { content: "\F5AB"; } .mdi-wikipedia:before { content: "\F5AC"; } .mdi-window-close:before { content: "\F5AD"; } .mdi-window-closed:before { content: "\F5AE"; } .mdi-window-maximize:before { content: "\F5AF"; } .mdi-window-minimize:before { content: "\F5B0"; } .mdi-window-open:before { content: "\F5B1"; } .mdi-window-restore:before { content: "\F5B2"; } .mdi-windows:before { content: "\F5B3"; } .mdi-wordpress:before { content: "\F5B4"; } .mdi-worker:before { content: "\F5B5"; } .mdi-wrap:before { content: "\F5B6"; } .mdi-wrench:before { content: "\F5B7"; } .mdi-wunderlist:before { content: "\F5B8"; } .mdi-xaml:before { content: "\F673"; } .mdi-xbox:before { content: "\F5B9"; } .mdi-xbox-controller:before { content: "\F5BA"; } .mdi-xbox-controller-off:before { content: "\F5BB"; } .mdi-xda:before { content: "\F5BC"; } .mdi-xing:before { content: "\F5BD"; } .mdi-xing-box:before { content: "\F5BE"; } .mdi-xing-circle:before { content: "\F5BF"; } .mdi-xml:before { content: "\F5C0"; } .mdi-yeast:before { content: "\F5C1"; } .mdi-yelp:before { content: "\F5C2"; } .mdi-yin-yang:before { content: "\F67F"; } .mdi-youtube-play:before { content: "\F5C3"; } .mdi-zip-box:before { content: "\F5C4"; } .mdi-blank:before { content: "\F68C"; visibility: hidden; } .mdi-set.mdi-18px, .mdi.mdi-18px:before { font-size: 18px; } .mdi-set.mdi-24px, .mdi.mdi-24px:before { font-size: 24px; } .mdi-set.mdi-36px, .mdi.mdi-36px:before { font-size: 36px; } .mdi-set.mdi-48px, .mdi.mdi-48px:before { font-size: 48px; } .mdi-dark { color: rgba(0, 0, 0, 0.54); } .mdi-dark.mdi-inactive { color: rgba(0, 0, 0, 0.26); } .mdi-light { color: white; } .mdi-light.mdi-inactive { color: rgba(255, 255, 255, 0.3); } .mdi-rotate-45 { -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } .mdi-rotate-90 { -webkit-transform: rotate(90deg); -ms-transform: rotate(90deg); transform: rotate(90deg); } .mdi-rotate-135 { -webkit-transform: rotate(135deg); -ms-transform: rotate(135deg); transform: rotate(135deg); } .mdi-rotate-180 { -webkit-transform: rotate(180deg); -ms-transform: rotate(180deg); transform: rotate(180deg); } .mdi-rotate-225 { -webkit-transform: rotate(225deg); -ms-transform: rotate(225deg); transform: rotate(225deg); } .mdi-rotate-270 { -webkit-transform: rotate(270deg); -ms-transform: rotate(270deg); transform: rotate(270deg); } .mdi-rotate-315 { -webkit-transform: rotate(315deg); -ms-transform: rotate(315deg); transform: rotate(315deg); } .mdi-flip-horizontal { -webkit-transform: scaleX(-1); transform: scaleX(-1); filter: FlipH; -ms-filter: "FlipH"; } .mdi-flip-vertical { -webkit-transform: scaleY(-1); transform: scaleY(-1); filter: FlipV; -ms-filter: "FlipV"; } /*# sourceMappingURL=materialdesignicons.css.map */ .smt:before { display: inline-block; font-family: "smticon"; font-style: normal; font-weight: normal; font-variant: normal; line-height: 1; text-decoration: inherit; text-rendering: optimizeLegibility; text-transform: none; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; font-smoothing: antialiased; } .arrows:before { content: "\f100"; } .arrows-1:before { content: "\f101"; } .arrows-2:before { content: "\f102"; } .arrows-3:before { content: "\f103"; } .arrows-4:before { content: "\f104"; } .arrows-5:before { content: "\f105"; } .back:before { content: "\f106"; } .buildings:before { content: "\f107"; } .clock:before { content: "\f108"; } .compass:before { content: "\f109"; } .delete:before { content: "\f10a"; } .development:before { content: "\f10b"; } .down-arrow:before { content: "\f10c"; } .draw:before { content: "\f10d"; } .interface:before { content: "\f10e"; } .interface-1:before { content: "\f10f"; } .internet:before { content: "\f110"; } .laptop:before { content: "\f111"; } .layout:before { content: "\f112"; } .location-pin:before { content: "\f113"; } .mouse:before { content: "\f114"; } .multimedia:before { content: "\f115"; } .multimedia-1:before { content: "\f116"; } .multimedia-2:before { content: "\f117"; } .multimedia-3:before { content: "\f118"; } .multimedia-4:before { content: "\f119"; } .multimedia-5:before { content: "\f11a"; } .next:before { content: "\f11b"; } .notification:before { content: "\f11c"; } .profile:before { content: "\f11d"; } .search:before { content: "\f11e"; } .shapes:before { content: "\f11f"; } .signs:before { content: "\f120"; } .signs-1:before { content: "\f121"; } .technology:before { content: "\f122"; } .technology-1:before { content: "\f123"; } .thinking:before { content: "\f124"; } .transport:before { content: "\f125"; } .web:before { content: "\f126"; } .world-wide-web:before { content: "\f127"; } /** div { font-size: 16px; line-height: calculate-line-height( 16px, 768px ); // 1.6631189606 margin: 0 auto; width: 768px; } */ /* select libs --------------- */ /* select */ .select2-container { box-sizing: border-box; display: inline-block; margin: 0; position: relative; vertical-align: middle; } .select2-container .select2-selection--single { box-sizing: border-box; cursor: pointer; display: block; height: 28px; user-select: none; -webkit-user-select: none; } .select2-container .select2-selection--single .select2-selection__rendered { display: block; padding-left: 8px; padding-right: 20px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .select2-container .select2-selection--single .select2-selection__clear { position: relative; } .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered { padding-right: 8px; padding-left: 20px; } .select2-container .select2-selection--multiple { box-sizing: border-box; cursor: pointer; display: block; min-height: 32px; user-select: none; -webkit-user-select: none; } .select2-container .select2-selection--multiple .select2-selection__rendered { display: inline-block; overflow: hidden; padding-left: 8px; text-overflow: ellipsis; white-space: nowrap; } .select2-container .select2-search--inline { float: left; } .select2-container .select2-search--inline .select2-search__field { box-sizing: border-box; border: none; font-size: 100%; margin-top: 5px; padding: 0; } .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button { -webkit-appearance: none; } .select2-dropdown { background-color: white; border: 1px solid #aaa; border-radius: 4px; box-sizing: border-box; display: block; position: absolute; left: -100000px; width: 100%; z-index: 1051; } .select2-results { display: block; } .select2-results__options { list-style: none; margin: 0; padding: 0; } .select2-results__option { padding: 6px; user-select: none; -webkit-user-select: none; } .select2-results__option[aria-selected] { cursor: pointer; } .select2-container--open .select2-dropdown { left: 0; } .select2-container--open .select2-dropdown--above { border-bottom: none; border-bottom-left-radius: 0; border-bottom-right-radius: 0; } .select2-container--open .select2-dropdown--below { border-top: none; border-top-left-radius: 0; border-top-right-radius: 0; } .select2-search--dropdown { display: block; padding: 4px; } .select2-search--dropdown .select2-search__field { padding: 4px; width: 100%; box-sizing: border-box; } .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button { -webkit-appearance: none; } .select2-search--dropdown.select2-search--hide { display: none; } .select2-close-mask { border: 0; margin: 0; padding: 0; display: block; position: fixed; left: 0; top: 0; min-height: 100%; min-width: 100%; height: auto; width: auto; opacity: 0; z-index: 99; background-color: #fff; filter: alpha(opacity=0); } .select2-hidden-accessible { border: 0 !important; clip: rect(0 0 0 0) !important; height: 1px !important; margin: -1px !important; overflow: hidden !important; padding: 0 !important; position: absolute !important; width: 1px !important; } .select2-container--default .select2-selection--single { background-color: #fff; border: 1px solid #aaa; border-radius: 4px; } .select2-container--default .select2-selection--single .select2-selection__rendered { color: #444; line-height: 28px; } .select2-container--default .select2-selection--single .select2-selection__clear { cursor: pointer; float: right; font-weight: bold; } .select2-container--default .select2-selection--single .select2-selection__placeholder { color: #999; } .select2-container--default .select2-selection--single .select2-selection__arrow { height: 26px; position: absolute; top: 1px; right: 1px; width: 20px; } .select2-container--default .select2-selection--single .select2-selection__arrow b { border-color: #888 transparent transparent transparent; border-style: solid; border-width: 5px 4px 0 4px; height: 0; left: 50%; margin-left: -4px; margin-top: -2px; position: absolute; top: 50%; width: 0; } .select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear { float: left; } .select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow { left: 1px; right: auto; } .select2-container--default.select2-container--disabled .select2-selection--single { background-color: #eee; cursor: default; } .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear { display: none; } .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b { border-color: transparent transparent #888 transparent; border-width: 0 4px 5px 4px; } .select2-container--default .select2-selection--multiple { background-color: white; border: 1px solid #aaa; border-radius: 4px; cursor: text; } .select2-container--default .select2-selection--multiple .select2-selection__rendered { box-sizing: border-box; list-style: none; margin: 0; padding: 0 5px; width: 100%; } .select2-container--default .select2-selection--multiple .select2-selection__placeholder { color: #999; margin-top: 5px; float: left; } .select2-container--default .select2-selection--multiple .select2-selection__clear { cursor: pointer; float: right; font-weight: bold; margin-top: 5px; margin-right: 10px; } .select2-container--default .select2-selection--multiple .select2-selection__choice { background-color: #e4e4e4; border: 1px solid #aaa; border-radius: 4px; cursor: default; float: left; margin-right: 5px; margin-top: 5px; padding: 0 5px; } .select2-container--default .select2-selection--multiple .select2-selection__choice__remove { color: #999; cursor: pointer; display: inline-block; font-weight: bold; margin-right: 2px; } .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover { color: #333; } .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline { float: right; } .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice { margin-left: 5px; margin-right: auto; } .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove { margin-left: 2px; margin-right: auto; } .select2-container--default.select2-container--focus .select2-selection--multiple { border: solid black 1px; outline: 0; } .select2-container--default.select2-container--disabled .select2-selection--multiple { background-color: #eee; cursor: default; } .select2-container--default.select2-container--disabled .select2-selection__choice__remove { display: none; } .select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple { border-top-left-radius: 0; border-top-right-radius: 0; } .select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple { border-bottom-left-radius: 0; border-bottom-right-radius: 0; } .select2-container--default .select2-search--dropdown .select2-search__field { border: 1px solid #aaa; } .select2-container--default .select2-search--inline .select2-search__field { background: transparent; border: none; outline: 0; box-shadow: none; -webkit-appearance: textfield; } .select2-container--default .select2-results > .select2-results__options { max-height: 200px; overflow-y: auto; } .select2-container--default .select2-results__option[role=group] { padding: 0; } .select2-container--default .select2-results__option[aria-disabled=true] { color: #999; } .select2-container--default .select2-results__option[aria-selected=true] { background-color: #ddd; } .select2-container--default .select2-results__option .select2-results__option { padding-left: 1em; } .select2-container--default .select2-results__option .select2-results__option .select2-results__group { padding-left: 0; } .select2-container--default .select2-results__option .select2-results__option .select2-results__option { margin-left: -1em; padding-left: 2em; } .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option { margin-left: -2em; padding-left: 3em; } .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { margin-left: -3em; padding-left: 4em; } .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { margin-left: -4em; padding-left: 5em; } .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { margin-left: -5em; padding-left: 6em; } .select2-container--default .select2-results__option--highlighted[aria-selected] { background-color: #5897fb; color: white; } .select2-container--default .select2-results__group { cursor: default; display: block; padding: 6px; } .select2-container--classic .select2-selection--single { background-color: #f7f7f7; border: 1px solid #aaa; border-radius: 4px; outline: 0; background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%); background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%); background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); } .select2-container--classic .select2-selection--single:focus { border: 1px solid #5897fb; } .select2-container--classic .select2-selection--single .select2-selection__rendered { color: #444; line-height: 28px; } .select2-container--classic .select2-selection--single .select2-selection__clear { cursor: pointer; float: right; font-weight: bold; margin-right: 10px; } .select2-container--classic .select2-selection--single .select2-selection__placeholder { color: #999; } .select2-container--classic .select2-selection--single .select2-selection__arrow { background-color: #ddd; border: none; border-left: 1px solid #aaa; border-top-right-radius: 4px; border-bottom-right-radius: 4px; height: 26px; position: absolute; top: 1px; right: 1px; width: 20px; background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%); background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%); background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); } .select2-container--classic .select2-selection--single .select2-selection__arrow b { border-color: #888 transparent transparent transparent; border-style: solid; border-width: 5px 4px 0 4px; height: 0; left: 50%; margin-left: -4px; margin-top: -2px; position: absolute; top: 50%; width: 0; } .select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear { float: left; } .select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow { border: none; border-right: 1px solid #aaa; border-radius: 0; border-top-left-radius: 4px; border-bottom-left-radius: 4px; left: 1px; right: auto; } .select2-container--classic.select2-container--open .select2-selection--single { border: 1px solid #5897fb; } .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow { background: transparent; border: none; } .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b { border-color: transparent transparent #888 transparent; border-width: 0 4px 5px 4px; } .select2-container--classic.select2-container--open.select2-container--above .select2-selection--single { border-top: none; border-top-left-radius: 0; border-top-right-radius: 0; background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%); background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%); background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); } .select2-container--classic.select2-container--open.select2-container--below .select2-selection--single { border-bottom: none; border-bottom-left-radius: 0; border-bottom-right-radius: 0; background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%); background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%); background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); } .select2-container--classic .select2-selection--multiple { background-color: white; border: 1px solid #aaa; border-radius: 4px; cursor: text; outline: 0; } .select2-container--classic .select2-selection--multiple:focus { border: 1px solid #5897fb; } .select2-container--classic .select2-selection--multiple .select2-selection__rendered { list-style: none; margin: 0; padding: 0 5px; } .select2-container--classic .select2-selection--multiple .select2-selection__clear { display: none; } .select2-container--classic .select2-selection--multiple .select2-selection__choice { background-color: #e4e4e4; border: 1px solid #aaa; border-radius: 4px; cursor: default; float: left; margin-right: 5px; margin-top: 5px; padding: 0 5px; } .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove { color: #888; cursor: pointer; display: inline-block; font-weight: bold; margin-right: 2px; } .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover { color: #555; } .select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice { float: right; } .select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice { margin-left: 5px; margin-right: auto; } .select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove { margin-left: 2px; margin-right: auto; } .select2-container--classic.select2-container--open .select2-selection--multiple { border: 1px solid #5897fb; } .select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple { border-top: none; border-top-left-radius: 0; border-top-right-radius: 0; } .select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple { border-bottom: none; border-bottom-left-radius: 0; border-bottom-right-radius: 0; } .select2-container--classic .select2-search--dropdown .select2-search__field { border: 1px solid #aaa; outline: 0; } .select2-container--classic .select2-search--inline .select2-search__field { outline: 0; box-shadow: none; } .select2-container--classic .select2-dropdown { background-color: white; border: 1px solid transparent; } .select2-container--classic .select2-dropdown--above { border-bottom: none; } .select2-container--classic .select2-dropdown--below { border-top: none; } .select2-container--classic .select2-results > .select2-results__options { max-height: 200px; overflow-y: auto; } .select2-container--classic .select2-results__option[role=group] { padding: 0; } .select2-container--classic .select2-results__option[aria-disabled=true] { color: grey; } .select2-container--classic .select2-results__option--highlighted[aria-selected] { background-color: #3875d7; color: white; } .select2-container--classic .select2-results__group { cursor: default; display: block; padding: 6px; } .select2-container--classic.select2-container--open .select2-dropdown { border-color: #5897fb; } .mm-menu.mm-theme-black { background: #90c73e; } .mm-listview > li > a, .mm-listview > li > span { color: #fff; } .split-box { display: flex; flex-flow: row wrap; justify-content: space-around; align-content: stretch; } .split-box .left-box, .split-box .right-box { width: 50%; align-self: stretch; } html { box-sizing: border-box; } *, *::before, *::after { box-sizing: inherit; } ul, ol { padding-left: 0; margin: 0; font-size: 0; } /* main wrap ----------------------- */ html { text-rendering: optimizeLegibility; font-size: 62.5%; } body { font-size: 1.4rem; line-height: 1.99554; font-family: "San Francisco Text", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-weight: normal; color: #515151; background-color: #fcfcfc; letter-spacing: -0.1px; } p strong, strong { font-family: "San Francisco Text", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-weight: bold; font-style: normal; } a { color: #90c73e; } a:hover, a:focus { color: #597a23; } a:focus, button:focus, .btn:focus { outline: none; } a, a:hover, a:focus { text-decoration: none; } a, .btn, .btn-default { -webkit-transition-property: color, background; -webkit-transition-duration: .2s, .2s; -webkit-transition-timing-function: linear, ease-in; -moz-transition-property: color, background; -moz-transition-duration: .2s, .2s; -moz-transition-timing-function: linear, ease-in; transition-property: color, background; transition-duration: .2s, .2s; transition-timing-function: linear, ease-in; } ul, ol { padding-left: 0; margin: 0; font-size: 0; list-style: none; } li { font-size: 14px; } html, body { height: 100%; } body { margin: 0; } .main { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; height: 100%; } .content { -webkit-box-flex: 1; -webkit-flex: 1 0 auto; -ms-flex: 1 0 auto; flex: 1 0 auto; } .content::after { content: '\00a0'; display: block; height: 0px; visibility: hidden; } .content--full { padding: 0; } .content--full::after { content: none; } .main-header { height: 56px; min-height: 56px; } .main-header, footer, .footer, .top-section { -webkit-box-flex: 0; -webkit-flex: none; -ms-flex: none; flex: none; } @-moz-document url-prefix() { .content { flex: 1; } } .inner-entry { min-height: 100vh; } .inner-entry .wrap-content { padding-top: 120px; } /* FONTFACE -------------------------------------- */ @font-face { font-family: 'Averta'; src: url("../fonts/Averta-Light.eot"); src: local("Averta Light"), local("Averta-Light"), url("../fonts/Averta-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Averta-Light.woff2") format("woff2"), url("../fonts/Averta-Light.woff") format("woff"), url("../fonts/Averta-Light.ttf") format("truetype"), url("../fonts/Averta-Light.svg#Averta-Light") format("svg"); font-weight: 300; font-style: normal; } @font-face { font-family: 'Averta'; src: url("../fonts/Averta-Bold.eot"); src: local("Averta Bold"), local("Averta-Bold"), url("../fonts/Averta-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Averta-Bold.woff2") format("woff2"), url("../fonts/Averta-Bold.woff") format("woff"), url("../fonts/Averta-Bold.ttf") format("truetype"), url("../fonts/Averta-Bold.svg#Averta-Bold") format("svg"); font-weight: bold; font-style: normal; } @font-face { font-family: 'Averta'; src: url("../fonts/Averta-Thin.eot"); src: local("Averta Thin"), local("Averta-Thin"), url("../fonts/Averta-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/Averta-Thin.woff2") format("woff2"), url("../fonts/Averta-Thin.woff") format("woff"), url("../fonts/Averta-Thin.ttf") format("truetype"), url("../fonts/Averta-Thin.svg#Averta-Thin") format("svg"); font-weight: 100; font-style: normal; } @font-face { font-family: 'Averta'; src: url("../fonts/Averta-Regular.eot"); src: local("Averta Regular"), local("Averta-Regular"), url("../fonts/Averta-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Averta-Regular.woff2") format("woff2"), url("../fonts/Averta-Regular.woff") format("woff"), url("../fonts/Averta-Regular.ttf") format("truetype"), url("../fonts/Averta-Regular.svg#Averta-Regular") format("svg"); font-weight: normal; font-style: normal; } @font-face { font-family: 'San Francisco Text'; src: url("../fonts/SanFranciscoText-Regular.eot"); src: local("San Francisco Text Regular"), local("SanFranciscoText-Regular"), url("../fonts/SanFranciscoText-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/SanFranciscoText-Regular.woff2") format("woff2"), url("../fonts/SanFranciscoText-Regular.woff") format("woff"), url("../fonts/SanFranciscoText-Regular.ttf") format("truetype"), url("../fonts/SanFranciscoText-Regular.svg#SanFranciscoText-Regular") format("svg"); font-weight: normal; font-style: normal; } @font-face { font-family: 'San Francisco Text'; src: url("../fonts/SanFranciscoText-Light.eot"); src: local("San Francisco Text Light"), local("SanFranciscoText-Light"), url("../fonts/SanFranciscoText-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/SanFranciscoText-Light.woff2") format("woff2"), url("../fonts/SanFranciscoText-Light.woff") format("woff"), url("../fonts/SanFranciscoText-Light.ttf") format("truetype"), url("../fonts/SanFranciscoText-Light.svg#SanFranciscoText-Light") format("svg"); font-weight: 200; font-style: normal; } @font-face { font-family: 'San Francisco Text'; src: url("../fonts/SanFranciscoText-Bold.eot"); src: local("San Francisco Text Bold"), local("SanFranciscoText-Bold"), url("../fonts/SanFranciscoText-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/SanFranciscoText-Bold.woff2") format("woff2"), url("../fonts/SanFranciscoText-Bold.woff") format("woff"), url("../fonts/SanFranciscoText-Bold.ttf") format("truetype"), url("../fonts/SanFranciscoText-Bold.svg#SanFranciscoText-Bold") format("svg"); font-weight: bold; font-style: normal; } @font-face { font-family: "Material Design Icons"; src: url("../fonts/materialdesignicons-webfont.eot?v=1.7.22"); src: url("../fonts/materialdesignicons-webfont.eot?#iefix&v=1.7.22") format("embedded-opentype"), url("../fonts/materialdesignicons-webfont.woff2?v=1.7.22") format("woff2"), url("../fonts/materialdesignicons-webfont.woff?v=1.7.22") format("woff"), url("../fonts/materialdesignicons-webfont.ttf?v=1.7.22") format("truetype"), url("../fonts/materialdesignicons-webfont.svg?v=1.7.22#materialdesigniconsregular") format("svg"); font-weight: normal; font-style: normal; } @font-face { font-family: "smticon"; src: url("../fonts/smt.eot"); src: url("../fonts/smt.eot?#iefix") format("embedded-opentype"), url("../fonts/smt.woff") format("woff"), url("../fonts/smt.ttf") format("truetype"), url("../fonts/smt.svg#smticon") format("svg"); font-weight: normal; font-style: normal; } @media screen and (-webkit-min-device-pixel-ratio: 0) { @font-face { font-family: "smticon"; src: url("../fonts/smt.svg#smticon") format("svg"); } } .big-display { font-family: "Averta", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-size: 11.2rem; line-height: 11.2rem; } .medium-display { font-family: "Averta", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-size: 5.6rem; line-height: 5.6rem; } .display { font-family: "Averta", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-size: 4.5rem; line-height: 4.8rem; } .headline, h1 { font-family: "Averta", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-size: 3.4rem; line-height: 4rem; } .title, h2 { font-family: "Averta", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-size: 2.4rem; line-height: 3.2rem; } .sub-title, h3 { font-family: "Averta", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-size: 2rem; line-height: 2.8rem; } h4 { font-family: "Averta", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-size: 1.6rem; line-height: 2.4rem; } h5 { font-family: "Averta", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-size: 1.4rem; line-height: 2.4rem; } h6 { font-family: "Averta", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-size: 1.2rem; line-height: 1.8rem; } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-family: "Averta", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-weight: bold; color: inherit; } h1 span, h2 span, h3 span, h4 span, h5 span, h6 span, .h1 span, .h2 span, .h3 span, .h4 span, .h5 span, .h6 span { font-family: "Averta", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-weight: 100; color: inherit; } input, button, select, textarea, input[type=password], input[type=text], input[type=date], input[type=email], input[type=number] { font-family: "San Francisco Text", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-weight: 200; font-size: inherit; line-height: inherit; } input, button, select, textarea, body { -webkit-font-smoothing: antialiased; } input, select, textarea { font-family: "Averta", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-weight: normal; } /** * Clear inner floats */ .clearfix::after { clear: both; content: ''; display: table; } .hide-text { overflow: hidden; padding: 0; /* 1 */ text-indent: 101%; white-space: nowrap; } .visually-hidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } .row.no-gutters { margin-right: 0; margin-left: 0; } .row.no-gutters > [class^="col-"], .row.no-gutters > [class*=" col-"] { padding-right: 0; padding-left: 0; } .no-padding { padding: 0 !important; } ::-moz-selection { background: #b3d4fc; text-shadow: none; } ::selection { background: #b3d4fc; text-shadow: none; } hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; } audio, canvas, iframe, img, svg, video { vertical-align: middle; } fieldset { border: 0; margin: 0; padding: 0; } textarea { resize: vertical; } .hidden { display: none !important; } .visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; } .invisible { visibility: hidden; } .clearfix:before, .clearfix:after { content: " "; display: table; } .clearfix:after { clear: both; } .left { float: left; } .right { float: right; } .fit { max-width: 100%; } .half-width { width: 50%; } .full-width { width: 100%; } .full-height { height: 100%; } .fixed { position: fixed; } .relative { position: relative; } .absolute { position: absolute; } .static { position: static; } .pin-top-right { top: 0; right: 0; } .pin-bottom-right { bottom: 0; right: 0; } .align-top { vertical-align: top; } .align-bottom { vertical-align: bottom; } .align-middle { vertical-align: middle; } .hide-tablet, .hide-mobile { display: block; } .show-tablet, .show-mobile { display: none; } .show-mobile { display: none; } .ell { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .break-word { word-wrap: break-word; } .no-wrap { white-space: nowrap; } .scroll-h { overflow-x: auto; } .scroll-v { overflow-y: auto; } .z1 { z-index: 1; } .z10 { z-index: 10; } .z100 { z-index: 100; } .hidden { display: none; } .micro { font-size: 10px; line-height: 20px; letter-spacing: 0; } *[hidden] { display: none; } .hide-screen { display: none; } .text-divider { display: block; } .has-right-border { border-right: 1px solid #f3f3f3; } @media screen and (-webkit-min-device-pixel-ratio: 0) { .user-avatar .small-notif { top: initial; bottom: -6px; } } .circle-image { width: 125px; height: 125px; border-radius: 50%; margin: 0 auto; } /* ========================================================================== HEADER ========================================================================== */ .main-header { position: fixed; top: 0; left: 0; width: 100%; background: white; z-index: 2; transition: .5s ease all; -webkit-transition: .5s ease all; -ms-transition: .5s ease all; -moz-transition: .5s ease all; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02); } .smt-logo { display: block; margin: 8px 0; } .smt-logo img { width: 40px; height: 40px; object-fit: cover; object-position: center; float: left; } .brand-name { font-family: "Averta", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-weight: bold; color: #90c73e; text-transform: uppercase; font-size: 24px; display: inline-block; vertical-align: middle; line-height: 40px; padding-left: 10px; } .main-footer { background: #181818; color: #90949C; font-size: 14px; } .main-footer h4 { text-transform: uppercase; color: #fff; letter-spacing: .1px; } .smt-copyright { display: flex; flex-flow: row wrap; justify-content: space-between; } .smt-copyright .left-company, .smt-copyright .right-company { align-items: stretch; } .copyright { border-top: 1px solid rgba(0, 0, 0, 0.1); padding: 15px 0; margin-top: 15px; } .bottom-link { display: block; } .bottom-link li { display: inline-block; text-transform: capitalize; margin-right: 15px; } .btn.btn-default { box-shadow: none; background: #ff6600; color: #fff; border-radius: 4px; text-transform: capitalize; } .btn.btn-default:hover { background: #005692; } .btn.btn-default:focus { outline: none; } .smt-button { text-align: center; } .btn-smt { background: #4769ba; color: #fff; text-align: center; border-radius: 55px; padding: 16px 50px; font-size: 16px; text-transform: uppercase; border: 1px solid transparent; } .btn-smt.outline { background: transparent; color: white; border: 1px solid white; } .btn-smt:hover { background: transparent; color: #4769ba; border-color: #4769ba; } .scroll-vertical { text-align: center; margin-top: 35px; font-size: 34px; } .smt-group { display: table; table-layout: fixed; vertical-align: middle; text-align: center; } .smt-group .btn { display: table-cell; vertical-align: middle; text-transform: capitalize; padding: 10px 30px; width: 140px; transition: .5s ease all; -moz-transition: .5s ease all; -webkit-transition: .5s ease all; -ms-transition: .5s ease all; background: transparent; color: #90c73e; } .smt-group .btn:nth-of-type(1) { border-radius: 55px 0 0 55px; border: 1px solid #e0e0e0; } .smt-group .btn:nth-of-type(2) { border-radius: 0 55px 55px 0; border-right: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0; border-top: 1px solid #e0e0e0; border-left: none; } .smt-group .btn:hover { background: #90c73e; color: white; border-color: transparent; } /* ========================================================================== MAIN DASHBOARD ========================================================================== */ .top-dashboard { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -ms-flex-flow: row wrap; flex-flow: row wrap; } .top-dashboard .dropdown-menu { right: 0; left: initial; } .top-dashboard .smt-logo, .top-dashboard .top-navigation, .top-dashboard .dropdown { -ms-flex-item-align: stretch; -ms-grid-row-align: stretch; align-self: stretch; } .top-dashboard .dropdown { border-left: 1px solid #f9f9f9; position: relative; } .top-dashboard .dropdown .dropdown-menu { -webkit-transition: all 0.3s ease; transition: all 0.3s ease; box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.01), 0 2px 4px 0 rgba(0, 0, 0, 0.02); background: #fff; border: none; border-radius: 0; margin: 15px 0 0; padding: 0; right: 0; } .top-dashboard .dropdown .dropdown-menu i { font-size: 24px; vertical-align: middle; display: inline-block; } .top-dashboard .dropdown .dropdown-menu:before { content: ''; background: #90c73e; height: 2px; position: absolute; top: 0; width: 100%; } .top-dashboard .dropdown .dropdown-menu:after { content: ''; width: 0; height: 0; border-style: solid; border-width: 0 10px 10px 10px; border-color: transparent transparent #90c73e transparent; position: absolute; top: -10px; right: 24px; } .top-dashboard .dropdown .dropdown-menu li:first-child { display: block; text-align: center; } .top-dashboard .dropdown .dropdown-menu li:first-child a { padding: 15px; background: #90c73e; color: #fff; } .top-dashboard .dropdown .dropdown-menu li:first-child a img { width: 55px; height: 55px; border-radius: 50%; display: block; margin: 0 auto; background: #fff; } .top-dashboard .dropdown .dropdown-menu li:first-child a p { margin: 0 0 10px; line-height: initial; } .top-dashboard .dropdown .dropdown-menu li a { display: block; line-height: 44px; color: #90c73e; text-transform: capitalize; padding: 0 15px; -webkit-transition: 0.3s all ease; -moz-transition: 0.3s all ease; -ms-transition: 0.3s all ease; -o-transition: 0.3s all ease; transition: 0.3s all ease; background: #fcfcfc; } .top-dashboard .dropdown .dropdown-menu li a:hover { background: #90c73e; color: #fff; } .top-dashboard .dropdown .user-btn { line-height: 56px; border: none; background: transparent; padding: 10px 15px; -webkit-transition: 0.5s ease all; -moz-transition: 0.5s ease all; -ms-transition: 0.5s ease all; -o-transition: 0.5s ease all; transition: 0.5s ease all; } .top-dashboard .dropdown .user-btn:hover { background: #f9f9f9; } .top-dashboard .dropdown .user-btn:hover img { -webkit-transform: scale(1.2); transform: scale(1.2); } .top-dashboard .dropdown .user-btn img { overflow: hidden; border-radius: 50%; width: 35px; height: 35px; background: #fff; object-fit: cover; object-position: center; -webkit-transition: 0.5s ease all; -moz-transition: 0.5s ease all; -ms-transition: 0.5s ease all; -o-transition: 0.5s ease all; transition: 0.5s ease all; } .top-dashboard.has-admin .dropdown-menu li:first-child a { background: #ED852C; } .top-dashboard.has-admin .dropdown-menu li a { color: #ED852C; } .top-dashboard.has-admin .dropdown-menu li a:hover { background: #fff; color: #1f1f1f; } .top-dashboard.has-admin .dropdown-menu:before { background: #ED852C; } .top-dashboard.has-admin .dropdown-menu:after { border-color: transparent transparent #ED852C transparent; } .top-navigation { text-align: right; width: 79.6%; } .top-navigation ul { margin: 0; padding: 0; } .top-navigation ul li { display: inline-block; } .top-navigation ul li a { display: block; padding: 0 15px; line-height: 56px; border-right: 1px solid #f9f9f9; -webkit-transition: 0.3s ease all; -moz-transition: 0.3s ease all; -ms-transition: 0.3s ease all; -o-transition: 0.3s ease all; transition: 0.3s ease all; } .top-navigation ul li a:hover { background: #f9f9f9; color: #333; } .top-navigation ul li:last-child a { border-right: none; } .user-avatar { position: relative; } .user-avatar .small-notif { width: 18px; height: 18px; border-radius: 50%; background: #fff; position: absolute; top: 38px; } .user-avatar .small-notif i { display: block; line-height: 18px; color: #90c73e; } @media screen and (-webkit-min-device-pixel-ratio: 0) { .user-avatar .small-notif { top: initial; bottom: -6px; } } /* dashboard content style */ .dashboard-top { background: #fff; color: #1f1f1f; padding-top: 56px; } .dashboard-top h1 { margin: 30px auto; font-weight: 200; } .dashboard-top h1 span { font-weight: normal; } .dashboard-content { background: #fff; } .dashboard-content.no-title { padding-top: 56px; } .top-content { border-bottom: 2px solid rgba(0, 0, 0, 0.03); position: relative; margin-bottom: 35px; } .top-content:before { content: ''; height: 2px; width: 10%; background: #90c73e; position: absolute; bottom: -2px; left: 0; } /* resume style */ .top-content h3 { font-weight: 300; color: #333; } .smt-resume { border: 1px solid #dfe8f1; border-radius: 4px; background-color: #fff; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); margin-bottom: 75px; } .resume-entry .resume-panel h2 { color: #1f1f1f; background: #fcfcfc; } .resume-entry .profile-name h2 { background: transparent; } .resume-entry .resume-control { position: absolute; top: 15px; right: 15px; border-radius: 55px; font-weight: 200; padding: 4px 20px; background: #f3f3f3; text-transform: capitalize; text-align: center; border: none; z-index: 1; box-shadow: none; -webkit-transition: 0.3s all ease; -moz-transition: 0.3s all ease; -ms-transition: 0.3s all ease; -o-transition: 0.3s all ease; transition: 0.3s all ease; } .resume-entry .resume-control:hover, .resume-entry .resume-control:focus { outline: none; background: #90c73e; color: #fff; } .resume-img { display: block; margin: 0 auto; position: relative; cursor: pointer; overflow: hidden; } .resume-img img { height: 100%; width: 100%; object-fit: cover; object-position: center; -webkit-transition: 0.5s all ease; -moz-transition: 0.5s all ease; -ms-transition: 0.5s all ease; -o-transition: 0.5s all ease; transition: 0.5s all ease; } .resume-img .edit-photo { box-shadow: none; border-radius: 0; text-align: center; border: none; background: rgba(31, 170, 214, 0.8); width: 100%; height: 38px; position: absolute; bottom: 0; left: 0; -webkit-transition: 0.5s all ease; -moz-transition: 0.5s all ease; -ms-transition: 0.5s all ease; -o-transition: 0.5s all ease; transition: 0.5s all ease; -webkit-transform: translateY(100%); transform: translateY(100%); color: #fff; z-index: 1; } .resume-img .edit-photo:hover { background: rgba(0, 0, 0, 0.7); color: #fff; } .resume-img.editable:after { content: ''; background: rgba(255, 255, 255, 0.8); width: 100%; height: 100%; position: absolute; top: 0; z-index: 0; left: 0; } .resume-img.editable img { opacity: .5; -webkit-filter: blur(5px); filter: blur(5px); } .resume-img.editable .edit-photo { -webkit-transform: translateY(0); transform: translateY(0); } .resume-panel { border-top: 1px solid #f3f3f3; position: relative; } .resume-panel.has-photo { border-top: none; } .resume-panel.has-photo .profile-name { padding-left: 30px; } .resume-panel.has-photo .resume-control { right: 15px; } .resume-panel.has-photo h2 { border-bottom: none; margin-top: 20px; padding: 0; } .resume-panel.has-photo .resume-text { padding: 0 15px 0 0; } .resume-panel h2 { border-bottom: 1px solid #f3f3f3; margin-top: 0; margin-bottom: 0; padding: 20px 15px; text-transform: uppercase; } .resume-panel .resume-text { padding: 15px; } .resume-bullet { padding-left: 15px; } .resume-bullet li { list-style: disc; } .resume-text.has-experience { padding: 0; } .resume-text.has-experience .experience-group { padding: 5px 15px; } .resume-text .experience-group:nth-child(2n) { padding: 0; } .resume-text .experience-group:nth-child(2n) .experience-title { background: #f9f9f9; padding: 5px 15px; } .resume-text .experience-group:nth-child(2n) .project-detail { padding: 0 15px; } .resume-text .experience-group:nth-child(2n) .underlined-title { margin-left: 15px; } .experience-group .company { display: inline-block; margin-bottom: 0; } .experience-group .position { font-weight: bold; margin-right: 10px; } .project-detail { margin-bottom: 30px; } .project-detail h6 { font-size: 14px; font-weight: bold; text-transform: capitalize; } .project-detail h5 { font-size: 14px; text-transform: uppercase; } .resume-inlined li { display: inline-block; vertical-align: middle; margin-right: 10px; } .underlined-title { border-bottom: 1px solid #d9d9d9; display: inline-block; line-height: 34px; } /* modal style */ .modal-content { border-radius: 2px; box-shadow: 0px 14px 45px rgba(0, 0, 0, 0.25), 0px 10px 18px rgba(0, 0, 0, 0.22); } .modal-content .modal-title { text-transform: uppercase; font-size: 18px; } .modal-content .form-control { border-radius: 2px; border-color: #e0e0e0; -webkit-transition: 0.5s ease all; -moz-transition: 0.5s ease all; -ms-transition: 0.5s ease all; -o-transition: 0.5s ease all; transition: 0.5s ease all; box-shadow: none; } .modal-content .form-control:focus { box-shadow: none; outline: none; border-color: #6FCEEA; } .modal-content textarea { background: #f9f9f9; } .modal-content textarea:focus { background: #ffff; border-color: #6FCEEA; } .modal-header { border: none; } .wysihtml5-toolbar a.btn.wysihtml5-command-active { box-shadow: none; background: #e0e0e0; color: #333; } .wysihtml5-toolbar .btn.btn-default { background: transparent; color: #808080; border-radius: 0; font-size: 12px; border-color: #e0e0e0; -webkit-transition: 0.5s ease all; -moz-transition: 0.5s ease all; -ms-transition: 0.5s ease all; -o-transition: 0.5s ease all; transition: 0.5s ease all; } .wysihtml5-toolbar .btn.btn-default:hover, .wysihtml5-toolbar .btn.btn-default:focus { outline: none; border-color: #6FCEEA; } .modal { background: rgba(255, 255, 255, 0.85); border: none; box-shadow: 0px 2px 18px rgba(0, 0, 0, 0.25), 0px 2px 6px rgba(0, 0, 0, 0.25); } .btn.btn-default { background: #6FCEEA; border: 1px solid #6FCEEA; } .btn.btn-default:hover, .btn.btn-default:focus { outline: none; background: #1FAAD6; color: #fff; border-color: #1FAAD6; } .btn.btn-default.btn-save { border-radius: 55px; box-shadow: none; text-transform: uppercase; padding: 10px 50px; } .modal-header .close { font-size: 28px; opacity: .2; } .modal-header .close:hover { opacity: 1; } .top-content.has-search h3, .top-content.has-search .search-resume { display: inline-block; vertical-align: middle; } .top-content .search-resume { float: right; width: 35%; margin-top: 15px; } .search-resume input[type=text] { position: relative; } .search-resume .form-group { margin: 0; } .search-resume .form-control { border-radius: 2px; box-shadow: none; } .search-resume .btn-search { position: absolute; border-radius: 0; right: 1px; top: 0; height: 32px; background: transparent; -webkit-transition: 0.5s ease all; -moz-transition: 0.5s ease all; -ms-transition: 0.5s ease all; -o-transition: 0.5s ease all; transition: 0.5s ease all; } .search-resume .btn-search:hover { color: #6FCEEA; } .resume-action ul.dropdown-menu { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08), 0 1px 4px 0 rgba(0, 0, 0, 0.025); border-radius: 0; border: none; margin: 0; padding: 0; } .resume-action ul.dropdown-menu button { display: block; width: 100%; background: transparent; text-transform: capitalize; text-align: left; -webkit-transition: 0.05s ease all; -moz-transition: 0.05s ease all; -ms-transition: 0.05s ease all; -o-transition: 0.05s ease all; transition: 0.05s ease all; border: none; } .resume-action ul.dropdown-menu button:hover, .resume-action ul.dropdown-menu button:focus { outline: none; background: #f3f3f3; color: #ED852C; } .btn-clean { background: transparent; color: #6FCEEA; text-transform: capitalize; border: none; border-radius: 0; } .btn-clean:focus { outline: none; } .resume-list, .resume-list-title { display: table; position: relative; width: 100%; table-layout: fixed; } .resume-list .resume-detail, .resume-list .resume-description, .resume-list .resume-column, .resume-list .resume-action, .resume-list-title .resume-detail, .resume-list-title .resume-description, .resume-list-title .resume-column, .resume-list-title .resume-action { display: table-cell; vertical-align: middle; padding: 15px; } .resume-list .resume-detail, .resume-list .resume-list-title .resume-detail, .resume-list-title .resume-detail, .resume-list-title .resume-list-title .resume-detail { width: 10%; } .resume-list .resume-description, .resume-list .resume-list-title .resume-description, .resume-list-title .resume-description, .resume-list-title .resume-list-title .resume-description { width: 15%; } .resume-list .resume-column, .resume-list .resume-list-title .resume-description, .resume-list-title .resume-column, .resume-list-title .resume-list-title .resume-description { width: 63%; } .resume-list .resume-action, .resume-list .resume-list-title .resume-action, .resume-list-title .resume-action, .resume-list-title .resume-list-title .resume-action { width: 12%; } .resume-list-title { background: #6FCEEA; color: #fff; text-transform: uppercase; } .resume-list-title .resume-detail, .resume-list-title .resume-description, .resume-list-title .resume-column, .resume-list-title .resume-action { display: table-cell; vertical-align: middle; padding: 15px; } .smt-resume .resume-list { -webkit-transition: 0, 5s all ease; -moz-transition: 0, 5s all ease; -ms-transition: 0, 5s all ease; -o-transition: 0, 5s all ease; transition: 0, 5s all ease; } .smt-resume .resume-list:hover { background: #fafafa; } .smt-resume .resume-list:nth-of-type(2n) { background: #fafafa; } .resume-detail img { width: 55px; height: 55px; object-fit: cover; object-position: center; border-radius: 50%; } .resume-detail .resume-name { color: #1f1f1f; text-transform: capitalize; font-family: "Averta", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-weight: bold; } .shorten { display: block; display: -webkit-box; height: 60px; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; margin-bottom: 0; } .prev-btn, .next-btn { border: 1px solid #e0e0e0; border-radius: 55px; padding: 2px 15px; color: #6FCEEA; -webkit-transition: 0.05s ease all; -moz-transition: 0.05s ease all; -ms-transition: 0.05s ease all; -o-transition: 0.05s ease all; transition: 0.05s ease all; } .prev-btn:hover, .next-btn:hover { background: #6FCEEA; border-color: #6FCEEA; color: #fff; } .resume-pagination { text-align: center; margin: 35px auto 20px; min-width: 130px; font-size: 12px; } .resume-pagination li { display: inline-block; vertical-align: middle; margin-right: 20px; } .resume-pagination li:last-child { margin-right: 0; } .resume-pagination li a { display: block; } .page-number { color: #ccc; } .page-number:hover { color: #6FCEEA; } .page-number.current { color: #6FCEEA; } .user-profile { padding: 20px; display: table; table-layout: fixed; position: relative; width: 100%; } .user-profile .circle-image, .user-profile .user-profile, .user-profile .edit-option { display: table-cell; vertical-align: top; } .user-profile .circle-image { width: 15%; } .user-profile .circle-image img { width: 125px; height: 125px; border-radius: 50%; margin: 0 auto; object-fit: cover; object-position: center; } .user-profile .user-profile { padding-left: 20px; } .user-profile .user-profile li { margin: 5px 0; } .user-profile .badge-active, .user-profile .project-badge { padding: 2px 10px; border-radius: 55px; margin-left: 10px; color: #fff; } .user-profile .badge-active { background: #25C65E; } .user-profile .project-badge { background: #EC442C; } .smt-resume.center { max-width: 75%; margin: 0 auto; } .main-footer p { margin-bottom: 0; line-height: 35px; color: #90c73e; text-transform: capitalize; } .profile-extended { background: #fcfcfc; display: table; table-layout: fixed; width: 100%; border-bottom: 1px solid #f3f3f3; border-top: 1px solid #f3f3f3; } .profile-extended .profile-form, .profile-extended .profile-photo { display: table-cell; vertical-align: middle; } .profile-extended .profile-form { width: 65%; padding: 20px; } .profile-extended .profile-form .form-group { margin-left: 0; margin-right: 0; } .profile-extended .profile-photo { border-left: 1px solid #f3f3f3; background: #f9f9f9; padding: 20px; } .profile-extended .profile-photo img { width: 125px; height: 125px; border-radius: 50%; margin: 0 auto; object-fit: cover; object-position: center; } .profile-extended .profile-photo .form-group { text-align: center; } .profile-extended .profile-photo .form-group input { margin: 0 auto; } #editProfile .btn-save { margin-left: 30px; margin-bottom: 20px; margin-top: 30px; } #editProfile .btn-save.cancel { margin-left: 10px; } .btn-save.cancel { background: #EC442C; border-color: #EC442C; margin-left: 10px; } .btn-save.cancel:hover { background: #333; border: 1px solid #333; } .dual-list { display: table; table-layout: fixed; width: 100%; border-bottom: 1px solid #f9f9f9; padding: 8px 0; } .dual-list .list-item, .dual-list .list-detail { display: table-cell; vertical-align: middle; } .dual-list .list-item { width: 25%; color: #333; font-weight: bold; } .dual-list .list-detail { padding-left: 10px; } .form-group.has-button { margin-bottom: 0; background: #fcfcfc; } .form-group label { color: #1f1f1f; text-transform: capitalize; font-family: "San Francisco Text", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-weight: normal; } .form-group .dropdown-menu { border-radius: 2px; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 8px 0 rgba(0, 0, 0, 0.12); border: none; } .user-detail { text-transform: capitalize; } .edit-option { text-align: right; } .btn-edit { background: #6FCEEA; color: #fff; border: 1px solid transparent; -webkit-transition: 0.3s ease all; -moz-transition: 0.3s ease all; -ms-transition: 0.3s ease all; -o-transition: 0.3s ease all; transition: 0.3s ease all; border-radius: 2px; box-shadow: none; } .btn-edit:hover, .btn-edit:focus { background: #fff; color: #6FCEEA; } .btn-edit:hover { box-shadow: 0 2px 4px rgba(0, 0, 0, 0.085); } /* table style */ .resume-content table { border-collapse: collapse; margin: 0; padding: 0; width: 100%; table-layout: fixed; } .resume-content table thead th:nth-of-type(1) { width: 10%; } .resume-content table tbody tr { -webkit-transition: 0.3s ease all; -moz-transition: 0.3s ease all; -ms-transition: 0.3s ease all; -o-transition: 0.3s ease all; transition: 0.3s ease all; } .resume-content table tbody tr:nth-of-type(2n+2) { background: #fcfcfc; } .resume-content table tbody tr:hover { background: #fcfcfc; } .resume-content table tbody tr td:nth-of-type(1) { width: 10%; } .resume-content table tbody tr td:nth-of-type(1) img { margin: 0 auto; } .resume-content table tr { border: 1px solid #f9f9f9; padding: 10px; } .resume-content table th, .resume-content table td { padding: 10px; } .resume-content table th { text-transform: uppercase; } .resume-content table thead tr { background: #6FCEEA; color: #fff; } .resume-content table tbody tr { background: #fff; } @media screen and (max-width: 767px) { .resume-content table { border: 0; } .resume-content table thead { border: none; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } .resume-content table tr { border-bottom: 3px solid #ddd; display: block; margin-bottom: .625em; } .resume-content table td { border-bottom: 1px solid #ddd; display: block; text-align: right; } .resume-content table td:before { content: attr(data-label); float: left; font-weight: bold; text-transform: uppercase; } .resume-content table td:last-child { border-bottom: 0; } } .smt-resume.flat { border-radius: 0; } .smt-file { position: relative; overflow: hidden; margin: 20px auto 0; } .smt-file input.upload { position: absolute; top: 0; right: 0; margin: 0; padding: 0; font-size: 20px; cursor: pointer; opacity: 0; filter: alpha(opacity=0); } .profile-photo h5 { text-align: center; } .profile-form input[type=text], .profile-form input[type=email], .profile-form input[type=password] { border-radius: 2px; border-color: #f3f3f3; box-shadow: none; -webkit-transition: 0.05s ease all; -moz-transition: 0.05s ease all; -ms-transition: 0.05s ease all; -o-transition: 0.05s ease all; transition: 0.05s ease all; } .profile-form input[type=text]:focus, .profile-form input[type=email]:focus, .profile-form input[type=password]:focus { outline: none; } .profile-form input[type=text]:hover, .profile-form input[type=email]:hover, .profile-form input[type=password]:hover { border-color: #6FCEEA; } .btn-primary { background: #6FCEEA; border-radius: 2px; border: 1px solid #6FCEEA; box-shadow: none; } .btn-primary:hover { background: #59C6E7; border: 1px solid #59C6E7; } .form-group { position: relative; } .form-group .form-control.has-error { color: #ED2C13; border: 1px solid #ED2C13; } .form-notify { position: absolute; width: 100%; left: 0; margin-top: -1px; } .form-notify.error { background: #ED2C13; color: #fff; border-radius: 0; padding: 0 15px; } .notify { width: 100%; max-width: 50%; margin: 0 auto; padding: 10px 15px; background: #fff; box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.09), 0 0 2px 0 rgba(0, 0, 0, 0.075); margin: 15px auto; border: 1px solid transparent; -webkit-transition: 0.5s ease all; -moz-transition: 0.5s ease all; -ms-transition: 0.5s ease all; -o-transition: 0.5s ease all; transition: 0.5s ease all; } .notify:hover { box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.09), 0px 2px 2px 0px rgba(0, 0, 0, 0.075); } .notify.success { border: 1px solid #10C14B; color: #10C14B; } .full-inner { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-flow: column wrap; flex-flow: column wrap; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .full-inner .user-login { -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; background: #fff; width: 20%; padding: 20px; margin-top: 120px; box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 0 2px 0 rgba(0, 0, 0, 0.11); -webkit-transition: 0.5s ease all; -moz-transition: 0.5s ease all; -ms-transition: 0.5s ease all; -o-transition: 0.5s ease all; transition: 0.5s ease all; position: relative; } .full-inner .user-login:hover { box-shadow: 0 0 30px rgba(0, 0, 0, 0.1); } .full-inner .user-login .form-group { margin-left: 0; margin-right: 0; } .full-inner .user-login .form-group.bottom { margin-top: 35px; text-align: center; } .full-inner .user-login .form-group .form-control { border-radius: 2px; border-color: #f3f3f3; box-shadow: none; } .full-inner .user-login .form-group .form-control:focus, .full-inner .user-login .form-group .form-control:hover { box-shadow: none; border-color: #d9d9d9; } .full-page { height: 100%; min-height: 100%; position: relative; overflow: hidden; } .full-page .top-title { text-align: center; text-transform: capitalize; background: #90c73e; color: #fff; } .full-page .top-title h2 { margin: 0; line-height: 150px; font-size: 32px; } .form-title { text-align: center; color: #333; } .form-title h3 { margin-top: 0; font-size: 24px; margin-bottom: 20px; } .login-brand img { margin: 10px auto; } .reminder-text { margin-bottom: 30px; line-height: 1.5; color: #7c7c7c; } .user-login .form-group { margin-bottom: 24px; } .user-login .form-group.last { margin-bottom: 0; } .user-login .form-control { height: 38px; } .user-login .notify { max-width: 100%; position: absolute; top: -20px; left: 0; text-transform: capitalize; font-weight: normal; font-size: 12px; } .user-login .notify.success { background: #10C14B; color: #fff; } .user-login .form-group .form-control.has-error { border-color: #EC2C14; position: relative; } .user-login .form-group .error-text { background: #EC2C14; color: #fff; position: absolute; bottom: -27px; left: 0; margin-bottom: 0; padding: 0 10px; width: 100%; } .login-brand { margin-top: 30px; } .login-brand img { margin-bottom: 20px; } .login-notify { margin: 10px 0; } /*# sourceMappingURL=main.css.map */
public/styles/main.css
.mdi:before, .mdi-set { display: inline-block; font: normal normal normal 24px/1 "Material Design Icons"; font-size: inherit; text-rendering: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; transform: translate(0, 0); } .mdi-access-point:before { content: "\F002"; } .mdi-access-point-network:before { content: "\F003"; } .mdi-account:before { content: "\F004"; } .mdi-account-alert:before { content: "\F005"; } .mdi-account-box:before { content: "\F006"; } .mdi-account-box-outline:before { content: "\F007"; } .mdi-account-card-details:before { content: "\F5D2"; } .mdi-account-check:before { content: "\F008"; } .mdi-account-circle:before { content: "\F009"; } .mdi-account-convert:before { content: "\F00A"; } .mdi-account-key:before { content: "\F00B"; } .mdi-account-location:before { content: "\F00C"; } .mdi-account-minus:before { content: "\F00D"; } .mdi-account-multiple:before { content: "\F00E"; } .mdi-account-multiple-minus:before { content: "\F5D3"; } .mdi-account-multiple-outline:before { content: "\F00F"; } .mdi-account-multiple-plus:before { content: "\F010"; } .mdi-account-network:before { content: "\F011"; } .mdi-account-off:before { content: "\F012"; } .mdi-account-outline:before { content: "\F013"; } .mdi-account-plus:before { content: "\F014"; } .mdi-account-remove:before { content: "\F015"; } .mdi-account-search:before { content: "\F016"; } .mdi-account-settings:before { content: "\F630"; } .mdi-account-settings-variant:before { content: "\F631"; } .mdi-account-star:before { content: "\F017"; } .mdi-account-star-variant:before { content: "\F018"; } .mdi-account-switch:before { content: "\F019"; } .mdi-adjust:before { content: "\F01A"; } .mdi-air-conditioner:before { content: "\F01B"; } .mdi-airballoon:before { content: "\F01C"; } .mdi-airplane:before { content: "\F01D"; } .mdi-airplane-landing:before { content: "\F5D4"; } .mdi-airplane-off:before { content: "\F01E"; } .mdi-airplane-takeoff:before { content: "\F5D5"; } .mdi-airplay:before { content: "\F01F"; } .mdi-alarm:before { content: "\F020"; } .mdi-alarm-check:before { content: "\F021"; } .mdi-alarm-multiple:before { content: "\F022"; } .mdi-alarm-off:before { content: "\F023"; } .mdi-alarm-plus:before { content: "\F024"; } .mdi-alarm-snooze:before { content: "\F68D"; } .mdi-album:before { content: "\F025"; } .mdi-alert:before { content: "\F026"; } .mdi-alert-box:before { content: "\F027"; } .mdi-alert-circle:before { content: "\F028"; } .mdi-alert-circle-outline:before { content: "\F5D6"; } .mdi-alert-octagon:before { content: "\F029"; } .mdi-alert-outline:before { content: "\F02A"; } .mdi-alpha:before { content: "\F02B"; } .mdi-alphabetical:before { content: "\F02C"; } .mdi-altimeter:before { content: "\F5D7"; } .mdi-amazon:before { content: "\F02D"; } .mdi-amazon-clouddrive:before { content: "\F02E"; } .mdi-ambulance:before { content: "\F02F"; } .mdi-amplifier:before { content: "\F030"; } .mdi-anchor:before { content: "\F031"; } .mdi-android:before { content: "\F032"; } .mdi-android-debug-bridge:before { content: "\F033"; } .mdi-android-studio:before { content: "\F034"; } .mdi-angular:before { content: "\F6B1"; } .mdi-animation:before { content: "\F5D8"; } .mdi-apple:before { content: "\F035"; } .mdi-apple-finder:before { content: "\F036"; } .mdi-apple-ios:before { content: "\F037"; } .mdi-apple-keyboard-caps:before { content: "\F632"; } .mdi-apple-keyboard-command:before { content: "\F633"; } .mdi-apple-keyboard-control:before { content: "\F634"; } .mdi-apple-keyboard-option:before { content: "\F635"; } .mdi-apple-keyboard-shift:before { content: "\F636"; } .mdi-apple-mobileme:before { content: "\F038"; } .mdi-apple-safari:before { content: "\F039"; } .mdi-application:before { content: "\F614"; } .mdi-appnet:before { content: "\F03A"; } .mdi-apps:before { content: "\F03B"; } .mdi-archive:before { content: "\F03C"; } .mdi-arrange-bring-forward:before { content: "\F03D"; } .mdi-arrange-bring-to-front:before { content: "\F03E"; } .mdi-arrange-send-backward:before { content: "\F03F"; } .mdi-arrange-send-to-back:before { content: "\F040"; } .mdi-arrow-all:before { content: "\F041"; } .mdi-arrow-bottom-left:before { content: "\F042"; } .mdi-arrow-bottom-right:before { content: "\F043"; } .mdi-arrow-compress:before { content: "\F615"; } .mdi-arrow-compress-all:before { content: "\F044"; } .mdi-arrow-down:before { content: "\F045"; } .mdi-arrow-down-bold:before { content: "\F046"; } .mdi-arrow-down-bold-circle:before { content: "\F047"; } .mdi-arrow-down-bold-circle-outline:before { content: "\F048"; } .mdi-arrow-down-bold-hexagon-outline:before { content: "\F049"; } .mdi-arrow-down-drop-circle:before { content: "\F04A"; } .mdi-arrow-down-drop-circle-outline:before { content: "\F04B"; } .mdi-arrow-expand:before { content: "\F616"; } .mdi-arrow-expand-all:before { content: "\F04C"; } .mdi-arrow-left:before { content: "\F04D"; } .mdi-arrow-left-bold:before { content: "\F04E"; } .mdi-arrow-left-bold-circle:before { content: "\F04F"; } .mdi-arrow-left-bold-circle-outline:before { content: "\F050"; } .mdi-arrow-left-bold-hexagon-outline:before { content: "\F051"; } .mdi-arrow-left-drop-circle:before { content: "\F052"; } .mdi-arrow-left-drop-circle-outline:before { content: "\F053"; } .mdi-arrow-right:before { content: "\F054"; } .mdi-arrow-right-bold:before { content: "\F055"; } .mdi-arrow-right-bold-circle:before { content: "\F056"; } .mdi-arrow-right-bold-circle-outline:before { content: "\F057"; } .mdi-arrow-right-bold-hexagon-outline:before { content: "\F058"; } .mdi-arrow-right-drop-circle:before { content: "\F059"; } .mdi-arrow-right-drop-circle-outline:before { content: "\F05A"; } .mdi-arrow-top-left:before { content: "\F05B"; } .mdi-arrow-top-right:before { content: "\F05C"; } .mdi-arrow-up:before { content: "\F05D"; } .mdi-arrow-up-bold:before { content: "\F05E"; } .mdi-arrow-up-bold-circle:before { content: "\F05F"; } .mdi-arrow-up-bold-circle-outline:before { content: "\F060"; } .mdi-arrow-up-bold-hexagon-outline:before { content: "\F061"; } .mdi-arrow-up-drop-circle:before { content: "\F062"; } .mdi-arrow-up-drop-circle-outline:before { content: "\F063"; } .mdi-assistant:before { content: "\F064"; } .mdi-at:before { content: "\F065"; } .mdi-attachment:before { content: "\F066"; } .mdi-audiobook:before { content: "\F067"; } .mdi-auto-fix:before { content: "\F068"; } .mdi-auto-upload:before { content: "\F069"; } .mdi-autorenew:before { content: "\F06A"; } .mdi-av-timer:before { content: "\F06B"; } .mdi-baby:before { content: "\F06C"; } .mdi-baby-buggy:before { content: "\F68E"; } .mdi-backburger:before { content: "\F06D"; } .mdi-backspace:before { content: "\F06E"; } .mdi-backup-restore:before { content: "\F06F"; } .mdi-bandcamp:before { content: "\F674"; } .mdi-bank:before { content: "\F070"; } .mdi-barcode:before { content: "\F071"; } .mdi-barcode-scan:before { content: "\F072"; } .mdi-barley:before { content: "\F073"; } .mdi-barrel:before { content: "\F074"; } .mdi-basecamp:before { content: "\F075"; } .mdi-basket:before { content: "\F076"; } .mdi-basket-fill:before { content: "\F077"; } .mdi-basket-unfill:before { content: "\F078"; } .mdi-battery:before { content: "\F079"; } .mdi-battery-10:before { content: "\F07A"; } .mdi-battery-20:before { content: "\F07B"; } .mdi-battery-30:before { content: "\F07C"; } .mdi-battery-40:before { content: "\F07D"; } .mdi-battery-50:before { content: "\F07E"; } .mdi-battery-60:before { content: "\F07F"; } .mdi-battery-70:before { content: "\F080"; } .mdi-battery-80:before { content: "\F081"; } .mdi-battery-90:before { content: "\F082"; } .mdi-battery-alert:before { content: "\F083"; } .mdi-battery-charging:before { content: "\F084"; } .mdi-battery-charging-100:before { content: "\F085"; } .mdi-battery-charging-20:before { content: "\F086"; } .mdi-battery-charging-30:before { content: "\F087"; } .mdi-battery-charging-40:before { content: "\F088"; } .mdi-battery-charging-60:before { content: "\F089"; } .mdi-battery-charging-80:before { content: "\F08A"; } .mdi-battery-charging-90:before { content: "\F08B"; } .mdi-battery-minus:before { content: "\F08C"; } .mdi-battery-negative:before { content: "\F08D"; } .mdi-battery-outline:before { content: "\F08E"; } .mdi-battery-plus:before { content: "\F08F"; } .mdi-battery-positive:before { content: "\F090"; } .mdi-battery-unknown:before { content: "\F091"; } .mdi-beach:before { content: "\F092"; } .mdi-beaker:before { content: "\F68F"; } .mdi-beats:before { content: "\F097"; } .mdi-beer:before { content: "\F098"; } .mdi-behance:before { content: "\F099"; } .mdi-bell:before { content: "\F09A"; } .mdi-bell-off:before { content: "\F09B"; } .mdi-bell-outline:before { content: "\F09C"; } .mdi-bell-plus:before { content: "\F09D"; } .mdi-bell-ring:before { content: "\F09E"; } .mdi-bell-ring-outline:before { content: "\F09F"; } .mdi-bell-sleep:before { content: "\F0A0"; } .mdi-beta:before { content: "\F0A1"; } .mdi-bible:before { content: "\F0A2"; } .mdi-bike:before { content: "\F0A3"; } .mdi-bing:before { content: "\F0A4"; } .mdi-binoculars:before { content: "\F0A5"; } .mdi-bio:before { content: "\F0A6"; } .mdi-biohazard:before { content: "\F0A7"; } .mdi-bitbucket:before { content: "\F0A8"; } .mdi-black-mesa:before { content: "\F0A9"; } .mdi-blackberry:before { content: "\F0AA"; } .mdi-blender:before { content: "\F0AB"; } .mdi-blinds:before { content: "\F0AC"; } .mdi-block-helper:before { content: "\F0AD"; } .mdi-blogger:before { content: "\F0AE"; } .mdi-bluetooth:before { content: "\F0AF"; } .mdi-bluetooth-audio:before { content: "\F0B0"; } .mdi-bluetooth-connect:before { content: "\F0B1"; } .mdi-bluetooth-off:before { content: "\F0B2"; } .mdi-bluetooth-settings:before { content: "\F0B3"; } .mdi-bluetooth-transfer:before { content: "\F0B4"; } .mdi-blur:before { content: "\F0B5"; } .mdi-blur-linear:before { content: "\F0B6"; } .mdi-blur-off:before { content: "\F0B7"; } .mdi-blur-radial:before { content: "\F0B8"; } .mdi-bomb:before { content: "\F690"; } .mdi-bone:before { content: "\F0B9"; } .mdi-book:before { content: "\F0BA"; } .mdi-book-minus:before { content: "\F5D9"; } .mdi-book-multiple:before { content: "\F0BB"; } .mdi-book-multiple-variant:before { content: "\F0BC"; } .mdi-book-open:before { content: "\F0BD"; } .mdi-book-open-page-variant:before { content: "\F5DA"; } .mdi-book-open-variant:before { content: "\F0BE"; } .mdi-book-plus:before { content: "\F5DB"; } .mdi-book-variant:before { content: "\F0BF"; } .mdi-bookmark:before { content: "\F0C0"; } .mdi-bookmark-check:before { content: "\F0C1"; } .mdi-bookmark-music:before { content: "\F0C2"; } .mdi-bookmark-outline:before { content: "\F0C3"; } .mdi-bookmark-plus:before { content: "\F0C5"; } .mdi-bookmark-plus-outline:before { content: "\F0C4"; } .mdi-bookmark-remove:before { content: "\F0C6"; } .mdi-boombox:before { content: "\F5DC"; } .mdi-border-all:before { content: "\F0C7"; } .mdi-border-bottom:before { content: "\F0C8"; } .mdi-border-color:before { content: "\F0C9"; } .mdi-border-horizontal:before { content: "\F0CA"; } .mdi-border-inside:before { content: "\F0CB"; } .mdi-border-left:before { content: "\F0CC"; } .mdi-border-none:before { content: "\F0CD"; } .mdi-border-outside:before { content: "\F0CE"; } .mdi-border-right:before { content: "\F0CF"; } .mdi-border-style:before { content: "\F0D0"; } .mdi-border-top:before { content: "\F0D1"; } .mdi-border-vertical:before { content: "\F0D2"; } .mdi-bow-tie:before { content: "\F677"; } .mdi-bowl:before { content: "\F617"; } .mdi-bowling:before { content: "\F0D3"; } .mdi-box:before { content: "\F0D4"; } .mdi-box-cutter:before { content: "\F0D5"; } .mdi-box-shadow:before { content: "\F637"; } .mdi-bridge:before { content: "\F618"; } .mdi-briefcase:before { content: "\F0D6"; } .mdi-briefcase-check:before { content: "\F0D7"; } .mdi-briefcase-download:before { content: "\F0D8"; } .mdi-briefcase-upload:before { content: "\F0D9"; } .mdi-brightness-1:before { content: "\F0DA"; } .mdi-brightness-2:before { content: "\F0DB"; } .mdi-brightness-3:before { content: "\F0DC"; } .mdi-brightness-4:before { content: "\F0DD"; } .mdi-brightness-5:before { content: "\F0DE"; } .mdi-brightness-6:before { content: "\F0DF"; } .mdi-brightness-7:before { content: "\F0E0"; } .mdi-brightness-auto:before { content: "\F0E1"; } .mdi-broom:before { content: "\F0E2"; } .mdi-brush:before { content: "\F0E3"; } .mdi-buffer:before { content: "\F619"; } .mdi-bug:before { content: "\F0E4"; } .mdi-bulletin-board:before { content: "\F0E5"; } .mdi-bullhorn:before { content: "\F0E6"; } .mdi-bullseye:before { content: "\F5DD"; } .mdi-burst-mode:before { content: "\F5DE"; } .mdi-bus:before { content: "\F0E7"; } .mdi-cached:before { content: "\F0E8"; } .mdi-cake:before { content: "\F0E9"; } .mdi-cake-layered:before { content: "\F0EA"; } .mdi-cake-variant:before { content: "\F0EB"; } .mdi-calculator:before { content: "\F0EC"; } .mdi-calendar:before { content: "\F0ED"; } .mdi-calendar-blank:before { content: "\F0EE"; } .mdi-calendar-check:before { content: "\F0EF"; } .mdi-calendar-clock:before { content: "\F0F0"; } .mdi-calendar-multiple:before { content: "\F0F1"; } .mdi-calendar-multiple-check:before { content: "\F0F2"; } .mdi-calendar-plus:before { content: "\F0F3"; } .mdi-calendar-question:before { content: "\F691"; } .mdi-calendar-range:before { content: "\F678"; } .mdi-calendar-remove:before { content: "\F0F4"; } .mdi-calendar-text:before { content: "\F0F5"; } .mdi-calendar-today:before { content: "\F0F6"; } .mdi-call-made:before { content: "\F0F7"; } .mdi-call-merge:before { content: "\F0F8"; } .mdi-call-missed:before { content: "\F0F9"; } .mdi-call-received:before { content: "\F0FA"; } .mdi-call-split:before { content: "\F0FB"; } .mdi-camcorder:before { content: "\F0FC"; } .mdi-camcorder-box:before { content: "\F0FD"; } .mdi-camcorder-box-off:before { content: "\F0FE"; } .mdi-camcorder-off:before { content: "\F0FF"; } .mdi-camera:before { content: "\F100"; } .mdi-camera-burst:before { content: "\F692"; } .mdi-camera-enhance:before { content: "\F101"; } .mdi-camera-front:before { content: "\F102"; } .mdi-camera-front-variant:before { content: "\F103"; } .mdi-camera-iris:before { content: "\F104"; } .mdi-camera-off:before { content: "\F5DF"; } .mdi-camera-party-mode:before { content: "\F105"; } .mdi-camera-rear:before { content: "\F106"; } .mdi-camera-rear-variant:before { content: "\F107"; } .mdi-camera-switch:before { content: "\F108"; } .mdi-camera-timer:before { content: "\F109"; } .mdi-candle:before { content: "\F5E2"; } .mdi-candycane:before { content: "\F10A"; } .mdi-car:before { content: "\F10B"; } .mdi-car-battery:before { content: "\F10C"; } .mdi-car-connected:before { content: "\F10D"; } .mdi-car-wash:before { content: "\F10E"; } .mdi-cards:before { content: "\F638"; } .mdi-cards-outline:before { content: "\F639"; } .mdi-cards-playing-outline:before { content: "\F63A"; } .mdi-carrot:before { content: "\F10F"; } .mdi-cart:before { content: "\F110"; } .mdi-cart-off:before { content: "\F66B"; } .mdi-cart-outline:before { content: "\F111"; } .mdi-cart-plus:before { content: "\F112"; } .mdi-case-sensitive-alt:before { content: "\F113"; } .mdi-cash:before { content: "\F114"; } .mdi-cash-100:before { content: "\F115"; } .mdi-cash-multiple:before { content: "\F116"; } .mdi-cash-usd:before { content: "\F117"; } .mdi-cast:before { content: "\F118"; } .mdi-cast-connected:before { content: "\F119"; } .mdi-castle:before { content: "\F11A"; } .mdi-cat:before { content: "\F11B"; } .mdi-cellphone:before { content: "\F11C"; } .mdi-cellphone-android:before { content: "\F11D"; } .mdi-cellphone-basic:before { content: "\F11E"; } .mdi-cellphone-dock:before { content: "\F11F"; } .mdi-cellphone-iphone:before { content: "\F120"; } .mdi-cellphone-link:before { content: "\F121"; } .mdi-cellphone-link-off:before { content: "\F122"; } .mdi-cellphone-settings:before { content: "\F123"; } .mdi-certificate:before { content: "\F124"; } .mdi-chair-school:before { content: "\F125"; } .mdi-chart-arc:before { content: "\F126"; } .mdi-chart-areaspline:before { content: "\F127"; } .mdi-chart-bar:before { content: "\F128"; } .mdi-chart-bubble:before { content: "\F5E3"; } .mdi-chart-gantt:before { content: "\F66C"; } .mdi-chart-histogram:before { content: "\F129"; } .mdi-chart-line:before { content: "\F12A"; } .mdi-chart-pie:before { content: "\F12B"; } .mdi-chart-scatterplot-hexbin:before { content: "\F66D"; } .mdi-chart-timeline:before { content: "\F66E"; } .mdi-check:before { content: "\F12C"; } .mdi-check-all:before { content: "\F12D"; } .mdi-check-circle:before { content: "\F5E0"; } .mdi-check-circle-outline:before { content: "\F5E1"; } .mdi-checkbox-blank:before { content: "\F12E"; } .mdi-checkbox-blank-circle:before { content: "\F12F"; } .mdi-checkbox-blank-circle-outline:before { content: "\F130"; } .mdi-checkbox-blank-outline:before { content: "\F131"; } .mdi-checkbox-marked:before { content: "\F132"; } .mdi-checkbox-marked-circle:before { content: "\F133"; } .mdi-checkbox-marked-circle-outline:before { content: "\F134"; } .mdi-checkbox-marked-outline:before { content: "\F135"; } .mdi-checkbox-multiple-blank:before { content: "\F136"; } .mdi-checkbox-multiple-blank-circle:before { content: "\F63B"; } .mdi-checkbox-multiple-blank-circle-outline:before { content: "\F63C"; } .mdi-checkbox-multiple-blank-outline:before { content: "\F137"; } .mdi-checkbox-multiple-marked:before { content: "\F138"; } .mdi-checkbox-multiple-marked-circle:before { content: "\F63D"; } .mdi-checkbox-multiple-marked-circle-outline:before { content: "\F63E"; } .mdi-checkbox-multiple-marked-outline:before { content: "\F139"; } .mdi-checkerboard:before { content: "\F13A"; } .mdi-chemical-weapon:before { content: "\F13B"; } .mdi-chevron-double-down:before { content: "\F13C"; } .mdi-chevron-double-left:before { content: "\F13D"; } .mdi-chevron-double-right:before { content: "\F13E"; } .mdi-chevron-double-up:before { content: "\F13F"; } .mdi-chevron-down:before { content: "\F140"; } .mdi-chevron-left:before { content: "\F141"; } .mdi-chevron-right:before { content: "\F142"; } .mdi-chevron-up:before { content: "\F143"; } .mdi-chip:before { content: "\F61A"; } .mdi-church:before { content: "\F144"; } .mdi-cisco-webex:before { content: "\F145"; } .mdi-city:before { content: "\F146"; } .mdi-clipboard:before { content: "\F147"; } .mdi-clipboard-account:before { content: "\F148"; } .mdi-clipboard-alert:before { content: "\F149"; } .mdi-clipboard-arrow-down:before { content: "\F14A"; } .mdi-clipboard-arrow-left:before { content: "\F14B"; } .mdi-clipboard-check:before { content: "\F14C"; } .mdi-clipboard-outline:before { content: "\F14D"; } .mdi-clipboard-text:before { content: "\F14E"; } .mdi-clippy:before { content: "\F14F"; } .mdi-clock:before { content: "\F150"; } .mdi-clock-alert:before { content: "\F5CE"; } .mdi-clock-end:before { content: "\F151"; } .mdi-clock-fast:before { content: "\F152"; } .mdi-clock-in:before { content: "\F153"; } .mdi-clock-out:before { content: "\F154"; } .mdi-clock-start:before { content: "\F155"; } .mdi-close:before { content: "\F156"; } .mdi-close-box:before { content: "\F157"; } .mdi-close-box-outline:before { content: "\F158"; } .mdi-close-circle:before { content: "\F159"; } .mdi-close-circle-outline:before { content: "\F15A"; } .mdi-close-network:before { content: "\F15B"; } .mdi-close-octagon:before { content: "\F15C"; } .mdi-close-octagon-outline:before { content: "\F15D"; } .mdi-closed-caption:before { content: "\F15E"; } .mdi-cloud:before { content: "\F15F"; } .mdi-cloud-check:before { content: "\F160"; } .mdi-cloud-circle:before { content: "\F161"; } .mdi-cloud-download:before { content: "\F162"; } .mdi-cloud-outline:before { content: "\F163"; } .mdi-cloud-outline-off:before { content: "\F164"; } .mdi-cloud-print:before { content: "\F165"; } .mdi-cloud-print-outline:before { content: "\F166"; } .mdi-cloud-sync:before { content: "\F63F"; } .mdi-cloud-upload:before { content: "\F167"; } .mdi-code-array:before { content: "\F168"; } .mdi-code-braces:before { content: "\F169"; } .mdi-code-brackets:before { content: "\F16A"; } .mdi-code-equal:before { content: "\F16B"; } .mdi-code-greater-than:before { content: "\F16C"; } .mdi-code-greater-than-or-equal:before { content: "\F16D"; } .mdi-code-less-than:before { content: "\F16E"; } .mdi-code-less-than-or-equal:before { content: "\F16F"; } .mdi-code-not-equal:before { content: "\F170"; } .mdi-code-not-equal-variant:before { content: "\F171"; } .mdi-code-parentheses:before { content: "\F172"; } .mdi-code-string:before { content: "\F173"; } .mdi-code-tags:before { content: "\F174"; } .mdi-code-tags-check:before { content: "\F693"; } .mdi-codepen:before { content: "\F175"; } .mdi-coffee:before { content: "\F176"; } .mdi-coffee-to-go:before { content: "\F177"; } .mdi-coin:before { content: "\F178"; } .mdi-coins:before { content: "\F694"; } .mdi-collage:before { content: "\F640"; } .mdi-color-helper:before { content: "\F179"; } .mdi-comment:before { content: "\F17A"; } .mdi-comment-account:before { content: "\F17B"; } .mdi-comment-account-outline:before { content: "\F17C"; } .mdi-comment-alert:before { content: "\F17D"; } .mdi-comment-alert-outline:before { content: "\F17E"; } .mdi-comment-check:before { content: "\F17F"; } .mdi-comment-check-outline:before { content: "\F180"; } .mdi-comment-multiple-outline:before { content: "\F181"; } .mdi-comment-outline:before { content: "\F182"; } .mdi-comment-plus-outline:before { content: "\F183"; } .mdi-comment-processing:before { content: "\F184"; } .mdi-comment-processing-outline:before { content: "\F185"; } .mdi-comment-question-outline:before { content: "\F186"; } .mdi-comment-remove-outline:before { content: "\F187"; } .mdi-comment-text:before { content: "\F188"; } .mdi-comment-text-outline:before { content: "\F189"; } .mdi-compare:before { content: "\F18A"; } .mdi-compass:before { content: "\F18B"; } .mdi-compass-outline:before { content: "\F18C"; } .mdi-console:before { content: "\F18D"; } .mdi-contact-mail:before { content: "\F18E"; } .mdi-content-copy:before { content: "\F18F"; } .mdi-content-cut:before { content: "\F190"; } .mdi-content-duplicate:before { content: "\F191"; } .mdi-content-paste:before { content: "\F192"; } .mdi-content-save:before { content: "\F193"; } .mdi-content-save-all:before { content: "\F194"; } .mdi-content-save-settings:before { content: "\F61B"; } .mdi-contrast:before { content: "\F195"; } .mdi-contrast-box:before { content: "\F196"; } .mdi-contrast-circle:before { content: "\F197"; } .mdi-cookie:before { content: "\F198"; } .mdi-copyright:before { content: "\F5E6"; } .mdi-counter:before { content: "\F199"; } .mdi-cow:before { content: "\F19A"; } .mdi-creation:before { content: "\F1C9"; } .mdi-credit-card:before { content: "\F19B"; } .mdi-credit-card-multiple:before { content: "\F19C"; } .mdi-credit-card-off:before { content: "\F5E4"; } .mdi-credit-card-plus:before { content: "\F675"; } .mdi-credit-card-scan:before { content: "\F19D"; } .mdi-crop:before { content: "\F19E"; } .mdi-crop-free:before { content: "\F19F"; } .mdi-crop-landscape:before { content: "\F1A0"; } .mdi-crop-portrait:before { content: "\F1A1"; } .mdi-crop-rotate:before { content: "\F695"; } .mdi-crop-square:before { content: "\F1A2"; } .mdi-crosshairs:before { content: "\F1A3"; } .mdi-crosshairs-gps:before { content: "\F1A4"; } .mdi-crown:before { content: "\F1A5"; } .mdi-cube:before { content: "\F1A6"; } .mdi-cube-outline:before { content: "\F1A7"; } .mdi-cube-send:before { content: "\F1A8"; } .mdi-cube-unfolded:before { content: "\F1A9"; } .mdi-cup:before { content: "\F1AA"; } .mdi-cup-off:before { content: "\F5E5"; } .mdi-cup-water:before { content: "\F1AB"; } .mdi-currency-btc:before { content: "\F1AC"; } .mdi-currency-eur:before { content: "\F1AD"; } .mdi-currency-gbp:before { content: "\F1AE"; } .mdi-currency-inr:before { content: "\F1AF"; } .mdi-currency-ngn:before { content: "\F1B0"; } .mdi-currency-rub:before { content: "\F1B1"; } .mdi-currency-try:before { content: "\F1B2"; } .mdi-currency-usd:before { content: "\F1B3"; } .mdi-currency-usd-off:before { content: "\F679"; } .mdi-cursor-default:before { content: "\F1B4"; } .mdi-cursor-default-outline:before { content: "\F1B5"; } .mdi-cursor-move:before { content: "\F1B6"; } .mdi-cursor-pointer:before { content: "\F1B7"; } .mdi-cursor-text:before { content: "\F5E7"; } .mdi-database:before { content: "\F1B8"; } .mdi-database-minus:before { content: "\F1B9"; } .mdi-database-plus:before { content: "\F1BA"; } .mdi-debug-step-into:before { content: "\F1BB"; } .mdi-debug-step-out:before { content: "\F1BC"; } .mdi-debug-step-over:before { content: "\F1BD"; } .mdi-decimal-decrease:before { content: "\F1BE"; } .mdi-decimal-increase:before { content: "\F1BF"; } .mdi-delete:before { content: "\F1C0"; } .mdi-delete-circle:before { content: "\F682"; } .mdi-delete-forever:before { content: "\F5E8"; } .mdi-delete-sweep:before { content: "\F5E9"; } .mdi-delete-variant:before { content: "\F1C1"; } .mdi-delta:before { content: "\F1C2"; } .mdi-deskphone:before { content: "\F1C3"; } .mdi-desktop-mac:before { content: "\F1C4"; } .mdi-desktop-tower:before { content: "\F1C5"; } .mdi-details:before { content: "\F1C6"; } .mdi-developer-board:before { content: "\F696"; } .mdi-deviantart:before { content: "\F1C7"; } .mdi-dialpad:before { content: "\F61C"; } .mdi-diamond:before { content: "\F1C8"; } .mdi-dice-1:before { content: "\F1CA"; } .mdi-dice-2:before { content: "\F1CB"; } .mdi-dice-3:before { content: "\F1CC"; } .mdi-dice-4:before { content: "\F1CD"; } .mdi-dice-5:before { content: "\F1CE"; } .mdi-dice-6:before { content: "\F1CF"; } .mdi-dice-d20:before { content: "\F5EA"; } .mdi-dice-d4:before { content: "\F5EB"; } .mdi-dice-d6:before { content: "\F5EC"; } .mdi-dice-d8:before { content: "\F5ED"; } .mdi-dictionary:before { content: "\F61D"; } .mdi-directions:before { content: "\F1D0"; } .mdi-directions-fork:before { content: "\F641"; } .mdi-discord:before { content: "\F66F"; } .mdi-disk:before { content: "\F5EE"; } .mdi-disk-alert:before { content: "\F1D1"; } .mdi-disqus:before { content: "\F1D2"; } .mdi-disqus-outline:before { content: "\F1D3"; } .mdi-division:before { content: "\F1D4"; } .mdi-division-box:before { content: "\F1D5"; } .mdi-dna:before { content: "\F683"; } .mdi-dns:before { content: "\F1D6"; } .mdi-do-not-disturb:before { content: "\F697"; } .mdi-do-not-disturb-off:before { content: "\F698"; } .mdi-dolby:before { content: "\F6B2"; } .mdi-domain:before { content: "\F1D7"; } .mdi-dots-horizontal:before { content: "\F1D8"; } .mdi-dots-vertical:before { content: "\F1D9"; } .mdi-douban:before { content: "\F699"; } .mdi-download:before { content: "\F1DA"; } .mdi-drag:before { content: "\F1DB"; } .mdi-drag-horizontal:before { content: "\F1DC"; } .mdi-drag-vertical:before { content: "\F1DD"; } .mdi-drawing:before { content: "\F1DE"; } .mdi-drawing-box:before { content: "\F1DF"; } .mdi-dribbble:before { content: "\F1E0"; } .mdi-dribbble-box:before { content: "\F1E1"; } .mdi-drone:before { content: "\F1E2"; } .mdi-dropbox:before { content: "\F1E3"; } .mdi-drupal:before { content: "\F1E4"; } .mdi-duck:before { content: "\F1E5"; } .mdi-dumbbell:before { content: "\F1E6"; } .mdi-earth:before { content: "\F1E7"; } .mdi-earth-off:before { content: "\F1E8"; } .mdi-edge:before { content: "\F1E9"; } .mdi-eject:before { content: "\F1EA"; } .mdi-elevation-decline:before { content: "\F1EB"; } .mdi-elevation-rise:before { content: "\F1EC"; } .mdi-elevator:before { content: "\F1ED"; } .mdi-email:before { content: "\F1EE"; } .mdi-email-open:before { content: "\F1EF"; } .mdi-email-open-outline:before { content: "\F5EF"; } .mdi-email-outline:before { content: "\F1F0"; } .mdi-email-secure:before { content: "\F1F1"; } .mdi-email-variant:before { content: "\F5F0"; } .mdi-emby:before { content: "\F6B3"; } .mdi-emoticon:before { content: "\F1F2"; } .mdi-emoticon-cool:before { content: "\F1F3"; } .mdi-emoticon-dead:before { content: "\F69A"; } .mdi-emoticon-devil:before { content: "\F1F4"; } .mdi-emoticon-excited:before { content: "\F69B"; } .mdi-emoticon-happy:before { content: "\F1F5"; } .mdi-emoticon-neutral:before { content: "\F1F6"; } .mdi-emoticon-poop:before { content: "\F1F7"; } .mdi-emoticon-sad:before { content: "\F1F8"; } .mdi-emoticon-tongue:before { content: "\F1F9"; } .mdi-engine:before { content: "\F1FA"; } .mdi-engine-outline:before { content: "\F1FB"; } .mdi-equal:before { content: "\F1FC"; } .mdi-equal-box:before { content: "\F1FD"; } .mdi-eraser:before { content: "\F1FE"; } .mdi-eraser-variant:before { content: "\F642"; } .mdi-escalator:before { content: "\F1FF"; } .mdi-ethernet:before { content: "\F200"; } .mdi-ethernet-cable:before { content: "\F201"; } .mdi-ethernet-cable-off:before { content: "\F202"; } .mdi-etsy:before { content: "\F203"; } .mdi-ev-station:before { content: "\F5F1"; } .mdi-evernote:before { content: "\F204"; } .mdi-exclamation:before { content: "\F205"; } .mdi-exit-to-app:before { content: "\F206"; } .mdi-export:before { content: "\F207"; } .mdi-eye:before { content: "\F208"; } .mdi-eye-off:before { content: "\F209"; } .mdi-eyedropper:before { content: "\F20A"; } .mdi-eyedropper-variant:before { content: "\F20B"; } .mdi-face:before { content: "\F643"; } .mdi-face-profile:before { content: "\F644"; } .mdi-facebook:before { content: "\F20C"; } .mdi-facebook-box:before { content: "\F20D"; } .mdi-facebook-messenger:before { content: "\F20E"; } .mdi-factory:before { content: "\F20F"; } .mdi-fan:before { content: "\F210"; } .mdi-fast-forward:before { content: "\F211"; } .mdi-fax:before { content: "\F212"; } .mdi-ferry:before { content: "\F213"; } .mdi-file:before { content: "\F214"; } .mdi-file-chart:before { content: "\F215"; } .mdi-file-check:before { content: "\F216"; } .mdi-file-cloud:before { content: "\F217"; } .mdi-file-delimited:before { content: "\F218"; } .mdi-file-document:before { content: "\F219"; } .mdi-file-document-box:before { content: "\F21A"; } .mdi-file-excel:before { content: "\F21B"; } .mdi-file-excel-box:before { content: "\F21C"; } .mdi-file-export:before { content: "\F21D"; } .mdi-file-find:before { content: "\F21E"; } .mdi-file-hidden:before { content: "\F613"; } .mdi-file-image:before { content: "\F21F"; } .mdi-file-import:before { content: "\F220"; } .mdi-file-lock:before { content: "\F221"; } .mdi-file-multiple:before { content: "\F222"; } .mdi-file-music:before { content: "\F223"; } .mdi-file-outline:before { content: "\F224"; } .mdi-file-pdf:before { content: "\F225"; } .mdi-file-pdf-box:before { content: "\F226"; } .mdi-file-powerpoint:before { content: "\F227"; } .mdi-file-powerpoint-box:before { content: "\F228"; } .mdi-file-presentation-box:before { content: "\F229"; } .mdi-file-restore:before { content: "\F670"; } .mdi-file-send:before { content: "\F22A"; } .mdi-file-tree:before { content: "\F645"; } .mdi-file-video:before { content: "\F22B"; } .mdi-file-word:before { content: "\F22C"; } .mdi-file-word-box:before { content: "\F22D"; } .mdi-file-xml:before { content: "\F22E"; } .mdi-film:before { content: "\F22F"; } .mdi-filmstrip:before { content: "\F230"; } .mdi-filmstrip-off:before { content: "\F231"; } .mdi-filter:before { content: "\F232"; } .mdi-filter-outline:before { content: "\F233"; } .mdi-filter-remove:before { content: "\F234"; } .mdi-filter-remove-outline:before { content: "\F235"; } .mdi-filter-variant:before { content: "\F236"; } .mdi-fingerprint:before { content: "\F237"; } .mdi-fire:before { content: "\F238"; } .mdi-firefox:before { content: "\F239"; } .mdi-fish:before { content: "\F23A"; } .mdi-flag:before { content: "\F23B"; } .mdi-flag-checkered:before { content: "\F23C"; } .mdi-flag-outline:before { content: "\F23D"; } .mdi-flag-outline-variant:before { content: "\F23E"; } .mdi-flag-triangle:before { content: "\F23F"; } .mdi-flag-variant:before { content: "\F240"; } .mdi-flash:before { content: "\F241"; } .mdi-flash-auto:before { content: "\F242"; } .mdi-flash-off:before { content: "\F243"; } .mdi-flash-red-eye:before { content: "\F67A"; } .mdi-flashlight:before { content: "\F244"; } .mdi-flashlight-off:before { content: "\F245"; } .mdi-flask:before { content: "\F093"; } .mdi-flask-empty:before { content: "\F094"; } .mdi-flask-empty-outline:before { content: "\F095"; } .mdi-flask-outline:before { content: "\F096"; } .mdi-flattr:before { content: "\F246"; } .mdi-flip-to-back:before { content: "\F247"; } .mdi-flip-to-front:before { content: "\F248"; } .mdi-floppy:before { content: "\F249"; } .mdi-flower:before { content: "\F24A"; } .mdi-folder:before { content: "\F24B"; } .mdi-folder-account:before { content: "\F24C"; } .mdi-folder-download:before { content: "\F24D"; } .mdi-folder-google-drive:before { content: "\F24E"; } .mdi-folder-image:before { content: "\F24F"; } .mdi-folder-lock:before { content: "\F250"; } .mdi-folder-lock-open:before { content: "\F251"; } .mdi-folder-move:before { content: "\F252"; } .mdi-folder-multiple:before { content: "\F253"; } .mdi-folder-multiple-image:before { content: "\F254"; } .mdi-folder-multiple-outline:before { content: "\F255"; } .mdi-folder-outline:before { content: "\F256"; } .mdi-folder-plus:before { content: "\F257"; } .mdi-folder-remove:before { content: "\F258"; } .mdi-folder-star:before { content: "\F69C"; } .mdi-folder-upload:before { content: "\F259"; } .mdi-food:before { content: "\F25A"; } .mdi-food-apple:before { content: "\F25B"; } .mdi-food-fork-drink:before { content: "\F5F2"; } .mdi-food-off:before { content: "\F5F3"; } .mdi-food-variant:before { content: "\F25C"; } .mdi-football:before { content: "\F25D"; } .mdi-football-australian:before { content: "\F25E"; } .mdi-football-helmet:before { content: "\F25F"; } .mdi-format-align-center:before { content: "\F260"; } .mdi-format-align-justify:before { content: "\F261"; } .mdi-format-align-left:before { content: "\F262"; } .mdi-format-align-right:before { content: "\F263"; } .mdi-format-annotation-plus:before { content: "\F646"; } .mdi-format-bold:before { content: "\F264"; } .mdi-format-clear:before { content: "\F265"; } .mdi-format-color-fill:before { content: "\F266"; } .mdi-format-color-text:before { content: "\F69D"; } .mdi-format-float-center:before { content: "\F267"; } .mdi-format-float-left:before { content: "\F268"; } .mdi-format-float-none:before { content: "\F269"; } .mdi-format-float-right:before { content: "\F26A"; } .mdi-format-header-1:before { content: "\F26B"; } .mdi-format-header-2:before { content: "\F26C"; } .mdi-format-header-3:before { content: "\F26D"; } .mdi-format-header-4:before { content: "\F26E"; } .mdi-format-header-5:before { content: "\F26F"; } .mdi-format-header-6:before { content: "\F270"; } .mdi-format-header-decrease:before { content: "\F271"; } .mdi-format-header-equal:before { content: "\F272"; } .mdi-format-header-increase:before { content: "\F273"; } .mdi-format-header-pound:before { content: "\F274"; } .mdi-format-horizontal-align-center:before { content: "\F61E"; } .mdi-format-horizontal-align-left:before { content: "\F61F"; } .mdi-format-horizontal-align-right:before { content: "\F620"; } .mdi-format-indent-decrease:before { content: "\F275"; } .mdi-format-indent-increase:before { content: "\F276"; } .mdi-format-italic:before { content: "\F277"; } .mdi-format-line-spacing:before { content: "\F278"; } .mdi-format-line-style:before { content: "\F5C8"; } .mdi-format-line-weight:before { content: "\F5C9"; } .mdi-format-list-bulleted:before { content: "\F279"; } .mdi-format-list-bulleted-type:before { content: "\F27A"; } .mdi-format-list-numbers:before { content: "\F27B"; } .mdi-format-paint:before { content: "\F27C"; } .mdi-format-paragraph:before { content: "\F27D"; } .mdi-format-quote:before { content: "\F27E"; } .mdi-format-section:before { content: "\F69E"; } .mdi-format-size:before { content: "\F27F"; } .mdi-format-strikethrough:before { content: "\F280"; } .mdi-format-strikethrough-variant:before { content: "\F281"; } .mdi-format-subscript:before { content: "\F282"; } .mdi-format-superscript:before { content: "\F283"; } .mdi-format-text:before { content: "\F284"; } .mdi-format-textdirection-l-to-r:before { content: "\F285"; } .mdi-format-textdirection-r-to-l:before { content: "\F286"; } .mdi-format-title:before { content: "\F5F4"; } .mdi-format-underline:before { content: "\F287"; } .mdi-format-vertical-align-bottom:before { content: "\F621"; } .mdi-format-vertical-align-center:before { content: "\F622"; } .mdi-format-vertical-align-top:before { content: "\F623"; } .mdi-format-wrap-inline:before { content: "\F288"; } .mdi-format-wrap-square:before { content: "\F289"; } .mdi-format-wrap-tight:before { content: "\F28A"; } .mdi-format-wrap-top-bottom:before { content: "\F28B"; } .mdi-forum:before { content: "\F28C"; } .mdi-forward:before { content: "\F28D"; } .mdi-foursquare:before { content: "\F28E"; } .mdi-fridge:before { content: "\F28F"; } .mdi-fridge-filled:before { content: "\F290"; } .mdi-fridge-filled-bottom:before { content: "\F291"; } .mdi-fridge-filled-top:before { content: "\F292"; } .mdi-fullscreen:before { content: "\F293"; } .mdi-fullscreen-exit:before { content: "\F294"; } .mdi-function:before { content: "\F295"; } .mdi-gamepad:before { content: "\F296"; } .mdi-gamepad-variant:before { content: "\F297"; } .mdi-gas-cylinder:before { content: "\F647"; } .mdi-gas-station:before { content: "\F298"; } .mdi-gate:before { content: "\F299"; } .mdi-gauge:before { content: "\F29A"; } .mdi-gavel:before { content: "\F29B"; } .mdi-gender-female:before { content: "\F29C"; } .mdi-gender-male:before { content: "\F29D"; } .mdi-gender-male-female:before { content: "\F29E"; } .mdi-gender-transgender:before { content: "\F29F"; } .mdi-ghost:before { content: "\F2A0"; } .mdi-gift:before { content: "\F2A1"; } .mdi-git:before { content: "\F2A2"; } .mdi-github-box:before { content: "\F2A3"; } .mdi-github-circle:before { content: "\F2A4"; } .mdi-glass-flute:before { content: "\F2A5"; } .mdi-glass-mug:before { content: "\F2A6"; } .mdi-glass-stange:before { content: "\F2A7"; } .mdi-glass-tulip:before { content: "\F2A8"; } .mdi-glassdoor:before { content: "\F2A9"; } .mdi-glasses:before { content: "\F2AA"; } .mdi-gmail:before { content: "\F2AB"; } .mdi-gnome:before { content: "\F2AC"; } .mdi-gondola:before { content: "\F685"; } .mdi-google:before { content: "\F2AD"; } .mdi-google-cardboard:before { content: "\F2AE"; } .mdi-google-chrome:before { content: "\F2AF"; } .mdi-google-circles:before { content: "\F2B0"; } .mdi-google-circles-communities:before { content: "\F2B1"; } .mdi-google-circles-extended:before { content: "\F2B2"; } .mdi-google-circles-group:before { content: "\F2B3"; } .mdi-google-controller:before { content: "\F2B4"; } .mdi-google-controller-off:before { content: "\F2B5"; } .mdi-google-drive:before { content: "\F2B6"; } .mdi-google-earth:before { content: "\F2B7"; } .mdi-google-glass:before { content: "\F2B8"; } .mdi-google-maps:before { content: "\F5F5"; } .mdi-google-nearby:before { content: "\F2B9"; } .mdi-google-pages:before { content: "\F2BA"; } .mdi-google-physical-web:before { content: "\F2BB"; } .mdi-google-play:before { content: "\F2BC"; } .mdi-google-plus:before { content: "\F2BD"; } .mdi-google-plus-box:before { content: "\F2BE"; } .mdi-google-translate:before { content: "\F2BF"; } .mdi-google-wallet:before { content: "\F2C0"; } .mdi-gradient:before { content: "\F69F"; } .mdi-grease-pencil:before { content: "\F648"; } .mdi-grid:before { content: "\F2C1"; } .mdi-grid-off:before { content: "\F2C2"; } .mdi-group:before { content: "\F2C3"; } .mdi-guitar-electric:before { content: "\F2C4"; } .mdi-guitar-pick:before { content: "\F2C5"; } .mdi-guitar-pick-outline:before { content: "\F2C6"; } .mdi-hackernews:before { content: "\F624"; } .mdi-hamburger:before { content: "\F684"; } .mdi-hand-pointing-right:before { content: "\F2C7"; } .mdi-hanger:before { content: "\F2C8"; } .mdi-hangouts:before { content: "\F2C9"; } .mdi-harddisk:before { content: "\F2CA"; } .mdi-headphones:before { content: "\F2CB"; } .mdi-headphones-box:before { content: "\F2CC"; } .mdi-headphones-settings:before { content: "\F2CD"; } .mdi-headset:before { content: "\F2CE"; } .mdi-headset-dock:before { content: "\F2CF"; } .mdi-headset-off:before { content: "\F2D0"; } .mdi-heart:before { content: "\F2D1"; } .mdi-heart-box:before { content: "\F2D2"; } .mdi-heart-box-outline:before { content: "\F2D3"; } .mdi-heart-broken:before { content: "\F2D4"; } .mdi-heart-outline:before { content: "\F2D5"; } .mdi-heart-pulse:before { content: "\F5F6"; } .mdi-help:before { content: "\F2D6"; } .mdi-help-circle:before { content: "\F2D7"; } .mdi-help-circle-outline:before { content: "\F625"; } .mdi-hexagon:before { content: "\F2D8"; } .mdi-hexagon-outline:before { content: "\F2D9"; } .mdi-highway:before { content: "\F5F7"; } .mdi-history:before { content: "\F2DA"; } .mdi-hololens:before { content: "\F2DB"; } .mdi-home:before { content: "\F2DC"; } .mdi-home-map-marker:before { content: "\F5F8"; } .mdi-home-modern:before { content: "\F2DD"; } .mdi-home-outline:before { content: "\F6A0"; } .mdi-home-variant:before { content: "\F2DE"; } .mdi-hops:before { content: "\F2DF"; } .mdi-hospital:before { content: "\F2E0"; } .mdi-hospital-building:before { content: "\F2E1"; } .mdi-hospital-marker:before { content: "\F2E2"; } .mdi-hotel:before { content: "\F2E3"; } .mdi-houzz:before { content: "\F2E4"; } .mdi-houzz-box:before { content: "\F2E5"; } .mdi-human:before { content: "\F2E6"; } .mdi-human-child:before { content: "\F2E7"; } .mdi-human-female:before { content: "\F649"; } .mdi-human-greeting:before { content: "\F64A"; } .mdi-human-handsdown:before { content: "\F64B"; } .mdi-human-handsup:before { content: "\F64C"; } .mdi-human-male:before { content: "\F64D"; } .mdi-human-male-female:before { content: "\F2E8"; } .mdi-human-pregnant:before { content: "\F5CF"; } .mdi-image:before { content: "\F2E9"; } .mdi-image-album:before { content: "\F2EA"; } .mdi-image-area:before { content: "\F2EB"; } .mdi-image-area-close:before { content: "\F2EC"; } .mdi-image-broken:before { content: "\F2ED"; } .mdi-image-broken-variant:before { content: "\F2EE"; } .mdi-image-filter:before { content: "\F2EF"; } .mdi-image-filter-black-white:before { content: "\F2F0"; } .mdi-image-filter-center-focus:before { content: "\F2F1"; } .mdi-image-filter-center-focus-weak:before { content: "\F2F2"; } .mdi-image-filter-drama:before { content: "\F2F3"; } .mdi-image-filter-frames:before { content: "\F2F4"; } .mdi-image-filter-hdr:before { content: "\F2F5"; } .mdi-image-filter-none:before { content: "\F2F6"; } .mdi-image-filter-tilt-shift:before { content: "\F2F7"; } .mdi-image-filter-vintage:before { content: "\F2F8"; } .mdi-image-multiple:before { content: "\F2F9"; } .mdi-import:before { content: "\F2FA"; } .mdi-inbox:before { content: "\F686"; } .mdi-inbox-arrow-down:before { content: "\F2FB"; } .mdi-inbox-arrow-up:before { content: "\F3D1"; } .mdi-incognito:before { content: "\F5F9"; } .mdi-information:before { content: "\F2FC"; } .mdi-information-outline:before { content: "\F2FD"; } .mdi-information-variant:before { content: "\F64E"; } .mdi-instagram:before { content: "\F2FE"; } .mdi-instapaper:before { content: "\F2FF"; } .mdi-internet-explorer:before { content: "\F300"; } .mdi-invert-colors:before { content: "\F301"; } .mdi-itunes:before { content: "\F676"; } .mdi-jeepney:before { content: "\F302"; } .mdi-jira:before { content: "\F303"; } .mdi-jsfiddle:before { content: "\F304"; } .mdi-json:before { content: "\F626"; } .mdi-keg:before { content: "\F305"; } .mdi-kettle:before { content: "\F5FA"; } .mdi-key:before { content: "\F306"; } .mdi-key-change:before { content: "\F307"; } .mdi-key-minus:before { content: "\F308"; } .mdi-key-plus:before { content: "\F309"; } .mdi-key-remove:before { content: "\F30A"; } .mdi-key-variant:before { content: "\F30B"; } .mdi-keyboard:before { content: "\F30C"; } .mdi-keyboard-backspace:before { content: "\F30D"; } .mdi-keyboard-caps:before { content: "\F30E"; } .mdi-keyboard-close:before { content: "\F30F"; } .mdi-keyboard-off:before { content: "\F310"; } .mdi-keyboard-return:before { content: "\F311"; } .mdi-keyboard-tab:before { content: "\F312"; } .mdi-keyboard-variant:before { content: "\F313"; } .mdi-kodi:before { content: "\F314"; } .mdi-label:before { content: "\F315"; } .mdi-label-outline:before { content: "\F316"; } .mdi-lambda:before { content: "\F627"; } .mdi-lamp:before { content: "\F6B4"; } .mdi-lan:before { content: "\F317"; } .mdi-lan-connect:before { content: "\F318"; } .mdi-lan-disconnect:before { content: "\F319"; } .mdi-lan-pending:before { content: "\F31A"; } .mdi-language-c:before { content: "\F671"; } .mdi-language-cpp:before { content: "\F672"; } .mdi-language-csharp:before { content: "\F31B"; } .mdi-language-css3:before { content: "\F31C"; } .mdi-language-html5:before { content: "\F31D"; } .mdi-language-javascript:before { content: "\F31E"; } .mdi-language-php:before { content: "\F31F"; } .mdi-language-python:before { content: "\F320"; } .mdi-language-python-text:before { content: "\F321"; } .mdi-laptop:before { content: "\F322"; } .mdi-laptop-chromebook:before { content: "\F323"; } .mdi-laptop-mac:before { content: "\F324"; } .mdi-laptop-windows:before { content: "\F325"; } .mdi-lastfm:before { content: "\F326"; } .mdi-launch:before { content: "\F327"; } .mdi-layers:before { content: "\F328"; } .mdi-layers-off:before { content: "\F329"; } .mdi-lead-pencil:before { content: "\F64F"; } .mdi-leaf:before { content: "\F32A"; } .mdi-led-off:before { content: "\F32B"; } .mdi-led-on:before { content: "\F32C"; } .mdi-led-outline:before { content: "\F32D"; } .mdi-led-variant-off:before { content: "\F32E"; } .mdi-led-variant-on:before { content: "\F32F"; } .mdi-led-variant-outline:before { content: "\F330"; } .mdi-library:before { content: "\F331"; } .mdi-library-books:before { content: "\F332"; } .mdi-library-music:before { content: "\F333"; } .mdi-library-plus:before { content: "\F334"; } .mdi-lightbulb:before { content: "\F335"; } .mdi-lightbulb-outline:before { content: "\F336"; } .mdi-link:before { content: "\F337"; } .mdi-link-off:before { content: "\F338"; } .mdi-link-variant:before { content: "\F339"; } .mdi-link-variant-off:before { content: "\F33A"; } .mdi-linkedin:before { content: "\F33B"; } .mdi-linkedin-box:before { content: "\F33C"; } .mdi-linux:before { content: "\F33D"; } .mdi-lock:before { content: "\F33E"; } .mdi-lock-open:before { content: "\F33F"; } .mdi-lock-open-outline:before { content: "\F340"; } .mdi-lock-outline:before { content: "\F341"; } .mdi-lock-plus:before { content: "\F5FB"; } .mdi-login:before { content: "\F342"; } .mdi-login-variant:before { content: "\F5FC"; } .mdi-logout:before { content: "\F343"; } .mdi-logout-variant:before { content: "\F5FD"; } .mdi-looks:before { content: "\F344"; } .mdi-loupe:before { content: "\F345"; } .mdi-lumx:before { content: "\F346"; } .mdi-magnet:before { content: "\F347"; } .mdi-magnet-on:before { content: "\F348"; } .mdi-magnify:before { content: "\F349"; } .mdi-magnify-minus:before { content: "\F34A"; } .mdi-magnify-plus:before { content: "\F34B"; } .mdi-mail-ru:before { content: "\F34C"; } .mdi-map:before { content: "\F34D"; } .mdi-map-marker:before { content: "\F34E"; } .mdi-map-marker-circle:before { content: "\F34F"; } .mdi-map-marker-minus:before { content: "\F650"; } .mdi-map-marker-multiple:before { content: "\F350"; } .mdi-map-marker-off:before { content: "\F351"; } .mdi-map-marker-plus:before { content: "\F651"; } .mdi-map-marker-radius:before { content: "\F352"; } .mdi-margin:before { content: "\F353"; } .mdi-markdown:before { content: "\F354"; } .mdi-marker:before { content: "\F652"; } .mdi-marker-check:before { content: "\F355"; } .mdi-martini:before { content: "\F356"; } .mdi-material-ui:before { content: "\F357"; } .mdi-math-compass:before { content: "\F358"; } .mdi-matrix:before { content: "\F628"; } .mdi-maxcdn:before { content: "\F359"; } .mdi-medium:before { content: "\F35A"; } .mdi-memory:before { content: "\F35B"; } .mdi-menu:before { content: "\F35C"; } .mdi-menu-down:before { content: "\F35D"; } .mdi-menu-down-outline:before { content: "\F6B5"; } .mdi-menu-left:before { content: "\F35E"; } .mdi-menu-right:before { content: "\F35F"; } .mdi-menu-up:before { content: "\F360"; } .mdi-menu-up-outline:before { content: "\F6B6"; } .mdi-message:before { content: "\F361"; } .mdi-message-alert:before { content: "\F362"; } .mdi-message-bulleted:before { content: "\F6A1"; } .mdi-message-bulleted-off:before { content: "\F6A2"; } .mdi-message-draw:before { content: "\F363"; } .mdi-message-image:before { content: "\F364"; } .mdi-message-outline:before { content: "\F365"; } .mdi-message-plus:before { content: "\F653"; } .mdi-message-processing:before { content: "\F366"; } .mdi-message-reply:before { content: "\F367"; } .mdi-message-reply-text:before { content: "\F368"; } .mdi-message-text:before { content: "\F369"; } .mdi-message-text-outline:before { content: "\F36A"; } .mdi-message-video:before { content: "\F36B"; } .mdi-meteor:before { content: "\F629"; } .mdi-microphone:before { content: "\F36C"; } .mdi-microphone-off:before { content: "\F36D"; } .mdi-microphone-outline:before { content: "\F36E"; } .mdi-microphone-settings:before { content: "\F36F"; } .mdi-microphone-variant:before { content: "\F370"; } .mdi-microphone-variant-off:before { content: "\F371"; } .mdi-microscope:before { content: "\F654"; } .mdi-microsoft:before { content: "\F372"; } .mdi-minecraft:before { content: "\F373"; } .mdi-minus:before { content: "\F374"; } .mdi-minus-box:before { content: "\F375"; } .mdi-minus-circle:before { content: "\F376"; } .mdi-minus-circle-outline:before { content: "\F377"; } .mdi-minus-network:before { content: "\F378"; } .mdi-mixcloud:before { content: "\F62A"; } .mdi-monitor:before { content: "\F379"; } .mdi-monitor-multiple:before { content: "\F37A"; } .mdi-more:before { content: "\F37B"; } .mdi-motorbike:before { content: "\F37C"; } .mdi-mouse:before { content: "\F37D"; } .mdi-mouse-off:before { content: "\F37E"; } .mdi-mouse-variant:before { content: "\F37F"; } .mdi-mouse-variant-off:before { content: "\F380"; } .mdi-move-resize:before { content: "\F655"; } .mdi-move-resize-variant:before { content: "\F656"; } .mdi-movie:before { content: "\F381"; } .mdi-multiplication:before { content: "\F382"; } .mdi-multiplication-box:before { content: "\F383"; } .mdi-music-box:before { content: "\F384"; } .mdi-music-box-outline:before { content: "\F385"; } .mdi-music-circle:before { content: "\F386"; } .mdi-music-note:before { content: "\F387"; } .mdi-music-note-bluetooth:before { content: "\F5FE"; } .mdi-music-note-bluetooth-off:before { content: "\F5FF"; } .mdi-music-note-eighth:before { content: "\F388"; } .mdi-music-note-half:before { content: "\F389"; } .mdi-music-note-off:before { content: "\F38A"; } .mdi-music-note-quarter:before { content: "\F38B"; } .mdi-music-note-sixteenth:before { content: "\F38C"; } .mdi-music-note-whole:before { content: "\F38D"; } .mdi-nature:before { content: "\F38E"; } .mdi-nature-people:before { content: "\F38F"; } .mdi-navigation:before { content: "\F390"; } .mdi-near-me:before { content: "\F5CD"; } .mdi-needle:before { content: "\F391"; } .mdi-nest-protect:before { content: "\F392"; } .mdi-nest-thermostat:before { content: "\F393"; } .mdi-new-box:before { content: "\F394"; } .mdi-newspaper:before { content: "\F395"; } .mdi-nfc:before { content: "\F396"; } .mdi-nfc-tap:before { content: "\F397"; } .mdi-nfc-variant:before { content: "\F398"; } .mdi-nodejs:before { content: "\F399"; } .mdi-note:before { content: "\F39A"; } .mdi-note-multiple:before { content: "\F6B7"; } .mdi-note-multiple-outline:before { content: "\F6B8"; } .mdi-note-outline:before { content: "\F39B"; } .mdi-note-plus:before { content: "\F39C"; } .mdi-note-plus-outline:before { content: "\F39D"; } .mdi-note-text:before { content: "\F39E"; } .mdi-notification-clear-all:before { content: "\F39F"; } .mdi-nuke:before { content: "\F6A3"; } .mdi-numeric:before { content: "\F3A0"; } .mdi-numeric-0-box:before { content: "\F3A1"; } .mdi-numeric-0-box-multiple-outline:before { content: "\F3A2"; } .mdi-numeric-0-box-outline:before { content: "\F3A3"; } .mdi-numeric-1-box:before { content: "\F3A4"; } .mdi-numeric-1-box-multiple-outline:before { content: "\F3A5"; } .mdi-numeric-1-box-outline:before { content: "\F3A6"; } .mdi-numeric-2-box:before { content: "\F3A7"; } .mdi-numeric-2-box-multiple-outline:before { content: "\F3A8"; } .mdi-numeric-2-box-outline:before { content: "\F3A9"; } .mdi-numeric-3-box:before { content: "\F3AA"; } .mdi-numeric-3-box-multiple-outline:before { content: "\F3AB"; } .mdi-numeric-3-box-outline:before { content: "\F3AC"; } .mdi-numeric-4-box:before { content: "\F3AD"; } .mdi-numeric-4-box-multiple-outline:before { content: "\F3AE"; } .mdi-numeric-4-box-outline:before { content: "\F3AF"; } .mdi-numeric-5-box:before { content: "\F3B0"; } .mdi-numeric-5-box-multiple-outline:before { content: "\F3B1"; } .mdi-numeric-5-box-outline:before { content: "\F3B2"; } .mdi-numeric-6-box:before { content: "\F3B3"; } .mdi-numeric-6-box-multiple-outline:before { content: "\F3B4"; } .mdi-numeric-6-box-outline:before { content: "\F3B5"; } .mdi-numeric-7-box:before { content: "\F3B6"; } .mdi-numeric-7-box-multiple-outline:before { content: "\F3B7"; } .mdi-numeric-7-box-outline:before { content: "\F3B8"; } .mdi-numeric-8-box:before { content: "\F3B9"; } .mdi-numeric-8-box-multiple-outline:before { content: "\F3BA"; } .mdi-numeric-8-box-outline:before { content: "\F3BB"; } .mdi-numeric-9-box:before { content: "\F3BC"; } .mdi-numeric-9-box-multiple-outline:before { content: "\F3BD"; } .mdi-numeric-9-box-outline:before { content: "\F3BE"; } .mdi-numeric-9-plus-box:before { content: "\F3BF"; } .mdi-numeric-9-plus-box-multiple-outline:before { content: "\F3C0"; } .mdi-numeric-9-plus-box-outline:before { content: "\F3C1"; } .mdi-nutrition:before { content: "\F3C2"; } .mdi-oar:before { content: "\F67B"; } .mdi-octagon:before { content: "\F3C3"; } .mdi-octagon-outline:before { content: "\F3C4"; } .mdi-odnoklassniki:before { content: "\F3C5"; } .mdi-office:before { content: "\F3C6"; } .mdi-oil:before { content: "\F3C7"; } .mdi-oil-temperature:before { content: "\F3C8"; } .mdi-omega:before { content: "\F3C9"; } .mdi-onedrive:before { content: "\F3CA"; } .mdi-opacity:before { content: "\F5CC"; } .mdi-open-in-app:before { content: "\F3CB"; } .mdi-open-in-new:before { content: "\F3CC"; } .mdi-openid:before { content: "\F3CD"; } .mdi-opera:before { content: "\F3CE"; } .mdi-ornament:before { content: "\F3CF"; } .mdi-ornament-variant:before { content: "\F3D0"; } .mdi-owl:before { content: "\F3D2"; } .mdi-package:before { content: "\F3D3"; } .mdi-package-down:before { content: "\F3D4"; } .mdi-package-up:before { content: "\F3D5"; } .mdi-package-variant:before { content: "\F3D6"; } .mdi-package-variant-closed:before { content: "\F3D7"; } .mdi-page-first:before { content: "\F600"; } .mdi-page-last:before { content: "\F601"; } .mdi-palette:before { content: "\F3D8"; } .mdi-palette-advanced:before { content: "\F3D9"; } .mdi-panda:before { content: "\F3DA"; } .mdi-pandora:before { content: "\F3DB"; } .mdi-panorama:before { content: "\F3DC"; } .mdi-panorama-fisheye:before { content: "\F3DD"; } .mdi-panorama-horizontal:before { content: "\F3DE"; } .mdi-panorama-vertical:before { content: "\F3DF"; } .mdi-panorama-wide-angle:before { content: "\F3E0"; } .mdi-paper-cut-vertical:before { content: "\F3E1"; } .mdi-paperclip:before { content: "\F3E2"; } .mdi-parking:before { content: "\F3E3"; } .mdi-pause:before { content: "\F3E4"; } .mdi-pause-circle:before { content: "\F3E5"; } .mdi-pause-circle-outline:before { content: "\F3E6"; } .mdi-pause-octagon:before { content: "\F3E7"; } .mdi-pause-octagon-outline:before { content: "\F3E8"; } .mdi-paw:before { content: "\F3E9"; } .mdi-paw-off:before { content: "\F657"; } .mdi-pen:before { content: "\F3EA"; } .mdi-pencil:before { content: "\F3EB"; } .mdi-pencil-box:before { content: "\F3EC"; } .mdi-pencil-box-outline:before { content: "\F3ED"; } .mdi-pencil-lock:before { content: "\F3EE"; } .mdi-pencil-off:before { content: "\F3EF"; } .mdi-percent:before { content: "\F3F0"; } .mdi-pharmacy:before { content: "\F3F1"; } .mdi-phone:before { content: "\F3F2"; } .mdi-phone-bluetooth:before { content: "\F3F3"; } .mdi-phone-classic:before { content: "\F602"; } .mdi-phone-forward:before { content: "\F3F4"; } .mdi-phone-hangup:before { content: "\F3F5"; } .mdi-phone-in-talk:before { content: "\F3F6"; } .mdi-phone-incoming:before { content: "\F3F7"; } .mdi-phone-locked:before { content: "\F3F8"; } .mdi-phone-log:before { content: "\F3F9"; } .mdi-phone-minus:before { content: "\F658"; } .mdi-phone-missed:before { content: "\F3FA"; } .mdi-phone-outgoing:before { content: "\F3FB"; } .mdi-phone-paused:before { content: "\F3FC"; } .mdi-phone-plus:before { content: "\F659"; } .mdi-phone-settings:before { content: "\F3FD"; } .mdi-phone-voip:before { content: "\F3FE"; } .mdi-pi:before { content: "\F3FF"; } .mdi-pi-box:before { content: "\F400"; } .mdi-piano:before { content: "\F67C"; } .mdi-pig:before { content: "\F401"; } .mdi-pill:before { content: "\F402"; } .mdi-pin:before { content: "\F403"; } .mdi-pin-off:before { content: "\F404"; } .mdi-pine-tree:before { content: "\F405"; } .mdi-pine-tree-box:before { content: "\F406"; } .mdi-pinterest:before { content: "\F407"; } .mdi-pinterest-box:before { content: "\F408"; } .mdi-pizza:before { content: "\F409"; } .mdi-plane-shield:before { content: "\F6BA"; } .mdi-play:before { content: "\F40A"; } .mdi-play-box-outline:before { content: "\F40B"; } .mdi-play-circle:before { content: "\F40C"; } .mdi-play-circle-outline:before { content: "\F40D"; } .mdi-play-pause:before { content: "\F40E"; } .mdi-play-protected-content:before { content: "\F40F"; } .mdi-playlist-check:before { content: "\F5C7"; } .mdi-playlist-minus:before { content: "\F410"; } .mdi-playlist-play:before { content: "\F411"; } .mdi-playlist-plus:before { content: "\F412"; } .mdi-playlist-remove:before { content: "\F413"; } .mdi-playstation:before { content: "\F414"; } .mdi-plex:before { content: "\F6B9"; } .mdi-plus:before { content: "\F415"; } .mdi-plus-box:before { content: "\F416"; } .mdi-plus-circle:before { content: "\F417"; } .mdi-plus-circle-multiple-outline:before { content: "\F418"; } .mdi-plus-circle-outline:before { content: "\F419"; } .mdi-plus-network:before { content: "\F41A"; } .mdi-plus-one:before { content: "\F41B"; } .mdi-pocket:before { content: "\F41C"; } .mdi-pokeball:before { content: "\F41D"; } .mdi-polaroid:before { content: "\F41E"; } .mdi-poll:before { content: "\F41F"; } .mdi-poll-box:before { content: "\F420"; } .mdi-polymer:before { content: "\F421"; } .mdi-pool:before { content: "\F606"; } .mdi-popcorn:before { content: "\F422"; } .mdi-pot:before { content: "\F65A"; } .mdi-pot-mix:before { content: "\F65B"; } .mdi-pound:before { content: "\F423"; } .mdi-pound-box:before { content: "\F424"; } .mdi-power:before { content: "\F425"; } .mdi-power-plug:before { content: "\F6A4"; } .mdi-power-plug-off:before { content: "\F6A5"; } .mdi-power-settings:before { content: "\F426"; } .mdi-power-socket:before { content: "\F427"; } .mdi-presentation:before { content: "\F428"; } .mdi-presentation-play:before { content: "\F429"; } .mdi-printer:before { content: "\F42A"; } .mdi-printer-3d:before { content: "\F42B"; } .mdi-printer-alert:before { content: "\F42C"; } .mdi-priority-high:before { content: "\F603"; } .mdi-priority-low:before { content: "\F604"; } .mdi-professional-hexagon:before { content: "\F42D"; } .mdi-projector:before { content: "\F42E"; } .mdi-projector-screen:before { content: "\F42F"; } .mdi-publish:before { content: "\F6A6"; } .mdi-pulse:before { content: "\F430"; } .mdi-puzzle:before { content: "\F431"; } .mdi-qqchat:before { content: "\F605"; } .mdi-qrcode:before { content: "\F432"; } .mdi-qrcode-scan:before { content: "\F433"; } .mdi-quadcopter:before { content: "\F434"; } .mdi-quality-high:before { content: "\F435"; } .mdi-quicktime:before { content: "\F436"; } .mdi-radar:before { content: "\F437"; } .mdi-radiator:before { content: "\F438"; } .mdi-radio:before { content: "\F439"; } .mdi-radio-handheld:before { content: "\F43A"; } .mdi-radio-tower:before { content: "\F43B"; } .mdi-radioactive:before { content: "\F43C"; } .mdi-radiobox-blank:before { content: "\F43D"; } .mdi-radiobox-marked:before { content: "\F43E"; } .mdi-raspberrypi:before { content: "\F43F"; } .mdi-ray-end:before { content: "\F440"; } .mdi-ray-end-arrow:before { content: "\F441"; } .mdi-ray-start:before { content: "\F442"; } .mdi-ray-start-arrow:before { content: "\F443"; } .mdi-ray-start-end:before { content: "\F444"; } .mdi-ray-vertex:before { content: "\F445"; } .mdi-rdio:before { content: "\F446"; } .mdi-read:before { content: "\F447"; } .mdi-readability:before { content: "\F448"; } .mdi-receipt:before { content: "\F449"; } .mdi-record:before { content: "\F44A"; } .mdi-record-rec:before { content: "\F44B"; } .mdi-recycle:before { content: "\F44C"; } .mdi-reddit:before { content: "\F44D"; } .mdi-redo:before { content: "\F44E"; } .mdi-redo-variant:before { content: "\F44F"; } .mdi-refresh:before { content: "\F450"; } .mdi-regex:before { content: "\F451"; } .mdi-relative-scale:before { content: "\F452"; } .mdi-reload:before { content: "\F453"; } .mdi-remote:before { content: "\F454"; } .mdi-rename-box:before { content: "\F455"; } .mdi-reorder-horizontal:before { content: "\F687"; } .mdi-reorder-vertical:before { content: "\F688"; } .mdi-repeat:before { content: "\F456"; } .mdi-repeat-off:before { content: "\F457"; } .mdi-repeat-once:before { content: "\F458"; } .mdi-replay:before { content: "\F459"; } .mdi-reply:before { content: "\F45A"; } .mdi-reply-all:before { content: "\F45B"; } .mdi-reproduction:before { content: "\F45C"; } .mdi-resize-bottom-right:before { content: "\F45D"; } .mdi-responsive:before { content: "\F45E"; } .mdi-restore:before { content: "\F6A7"; } .mdi-rewind:before { content: "\F45F"; } .mdi-ribbon:before { content: "\F460"; } .mdi-road:before { content: "\F461"; } .mdi-road-variant:before { content: "\F462"; } .mdi-robot:before { content: "\F6A8"; } .mdi-rocket:before { content: "\F463"; } .mdi-rotate-3d:before { content: "\F464"; } .mdi-rotate-90:before { content: "\F6A9"; } .mdi-rotate-left:before { content: "\F465"; } .mdi-rotate-left-variant:before { content: "\F466"; } .mdi-rotate-right:before { content: "\F467"; } .mdi-rotate-right-variant:before { content: "\F468"; } .mdi-rounded-corner:before { content: "\F607"; } .mdi-router-wireless:before { content: "\F469"; } .mdi-routes:before { content: "\F46A"; } .mdi-rowing:before { content: "\F608"; } .mdi-rss:before { content: "\F46B"; } .mdi-rss-box:before { content: "\F46C"; } .mdi-ruler:before { content: "\F46D"; } .mdi-run:before { content: "\F46E"; } .mdi-sale:before { content: "\F46F"; } .mdi-satellite:before { content: "\F470"; } .mdi-satellite-variant:before { content: "\F471"; } .mdi-saxophone:before { content: "\F609"; } .mdi-scale:before { content: "\F472"; } .mdi-scale-balance:before { content: "\F5D1"; } .mdi-scale-bathroom:before { content: "\F473"; } .mdi-scanner:before { content: "\F6AA"; } .mdi-school:before { content: "\F474"; } .mdi-screen-rotation:before { content: "\F475"; } .mdi-screen-rotation-lock:before { content: "\F476"; } .mdi-screwdriver:before { content: "\F477"; } .mdi-script:before { content: "\F478"; } .mdi-sd:before { content: "\F479"; } .mdi-seal:before { content: "\F47A"; } .mdi-seat-flat:before { content: "\F47B"; } .mdi-seat-flat-angled:before { content: "\F47C"; } .mdi-seat-individual-suite:before { content: "\F47D"; } .mdi-seat-legroom-extra:before { content: "\F47E"; } .mdi-seat-legroom-normal:before { content: "\F47F"; } .mdi-seat-legroom-reduced:before { content: "\F480"; } .mdi-seat-recline-extra:before { content: "\F481"; } .mdi-seat-recline-normal:before { content: "\F482"; } .mdi-security:before { content: "\F483"; } .mdi-security-home:before { content: "\F689"; } .mdi-security-network:before { content: "\F484"; } .mdi-select:before { content: "\F485"; } .mdi-select-all:before { content: "\F486"; } .mdi-select-inverse:before { content: "\F487"; } .mdi-select-off:before { content: "\F488"; } .mdi-selection:before { content: "\F489"; } .mdi-send:before { content: "\F48A"; } .mdi-serial-port:before { content: "\F65C"; } .mdi-server:before { content: "\F48B"; } .mdi-server-minus:before { content: "\F48C"; } .mdi-server-network:before { content: "\F48D"; } .mdi-server-network-off:before { content: "\F48E"; } .mdi-server-off:before { content: "\F48F"; } .mdi-server-plus:before { content: "\F490"; } .mdi-server-remove:before { content: "\F491"; } .mdi-server-security:before { content: "\F492"; } .mdi-settings:before { content: "\F493"; } .mdi-settings-box:before { content: "\F494"; } .mdi-shape-circle-plus:before { content: "\F65D"; } .mdi-shape-plus:before { content: "\F495"; } .mdi-shape-polygon-plus:before { content: "\F65E"; } .mdi-shape-rectangle-plus:before { content: "\F65F"; } .mdi-shape-square-plus:before { content: "\F660"; } .mdi-share:before { content: "\F496"; } .mdi-share-variant:before { content: "\F497"; } .mdi-shield:before { content: "\F498"; } .mdi-shield-outline:before { content: "\F499"; } .mdi-shopping:before { content: "\F49A"; } .mdi-shopping-music:before { content: "\F49B"; } .mdi-shredder:before { content: "\F49C"; } .mdi-shuffle:before { content: "\F49D"; } .mdi-shuffle-disabled:before { content: "\F49E"; } .mdi-shuffle-variant:before { content: "\F49F"; } .mdi-sigma:before { content: "\F4A0"; } .mdi-sigma-lower:before { content: "\F62B"; } .mdi-sign-caution:before { content: "\F4A1"; } .mdi-signal:before { content: "\F4A2"; } .mdi-signal-variant:before { content: "\F60A"; } .mdi-silverware:before { content: "\F4A3"; } .mdi-silverware-fork:before { content: "\F4A4"; } .mdi-silverware-spoon:before { content: "\F4A5"; } .mdi-silverware-variant:before { content: "\F4A6"; } .mdi-sim:before { content: "\F4A7"; } .mdi-sim-alert:before { content: "\F4A8"; } .mdi-sim-off:before { content: "\F4A9"; } .mdi-sitemap:before { content: "\F4AA"; } .mdi-skip-backward:before { content: "\F4AB"; } .mdi-skip-forward:before { content: "\F4AC"; } .mdi-skip-next:before { content: "\F4AD"; } .mdi-skip-next-circle:before { content: "\F661"; } .mdi-skip-next-circle-outline:before { content: "\F662"; } .mdi-skip-previous:before { content: "\F4AE"; } .mdi-skip-previous-circle:before { content: "\F663"; } .mdi-skip-previous-circle-outline:before { content: "\F664"; } .mdi-skull:before { content: "\F68B"; } .mdi-skype:before { content: "\F4AF"; } .mdi-skype-business:before { content: "\F4B0"; } .mdi-slack:before { content: "\F4B1"; } .mdi-sleep:before { content: "\F4B2"; } .mdi-sleep-off:before { content: "\F4B3"; } .mdi-smoking:before { content: "\F4B4"; } .mdi-smoking-off:before { content: "\F4B5"; } .mdi-snapchat:before { content: "\F4B6"; } .mdi-snowman:before { content: "\F4B7"; } .mdi-soccer:before { content: "\F4B8"; } .mdi-sofa:before { content: "\F4B9"; } .mdi-solid:before { content: "\F68C"; } .mdi-sort:before { content: "\F4BA"; } .mdi-sort-alphabetical:before { content: "\F4BB"; } .mdi-sort-ascending:before { content: "\F4BC"; } .mdi-sort-descending:before { content: "\F4BD"; } .mdi-sort-numeric:before { content: "\F4BE"; } .mdi-sort-variant:before { content: "\F4BF"; } .mdi-soundcloud:before { content: "\F4C0"; } .mdi-source-branch:before { content: "\F62C"; } .mdi-source-fork:before { content: "\F4C1"; } .mdi-source-merge:before { content: "\F62D"; } .mdi-source-pull:before { content: "\F4C2"; } .mdi-speaker:before { content: "\F4C3"; } .mdi-speaker-off:before { content: "\F4C4"; } .mdi-speedometer:before { content: "\F4C5"; } .mdi-spellcheck:before { content: "\F4C6"; } .mdi-spotify:before { content: "\F4C7"; } .mdi-spotlight:before { content: "\F4C8"; } .mdi-spotlight-beam:before { content: "\F4C9"; } .mdi-spray:before { content: "\F665"; } .mdi-square-inc:before { content: "\F4CA"; } .mdi-square-inc-cash:before { content: "\F4CB"; } .mdi-stackexchange:before { content: "\F60B"; } .mdi-stackoverflow:before { content: "\F4CC"; } .mdi-stairs:before { content: "\F4CD"; } .mdi-star:before { content: "\F4CE"; } .mdi-star-circle:before { content: "\F4CF"; } .mdi-star-half:before { content: "\F4D0"; } .mdi-star-off:before { content: "\F4D1"; } .mdi-star-outline:before { content: "\F4D2"; } .mdi-steam:before { content: "\F4D3"; } .mdi-steering:before { content: "\F4D4"; } .mdi-step-backward:before { content: "\F4D5"; } .mdi-step-backward-2:before { content: "\F4D6"; } .mdi-step-forward:before { content: "\F4D7"; } .mdi-step-forward-2:before { content: "\F4D8"; } .mdi-stethoscope:before { content: "\F4D9"; } .mdi-sticker:before { content: "\F5D0"; } .mdi-stocking:before { content: "\F4DA"; } .mdi-stop:before { content: "\F4DB"; } .mdi-stop-circle:before { content: "\F666"; } .mdi-stop-circle-outline:before { content: "\F667"; } .mdi-store:before { content: "\F4DC"; } .mdi-store-24-hour:before { content: "\F4DD"; } .mdi-stove:before { content: "\F4DE"; } .mdi-subdirectory-arrow-left:before { content: "\F60C"; } .mdi-subdirectory-arrow-right:before { content: "\F60D"; } .mdi-subway:before { content: "\F6AB"; } .mdi-subway-variant:before { content: "\F4DF"; } .mdi-sunglasses:before { content: "\F4E0"; } .mdi-surround-sound:before { content: "\F5C5"; } .mdi-swap-horizontal:before { content: "\F4E1"; } .mdi-swap-vertical:before { content: "\F4E2"; } .mdi-swim:before { content: "\F4E3"; } .mdi-switch:before { content: "\F4E4"; } .mdi-sword:before { content: "\F4E5"; } .mdi-sync:before { content: "\F4E6"; } .mdi-sync-alert:before { content: "\F4E7"; } .mdi-sync-off:before { content: "\F4E8"; } .mdi-tab:before { content: "\F4E9"; } .mdi-tab-unselected:before { content: "\F4EA"; } .mdi-table:before { content: "\F4EB"; } .mdi-table-column-plus-after:before { content: "\F4EC"; } .mdi-table-column-plus-before:before { content: "\F4ED"; } .mdi-table-column-remove:before { content: "\F4EE"; } .mdi-table-column-width:before { content: "\F4EF"; } .mdi-table-edit:before { content: "\F4F0"; } .mdi-table-large:before { content: "\F4F1"; } .mdi-table-row-height:before { content: "\F4F2"; } .mdi-table-row-plus-after:before { content: "\F4F3"; } .mdi-table-row-plus-before:before { content: "\F4F4"; } .mdi-table-row-remove:before { content: "\F4F5"; } .mdi-tablet:before { content: "\F4F6"; } .mdi-tablet-android:before { content: "\F4F7"; } .mdi-tablet-ipad:before { content: "\F4F8"; } .mdi-tag:before { content: "\F4F9"; } .mdi-tag-faces:before { content: "\F4FA"; } .mdi-tag-heart:before { content: "\F68A"; } .mdi-tag-multiple:before { content: "\F4FB"; } .mdi-tag-outline:before { content: "\F4FC"; } .mdi-tag-text-outline:before { content: "\F4FD"; } .mdi-target:before { content: "\F4FE"; } .mdi-taxi:before { content: "\F4FF"; } .mdi-teamviewer:before { content: "\F500"; } .mdi-telegram:before { content: "\F501"; } .mdi-television:before { content: "\F502"; } .mdi-television-guide:before { content: "\F503"; } .mdi-temperature-celsius:before { content: "\F504"; } .mdi-temperature-fahrenheit:before { content: "\F505"; } .mdi-temperature-kelvin:before { content: "\F506"; } .mdi-tennis:before { content: "\F507"; } .mdi-tent:before { content: "\F508"; } .mdi-terrain:before { content: "\F509"; } .mdi-test-tube:before { content: "\F668"; } .mdi-text-shadow:before { content: "\F669"; } .mdi-text-to-speech:before { content: "\F50A"; } .mdi-text-to-speech-off:before { content: "\F50B"; } .mdi-textbox:before { content: "\F60E"; } .mdi-texture:before { content: "\F50C"; } .mdi-theater:before { content: "\F50D"; } .mdi-theme-light-dark:before { content: "\F50E"; } .mdi-thermometer:before { content: "\F50F"; } .mdi-thermometer-lines:before { content: "\F510"; } .mdi-thumb-down:before { content: "\F511"; } .mdi-thumb-down-outline:before { content: "\F512"; } .mdi-thumb-up:before { content: "\F513"; } .mdi-thumb-up-outline:before { content: "\F514"; } .mdi-thumbs-up-down:before { content: "\F515"; } .mdi-ticket:before { content: "\F516"; } .mdi-ticket-account:before { content: "\F517"; } .mdi-ticket-confirmation:before { content: "\F518"; } .mdi-tie:before { content: "\F519"; } .mdi-timelapse:before { content: "\F51A"; } .mdi-timer:before { content: "\F51B"; } .mdi-timer-10:before { content: "\F51C"; } .mdi-timer-3:before { content: "\F51D"; } .mdi-timer-off:before { content: "\F51E"; } .mdi-timer-sand:before { content: "\F51F"; } .mdi-timer-sand-empty:before { content: "\F6AC"; } .mdi-timetable:before { content: "\F520"; } .mdi-toggle-switch:before { content: "\F521"; } .mdi-toggle-switch-off:before { content: "\F522"; } .mdi-tooltip:before { content: "\F523"; } .mdi-tooltip-edit:before { content: "\F524"; } .mdi-tooltip-image:before { content: "\F525"; } .mdi-tooltip-outline:before { content: "\F526"; } .mdi-tooltip-outline-plus:before { content: "\F527"; } .mdi-tooltip-text:before { content: "\F528"; } .mdi-tooth:before { content: "\F529"; } .mdi-tor:before { content: "\F52A"; } .mdi-tower-beach:before { content: "\F680"; } .mdi-tower-fire:before { content: "\F681"; } .mdi-traffic-light:before { content: "\F52B"; } .mdi-train:before { content: "\F52C"; } .mdi-tram:before { content: "\F52D"; } .mdi-transcribe:before { content: "\F52E"; } .mdi-transcribe-close:before { content: "\F52F"; } .mdi-transfer:before { content: "\F530"; } .mdi-transit-transfer:before { content: "\F6AD"; } .mdi-translate:before { content: "\F5CA"; } .mdi-tree:before { content: "\F531"; } .mdi-trello:before { content: "\F532"; } .mdi-trending-down:before { content: "\F533"; } .mdi-trending-neutral:before { content: "\F534"; } .mdi-trending-up:before { content: "\F535"; } .mdi-triangle:before { content: "\F536"; } .mdi-triangle-outline:before { content: "\F537"; } .mdi-trophy:before { content: "\F538"; } .mdi-trophy-award:before { content: "\F539"; } .mdi-trophy-outline:before { content: "\F53A"; } .mdi-trophy-variant:before { content: "\F53B"; } .mdi-trophy-variant-outline:before { content: "\F53C"; } .mdi-truck:before { content: "\F53D"; } .mdi-truck-delivery:before { content: "\F53E"; } .mdi-tshirt-crew:before { content: "\F53F"; } .mdi-tshirt-v:before { content: "\F540"; } .mdi-tumblr:before { content: "\F541"; } .mdi-tumblr-reblog:before { content: "\F542"; } .mdi-tune:before { content: "\F62E"; } .mdi-tune-vertical:before { content: "\F66A"; } .mdi-twitch:before { content: "\F543"; } .mdi-twitter:before { content: "\F544"; } .mdi-twitter-box:before { content: "\F545"; } .mdi-twitter-circle:before { content: "\F546"; } .mdi-twitter-retweet:before { content: "\F547"; } .mdi-ubuntu:before { content: "\F548"; } .mdi-umbraco:before { content: "\F549"; } .mdi-umbrella:before { content: "\F54A"; } .mdi-umbrella-outline:before { content: "\F54B"; } .mdi-undo:before { content: "\F54C"; } .mdi-undo-variant:before { content: "\F54D"; } .mdi-unfold-less:before { content: "\F54E"; } .mdi-unfold-more:before { content: "\F54F"; } .mdi-ungroup:before { content: "\F550"; } .mdi-unity:before { content: "\F6AE"; } .mdi-untappd:before { content: "\F551"; } .mdi-update:before { content: "\F6AF"; } .mdi-upload:before { content: "\F552"; } .mdi-usb:before { content: "\F553"; } .mdi-vector-arrange-above:before { content: "\F554"; } .mdi-vector-arrange-below:before { content: "\F555"; } .mdi-vector-circle:before { content: "\F556"; } .mdi-vector-circle-variant:before { content: "\F557"; } .mdi-vector-combine:before { content: "\F558"; } .mdi-vector-curve:before { content: "\F559"; } .mdi-vector-difference:before { content: "\F55A"; } .mdi-vector-difference-ab:before { content: "\F55B"; } .mdi-vector-difference-ba:before { content: "\F55C"; } .mdi-vector-intersection:before { content: "\F55D"; } .mdi-vector-line:before { content: "\F55E"; } .mdi-vector-point:before { content: "\F55F"; } .mdi-vector-polygon:before { content: "\F560"; } .mdi-vector-polyline:before { content: "\F561"; } .mdi-vector-rectangle:before { content: "\F5C6"; } .mdi-vector-selection:before { content: "\F562"; } .mdi-vector-square:before { content: "\F001"; } .mdi-vector-triangle:before { content: "\F563"; } .mdi-vector-union:before { content: "\F564"; } .mdi-verified:before { content: "\F565"; } .mdi-vibrate:before { content: "\F566"; } .mdi-video:before { content: "\F567"; } .mdi-video-off:before { content: "\F568"; } .mdi-video-switch:before { content: "\F569"; } .mdi-view-agenda:before { content: "\F56A"; } .mdi-view-array:before { content: "\F56B"; } .mdi-view-carousel:before { content: "\F56C"; } .mdi-view-column:before { content: "\F56D"; } .mdi-view-dashboard:before { content: "\F56E"; } .mdi-view-day:before { content: "\F56F"; } .mdi-view-grid:before { content: "\F570"; } .mdi-view-headline:before { content: "\F571"; } .mdi-view-list:before { content: "\F572"; } .mdi-view-module:before { content: "\F573"; } .mdi-view-quilt:before { content: "\F574"; } .mdi-view-stream:before { content: "\F575"; } .mdi-view-week:before { content: "\F576"; } .mdi-vimeo:before { content: "\F577"; } .mdi-vine:before { content: "\F578"; } .mdi-violin:before { content: "\F60F"; } .mdi-visualstudio:before { content: "\F610"; } .mdi-vk:before { content: "\F579"; } .mdi-vk-box:before { content: "\F57A"; } .mdi-vk-circle:before { content: "\F57B"; } .mdi-vlc:before { content: "\F57C"; } .mdi-voice:before { content: "\F5CB"; } .mdi-voicemail:before { content: "\F57D"; } .mdi-volume-high:before { content: "\F57E"; } .mdi-volume-low:before { content: "\F57F"; } .mdi-volume-medium:before { content: "\F580"; } .mdi-volume-off:before { content: "\F581"; } .mdi-vpn:before { content: "\F582"; } .mdi-walk:before { content: "\F583"; } .mdi-wallet:before { content: "\F584"; } .mdi-wallet-giftcard:before { content: "\F585"; } .mdi-wallet-membership:before { content: "\F586"; } .mdi-wallet-travel:before { content: "\F587"; } .mdi-wan:before { content: "\F588"; } .mdi-watch:before { content: "\F589"; } .mdi-watch-export:before { content: "\F58A"; } .mdi-watch-import:before { content: "\F58B"; } .mdi-watch-vibrate:before { content: "\F6B0"; } .mdi-water:before { content: "\F58C"; } .mdi-water-off:before { content: "\F58D"; } .mdi-water-percent:before { content: "\F58E"; } .mdi-water-pump:before { content: "\F58F"; } .mdi-watermark:before { content: "\F612"; } .mdi-weather-cloudy:before { content: "\F590"; } .mdi-weather-fog:before { content: "\F591"; } .mdi-weather-hail:before { content: "\F592"; } .mdi-weather-lightning:before { content: "\F593"; } .mdi-weather-lightning-rainy:before { content: "\F67D"; } .mdi-weather-night:before { content: "\F594"; } .mdi-weather-partlycloudy:before { content: "\F595"; } .mdi-weather-pouring:before { content: "\F596"; } .mdi-weather-rainy:before { content: "\F597"; } .mdi-weather-snowy:before { content: "\F598"; } .mdi-weather-snowy-rainy:before { content: "\F67E"; } .mdi-weather-sunny:before { content: "\F599"; } .mdi-weather-sunset:before { content: "\F59A"; } .mdi-weather-sunset-down:before { content: "\F59B"; } .mdi-weather-sunset-up:before { content: "\F59C"; } .mdi-weather-windy:before { content: "\F59D"; } .mdi-weather-windy-variant:before { content: "\F59E"; } .mdi-web:before { content: "\F59F"; } .mdi-webcam:before { content: "\F5A0"; } .mdi-webhook:before { content: "\F62F"; } .mdi-wechat:before { content: "\F611"; } .mdi-weight:before { content: "\F5A1"; } .mdi-weight-kilogram:before { content: "\F5A2"; } .mdi-whatsapp:before { content: "\F5A3"; } .mdi-wheelchair-accessibility:before { content: "\F5A4"; } .mdi-white-balance-auto:before { content: "\F5A5"; } .mdi-white-balance-incandescent:before { content: "\F5A6"; } .mdi-white-balance-iridescent:before { content: "\F5A7"; } .mdi-white-balance-sunny:before { content: "\F5A8"; } .mdi-wifi:before { content: "\F5A9"; } .mdi-wifi-off:before { content: "\F5AA"; } .mdi-wii:before { content: "\F5AB"; } .mdi-wikipedia:before { content: "\F5AC"; } .mdi-window-close:before { content: "\F5AD"; } .mdi-window-closed:before { content: "\F5AE"; } .mdi-window-maximize:before { content: "\F5AF"; } .mdi-window-minimize:before { content: "\F5B0"; } .mdi-window-open:before { content: "\F5B1"; } .mdi-window-restore:before { content: "\F5B2"; } .mdi-windows:before { content: "\F5B3"; } .mdi-wordpress:before { content: "\F5B4"; } .mdi-worker:before { content: "\F5B5"; } .mdi-wrap:before { content: "\F5B6"; } .mdi-wrench:before { content: "\F5B7"; } .mdi-wunderlist:before { content: "\F5B8"; } .mdi-xaml:before { content: "\F673"; } .mdi-xbox:before { content: "\F5B9"; } .mdi-xbox-controller:before { content: "\F5BA"; } .mdi-xbox-controller-off:before { content: "\F5BB"; } .mdi-xda:before { content: "\F5BC"; } .mdi-xing:before { content: "\F5BD"; } .mdi-xing-box:before { content: "\F5BE"; } .mdi-xing-circle:before { content: "\F5BF"; } .mdi-xml:before { content: "\F5C0"; } .mdi-yeast:before { content: "\F5C1"; } .mdi-yelp:before { content: "\F5C2"; } .mdi-yin-yang:before { content: "\F67F"; } .mdi-youtube-play:before { content: "\F5C3"; } .mdi-zip-box:before { content: "\F5C4"; } .mdi-blank:before { content: "\F68C"; visibility: hidden; } .mdi-set.mdi-18px, .mdi.mdi-18px:before { font-size: 18px; } .mdi-set.mdi-24px, .mdi.mdi-24px:before { font-size: 24px; } .mdi-set.mdi-36px, .mdi.mdi-36px:before { font-size: 36px; } .mdi-set.mdi-48px, .mdi.mdi-48px:before { font-size: 48px; } .mdi-dark { color: rgba(0, 0, 0, 0.54); } .mdi-dark.mdi-inactive { color: rgba(0, 0, 0, 0.26); } .mdi-light { color: white; } .mdi-light.mdi-inactive { color: rgba(255, 255, 255, 0.3); } .mdi-rotate-45 { -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } .mdi-rotate-90 { -webkit-transform: rotate(90deg); -ms-transform: rotate(90deg); transform: rotate(90deg); } .mdi-rotate-135 { -webkit-transform: rotate(135deg); -ms-transform: rotate(135deg); transform: rotate(135deg); } .mdi-rotate-180 { -webkit-transform: rotate(180deg); -ms-transform: rotate(180deg); transform: rotate(180deg); } .mdi-rotate-225 { -webkit-transform: rotate(225deg); -ms-transform: rotate(225deg); transform: rotate(225deg); } .mdi-rotate-270 { -webkit-transform: rotate(270deg); -ms-transform: rotate(270deg); transform: rotate(270deg); } .mdi-rotate-315 { -webkit-transform: rotate(315deg); -ms-transform: rotate(315deg); transform: rotate(315deg); } .mdi-flip-horizontal { -webkit-transform: scaleX(-1); transform: scaleX(-1); filter: FlipH; -ms-filter: "FlipH"; } .mdi-flip-vertical { -webkit-transform: scaleY(-1); transform: scaleY(-1); filter: FlipV; -ms-filter: "FlipV"; } /*# sourceMappingURL=materialdesignicons.css.map */ .smt:before { display: inline-block; font-family: "smticon"; font-style: normal; font-weight: normal; font-variant: normal; line-height: 1; text-decoration: inherit; text-rendering: optimizeLegibility; text-transform: none; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; font-smoothing: antialiased; } .arrows:before { content: "\f100"; } .arrows-1:before { content: "\f101"; } .arrows-2:before { content: "\f102"; } .arrows-3:before { content: "\f103"; } .arrows-4:before { content: "\f104"; } .arrows-5:before { content: "\f105"; } .back:before { content: "\f106"; } .buildings:before { content: "\f107"; } .clock:before { content: "\f108"; } .compass:before { content: "\f109"; } .delete:before { content: "\f10a"; } .development:before { content: "\f10b"; } .down-arrow:before { content: "\f10c"; } .draw:before { content: "\f10d"; } .interface:before { content: "\f10e"; } .interface-1:before { content: "\f10f"; } .internet:before { content: "\f110"; } .laptop:before { content: "\f111"; } .layout:before { content: "\f112"; } .location-pin:before { content: "\f113"; } .mouse:before { content: "\f114"; } .multimedia:before { content: "\f115"; } .multimedia-1:before { content: "\f116"; } .multimedia-2:before { content: "\f117"; } .multimedia-3:before { content: "\f118"; } .multimedia-4:before { content: "\f119"; } .multimedia-5:before { content: "\f11a"; } .next:before { content: "\f11b"; } .notification:before { content: "\f11c"; } .profile:before { content: "\f11d"; } .search:before { content: "\f11e"; } .shapes:before { content: "\f11f"; } .signs:before { content: "\f120"; } .signs-1:before { content: "\f121"; } .technology:before { content: "\f122"; } .technology-1:before { content: "\f123"; } .thinking:before { content: "\f124"; } .transport:before { content: "\f125"; } .web:before { content: "\f126"; } .world-wide-web:before { content: "\f127"; } /** div { font-size: 16px; line-height: calculate-line-height( 16px, 768px ); // 1.6631189606 margin: 0 auto; width: 768px; } */ /* select libs --------------- */ /* select */ .select2-container { box-sizing: border-box; display: inline-block; margin: 0; position: relative; vertical-align: middle; } .select2-container .select2-selection--single { box-sizing: border-box; cursor: pointer; display: block; height: 28px; user-select: none; -webkit-user-select: none; } .select2-container .select2-selection--single .select2-selection__rendered { display: block; padding-left: 8px; padding-right: 20px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .select2-container .select2-selection--single .select2-selection__clear { position: relative; } .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered { padding-right: 8px; padding-left: 20px; } .select2-container .select2-selection--multiple { box-sizing: border-box; cursor: pointer; display: block; min-height: 32px; user-select: none; -webkit-user-select: none; } .select2-container .select2-selection--multiple .select2-selection__rendered { display: inline-block; overflow: hidden; padding-left: 8px; text-overflow: ellipsis; white-space: nowrap; } .select2-container .select2-search--inline { float: left; } .select2-container .select2-search--inline .select2-search__field { box-sizing: border-box; border: none; font-size: 100%; margin-top: 5px; padding: 0; } .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button { -webkit-appearance: none; } .select2-dropdown { background-color: white; border: 1px solid #aaa; border-radius: 4px; box-sizing: border-box; display: block; position: absolute; left: -100000px; width: 100%; z-index: 1051; } .select2-results { display: block; } .select2-results__options { list-style: none; margin: 0; padding: 0; } .select2-results__option { padding: 6px; user-select: none; -webkit-user-select: none; } .select2-results__option[aria-selected] { cursor: pointer; } .select2-container--open .select2-dropdown { left: 0; } .select2-container--open .select2-dropdown--above { border-bottom: none; border-bottom-left-radius: 0; border-bottom-right-radius: 0; } .select2-container--open .select2-dropdown--below { border-top: none; border-top-left-radius: 0; border-top-right-radius: 0; } .select2-search--dropdown { display: block; padding: 4px; } .select2-search--dropdown .select2-search__field { padding: 4px; width: 100%; box-sizing: border-box; } .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button { -webkit-appearance: none; } .select2-search--dropdown.select2-search--hide { display: none; } .select2-close-mask { border: 0; margin: 0; padding: 0; display: block; position: fixed; left: 0; top: 0; min-height: 100%; min-width: 100%; height: auto; width: auto; opacity: 0; z-index: 99; background-color: #fff; filter: alpha(opacity=0); } .select2-hidden-accessible { border: 0 !important; clip: rect(0 0 0 0) !important; height: 1px !important; margin: -1px !important; overflow: hidden !important; padding: 0 !important; position: absolute !important; width: 1px !important; } .select2-container--default .select2-selection--single { background-color: #fff; border: 1px solid #aaa; border-radius: 4px; } .select2-container--default .select2-selection--single .select2-selection__rendered { color: #444; line-height: 28px; } .select2-container--default .select2-selection--single .select2-selection__clear { cursor: pointer; float: right; font-weight: bold; } .select2-container--default .select2-selection--single .select2-selection__placeholder { color: #999; } .select2-container--default .select2-selection--single .select2-selection__arrow { height: 26px; position: absolute; top: 1px; right: 1px; width: 20px; } .select2-container--default .select2-selection--single .select2-selection__arrow b { border-color: #888 transparent transparent transparent; border-style: solid; border-width: 5px 4px 0 4px; height: 0; left: 50%; margin-left: -4px; margin-top: -2px; position: absolute; top: 50%; width: 0; } .select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear { float: left; } .select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow { left: 1px; right: auto; } .select2-container--default.select2-container--disabled .select2-selection--single { background-color: #eee; cursor: default; } .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear { display: none; } .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b { border-color: transparent transparent #888 transparent; border-width: 0 4px 5px 4px; } .select2-container--default .select2-selection--multiple { background-color: white; border: 1px solid #aaa; border-radius: 4px; cursor: text; } .select2-container--default .select2-selection--multiple .select2-selection__rendered { box-sizing: border-box; list-style: none; margin: 0; padding: 0 5px; width: 100%; } .select2-container--default .select2-selection--multiple .select2-selection__placeholder { color: #999; margin-top: 5px; float: left; } .select2-container--default .select2-selection--multiple .select2-selection__clear { cursor: pointer; float: right; font-weight: bold; margin-top: 5px; margin-right: 10px; } .select2-container--default .select2-selection--multiple .select2-selection__choice { background-color: #e4e4e4; border: 1px solid #aaa; border-radius: 4px; cursor: default; float: left; margin-right: 5px; margin-top: 5px; padding: 0 5px; } .select2-container--default .select2-selection--multiple .select2-selection__choice__remove { color: #999; cursor: pointer; display: inline-block; font-weight: bold; margin-right: 2px; } .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover { color: #333; } .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline { float: right; } .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice { margin-left: 5px; margin-right: auto; } .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove { margin-left: 2px; margin-right: auto; } .select2-container--default.select2-container--focus .select2-selection--multiple { border: solid black 1px; outline: 0; } .select2-container--default.select2-container--disabled .select2-selection--multiple { background-color: #eee; cursor: default; } .select2-container--default.select2-container--disabled .select2-selection__choice__remove { display: none; } .select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple { border-top-left-radius: 0; border-top-right-radius: 0; } .select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple { border-bottom-left-radius: 0; border-bottom-right-radius: 0; } .select2-container--default .select2-search--dropdown .select2-search__field { border: 1px solid #aaa; } .select2-container--default .select2-search--inline .select2-search__field { background: transparent; border: none; outline: 0; box-shadow: none; -webkit-appearance: textfield; } .select2-container--default .select2-results > .select2-results__options { max-height: 200px; overflow-y: auto; } .select2-container--default .select2-results__option[role=group] { padding: 0; } .select2-container--default .select2-results__option[aria-disabled=true] { color: #999; } .select2-container--default .select2-results__option[aria-selected=true] { background-color: #ddd; } .select2-container--default .select2-results__option .select2-results__option { padding-left: 1em; } .select2-container--default .select2-results__option .select2-results__option .select2-results__group { padding-left: 0; } .select2-container--default .select2-results__option .select2-results__option .select2-results__option { margin-left: -1em; padding-left: 2em; } .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option { margin-left: -2em; padding-left: 3em; } .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { margin-left: -3em; padding-left: 4em; } .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { margin-left: -4em; padding-left: 5em; } .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { margin-left: -5em; padding-left: 6em; } .select2-container--default .select2-results__option--highlighted[aria-selected] { background-color: #5897fb; color: white; } .select2-container--default .select2-results__group { cursor: default; display: block; padding: 6px; } .select2-container--classic .select2-selection--single { background-color: #f7f7f7; border: 1px solid #aaa; border-radius: 4px; outline: 0; background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%); background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%); background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); } .select2-container--classic .select2-selection--single:focus { border: 1px solid #5897fb; } .select2-container--classic .select2-selection--single .select2-selection__rendered { color: #444; line-height: 28px; } .select2-container--classic .select2-selection--single .select2-selection__clear { cursor: pointer; float: right; font-weight: bold; margin-right: 10px; } .select2-container--classic .select2-selection--single .select2-selection__placeholder { color: #999; } .select2-container--classic .select2-selection--single .select2-selection__arrow { background-color: #ddd; border: none; border-left: 1px solid #aaa; border-top-right-radius: 4px; border-bottom-right-radius: 4px; height: 26px; position: absolute; top: 1px; right: 1px; width: 20px; background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%); background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%); background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); } .select2-container--classic .select2-selection--single .select2-selection__arrow b { border-color: #888 transparent transparent transparent; border-style: solid; border-width: 5px 4px 0 4px; height: 0; left: 50%; margin-left: -4px; margin-top: -2px; position: absolute; top: 50%; width: 0; } .select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear { float: left; } .select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow { border: none; border-right: 1px solid #aaa; border-radius: 0; border-top-left-radius: 4px; border-bottom-left-radius: 4px; left: 1px; right: auto; } .select2-container--classic.select2-container--open .select2-selection--single { border: 1px solid #5897fb; } .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow { background: transparent; border: none; } .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b { border-color: transparent transparent #888 transparent; border-width: 0 4px 5px 4px; } .select2-container--classic.select2-container--open.select2-container--above .select2-selection--single { border-top: none; border-top-left-radius: 0; border-top-right-radius: 0; background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%); background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%); background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); } .select2-container--classic.select2-container--open.select2-container--below .select2-selection--single { border-bottom: none; border-bottom-left-radius: 0; border-bottom-right-radius: 0; background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%); background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%); background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); } .select2-container--classic .select2-selection--multiple { background-color: white; border: 1px solid #aaa; border-radius: 4px; cursor: text; outline: 0; } .select2-container--classic .select2-selection--multiple:focus { border: 1px solid #5897fb; } .select2-container--classic .select2-selection--multiple .select2-selection__rendered { list-style: none; margin: 0; padding: 0 5px; } .select2-container--classic .select2-selection--multiple .select2-selection__clear { display: none; } .select2-container--classic .select2-selection--multiple .select2-selection__choice { background-color: #e4e4e4; border: 1px solid #aaa; border-radius: 4px; cursor: default; float: left; margin-right: 5px; margin-top: 5px; padding: 0 5px; } .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove { color: #888; cursor: pointer; display: inline-block; font-weight: bold; margin-right: 2px; } .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover { color: #555; } .select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice { float: right; } .select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice { margin-left: 5px; margin-right: auto; } .select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove { margin-left: 2px; margin-right: auto; } .select2-container--classic.select2-container--open .select2-selection--multiple { border: 1px solid #5897fb; } .select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple { border-top: none; border-top-left-radius: 0; border-top-right-radius: 0; } .select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple { border-bottom: none; border-bottom-left-radius: 0; border-bottom-right-radius: 0; } .select2-container--classic .select2-search--dropdown .select2-search__field { border: 1px solid #aaa; outline: 0; } .select2-container--classic .select2-search--inline .select2-search__field { outline: 0; box-shadow: none; } .select2-container--classic .select2-dropdown { background-color: white; border: 1px solid transparent; } .select2-container--classic .select2-dropdown--above { border-bottom: none; } .select2-container--classic .select2-dropdown--below { border-top: none; } .select2-container--classic .select2-results > .select2-results__options { max-height: 200px; overflow-y: auto; } .select2-container--classic .select2-results__option[role=group] { padding: 0; } .select2-container--classic .select2-results__option[aria-disabled=true] { color: grey; } .select2-container--classic .select2-results__option--highlighted[aria-selected] { background-color: #3875d7; color: white; } .select2-container--classic .select2-results__group { cursor: default; display: block; padding: 6px; } .select2-container--classic.select2-container--open .select2-dropdown { border-color: #5897fb; } .mm-menu.mm-theme-black { background: #90c73e; } .mm-listview > li > a, .mm-listview > li > span { color: #fff; } .split-box { display: flex; flex-flow: row wrap; justify-content: space-around; align-content: stretch; } .split-box .left-box, .split-box .right-box { width: 50%; align-self: stretch; } html { box-sizing: border-box; } *, *::before, *::after { box-sizing: inherit; } ul, ol { padding-left: 0; margin: 0; font-size: 0; } /* main wrap ----------------------- */ html { text-rendering: optimizeLegibility; font-size: 62.5%; } body { font-size: 1.4rem; line-height: 1.99554; font-family: "San Francisco Text", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-weight: normal; color: #515151; background-color: #fcfcfc; letter-spacing: -0.1px; } p strong, strong { font-family: "San Francisco Text", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-weight: bold; font-style: normal; } a { color: #90c73e; } a:hover, a:focus { color: #597a23; } a:focus, button:focus, .btn:focus { outline: none; } a, a:hover, a:focus { text-decoration: none; } a, .btn, .btn-default { -webkit-transition-property: color, background; -webkit-transition-duration: .2s, .2s; -webkit-transition-timing-function: linear, ease-in; -moz-transition-property: color, background; -moz-transition-duration: .2s, .2s; -moz-transition-timing-function: linear, ease-in; transition-property: color, background; transition-duration: .2s, .2s; transition-timing-function: linear, ease-in; } ul, ol { padding-left: 0; margin: 0; font-size: 0; list-style: none; } li { font-size: 14px; } html, body { height: 100%; } body { margin: 0; } .main { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; height: 100%; } .content { -webkit-box-flex: 1; -webkit-flex: 1 0 auto; -ms-flex: 1 0 auto; flex: 1 0 auto; } .content::after { content: '\00a0'; display: block; height: 0px; visibility: hidden; } .content--full { padding: 0; } .content--full::after { content: none; } .main-header { height: 56px; min-height: 56px; } .main-header, footer, .footer, .top-section { -webkit-box-flex: 0; -webkit-flex: none; -ms-flex: none; flex: none; } @-moz-document url-prefix() { .content { flex: 1; } } .inner-entry { min-height: 100vh; } .inner-entry .wrap-content { padding-top: 120px; } /* FONTFACE -------------------------------------- */ @font-face { font-family: 'Averta'; src: url("../fonts/Averta-Light.eot"); src: local("Averta Light"), local("Averta-Light"), url("../fonts/Averta-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Averta-Light.woff2") format("woff2"), url("../fonts/Averta-Light.woff") format("woff"), url("../fonts/Averta-Light.ttf") format("truetype"), url("../fonts/Averta-Light.svg#Averta-Light") format("svg"); font-weight: 300; font-style: normal; } @font-face { font-family: 'Averta'; src: url("../fonts/Averta-Bold.eot"); src: local("Averta Bold"), local("Averta-Bold"), url("../fonts/Averta-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Averta-Bold.woff2") format("woff2"), url("../fonts/Averta-Bold.woff") format("woff"), url("../fonts/Averta-Bold.ttf") format("truetype"), url("../fonts/Averta-Bold.svg#Averta-Bold") format("svg"); font-weight: bold; font-style: normal; } @font-face { font-family: 'Averta'; src: url("../fonts/Averta-Thin.eot"); src: local("Averta Thin"), local("Averta-Thin"), url("../fonts/Averta-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/Averta-Thin.woff2") format("woff2"), url("../fonts/Averta-Thin.woff") format("woff"), url("../fonts/Averta-Thin.ttf") format("truetype"), url("../fonts/Averta-Thin.svg#Averta-Thin") format("svg"); font-weight: 100; font-style: normal; } @font-face { font-family: 'Averta'; src: url("../fonts/Averta-Regular.eot"); src: local("Averta Regular"), local("Averta-Regular"), url("../fonts/Averta-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Averta-Regular.woff2") format("woff2"), url("../fonts/Averta-Regular.woff") format("woff"), url("../fonts/Averta-Regular.ttf") format("truetype"), url("../fonts/Averta-Regular.svg#Averta-Regular") format("svg"); font-weight: normal; font-style: normal; } @font-face { font-family: 'San Francisco Text'; src: url("../fonts/SanFranciscoText-Regular.eot"); src: local("San Francisco Text Regular"), local("SanFranciscoText-Regular"), url("../fonts/SanFranciscoText-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/SanFranciscoText-Regular.woff2") format("woff2"), url("../fonts/SanFranciscoText-Regular.woff") format("woff"), url("../fonts/SanFranciscoText-Regular.ttf") format("truetype"), url("../fonts/SanFranciscoText-Regular.svg#SanFranciscoText-Regular") format("svg"); font-weight: normal; font-style: normal; } @font-face { font-family: 'San Francisco Text'; src: url("../fonts/SanFranciscoText-Light.eot"); src: local("San Francisco Text Light"), local("SanFranciscoText-Light"), url("../fonts/SanFranciscoText-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/SanFranciscoText-Light.woff2") format("woff2"), url("../fonts/SanFranciscoText-Light.woff") format("woff"), url("../fonts/SanFranciscoText-Light.ttf") format("truetype"), url("../fonts/SanFranciscoText-Light.svg#SanFranciscoText-Light") format("svg"); font-weight: 200; font-style: normal; } @font-face { font-family: 'San Francisco Text'; src: url("../fonts/SanFranciscoText-Bold.eot"); src: local("San Francisco Text Bold"), local("SanFranciscoText-Bold"), url("../fonts/SanFranciscoText-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/SanFranciscoText-Bold.woff2") format("woff2"), url("../fonts/SanFranciscoText-Bold.woff") format("woff"), url("../fonts/SanFranciscoText-Bold.ttf") format("truetype"), url("../fonts/SanFranciscoText-Bold.svg#SanFranciscoText-Bold") format("svg"); font-weight: bold; font-style: normal; } @font-face { font-family: "Material Design Icons"; src: url("../fonts/materialdesignicons-webfont.eot?v=1.7.22"); src: url("../fonts/materialdesignicons-webfont.eot?#iefix&v=1.7.22") format("embedded-opentype"), url("../fonts/materialdesignicons-webfont.woff2?v=1.7.22") format("woff2"), url("../fonts/materialdesignicons-webfont.woff?v=1.7.22") format("woff"), url("../fonts/materialdesignicons-webfont.ttf?v=1.7.22") format("truetype"), url("../fonts/materialdesignicons-webfont.svg?v=1.7.22#materialdesigniconsregular") format("svg"); font-weight: normal; font-style: normal; } @font-face { font-family: "smticon"; src: url("../fonts/smt.eot"); src: url("../fonts/smt.eot?#iefix") format("embedded-opentype"), url("../fonts/smt.woff") format("woff"), url("../fonts/smt.ttf") format("truetype"), url("../fonts/smt.svg#smticon") format("svg"); font-weight: normal; font-style: normal; } @media screen and (-webkit-min-device-pixel-ratio: 0) { @font-face { font-family: "smticon"; src: url("../fonts/smt.svg#smticon") format("svg"); } } .big-display { font-family: "Averta", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-size: 11.2rem; line-height: 11.2rem; } .medium-display { font-family: "Averta", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-size: 5.6rem; line-height: 5.6rem; } .display { font-family: "Averta", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-size: 4.5rem; line-height: 4.8rem; } .headline, h1 { font-family: "Averta", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-size: 3.4rem; line-height: 4rem; } .title, h2 { font-family: "Averta", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-size: 2.4rem; line-height: 3.2rem; } .sub-title, h3 { font-family: "Averta", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-size: 2rem; line-height: 2.8rem; } h4 { font-family: "Averta", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-size: 1.6rem; line-height: 2.4rem; } h5 { font-family: "Averta", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-size: 1.4rem; line-height: 2.4rem; } h6 { font-family: "Averta", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-size: 1.2rem; line-height: 1.8rem; } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-family: "Averta", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-weight: bold; color: inherit; } h1 span, h2 span, h3 span, h4 span, h5 span, h6 span, .h1 span, .h2 span, .h3 span, .h4 span, .h5 span, .h6 span { font-family: "Averta", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-weight: 100; color: inherit; } input, button, select, textarea, input[type=password], input[type=text], input[type=date], input[type=email], input[type=number] { font-family: "San Francisco Text", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-weight: 200; font-size: inherit; line-height: inherit; } input, button, select, textarea, body { -webkit-font-smoothing: antialiased; } input, select, textarea { font-family: "Averta", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-weight: normal; } /** * Clear inner floats */ .clearfix::after { clear: both; content: ''; display: table; } .hide-text { overflow: hidden; padding: 0; /* 1 */ text-indent: 101%; white-space: nowrap; } .visually-hidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } .row.no-gutters { margin-right: 0; margin-left: 0; } .row.no-gutters > [class^="col-"], .row.no-gutters > [class*=" col-"] { padding-right: 0; padding-left: 0; } .no-padding { padding: 0 !important; } ::-moz-selection { background: #b3d4fc; text-shadow: none; } ::selection { background: #b3d4fc; text-shadow: none; } hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; } audio, canvas, iframe, img, svg, video { vertical-align: middle; } fieldset { border: 0; margin: 0; padding: 0; } textarea { resize: vertical; } .hidden { display: none !important; } .visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; } .invisible { visibility: hidden; } .clearfix:before, .clearfix:after { content: " "; display: table; } .clearfix:after { clear: both; } .left { float: left; } .right { float: right; } .fit { max-width: 100%; } .half-width { width: 50%; } .full-width { width: 100%; } .full-height { height: 100%; } .fixed { position: fixed; } .relative { position: relative; } .absolute { position: absolute; } .static { position: static; } .pin-top-right { top: 0; right: 0; } .pin-bottom-right { bottom: 0; right: 0; } .align-top { vertical-align: top; } .align-bottom { vertical-align: bottom; } .align-middle { vertical-align: middle; } .hide-tablet, .hide-mobile { display: block; } .show-tablet, .show-mobile { display: none; } .show-mobile { display: none; } .ell { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .break-word { word-wrap: break-word; } .no-wrap { white-space: nowrap; } .scroll-h { overflow-x: auto; } .scroll-v { overflow-y: auto; } .z1 { z-index: 1; } .z10 { z-index: 10; } .z100 { z-index: 100; } .hidden { display: none; } .micro { font-size: 10px; line-height: 20px; letter-spacing: 0; } *[hidden] { display: none; } .hide-screen { display: none; } .text-divider { display: block; } .has-right-border { border-right: 1px solid #f3f3f3; } @media screen and (-webkit-min-device-pixel-ratio: 0) { .user-avatar .small-notif { top: initial; bottom: -6px; } } .circle-image { width: 125px; height: 125px; border-radius: 50%; margin: 0 auto; } /* ========================================================================== HEADER ========================================================================== */ .main-header { position: fixed; top: 0; left: 0; width: 100%; background: white; z-index: 2; transition: .5s ease all; -webkit-transition: .5s ease all; -ms-transition: .5s ease all; -moz-transition: .5s ease all; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02); } .smt-logo { display: block; margin: 8px 0; } .smt-logo img { width: 40px; height: 40px; object-fit: cover; object-position: center; float: left; } .brand-name { font-family: "Averta", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-weight: bold; color: #90c73e; text-transform: uppercase; font-size: 24px; display: inline-block; vertical-align: middle; line-height: 40px; padding-left: 10px; } .main-footer { background: #181818; color: #90949C; font-size: 14px; } .main-footer h4 { text-transform: uppercase; color: #fff; letter-spacing: .1px; } .smt-copyright { display: flex; flex-flow: row wrap; justify-content: space-between; } .smt-copyright .left-company, .smt-copyright .right-company { align-items: stretch; } .copyright { border-top: 1px solid rgba(0, 0, 0, 0.1); padding: 15px 0; margin-top: 15px; } .bottom-link { display: block; } .bottom-link li { display: inline-block; text-transform: capitalize; margin-right: 15px; } .btn.btn-default { box-shadow: none; background: #ff6600; color: #fff; border-radius: 4px; text-transform: capitalize; } .btn.btn-default:hover { background: #005692; } .btn.btn-default:focus { outline: none; } .smt-button { text-align: center; } .btn-smt { background: #4769ba; color: #fff; text-align: center; border-radius: 55px; padding: 16px 50px; font-size: 16px; text-transform: uppercase; border: 1px solid transparent; } .btn-smt.outline { background: transparent; color: white; border: 1px solid white; } .btn-smt:hover { background: transparent; color: #4769ba; border-color: #4769ba; } .scroll-vertical { text-align: center; margin-top: 35px; font-size: 34px; } .smt-group { display: table; table-layout: fixed; vertical-align: middle; text-align: center; } .smt-group .btn { display: table-cell; vertical-align: middle; text-transform: capitalize; padding: 10px 30px; width: 140px; transition: .5s ease all; -moz-transition: .5s ease all; -webkit-transition: .5s ease all; -ms-transition: .5s ease all; background: transparent; color: #90c73e; } .smt-group .btn:nth-of-type(1) { border-radius: 55px 0 0 55px; border: 1px solid #e0e0e0; } .smt-group .btn:nth-of-type(2) { border-radius: 0 55px 55px 0; border-right: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0; border-top: 1px solid #e0e0e0; border-left: none; } .smt-group .btn:hover { background: #90c73e; color: white; border-color: transparent; } /* ========================================================================== MAIN DASHBOARD ========================================================================== */ .top-dashboard { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -ms-flex-flow: row wrap; flex-flow: row wrap; } .top-dashboard .dropdown-menu { right: 0; left: initial; } .top-dashboard .smt-logo, .top-dashboard .top-navigation, .top-dashboard .dropdown { -ms-flex-item-align: stretch; -ms-grid-row-align: stretch; align-self: stretch; } .top-dashboard .dropdown { border-left: 1px solid #f9f9f9; position: relative; } .top-dashboard .dropdown .dropdown-menu { -webkit-transition: all 0.3s ease; transition: all 0.3s ease; box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.01), 0 2px 4px 0 rgba(0, 0, 0, 0.02); background: #fff; border: none; border-radius: 0; margin: 15px 0 0; padding: 0; right: 0; } .top-dashboard .dropdown .dropdown-menu i { font-size: 24px; vertical-align: middle; display: inline-block; } .top-dashboard .dropdown .dropdown-menu:before { content: ''; background: #90c73e; height: 2px; position: absolute; top: 0; width: 100%; } .top-dashboard .dropdown .dropdown-menu:after { content: ''; width: 0; height: 0; border-style: solid; border-width: 0 10px 10px 10px; border-color: transparent transparent #90c73e transparent; position: absolute; top: -10px; right: 24px; } .top-dashboard .dropdown .dropdown-menu li:first-child { display: block; text-align: center; } .top-dashboard .dropdown .dropdown-menu li:first-child a { padding: 15px; background: #90c73e; color: #fff; } .top-dashboard .dropdown .dropdown-menu li:first-child a img { width: 55px; height: 55px; border-radius: 50%; display: block; margin: 0 auto; background: #fff; } .top-dashboard .dropdown .dropdown-menu li:first-child a p { margin: 0 0 10px; line-height: initial; } .top-dashboard .dropdown .dropdown-menu li a { display: block; line-height: 44px; color: #90c73e; text-transform: capitalize; padding: 0 15px; -webkit-transition: 0.3s all ease; -moz-transition: 0.3s all ease; -ms-transition: 0.3s all ease; -o-transition: 0.3s all ease; transition: 0.3s all ease; background: #fcfcfc; } .top-dashboard .dropdown .dropdown-menu li a:hover { background: #90c73e; color: #fff; } .top-dashboard .dropdown .user-btn { line-height: 56px; border: none; background: transparent; padding: 10px 15px; -webkit-transition: 0.5s ease all; -moz-transition: 0.5s ease all; -ms-transition: 0.5s ease all; -o-transition: 0.5s ease all; transition: 0.5s ease all; } .top-dashboard .dropdown .user-btn:hover { background: #f9f9f9; } .top-dashboard .dropdown .user-btn:hover img { -webkit-transform: scale(1.2); transform: scale(1.2); } .top-dashboard .dropdown .user-btn img { overflow: hidden; border-radius: 50%; width: 35px; height: 35px; background: #fff; object-fit: cover; object-position: center; -webkit-transition: 0.5s ease all; -moz-transition: 0.5s ease all; -ms-transition: 0.5s ease all; -o-transition: 0.5s ease all; transition: 0.5s ease all; } .top-dashboard.has-admin .dropdown-menu li:first-child a { background: #ED852C; } .top-dashboard.has-admin .dropdown-menu li a { color: #ED852C; } .top-dashboard.has-admin .dropdown-menu li a:hover { background: #fff; color: #1f1f1f; } .top-dashboard.has-admin .dropdown-menu:before { background: #ED852C; } .top-dashboard.has-admin .dropdown-menu:after { border-color: transparent transparent #ED852C transparent; } .top-navigation { text-align: right; width: 79.6%; } .top-navigation ul { margin: 0; padding: 0; } .top-navigation ul li { display: inline-block; } .top-navigation ul li a { display: block; padding: 0 15px; line-height: 56px; border-right: 1px solid #f9f9f9; -webkit-transition: 0.3s ease all; -moz-transition: 0.3s ease all; -ms-transition: 0.3s ease all; -o-transition: 0.3s ease all; transition: 0.3s ease all; } .top-navigation ul li a:hover { background: #f9f9f9; color: #333; } .top-navigation ul li:last-child a { border-right: none; } .user-avatar { position: relative; } .user-avatar .small-notif { width: 18px; height: 18px; border-radius: 50%; background: #fff; position: absolute; top: 38px; } .user-avatar .small-notif i { display: block; line-height: 18px; color: #90c73e; } @media screen and (-webkit-min-device-pixel-ratio: 0) { .user-avatar .small-notif { top: initial; bottom: -6px; } } /* dashboard content style */ .dashboard-top { background: #fff; color: #1f1f1f; padding-top: 56px; } .dashboard-top h1 { margin: 30px auto; font-weight: 200; } .dashboard-top h1 span { font-weight: normal; } .dashboard-content { background: #fff; } .dashboard-content.no-title { padding-top: 56px; } .top-content { border-bottom: 2px solid rgba(0, 0, 0, 0.03); position: relative; margin-bottom: 35px; } .top-content:before { content: ''; height: 2px; width: 10%; background: #90c73e; position: absolute; bottom: -2px; left: 0; } /* resume style */ .top-content h3 { font-weight: 300; color: #333; } .smt-resume { border: 1px solid #dfe8f1; border-radius: 4px; background-color: #fff; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); margin-bottom: 75px; } .resume-entry .resume-panel h2 { color: #1f1f1f; background: #fcfcfc; } .resume-entry .profile-name h2 { background: transparent; } .resume-entry .resume-control { position: absolute; top: 15px; right: 15px; border-radius: 55px; font-weight: 200; padding: 4px 20px; background: #f3f3f3; text-transform: capitalize; text-align: center; border: none; z-index: 1; box-shadow: none; -webkit-transition: 0.3s all ease; -moz-transition: 0.3s all ease; -ms-transition: 0.3s all ease; -o-transition: 0.3s all ease; transition: 0.3s all ease; } .resume-entry .resume-control:hover, .resume-entry .resume-control:focus { outline: none; background: #90c73e; color: #fff; } .resume-img { display: block; margin: 0 auto; position: relative; cursor: pointer; overflow: hidden; } .resume-img img { height: 100%; width: 100%; object-fit: cover; object-position: center; -webkit-transition: 0.5s all ease; -moz-transition: 0.5s all ease; -ms-transition: 0.5s all ease; -o-transition: 0.5s all ease; transition: 0.5s all ease; } .resume-img .edit-photo { box-shadow: none; border-radius: 0; text-align: center; border: none; background: rgba(31, 170, 214, 0.8); width: 100%; height: 38px; position: absolute; bottom: 0; left: 0; -webkit-transition: 0.5s all ease; -moz-transition: 0.5s all ease; -ms-transition: 0.5s all ease; -o-transition: 0.5s all ease; transition: 0.5s all ease; -webkit-transform: translateY(100%); transform: translateY(100%); color: #fff; z-index: 1; } .resume-img .edit-photo:hover { background: rgba(0, 0, 0, 0.7); color: #fff; } .resume-img.editable:after { content: ''; background: rgba(255, 255, 255, 0.8); width: 100%; height: 100%; position: absolute; top: 0; z-index: 0; left: 0; } .resume-img.editable img { opacity: .5; -webkit-filter: blur(5px); filter: blur(5px); } .resume-img.editable .edit-photo { -webkit-transform: translateY(0); transform: translateY(0); } .resume-panel { border-top: 1px solid #f3f3f3; position: relative; } .resume-panel.has-photo { border-top: none; } .resume-panel.has-photo .profile-name { padding-left: 30px; } .resume-panel.has-photo .resume-control { right: 15px; } .resume-panel.has-photo h2 { border-bottom: none; margin-top: 20px; padding: 0; } .resume-panel.has-photo .resume-text { padding: 0 15px 0 0; } .resume-panel h2 { border-bottom: 1px solid #f3f3f3; margin-top: 0; margin-bottom: 0; padding: 20px 15px; text-transform: uppercase; } .resume-panel .resume-text { padding: 15px; } .resume-bullet { padding-left: 15px; } .resume-bullet li { list-style: disc; } .resume-text.has-experience { padding: 0; } .resume-text.has-experience .experience-group { padding: 5px 15px; } .resume-text .experience-group:nth-child(2n) { padding: 0; } .resume-text .experience-group:nth-child(2n) .experience-title { background: #f9f9f9; padding: 5px 15px; } .resume-text .experience-group:nth-child(2n) .project-detail { padding: 0 15px; } .resume-text .experience-group:nth-child(2n) .underlined-title { margin-left: 15px; } .experience-group .company { display: inline-block; margin-bottom: 0; } .experience-group .position { font-weight: bold; margin-right: 10px; } .project-detail { margin-bottom: 30px; } .project-detail h6 { font-size: 14px; font-weight: bold; text-transform: capitalize; } .project-detail h5 { font-size: 14px; text-transform: uppercase; } .resume-inlined li { display: inline-block; vertical-align: middle; margin-right: 10px; } .underlined-title { border-bottom: 1px solid #d9d9d9; display: inline-block; line-height: 34px; } /* modal style */ .modal-content { border-radius: 2px; box-shadow: 0px 14px 45px rgba(0, 0, 0, 0.25), 0px 10px 18px rgba(0, 0, 0, 0.22); } .modal-content .modal-title { text-transform: uppercase; font-size: 18px; } .modal-content .form-control { border-radius: 2px; border-color: #e0e0e0; -webkit-transition: 0.5s ease all; -moz-transition: 0.5s ease all; -ms-transition: 0.5s ease all; -o-transition: 0.5s ease all; transition: 0.5s ease all; box-shadow: none; } .modal-content .form-control:focus { box-shadow: none; outline: none; border-color: #6FCEEA; } .modal-content textarea { background: #f9f9f9; } .modal-content textarea:focus { background: #ffff; border-color: #6FCEEA; } .modal-header { border: none; } .wysihtml5-toolbar a.btn.wysihtml5-command-active { box-shadow: none; background: #e0e0e0; color: #333; } .wysihtml5-toolbar .btn.btn-default { background: transparent; color: #808080; border-radius: 0; font-size: 12px; border-color: #e0e0e0; -webkit-transition: 0.5s ease all; -moz-transition: 0.5s ease all; -ms-transition: 0.5s ease all; -o-transition: 0.5s ease all; transition: 0.5s ease all; } .wysihtml5-toolbar .btn.btn-default:hover, .wysihtml5-toolbar .btn.btn-default:focus { outline: none; border-color: #6FCEEA; } .modal { background: rgba(255, 255, 255, 0.85); border: none; box-shadow: 0px 2px 18px rgba(0, 0, 0, 0.25), 0px 2px 6px rgba(0, 0, 0, 0.25); } .btn.btn-default { background: #6FCEEA; border: 1px solid #6FCEEA; } .btn.btn-default:hover, .btn.btn-default:focus { outline: none; background: #1FAAD6; color: #fff; border-color: #1FAAD6; } .btn.btn-default.btn-save { border-radius: 55px; box-shadow: none; text-transform: uppercase; padding: 10px 50px; } .modal-header .close { font-size: 28px; opacity: .2; } .modal-header .close:hover { opacity: 1; } .top-content.has-search h3, .top-content.has-search .search-resume { display: inline-block; vertical-align: middle; } .top-content .search-resume { float: right; width: 35%; margin-top: 15px; } .search-resume input[type=text] { position: relative; } .search-resume .form-group { margin: 0; } .search-resume .form-control { border-radius: 2px; box-shadow: none; } .search-resume .btn-search { position: absolute; border-radius: 0; right: 1px; top: 0; height: 32px; background: transparent; -webkit-transition: 0.5s ease all; -moz-transition: 0.5s ease all; -ms-transition: 0.5s ease all; -o-transition: 0.5s ease all; transition: 0.5s ease all; } .search-resume .btn-search:hover { color: #6FCEEA; } .resume-action ul.dropdown-menu { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08), 0 1px 4px 0 rgba(0, 0, 0, 0.025); border-radius: 0; border: none; margin: 0; padding: 0; } .resume-action ul.dropdown-menu button { display: block; width: 100%; background: transparent; text-transform: capitalize; text-align: left; -webkit-transition: 0.05s ease all; -moz-transition: 0.05s ease all; -ms-transition: 0.05s ease all; -o-transition: 0.05s ease all; transition: 0.05s ease all; border: none; } .resume-action ul.dropdown-menu button:hover, .resume-action ul.dropdown-menu button:focus { outline: none; background: #f3f3f3; color: #ED852C; } .btn-clean { background: transparent; color: #6FCEEA; text-transform: capitalize; border: none; border-radius: 0; } .btn-clean:focus { outline: none; } .resume-list, .resume-list-title { display: table; position: relative; width: 100%; table-layout: fixed; } .resume-list .resume-detail, .resume-list .resume-description, .resume-list .resume-column, .resume-list .resume-action, .resume-list-title .resume-detail, .resume-list-title .resume-description, .resume-list-title .resume-column, .resume-list-title .resume-action { display: table-cell; vertical-align: middle; padding: 15px; } .resume-list .resume-detail, .resume-list .resume-list-title .resume-detail, .resume-list-title .resume-detail, .resume-list-title .resume-list-title .resume-detail { width: 10%; } .resume-list .resume-description, .resume-list .resume-list-title .resume-description, .resume-list-title .resume-description, .resume-list-title .resume-list-title .resume-description { width: 15%; } .resume-list .resume-column, .resume-list .resume-list-title .resume-description, .resume-list-title .resume-column, .resume-list-title .resume-list-title .resume-description { width: 63%; } .resume-list .resume-action, .resume-list .resume-list-title .resume-action, .resume-list-title .resume-action, .resume-list-title .resume-list-title .resume-action { width: 12%; } .resume-list-title { background: #6FCEEA; color: #fff; text-transform: uppercase; } .resume-list-title .resume-detail, .resume-list-title .resume-description, .resume-list-title .resume-column, .resume-list-title .resume-action { display: table-cell; vertical-align: middle; padding: 15px; } .smt-resume .resume-list { -webkit-transition: 0, 5s all ease; -moz-transition: 0, 5s all ease; -ms-transition: 0, 5s all ease; -o-transition: 0, 5s all ease; transition: 0, 5s all ease; } .smt-resume .resume-list:hover { background: #fafafa; } .smt-resume .resume-list:nth-of-type(2n) { background: #fafafa; } .resume-detail img { width: 55px; height: 55px; object-fit: cover; object-position: center; border-radius: 50%; } .resume-detail .resume-name { color: #1f1f1f; text-transform: capitalize; font-family: "Averta", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-weight: bold; } .shorten { display: block; display: -webkit-box; height: 60px; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; margin-bottom: 0; } .prev-btn, .next-btn { border: 1px solid #e0e0e0; border-radius: 55px; padding: 2px 15px; color: #6FCEEA; -webkit-transition: 0.05s ease all; -moz-transition: 0.05s ease all; -ms-transition: 0.05s ease all; -o-transition: 0.05s ease all; transition: 0.05s ease all; } .prev-btn:hover, .next-btn:hover { background: #6FCEEA; border-color: #6FCEEA; color: #fff; } .resume-pagination { text-align: center; margin: 35px auto 20px; min-width: 130px; font-size: 12px; } .resume-pagination li { display: inline-block; vertical-align: middle; margin-right: 20px; } .resume-pagination li:last-child { margin-right: 0; } .resume-pagination li a { display: block; } .page-number { color: #ccc; } .page-number:hover { color: #6FCEEA; } .page-number.current { color: #6FCEEA; } .user-profile { padding: 20px; display: table; table-layout: fixed; position: relative; width: 100%; } .user-profile .circle-image, .user-profile .user-profile, .user-profile .edit-option { display: table-cell; vertical-align: top; } .user-profile .circle-image { width: 15%; } .user-profile .circle-image img { width: 125px; height: 125px; border-radius: 50%; margin: 0 auto; object-fit: cover; object-position: center; } .user-profile .user-profile { padding-left: 20px; } .user-profile .user-profile li { margin: 5px 0; } .user-profile .badge-active, .user-profile .project-badge { padding: 2px 10px; border-radius: 55px; margin-left: 10px; color: #fff; } .user-profile .badge-active { background: #25C65E; } .user-profile .project-badge { background: #EC442C; } .smt-resume.center { max-width: 75%; margin: 0 auto; } .main-footer p { margin-bottom: 0; line-height: 35px; color: #90c73e; text-transform: capitalize; } .profile-extended { background: #fcfcfc; display: table; table-layout: fixed; width: 100%; border-bottom: 1px solid #f3f3f3; border-top: 1px solid #f3f3f3; } .profile-extended .profile-form, .profile-extended .profile-photo { display: table-cell; vertical-align: middle; } .profile-extended .profile-form { width: 65%; padding: 20px; } .profile-extended .profile-form .form-group { margin-left: 0; margin-right: 0; } .profile-extended .profile-photo { border-left: 1px solid #f3f3f3; background: #f9f9f9; padding: 20px; } .profile-extended .profile-photo img { width: 125px; height: 125px; border-radius: 50%; margin: 0 auto; object-fit: cover; object-position: center; } .profile-extended .profile-photo .form-group { text-align: center; } .profile-extended .profile-photo .form-group input { margin: 0 auto; } #editProfile .btn-save { margin-left: 30px; margin-bottom: 20px; margin-top: 30px; } #editProfile .btn-save.cancel { margin-left: 10px; } .btn-save.cancel { background: #EC442C; border-color: #EC442C; margin-left: 10px; } .btn-save.cancel:hover { background: #333; border: 1px solid #333; } .dual-list { display: table; table-layout: fixed; width: 100%; border-bottom: 1px solid #f9f9f9; padding: 8px 0; } .dual-list .list-item, .dual-list .list-detail { display: table-cell; vertical-align: middle; } .dual-list .list-item { width: 25%; color: #333; font-weight: bold; } .dual-list .list-detail { padding-left: 10px; } .form-group.has-button { margin-bottom: 0; background: #fcfcfc; } .form-group label { color: #1f1f1f; text-transform: capitalize; font-family: "San Francisco Text", -apple-system, BlinkMacSystemFont, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; font-weight: normal; } .form-group .dropdown-menu { border-radius: 2px; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 8px 0 rgba(0, 0, 0, 0.12); border: none; } .user-detail { text-transform: capitalize; } .edit-option { text-align: right; } .btn-edit { background: #6FCEEA; color: #fff; border: 1px solid transparent; -webkit-transition: 0.3s ease all; -moz-transition: 0.3s ease all; -ms-transition: 0.3s ease all; -o-transition: 0.3s ease all; transition: 0.3s ease all; border-radius: 2px; box-shadow: none; } .btn-edit:hover, .btn-edit:focus { background: #fff; color: #6FCEEA; } .btn-edit:hover { box-shadow: 0 2px 4px rgba(0, 0, 0, 0.085); } /* table style */ .resume-content table { border-collapse: collapse; margin: 0; padding: 0; width: 100%; table-layout: fixed; } .resume-content table thead th:nth-of-type(1) { width: 10%; } .resume-content table tbody tr { -webkit-transition: 0.3s ease all; -moz-transition: 0.3s ease all; -ms-transition: 0.3s ease all; -o-transition: 0.3s ease all; transition: 0.3s ease all; } .resume-content table tbody tr:nth-of-type(2n+2) { background: #fcfcfc; } .resume-content table tbody tr:hover { background: #fcfcfc; } .resume-content table tbody tr td:nth-of-type(1) { width: 10%; } .resume-content table tbody tr td:nth-of-type(1) img { margin: 0 auto; } .resume-content table tr { border: 1px solid #f9f9f9; padding: 10px; } .resume-content table th, .resume-content table td { padding: 10px; } .resume-content table th { text-transform: uppercase; } .resume-content table thead tr { background: #6FCEEA; color: #fff; } .resume-content table tbody tr { background: #fff; } @media screen and (max-width: 767px) { .resume-content table { border: 0; } .resume-content table thead { border: none; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } .resume-content table tr { border-bottom: 3px solid #ddd; display: block; margin-bottom: .625em; } .resume-content table td { border-bottom: 1px solid #ddd; display: block; text-align: right; } .resume-content table td:before { content: attr(data-label); float: left; font-weight: bold; text-transform: uppercase; } .resume-content table td:last-child { border-bottom: 0; } } .smt-resume.flat { border-radius: 0; } .smt-file { position: relative; overflow: hidden; margin: 20px auto 0; } .smt-file input.upload { position: absolute; top: 0; right: 0; margin: 0; padding: 0; font-size: 20px; cursor: pointer; opacity: 0; filter: alpha(opacity=0); } .profile-photo h5 { text-align: center; } .profile-form input[type=text], .profile-form input[type=email], .profile-form input[type=password] { border-radius: 2px; border-color: #f3f3f3; box-shadow: none; -webkit-transition: 0.05s ease all; -moz-transition: 0.05s ease all; -ms-transition: 0.05s ease all; -o-transition: 0.05s ease all; transition: 0.05s ease all; } .profile-form input[type=text]:focus, .profile-form input[type=email]:focus, .profile-form input[type=password]:focus { outline: none; } .profile-form input[type=text]:hover, .profile-form input[type=email]:hover, .profile-form input[type=password]:hover { border-color: #6FCEEA; } .btn-primary { background: #6FCEEA; border-radius: 2px; border: 1px solid #6FCEEA; box-shadow: none; } .btn-primary:hover { background: #59C6E7; border: 1px solid #59C6E7; } .form-group { position: relative; } .form-group .form-control.has-error { color: #ED2C13; border: 1px solid #ED2C13; } .form-notify { position: absolute; width: 100%; left: 0; margin-top: -1px; } .form-notify.error { background: #ED2C13; color: #fff; border-radius: 0; padding: 0 15px; } .notify { width: 100%; max-width: 50%; margin: 0 auto; padding: 10px 15px; background: #fff; box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.09), 0 0 2px 0 rgba(0, 0, 0, 0.075); margin: 15px auto; border: 1px solid transparent; -webkit-transition: 0.5s ease all; -moz-transition: 0.5s ease all; -ms-transition: 0.5s ease all; -o-transition: 0.5s ease all; transition: 0.5s ease all; } .notify:hover { box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.09), 0px 2px 2px 0px rgba(0, 0, 0, 0.075); } .notify.success { border: 1px solid #10C14B; color: #10C14B; } .full-inner { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-flow: column wrap; flex-flow: column wrap; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .full-inner .user-login { -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; background: #fff; width: 20%; padding: 20px; margin-top: 120px; box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 0 2px 0 rgba(0, 0, 0, 0.11); -webkit-transition: 0.5s ease all; -moz-transition: 0.5s ease all; -ms-transition: 0.5s ease all; -o-transition: 0.5s ease all; transition: 0.5s ease all; position: relative; } .full-inner .user-login:hover { box-shadow: 0 0 30px rgba(0, 0, 0, 0.1); } .full-inner .user-login .form-group { margin-left: 0; margin-right: 0; } .full-inner .user-login .form-group.bottom { margin-top: 35px; text-align: center; } .full-inner .user-login .form-group .form-control { border-radius: 2px; border-color: #f3f3f3; box-shadow: none; } .full-inner .user-login .form-group .form-control:focus, .full-inner .user-login .form-group .form-control:hover { box-shadow: none; border-color: #d9d9d9; } .full-page { height: 100%; min-height: 100%; position: relative; overflow: hidden; } .full-page .top-title { text-align: center; text-transform: capitalize; background: #90c73e; color: #fff; } .full-page .top-title h2 { margin: 0; line-height: 150px; font-size: 32px; } .form-title { text-align: center; color: #333; } .form-title h3 { margin-top: 0; font-size: 24px; margin-bottom: 20px; } .login-brand img { margin: 10px auto; } .reminder-text { margin-bottom: 30px; line-height: 1.5; color: #7c7c7c; } .user-login .form-group { margin-bottom: 24px; } .user-login .form-group.last { margin-bottom: 0; } .user-login .form-control { height: 38px; } .user-login .notify { max-width: 100%; position: absolute; top: -20px; left: 0; text-transform: capitalize; font-weight: normal; font-size: 12px; } .user-login .notify.success { background: #10C14B; color: #fff; } .user-login .form-group .form-control.has-error { border-color: #EC2C14; position: relative; } .user-login .form-group .error-text { background: #EC2C14; color: #fff; position: absolute; bottom: -27px; left: 0; margin-bottom: 0; padding: 0 10px; width: 100%; } .login-brand { margin-top: 30px; } .login-brand img { margin-bottom: 20px; } .login-notify { margin: 10px 0; } /*# sourceMappingURL=main.css.map */
0.431944
0.117699
#cakePic { width: 20em; /* shrink cheesecake image to 20% of original size */ height: auto; } body { box-sizing: border-box; width: 100vw; height: 100vh; margin: 0; padding: 0; font-family: 'Merriweather', serif; background-image: url("https://images.pexels.com/photos/172289/pexels-photo-172289.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"); background-size: 100% 100%; } .backgroundImg { float:left; flex-direction: column; flex-wrap:wrap; margin-left: 10%; content: center; display: flex; align-items: center; justify-content: center; background-color: #fff; width: 35%; } .jarProf { display: flex; align-items: center; justify-content: center; flex-direction: column; position: relative; width: 450px; height: 450px; margin-right: 10%; transition: 0.5s; background: #060c21; float: right; } .jarProf:hover{ height: 550px; } .jarProf .jarrenPic { position: absolute; top: 0; left: 0; width: 100%; height: 100%; padding: 10px; box-sizing: border-box; } .jarProf .jarrenPic img { max-width: 100%; opacity: 0.1; transition: 0.5s; } .jarProf:hover .jarrenPic img { opacity: 1; } .jarProf:before { content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px; background: #fff; z-index: -1; } .jarProf:after { content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px; background: #fff; z-index: -2; filter: blur(40px); } .jarProf:before, .jarProf:after { background: linear-gradient(235deg, #89ff00, #010615, #00bcd4); } .jarProf:nth-child(2):before, .jarProf:nth-child(2):after { background: linear-gradient(235deg, #ff005e, #010615, #fbff00); } .jarProf:nth-child(3):before, .jarProf:nth-child(3):after { background: linear-gradient(235deg, #772aff, #010615, #2196F3); } .jarProf .jarrenContent { position: absolute; bottom: 0; left: 10px; right: 10px; bottom: 10px; height: 90px; background: rgba(0,0,0,0.4); display: flex; justify-content: center; align-items: center; text-align: center; opacity: 0; transition: 0.5s; } .jarProf:hover .jarrenContent { opacity: 1; } .jarProf .jarrenContent #bakerName { font-size: 20px; color: #fff; font-weight: 500; line-height: 20px; } .jarProf .jarrenContent #bakerName span { font-size: 12px; color: #fff; font-weight: 200; line-height: 2px; } /* External Citation Date: 08 February 2021 Problem: Forgot how to incorporate a hoverable dropdown Resource: https://www.w3schools.com/howto/howto_css_dropdown.asp Solution: Utilized majority of the same divs and classes on html and css with tweaks (e.g. ids on dropdown-content) */ .dropbtn { background-color: #f308ff; color: white; padding: 15%; font-size: 95%; border: none; font-family: 'Merriweather', serif; } .dropdown { position: relative; display: inline-block; } .dropdown-content { display: none; position: absolute; background-color: #f1f1f1; 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: #ddd; } .dropdown:hover .dropdown-content { display: block; max-height: 6em;/* you can change as you need it */ overflow:auto;/* to get scroll */ } .dropdown:hover .dropbtn { background-color: #070607; } #numOfCheesecakes { margin-left: 8em; } #orderButton { margin-left: 13em; } #thankYouMessage { text-align: center; }
hw3/public/stylesheets/calizo23_styles.css
#cakePic { width: 20em; /* shrink cheesecake image to 20% of original size */ height: auto; } body { box-sizing: border-box; width: 100vw; height: 100vh; margin: 0; padding: 0; font-family: 'Merriweather', serif; background-image: url("https://images.pexels.com/photos/172289/pexels-photo-172289.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"); background-size: 100% 100%; } .backgroundImg { float:left; flex-direction: column; flex-wrap:wrap; margin-left: 10%; content: center; display: flex; align-items: center; justify-content: center; background-color: #fff; width: 35%; } .jarProf { display: flex; align-items: center; justify-content: center; flex-direction: column; position: relative; width: 450px; height: 450px; margin-right: 10%; transition: 0.5s; background: #060c21; float: right; } .jarProf:hover{ height: 550px; } .jarProf .jarrenPic { position: absolute; top: 0; left: 0; width: 100%; height: 100%; padding: 10px; box-sizing: border-box; } .jarProf .jarrenPic img { max-width: 100%; opacity: 0.1; transition: 0.5s; } .jarProf:hover .jarrenPic img { opacity: 1; } .jarProf:before { content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px; background: #fff; z-index: -1; } .jarProf:after { content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px; background: #fff; z-index: -2; filter: blur(40px); } .jarProf:before, .jarProf:after { background: linear-gradient(235deg, #89ff00, #010615, #00bcd4); } .jarProf:nth-child(2):before, .jarProf:nth-child(2):after { background: linear-gradient(235deg, #ff005e, #010615, #fbff00); } .jarProf:nth-child(3):before, .jarProf:nth-child(3):after { background: linear-gradient(235deg, #772aff, #010615, #2196F3); } .jarProf .jarrenContent { position: absolute; bottom: 0; left: 10px; right: 10px; bottom: 10px; height: 90px; background: rgba(0,0,0,0.4); display: flex; justify-content: center; align-items: center; text-align: center; opacity: 0; transition: 0.5s; } .jarProf:hover .jarrenContent { opacity: 1; } .jarProf .jarrenContent #bakerName { font-size: 20px; color: #fff; font-weight: 500; line-height: 20px; } .jarProf .jarrenContent #bakerName span { font-size: 12px; color: #fff; font-weight: 200; line-height: 2px; } /* External Citation Date: 08 February 2021 Problem: Forgot how to incorporate a hoverable dropdown Resource: https://www.w3schools.com/howto/howto_css_dropdown.asp Solution: Utilized majority of the same divs and classes on html and css with tweaks (e.g. ids on dropdown-content) */ .dropbtn { background-color: #f308ff; color: white; padding: 15%; font-size: 95%; border: none; font-family: 'Merriweather', serif; } .dropdown { position: relative; display: inline-block; } .dropdown-content { display: none; position: absolute; background-color: #f1f1f1; 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: #ddd; } .dropdown:hover .dropdown-content { display: block; max-height: 6em;/* you can change as you need it */ overflow:auto;/* to get scroll */ } .dropdown:hover .dropbtn { background-color: #070607; } #numOfCheesecakes { margin-left: 8em; } #orderButton { margin-left: 13em; } #thankYouMessage { text-align: center; }
0.388386
0.126623
.u-section-1 { min-height: 683px; background-image: none; } .u-section-1 .u-layout-wrap-1 { width: calc(((100% - 1140px) / 2) + 1140px); margin: 0 0 0 auto; } .u-section-1 .u-layout-cell-1 { min-height: 683px; } .u-section-1 .u-container-layout-1 { padding: 30px; } .u-section-1 .u-text-1 { font-weight: 700; letter-spacing: 2px; font-size: 4.5rem; width: 375px; margin: 0 auto; } .u-section-1 .u-text-2 { letter-spacing: 2px; font-size: 1.25rem; width: 208px; font-weight: 300; margin: 32px auto 0; } .u-section-1 .u-line-1 { height: 107px; transform-origin: center top; width: 4px; margin: 51px auto 0; } .u-section-1 .u-text-3 { width: 322px; background-image: none; margin: 40px auto 0; } .u-section-1 .u-btn-1 { border-style: solid; font-weight: 700; text-transform: uppercase; letter-spacing: 4px; margin: 51px auto 0; padding: 10px 109px; } .u-section-1 .u-text-4 { width: 354px; margin: 20px auto 0; } .u-section-1 .u-btn-2 { border-style: none none solid; padding: 0; } .u-section-1 .u-layout-cell-2 { min-height: 683px; } .u-section-1 .u-container-layout-2 { padding: 30px; } .u-section-1 .u-image-1 { margin-top: 0; margin-bottom: 0; height: 610px; } @media (max-width: 1199px) { .u-section-1 { min-height: 563px; } .u-section-1 .u-layout-wrap-1 { position: relative; width: calc(((100% - 940px) / 2) + 940px); } .u-section-1 .u-layout-cell-1 { min-height: 563px; } .u-section-1 .u-text-1 { width: auto; margin-left: 11px; margin-right: 11px; } .u-section-1 .u-text-3 { width: auto; margin-left: 15px; margin-right: 15px; } .u-section-1 .u-text-4 { width: auto; margin-left: 16px; margin-right: 16px; } .u-section-1 .u-layout-cell-2 { background-position: 50% 50%; min-height: 563px; } .u-section-1 .u-image-1 { height: 485px; } } @media (max-width: 991px) { .u-section-1 { min-height: 581px; } .u-section-1 .u-layout-wrap-1 { width: calc(((100% - 720px) / 2) + 720px); } .u-section-1 .u-layout-cell-1 { min-height: 581px; } .u-section-1 .u-container-layout-1 { padding-top: 24px; padding-bottom: 24px; } .u-section-1 .u-text-1 { font-size: 3.75rem; } .u-section-1 .u-line-1 { height: 84px; } .u-section-1 .u-text-3 { margin-top: 25px; margin-left: 1px; margin-right: 1px; } .u-section-1 .u-btn-1 { margin-top: 24px; margin-left: 0; margin-right: 0; padding-right: 77px; padding-left: 76px; } .u-section-1 .u-text-4 { margin-top: 24px; margin-left: 11px; margin-right: 11px; } .u-section-1 .u-layout-cell-2 { min-height: 581px; } .u-section-1 .u-container-layout-2 { padding-left: 0; padding-right: 0; } .u-section-1 .u-image-1 { height: 439px; } } @media (max-width: 767px) { .u-section-1 { min-height: 1105px; } .u-section-1 .u-layout-wrap-1 { width: calc(((100% - 540px) / 2) + 540px); } .u-section-1 .u-layout-cell-1 { min-height: 486px; } .u-section-1 .u-container-layout-1 { padding-top: 40px; padding-right: 55px; padding-left: 10px; } .u-section-1 .u-btn-1 { align-self: center; } .u-section-1 .u-layout-cell-2 { min-height: 568px; } .u-section-1 .u-container-layout-2 { padding-bottom: 10px; } .u-section-1 .u-image-1 { margin-top: -30px; height: 506px; } } @media (max-width: 575px) { .u-section-1 { min-height: 620px; } .u-section-1 .u-layout-wrap-1 { position: relative; width: calc(((100% - 340px) / 2) + 340px); } .u-section-1 .u-layout-cell-1 { min-height: 100px; } .u-section-1 .u-container-layout-1 { padding-top: 30px; padding-right: 50px; } .u-section-1 .u-text-1 { margin-left: 0; margin-right: 0; } .u-section-1 .u-text-3 { margin-left: 0; margin-right: 0; } .u-section-1 .u-btn-1 { margin-top: 20px; margin-left: auto; margin-right: auto; } .u-section-1 .u-text-4 { margin-left: 0; margin-right: 0; } .u-section-1 .u-layout-cell-2 { min-height: 358px; } .u-section-1 .u-image-1 { height: 319px; } }
front/public/Page-2.css
.u-section-1 { min-height: 683px; background-image: none; } .u-section-1 .u-layout-wrap-1 { width: calc(((100% - 1140px) / 2) + 1140px); margin: 0 0 0 auto; } .u-section-1 .u-layout-cell-1 { min-height: 683px; } .u-section-1 .u-container-layout-1 { padding: 30px; } .u-section-1 .u-text-1 { font-weight: 700; letter-spacing: 2px; font-size: 4.5rem; width: 375px; margin: 0 auto; } .u-section-1 .u-text-2 { letter-spacing: 2px; font-size: 1.25rem; width: 208px; font-weight: 300; margin: 32px auto 0; } .u-section-1 .u-line-1 { height: 107px; transform-origin: center top; width: 4px; margin: 51px auto 0; } .u-section-1 .u-text-3 { width: 322px; background-image: none; margin: 40px auto 0; } .u-section-1 .u-btn-1 { border-style: solid; font-weight: 700; text-transform: uppercase; letter-spacing: 4px; margin: 51px auto 0; padding: 10px 109px; } .u-section-1 .u-text-4 { width: 354px; margin: 20px auto 0; } .u-section-1 .u-btn-2 { border-style: none none solid; padding: 0; } .u-section-1 .u-layout-cell-2 { min-height: 683px; } .u-section-1 .u-container-layout-2 { padding: 30px; } .u-section-1 .u-image-1 { margin-top: 0; margin-bottom: 0; height: 610px; } @media (max-width: 1199px) { .u-section-1 { min-height: 563px; } .u-section-1 .u-layout-wrap-1 { position: relative; width: calc(((100% - 940px) / 2) + 940px); } .u-section-1 .u-layout-cell-1 { min-height: 563px; } .u-section-1 .u-text-1 { width: auto; margin-left: 11px; margin-right: 11px; } .u-section-1 .u-text-3 { width: auto; margin-left: 15px; margin-right: 15px; } .u-section-1 .u-text-4 { width: auto; margin-left: 16px; margin-right: 16px; } .u-section-1 .u-layout-cell-2 { background-position: 50% 50%; min-height: 563px; } .u-section-1 .u-image-1 { height: 485px; } } @media (max-width: 991px) { .u-section-1 { min-height: 581px; } .u-section-1 .u-layout-wrap-1 { width: calc(((100% - 720px) / 2) + 720px); } .u-section-1 .u-layout-cell-1 { min-height: 581px; } .u-section-1 .u-container-layout-1 { padding-top: 24px; padding-bottom: 24px; } .u-section-1 .u-text-1 { font-size: 3.75rem; } .u-section-1 .u-line-1 { height: 84px; } .u-section-1 .u-text-3 { margin-top: 25px; margin-left: 1px; margin-right: 1px; } .u-section-1 .u-btn-1 { margin-top: 24px; margin-left: 0; margin-right: 0; padding-right: 77px; padding-left: 76px; } .u-section-1 .u-text-4 { margin-top: 24px; margin-left: 11px; margin-right: 11px; } .u-section-1 .u-layout-cell-2 { min-height: 581px; } .u-section-1 .u-container-layout-2 { padding-left: 0; padding-right: 0; } .u-section-1 .u-image-1 { height: 439px; } } @media (max-width: 767px) { .u-section-1 { min-height: 1105px; } .u-section-1 .u-layout-wrap-1 { width: calc(((100% - 540px) / 2) + 540px); } .u-section-1 .u-layout-cell-1 { min-height: 486px; } .u-section-1 .u-container-layout-1 { padding-top: 40px; padding-right: 55px; padding-left: 10px; } .u-section-1 .u-btn-1 { align-self: center; } .u-section-1 .u-layout-cell-2 { min-height: 568px; } .u-section-1 .u-container-layout-2 { padding-bottom: 10px; } .u-section-1 .u-image-1 { margin-top: -30px; height: 506px; } } @media (max-width: 575px) { .u-section-1 { min-height: 620px; } .u-section-1 .u-layout-wrap-1 { position: relative; width: calc(((100% - 340px) / 2) + 340px); } .u-section-1 .u-layout-cell-1 { min-height: 100px; } .u-section-1 .u-container-layout-1 { padding-top: 30px; padding-right: 50px; } .u-section-1 .u-text-1 { margin-left: 0; margin-right: 0; } .u-section-1 .u-text-3 { margin-left: 0; margin-right: 0; } .u-section-1 .u-btn-1 { margin-top: 20px; margin-left: auto; margin-right: auto; } .u-section-1 .u-text-4 { margin-left: 0; margin-right: 0; } .u-section-1 .u-layout-cell-2 { min-height: 358px; } .u-section-1 .u-image-1 { height: 319px; } }
0.479016
0.085633
@media screen and (width > 600px) { body { max-width: 720px; margin: auto; font-family: -apple-system, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue; color: #1d1c16; } } @media screen and (width <= 600px) { body { max-width: 720px; margin: 0 10px; font-family: -apple-system, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue; color: #1d1c16; } } /* * * * * Index * * * * */ .header { /* navigation head */ } .head > h3 { /* name of blog */ display: none; } ul.nav { margin: 8px 0 16px 0; padding: 0; } ul.nav > li { display: inline; margin-right: 16px; } .content { /* everything under the navigation */ } .content > header { display: none; } .content > header > .site-heading > h1 { /* 'Vincent's Blog' */ } .content > header > .site-heading > span.subheading { /* 'Thoughts, stories, and idea' */ } /* pagination uptop */ .extra-pagination { /* redundant with the nav */ display: none; } nav.pagination { /* cluster of 'page 1 of 2' */ } span.page-number { /* 'page 1 of 2' */ } a.older-posts { /* 'Older Posts' */ } /* loops over and creates */ article.post { /* note: also affects the post page */ margin: 0 0 48px 0; padding: 0; } /* optional: 'article.tag-kebab-cased-name' */ article.post > header.post-header {} article.post > section.post-excerpt {} article.post > section.post-excerpt > p { /* actual text being printer */ } article.post > footer.post-meta { /* "on __tag__ 06 March 2021" */ display: none; } /* bottom of page */ nav.pagination { margin: 16px 0 16px 0; } /* * * * * Post Page * * * * */ section.post-content { line-height: 1.5; } section.post-content > h1.post-title { font-weight: 300; font-size: xxx-large; letter-spacing: 0.05rem; margin: 32px 0 16px 0; } /* content follows, not container */ section.post-content > p, ol { margin: 0; } section.post-content > p > * { margin: 12px 0 4px 0; } section.post-content > h1, h2, h3, h4, h5, h6 { margin: 32px 0 8px 0; } section.post-content > figure { /* image holder */ margin: 16px 0 48px 0; border-width: 2px; border-style: solid; border-color: #bebaa7; border-radius: 5px; padding: 8px; } section.post-content > figure.kg-bookmark-card { } section.post-content > figure.kg-bookmark-card > a > .kg-bookmark-content { padding: 0 32px; } section.post-content > figure.kg-bookmark-card > a > .kg-bookmark-content > .kg-bookmark-title { font-family: monospace; font-size: larger; } section.post-content > figure.kg-bookmark-card > a > .kg-bookmark-content > .kg-bookmark-description { font-style: italic; font-size: smaller; margin: 8px 0; } section.post-content > figure.kg-bookmark-card > a > .kg-bookmark-content > .kg-bookmark-metadata { display: none; } img { width:100%; height:100%; border-radius: 10px; } section.post-content > figure > img { /* image */ width: 100%; } section.post-content > figure > a > div > img { width: 100% } figure.kg-gallery-card { /* will hold a gallery of cards that can be iterate over in javascript */ } section.post-content > blockquote { margin: 12px 48px; } section.post-content > pre { margin: 32px 0; overflow-x: scroll; background-color: #3b382b; padding: 8px; border-radius: 4px; } section.post-content > pre > code { /* my already be a default? */ font-family: monospace; color: #e9e8e2; font-weight: 600; } footer.post-footer { } footer.post-footer > section.author > h2 { /* written by */ } footer.post-footer > section.author > h4 { /* author name ? */ } /* * * * * Colors * * * * */ primary-900 { background-color: hsl(50, 89%, 5%); color: #181401 } primary-800 { background-color: hsl(50, 71%, 15%); color: #41380b } primary-700 { background-color: hsl(50, 59%, 25%); color: #65591a } primary-600 { background-color: hsl(50, 52%, 35%); color: #88782b } primary-500 { background-color: hsl(50, 50%, 45%); color: #ac9939 } primary-400 { background-color: hsl(50, 52%, 55%); color: #c8b451 } primary-300 { background-color: hsl(50, 61%, 65%); color: #dcca6f } primary-200 { background-color: hsl(50, 74%, 75%); color: #eedf90 } primary-100 { background-color: hsl(50, 92%, 85%); color: #fcf0b6 } secondary-900 { background-color: hsl(158, 89%, 5%); color: #011810 } secondary-800 { background-color: hsl(158, 71%, 15%); color: #0b412d } secondary-700 { background-color: hsl(158, 59%, 25%); color: #1a654a } secondary-600 { background-color: hsl(158, 52%, 35%); color: #2b8866 } secondary-500 { background-color: hsl(158, 50%, 45%); color: #39ac82 } secondary-400 { background-color: hsl(158, 52%, 55%); color: #51c89c } secondary-300 { background-color: hsl(158, 61%, 65%); color: #6fdcb4 } secondary-200 { background-color: hsl(158, 74%, 75%); color: #90eecc } secondary-100 { background-color: hsl(158, 92%, 85%); color: #b6fce2 } grey-900 { background-color: hsl(50, 15%, 10%); color: #1d1c16 } grey-800 { background-color: hsl(50, 15%, 20%); color: #3b382b } grey-700 { background-color: hsl(50, 15%, 30%); color: #585441 } grey-600 { background-color: hsl(50, 15%, 40%); color: #757057 } grey-500 { background-color: hsl(50, 15%, 50%); color: #938c6c } grey-400 { background-color: hsl(50, 15%, 60%); color: #a8a38a } grey-300 { background-color: hsl(50, 15%, 70%); color: #bebaa7 } grey-200 { background-color: hsl(50, 15%, 80%); color: #d4d1c4 } grey-100 { background-color: hsl(50, 15%, 90%); color: #e9e8e2 }
barebones/assets/css/styles.css
@media screen and (width > 600px) { body { max-width: 720px; margin: auto; font-family: -apple-system, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue; color: #1d1c16; } } @media screen and (width <= 600px) { body { max-width: 720px; margin: 0 10px; font-family: -apple-system, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue; color: #1d1c16; } } /* * * * * Index * * * * */ .header { /* navigation head */ } .head > h3 { /* name of blog */ display: none; } ul.nav { margin: 8px 0 16px 0; padding: 0; } ul.nav > li { display: inline; margin-right: 16px; } .content { /* everything under the navigation */ } .content > header { display: none; } .content > header > .site-heading > h1 { /* 'Vincent's Blog' */ } .content > header > .site-heading > span.subheading { /* 'Thoughts, stories, and idea' */ } /* pagination uptop */ .extra-pagination { /* redundant with the nav */ display: none; } nav.pagination { /* cluster of 'page 1 of 2' */ } span.page-number { /* 'page 1 of 2' */ } a.older-posts { /* 'Older Posts' */ } /* loops over and creates */ article.post { /* note: also affects the post page */ margin: 0 0 48px 0; padding: 0; } /* optional: 'article.tag-kebab-cased-name' */ article.post > header.post-header {} article.post > section.post-excerpt {} article.post > section.post-excerpt > p { /* actual text being printer */ } article.post > footer.post-meta { /* "on __tag__ 06 March 2021" */ display: none; } /* bottom of page */ nav.pagination { margin: 16px 0 16px 0; } /* * * * * Post Page * * * * */ section.post-content { line-height: 1.5; } section.post-content > h1.post-title { font-weight: 300; font-size: xxx-large; letter-spacing: 0.05rem; margin: 32px 0 16px 0; } /* content follows, not container */ section.post-content > p, ol { margin: 0; } section.post-content > p > * { margin: 12px 0 4px 0; } section.post-content > h1, h2, h3, h4, h5, h6 { margin: 32px 0 8px 0; } section.post-content > figure { /* image holder */ margin: 16px 0 48px 0; border-width: 2px; border-style: solid; border-color: #bebaa7; border-radius: 5px; padding: 8px; } section.post-content > figure.kg-bookmark-card { } section.post-content > figure.kg-bookmark-card > a > .kg-bookmark-content { padding: 0 32px; } section.post-content > figure.kg-bookmark-card > a > .kg-bookmark-content > .kg-bookmark-title { font-family: monospace; font-size: larger; } section.post-content > figure.kg-bookmark-card > a > .kg-bookmark-content > .kg-bookmark-description { font-style: italic; font-size: smaller; margin: 8px 0; } section.post-content > figure.kg-bookmark-card > a > .kg-bookmark-content > .kg-bookmark-metadata { display: none; } img { width:100%; height:100%; border-radius: 10px; } section.post-content > figure > img { /* image */ width: 100%; } section.post-content > figure > a > div > img { width: 100% } figure.kg-gallery-card { /* will hold a gallery of cards that can be iterate over in javascript */ } section.post-content > blockquote { margin: 12px 48px; } section.post-content > pre { margin: 32px 0; overflow-x: scroll; background-color: #3b382b; padding: 8px; border-radius: 4px; } section.post-content > pre > code { /* my already be a default? */ font-family: monospace; color: #e9e8e2; font-weight: 600; } footer.post-footer { } footer.post-footer > section.author > h2 { /* written by */ } footer.post-footer > section.author > h4 { /* author name ? */ } /* * * * * Colors * * * * */ primary-900 { background-color: hsl(50, 89%, 5%); color: #181401 } primary-800 { background-color: hsl(50, 71%, 15%); color: #41380b } primary-700 { background-color: hsl(50, 59%, 25%); color: #65591a } primary-600 { background-color: hsl(50, 52%, 35%); color: #88782b } primary-500 { background-color: hsl(50, 50%, 45%); color: #ac9939 } primary-400 { background-color: hsl(50, 52%, 55%); color: #c8b451 } primary-300 { background-color: hsl(50, 61%, 65%); color: #dcca6f } primary-200 { background-color: hsl(50, 74%, 75%); color: #eedf90 } primary-100 { background-color: hsl(50, 92%, 85%); color: #fcf0b6 } secondary-900 { background-color: hsl(158, 89%, 5%); color: #011810 } secondary-800 { background-color: hsl(158, 71%, 15%); color: #0b412d } secondary-700 { background-color: hsl(158, 59%, 25%); color: #1a654a } secondary-600 { background-color: hsl(158, 52%, 35%); color: #2b8866 } secondary-500 { background-color: hsl(158, 50%, 45%); color: #39ac82 } secondary-400 { background-color: hsl(158, 52%, 55%); color: #51c89c } secondary-300 { background-color: hsl(158, 61%, 65%); color: #6fdcb4 } secondary-200 { background-color: hsl(158, 74%, 75%); color: #90eecc } secondary-100 { background-color: hsl(158, 92%, 85%); color: #b6fce2 } grey-900 { background-color: hsl(50, 15%, 10%); color: #1d1c16 } grey-800 { background-color: hsl(50, 15%, 20%); color: #3b382b } grey-700 { background-color: hsl(50, 15%, 30%); color: #585441 } grey-600 { background-color: hsl(50, 15%, 40%); color: #757057 } grey-500 { background-color: hsl(50, 15%, 50%); color: #938c6c } grey-400 { background-color: hsl(50, 15%, 60%); color: #a8a38a } grey-300 { background-color: hsl(50, 15%, 70%); color: #bebaa7 } grey-200 { background-color: hsl(50, 15%, 80%); color: #d4d1c4 } grey-100 { background-color: hsl(50, 15%, 90%); color: #e9e8e2 }
0.355663
0.080249
@charset "UTF-8"; .btn { position: absolute; left: 425px; top: 270px; height: 40px; line-height: 40px; padding: 0 30px 0 40px; margin: 0 20px; background: linear-gradient(-100deg, #FF8900, #FF8300); box-shadow: 0 15px 65px #A65600; border-width: 0; border-radius: 30px; font-family: 'Montserrat Alternates', sans-serif; font-size: 14px; color: white; outline: none; cursor: pointer; } .btn:before { position: absolute; left: 5px; top: 5px; font-family: FontAwesome; color: white; width: 30px; height: 30px; line-height: 30px; text-align: center; border-radius: 20%; background: transparent; transition: .3s ease-in-out; } .btn:hover:before { background: white; color: #FF8900; } .style{ position: absolute; top: 45px; } .select-css { position: absolute; bottom: -30%; display: block; font-size: 14px; font-family: sans-serif; font-weight: 700; color: #444; line-height: 1.3; padding: .6em 1.4em .5em .8em; width: 100%; max-width: 98.4%; box-sizing: border-box; margin: 0; border: 1px solid #aaa; box-shadow: 0 1px 0 1px rgba(0,0,0,.04); border-radius: .5em; -moz-appearance: none; -webkit-appearance: none; appearance: none; background-color: #fff; background-repeat: no-repeat, repeat; background-position: right .7em top 50%, 0 0; background-size: .65em auto, 100%; } .select-css::-ms-expand { display: none; } .select-css:hover { border-color: #888; } .select-css:focus { border-color: #aaa; box-shadow: 0 0 1px 3px #A65600; box-shadow: 0 0 0 3px -moz-mac-focusring; color: #222; outline: none; } .select-css option { font-weight:normal; } *[dir="rtl"] .select-css, :root:lang(ar) .select-css, :root:lang(iw) .select-css { background-position: left .7em top 50%, 0 0; padding: .6em .8em .5em 1.4em; } .ins{ display: block; font-size: 14px; font-family: sans-serif; font-weight: 700; color: #444; line-height: 1.3; padding: .6em 1.4em .5em .8em; width: 100%; max-width: 100%; box-sizing: border-box; border: 1px solid #aaa; box-shadow: 0 1px 0 1px rgba(0,0,0,.04); border-radius: .5em; background-color: #fff; background-repeat: no-repeat, repeat; background-position: right .7em top 50%, 0 0; background-size: .65em auto, 100%; }
application/static/style/admin.css
@charset "UTF-8"; .btn { position: absolute; left: 425px; top: 270px; height: 40px; line-height: 40px; padding: 0 30px 0 40px; margin: 0 20px; background: linear-gradient(-100deg, #FF8900, #FF8300); box-shadow: 0 15px 65px #A65600; border-width: 0; border-radius: 30px; font-family: 'Montserrat Alternates', sans-serif; font-size: 14px; color: white; outline: none; cursor: pointer; } .btn:before { position: absolute; left: 5px; top: 5px; font-family: FontAwesome; color: white; width: 30px; height: 30px; line-height: 30px; text-align: center; border-radius: 20%; background: transparent; transition: .3s ease-in-out; } .btn:hover:before { background: white; color: #FF8900; } .style{ position: absolute; top: 45px; } .select-css { position: absolute; bottom: -30%; display: block; font-size: 14px; font-family: sans-serif; font-weight: 700; color: #444; line-height: 1.3; padding: .6em 1.4em .5em .8em; width: 100%; max-width: 98.4%; box-sizing: border-box; margin: 0; border: 1px solid #aaa; box-shadow: 0 1px 0 1px rgba(0,0,0,.04); border-radius: .5em; -moz-appearance: none; -webkit-appearance: none; appearance: none; background-color: #fff; background-repeat: no-repeat, repeat; background-position: right .7em top 50%, 0 0; background-size: .65em auto, 100%; } .select-css::-ms-expand { display: none; } .select-css:hover { border-color: #888; } .select-css:focus { border-color: #aaa; box-shadow: 0 0 1px 3px #A65600; box-shadow: 0 0 0 3px -moz-mac-focusring; color: #222; outline: none; } .select-css option { font-weight:normal; } *[dir="rtl"] .select-css, :root:lang(ar) .select-css, :root:lang(iw) .select-css { background-position: left .7em top 50%, 0 0; padding: .6em .8em .5em 1.4em; } .ins{ display: block; font-size: 14px; font-family: sans-serif; font-weight: 700; color: #444; line-height: 1.3; padding: .6em 1.4em .5em .8em; width: 100%; max-width: 100%; box-sizing: border-box; border: 1px solid #aaa; box-shadow: 0 1px 0 1px rgba(0,0,0,.04); border-radius: .5em; background-color: #fff; background-repeat: no-repeat, repeat; background-position: right .7em top 50%, 0 0; background-size: .65em auto, 100%; }
0.38769
0.076684
span.smwbuiltin, span.smwttactiveinline span.smwbuiltin { /* highlighting for builtin elements */ font-style: italic; } /* tables for inline queries */ table.smwtable{ background-color: #EEEEFF;/* Note: here and below, we use six digits, since some users had problems with the three digit short forms */ } table.smwtable th{ background-color: #EEEEFF; text-align: left; } table.smwtable td{ background-color: #FFFFFF; padding: 1px; padding-left: 5px; padding-right: 5px; text-align: left; vertical-align: top; } table.smwtable tr.smwfooter td{ font-size: 90%; line-height: 1; background-color: #EEEEFF; padding: 0px; padding-left: 5px; padding-right: 5px; text-align: right; vertical-align: top; } /*hide keys for sorting table entries*/ span.smwsortkey{ display: none; } /* buttons for sort-arrows */ a.sortheader:hover{ text-decoration: none; } /* "semantic" span classes for Timeline */ div.smwtimeline{ border: 1px solid #AAAAAA; background-color: #F9F9F9; /*text-align: center;*/ /* After hours of debugging and frustration I now can savely say: IE sucks. (mak) You can support Semantic MediaWiki development by not using Internet Explorer. Thanks. (IE centers the Timeline *elements*, which messes up the whole layout) */ } span.smwtlevent, span.smwtlband, span.smwtlsize, span.smwtlposition{ display: none; speak: none; } span.smwtlcomment{ font-style: italic; padding: 5px; } /* Factbox */ div.smwfact{ clear: both; background-color: #F9F9F9; padding: 5px; margin-top: 1em; border: 1px solid #AAAAAA; font-size: 95%; } div.smwfact td, div.smwfact tr, div.smwfact table{ background-color: #F9F9F9; } span.smwfactboxhead{ font-size: 110%; font-weight: bold; float: left; } table.smwfacttable{ border-top: 1px dotted #AAAAAA; width: 100%; clear: both; } td.smwpropname, th.smwpropname, td.smwspecname{ text-align: right; vertical-align: top; padding-right: 1em; } td.smwprops, td.smwspecs{ vertical-align: top; width: 75%; } div.smwhr hr{ background-color: #DDDDDD; color: #DDDDDD; } /* warning messages */ span.smwwarning{ color: #888888; font-style: italic; font-size: 90%; } /* search, browse, RDF icons */ span.smwsearchicon { /*FIXME: this was only used for Factbox docu, should be removed from code*/ padding-right: 16px; margin-right: 2px; color: #888888; background: url(images/searchgray_iconsmall.png) center right no-repeat; } #bodyContent span.smwsearch a{ padding-right: 16px; margin-right: 2px; color: #888888; background: url(images/searchgray_iconsmall.png) center right no-repeat; } #bodyContent span.smwsearch a:hover{ text-decoration: none; color: #0000FF; padding-right: 18px; margin-right: 0px; background: url(images/search_icon.png) center right no-repeat; } #bodyContent span.swmfactboxheadbrowse a{ padding-right: 16px; margin-right: 2px; color: #000000; background: url(images/browse_iconsmall.png) center right no-repeat; } #bodyContent span.swmfactboxheadbrowse a:hover{ text-decoration: none; color: #0000FF; padding-right: 18px; margin-right: 0px; background: url(images/browse_icon.png) center right no-repeat; } #bodyContent span.smwbrowse a{ padding-right: 16px; margin-right: 2px; color: #888888; background: url(images/browse_iconsmall.png) center right no-repeat; } #bodyContent span.smwbrowse a:hover{ text-decoration: none; color: #0000FF; padding-right: 18px; margin-right: 0px; background: url(images/browse_icon.png) center right no-repeat; } #bodyContent span.smwmap a{ padding-right: 20px; color: #888888; background: url(images/world.png) center right no-repeat; } #bodyContent span.smwmap a:hover{ padding-right: 20px; color: #0000FF; background: url(images/world.png) center right no-repeat; } #bodyContent span.rdflink{ float: right; } #bodyContent span.rdflink a{ padding-right: 20px; color: #888888; background: url(images/rdf_flyer.18.gif) center right no-repeat; } #bodyContent span.rdflink a:hover{ text-decoration: none; color: #0000FF; padding-right: 20px; margin-right: 0px; background: url(images/rdf_flyer.18.gif) center right no-repeat; } /* Tooltips */ div.smwtt { /* style for content of the bubble */ color: #000000; } span.smwttpersist span.smwttcontent{ /* show persistent tooltips for non-JavaScript clients */ color: #888888; font-style: italic; font-size: 90%; } span.smwttinline span.smwttcontent{ /* hide inline tooltips for non-JavaScript clients */ display: none; speak: none; } span.smwtticon{ /* style for image anchor for persistent tooltips */ display: none; } span.smwttactivepersist { /* colored anchors? */ cursor: help; color: #0000C8; } span.smwttactiveinline { /* colored anchors */ color: #BB7700; text-decoration: none; } img.smwttimg { /* images for tooltip icons */ padding-right: 5px; padding-left: 4px; }
info/RPI Map Source Code/RPI Map - RPI Map_files/SMW_custom.css
span.smwbuiltin, span.smwttactiveinline span.smwbuiltin { /* highlighting for builtin elements */ font-style: italic; } /* tables for inline queries */ table.smwtable{ background-color: #EEEEFF;/* Note: here and below, we use six digits, since some users had problems with the three digit short forms */ } table.smwtable th{ background-color: #EEEEFF; text-align: left; } table.smwtable td{ background-color: #FFFFFF; padding: 1px; padding-left: 5px; padding-right: 5px; text-align: left; vertical-align: top; } table.smwtable tr.smwfooter td{ font-size: 90%; line-height: 1; background-color: #EEEEFF; padding: 0px; padding-left: 5px; padding-right: 5px; text-align: right; vertical-align: top; } /*hide keys for sorting table entries*/ span.smwsortkey{ display: none; } /* buttons for sort-arrows */ a.sortheader:hover{ text-decoration: none; } /* "semantic" span classes for Timeline */ div.smwtimeline{ border: 1px solid #AAAAAA; background-color: #F9F9F9; /*text-align: center;*/ /* After hours of debugging and frustration I now can savely say: IE sucks. (mak) You can support Semantic MediaWiki development by not using Internet Explorer. Thanks. (IE centers the Timeline *elements*, which messes up the whole layout) */ } span.smwtlevent, span.smwtlband, span.smwtlsize, span.smwtlposition{ display: none; speak: none; } span.smwtlcomment{ font-style: italic; padding: 5px; } /* Factbox */ div.smwfact{ clear: both; background-color: #F9F9F9; padding: 5px; margin-top: 1em; border: 1px solid #AAAAAA; font-size: 95%; } div.smwfact td, div.smwfact tr, div.smwfact table{ background-color: #F9F9F9; } span.smwfactboxhead{ font-size: 110%; font-weight: bold; float: left; } table.smwfacttable{ border-top: 1px dotted #AAAAAA; width: 100%; clear: both; } td.smwpropname, th.smwpropname, td.smwspecname{ text-align: right; vertical-align: top; padding-right: 1em; } td.smwprops, td.smwspecs{ vertical-align: top; width: 75%; } div.smwhr hr{ background-color: #DDDDDD; color: #DDDDDD; } /* warning messages */ span.smwwarning{ color: #888888; font-style: italic; font-size: 90%; } /* search, browse, RDF icons */ span.smwsearchicon { /*FIXME: this was only used for Factbox docu, should be removed from code*/ padding-right: 16px; margin-right: 2px; color: #888888; background: url(images/searchgray_iconsmall.png) center right no-repeat; } #bodyContent span.smwsearch a{ padding-right: 16px; margin-right: 2px; color: #888888; background: url(images/searchgray_iconsmall.png) center right no-repeat; } #bodyContent span.smwsearch a:hover{ text-decoration: none; color: #0000FF; padding-right: 18px; margin-right: 0px; background: url(images/search_icon.png) center right no-repeat; } #bodyContent span.swmfactboxheadbrowse a{ padding-right: 16px; margin-right: 2px; color: #000000; background: url(images/browse_iconsmall.png) center right no-repeat; } #bodyContent span.swmfactboxheadbrowse a:hover{ text-decoration: none; color: #0000FF; padding-right: 18px; margin-right: 0px; background: url(images/browse_icon.png) center right no-repeat; } #bodyContent span.smwbrowse a{ padding-right: 16px; margin-right: 2px; color: #888888; background: url(images/browse_iconsmall.png) center right no-repeat; } #bodyContent span.smwbrowse a:hover{ text-decoration: none; color: #0000FF; padding-right: 18px; margin-right: 0px; background: url(images/browse_icon.png) center right no-repeat; } #bodyContent span.smwmap a{ padding-right: 20px; color: #888888; background: url(images/world.png) center right no-repeat; } #bodyContent span.smwmap a:hover{ padding-right: 20px; color: #0000FF; background: url(images/world.png) center right no-repeat; } #bodyContent span.rdflink{ float: right; } #bodyContent span.rdflink a{ padding-right: 20px; color: #888888; background: url(images/rdf_flyer.18.gif) center right no-repeat; } #bodyContent span.rdflink a:hover{ text-decoration: none; color: #0000FF; padding-right: 20px; margin-right: 0px; background: url(images/rdf_flyer.18.gif) center right no-repeat; } /* Tooltips */ div.smwtt { /* style for content of the bubble */ color: #000000; } span.smwttpersist span.smwttcontent{ /* show persistent tooltips for non-JavaScript clients */ color: #888888; font-style: italic; font-size: 90%; } span.smwttinline span.smwttcontent{ /* hide inline tooltips for non-JavaScript clients */ display: none; speak: none; } span.smwtticon{ /* style for image anchor for persistent tooltips */ display: none; } span.smwttactivepersist { /* colored anchors? */ cursor: help; color: #0000C8; } span.smwttactiveinline { /* colored anchors */ color: #BB7700; text-decoration: none; } img.smwttimg { /* images for tooltip icons */ padding-right: 5px; padding-left: 4px; }
0.380644
0.093761
html::-webkit-scrollbar { position: absolute; width: 0.5vw; } html::-webkit-scrollbar-thumb { border-radius: 5px; background-color: var(--bgColor); } html::-webkit-scrollbar-thumb:hover { background-color: #48a7cd; } html::-webkit-scrollbar-track { background-color: var(--bgColor5); } .dashScroll::-webkit-scrollbar { position: absolute; width: 0.5vw; } .dashScroll::-webkit-scrollbar-thumb { border-radius: 5px; background-color: #d1e4e9; } .dashScroll::-webkit-scrollbar-thumb:hover { background-color: #d8e8ec; } .dashScroll::-webkit-scrollbar-track { background-color: #fafafa; } /* Width & Height */ .ww-100 { width: 100%; } .hh-100 { height: 100%; } /* Margin Top */ .mt-10 { margin-top: 10px; } .mt-20 { margin-top: 20px; } .mt-30 { margin-top: 30px; } .mt-40 { margin-top: 40px; } .mt-50 { margin-top: 50px; } .mt-60 { margin-top: 60px; } .mt-70 { margin-top: 70px; } .mt-80 { margin-top: 80px; } .mt-90 { margin-top: 90px; } .mt-100 { margin-top: 100px; } /* Margin Bottom */ .mb-10 { margin-bottom: 10px; } .mb-20 { margin-bottom: 20px; } .mb-30 { margin-bottom: 30px; } .mb-40 { margin-bottom: 40px; } .mb-50 { margin-bottom: 50px; } .mb-60 { margin-bottom: 60px; } .mb-70 { margin-bottom: 70px; } .mb-80 { margin-bottom: 80px; } .mb-90 { margin-bottom: 90px; } .mb-100 { margin-bottom: 100px; } /* Padding Top */ .pt-10 { padding-top: 10px; } .pt-20 { padding-top: 20px; } .pt-30 { padding-top: 30px; } .pt-40 { padding-top: 40px; } .pt-50 { padding-top: 50px; } .pt-60 { padding-top: 60px; } .pt-70 { padding-top: 70px; } .pt-80 { padding-top: 80px; } .pt-90 { padding-top: 90px; } .pt-100 { padding-top: 100px; } /* Padding Bottom */ .pb-10 { padding-bottom: 10px; } .pb-20 { padding-bottom: 20px; } .pb-30 { padding-bottom: 30px; } .pb-40 { padding-bottom: 40px; } .pb-50 { padding-bottom: 50px; } .pb-60 { padding-bottom: 60px; } .pb-70 { padding-bottom: 70px; } .pb-80 { padding-bottom: 80px; } .pb-90 { padding-bottom: 90px; } .pb-100 { padding-bottom: 100px; } /* Font Size */ .f-100 { font-size: 100px; } .flex_center_around { display: flex; justify-content: space-around; align-items: center; } /* Common CSS */ /* Google Fonts (Poppins) */ @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,400;1,500;1,600;1,700;1,800&display=swap'); /* Variable List */ :root { --bgColor: #358fb2; --bgColor2: #74cfe4; --bgColor3: #cbcbcb; --bgColor4: #2b313f; --bgColor5: #2d4355; --sectionBg: #f3f3f3; --largFont: 40px; --mediumFont: 24px; --normalFont: 18px; --smallFont: 14px; --textColor: #161d27; --textColor2: #262626; --fontFamily: 'Poppins', sans-serif; --sectionPadding: 60px 0px; } body { font-size: var(--normalFont); color: var(--textColor2); font-family: var(--fontFamily); font-weight: regular; } h1, h2, h3, h4 { font-family: var(--fontFamily); color: var(--textColor); font-weight: semi-bold; margin: 0; } ul { list-style: none; margin: 0; padding: 0; } p { margin: 0; } a { text-decoration: none; color: var(--textColor); } abbr[title] { border-bottom: none !important; cursor: inherit !important; text-decoration: none !important; } .btn { text-decoration: none; font-size: var(--smallFont); font-family: var(--fontFamily); display: inline-block; transition: 0.3s; padding: 10px 15px; box-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.1); border: 1px solid whitesmoke; border-radius: 5px; } .btn-main { color: #ffffff; background: #358fb2; border: none; } .btn-warn { background: #F9CA70; border: none; } .btn-positive { background: #96BEA4; border: none; } .btn-negative { background: #EE4D6E; border: none; } .btn-alt { background: #dcdcdc; color: #464646; border: 1px solid #c0c0c0; } .btn-main:hover { color: #f5f5f5; background: #17789d; box-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.2); animation: flash 1.5s infinite; } .btn-alt:hover { background: #cacaca; color: #3a3a3a; } .btn-warn:hover { background: #e2b665; border: none; } .btn-positive:hover { background: #7ea78c; border: none; } .btn-negative:hover { background: #cc435e; border: none; } @keyframes flash { 0%, 100% { background: #1d87b0; } 50% { background: #167295; } } .btn:active { color: #e9e9e9; background: #005779; box-shadow: inset 0px 2px 0px rgba(0, 0, 0, 0.3); } .section-padding { padding: var(--sectionPadding); } .section-bg { background-color: var(--sectionBg); } .section-title { display: inline-block; position: relative; } .section-title h3 { font-size: var(--normalFont); color: var(--textColor); font-weight: 600; } .section-title::after { position: absolute; content: ''; background-color: var(--bgColor); width: 100%; height: 2px; } .link-title { display: block; text-align: right; } .link-title a { font-size: var(--normalFont); color: var(--textColor); font-weight: 600; text-decoration: none; } .center-flex { display: flex; align-items: center; justify-content: center; }
src/style/defaults.css
html::-webkit-scrollbar { position: absolute; width: 0.5vw; } html::-webkit-scrollbar-thumb { border-radius: 5px; background-color: var(--bgColor); } html::-webkit-scrollbar-thumb:hover { background-color: #48a7cd; } html::-webkit-scrollbar-track { background-color: var(--bgColor5); } .dashScroll::-webkit-scrollbar { position: absolute; width: 0.5vw; } .dashScroll::-webkit-scrollbar-thumb { border-radius: 5px; background-color: #d1e4e9; } .dashScroll::-webkit-scrollbar-thumb:hover { background-color: #d8e8ec; } .dashScroll::-webkit-scrollbar-track { background-color: #fafafa; } /* Width & Height */ .ww-100 { width: 100%; } .hh-100 { height: 100%; } /* Margin Top */ .mt-10 { margin-top: 10px; } .mt-20 { margin-top: 20px; } .mt-30 { margin-top: 30px; } .mt-40 { margin-top: 40px; } .mt-50 { margin-top: 50px; } .mt-60 { margin-top: 60px; } .mt-70 { margin-top: 70px; } .mt-80 { margin-top: 80px; } .mt-90 { margin-top: 90px; } .mt-100 { margin-top: 100px; } /* Margin Bottom */ .mb-10 { margin-bottom: 10px; } .mb-20 { margin-bottom: 20px; } .mb-30 { margin-bottom: 30px; } .mb-40 { margin-bottom: 40px; } .mb-50 { margin-bottom: 50px; } .mb-60 { margin-bottom: 60px; } .mb-70 { margin-bottom: 70px; } .mb-80 { margin-bottom: 80px; } .mb-90 { margin-bottom: 90px; } .mb-100 { margin-bottom: 100px; } /* Padding Top */ .pt-10 { padding-top: 10px; } .pt-20 { padding-top: 20px; } .pt-30 { padding-top: 30px; } .pt-40 { padding-top: 40px; } .pt-50 { padding-top: 50px; } .pt-60 { padding-top: 60px; } .pt-70 { padding-top: 70px; } .pt-80 { padding-top: 80px; } .pt-90 { padding-top: 90px; } .pt-100 { padding-top: 100px; } /* Padding Bottom */ .pb-10 { padding-bottom: 10px; } .pb-20 { padding-bottom: 20px; } .pb-30 { padding-bottom: 30px; } .pb-40 { padding-bottom: 40px; } .pb-50 { padding-bottom: 50px; } .pb-60 { padding-bottom: 60px; } .pb-70 { padding-bottom: 70px; } .pb-80 { padding-bottom: 80px; } .pb-90 { padding-bottom: 90px; } .pb-100 { padding-bottom: 100px; } /* Font Size */ .f-100 { font-size: 100px; } .flex_center_around { display: flex; justify-content: space-around; align-items: center; } /* Common CSS */ /* Google Fonts (Poppins) */ @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,400;1,500;1,600;1,700;1,800&display=swap'); /* Variable List */ :root { --bgColor: #358fb2; --bgColor2: #74cfe4; --bgColor3: #cbcbcb; --bgColor4: #2b313f; --bgColor5: #2d4355; --sectionBg: #f3f3f3; --largFont: 40px; --mediumFont: 24px; --normalFont: 18px; --smallFont: 14px; --textColor: #161d27; --textColor2: #262626; --fontFamily: 'Poppins', sans-serif; --sectionPadding: 60px 0px; } body { font-size: var(--normalFont); color: var(--textColor2); font-family: var(--fontFamily); font-weight: regular; } h1, h2, h3, h4 { font-family: var(--fontFamily); color: var(--textColor); font-weight: semi-bold; margin: 0; } ul { list-style: none; margin: 0; padding: 0; } p { margin: 0; } a { text-decoration: none; color: var(--textColor); } abbr[title] { border-bottom: none !important; cursor: inherit !important; text-decoration: none !important; } .btn { text-decoration: none; font-size: var(--smallFont); font-family: var(--fontFamily); display: inline-block; transition: 0.3s; padding: 10px 15px; box-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.1); border: 1px solid whitesmoke; border-radius: 5px; } .btn-main { color: #ffffff; background: #358fb2; border: none; } .btn-warn { background: #F9CA70; border: none; } .btn-positive { background: #96BEA4; border: none; } .btn-negative { background: #EE4D6E; border: none; } .btn-alt { background: #dcdcdc; color: #464646; border: 1px solid #c0c0c0; } .btn-main:hover { color: #f5f5f5; background: #17789d; box-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.2); animation: flash 1.5s infinite; } .btn-alt:hover { background: #cacaca; color: #3a3a3a; } .btn-warn:hover { background: #e2b665; border: none; } .btn-positive:hover { background: #7ea78c; border: none; } .btn-negative:hover { background: #cc435e; border: none; } @keyframes flash { 0%, 100% { background: #1d87b0; } 50% { background: #167295; } } .btn:active { color: #e9e9e9; background: #005779; box-shadow: inset 0px 2px 0px rgba(0, 0, 0, 0.3); } .section-padding { padding: var(--sectionPadding); } .section-bg { background-color: var(--sectionBg); } .section-title { display: inline-block; position: relative; } .section-title h3 { font-size: var(--normalFont); color: var(--textColor); font-weight: 600; } .section-title::after { position: absolute; content: ''; background-color: var(--bgColor); width: 100%; height: 2px; } .link-title { display: block; text-align: right; } .link-title a { font-size: var(--normalFont); color: var(--textColor); font-weight: 600; text-decoration: none; } .center-flex { display: flex; align-items: center; justify-content: center; }
0.323594
0.051415
body { font-size: 81.25%; /* 13px */ font-family: Verdana, Helvetica, 'Bitstream Vera Sans', Arial, sans-serif; line-height: 1.538; /* 20px */ color: #223; background-color: #fff; letter-spacing: 0.01em; margin:0 10px; } #container { max-width:48em; margin:50px auto 10px auto; } table { font-family: Verdana, Helvetica, 'Bitstream Vera Sans', Arial, sans-serif; font-size:11px; } p, ul, ol, dl, pre { margin:10px 0 } i, em { font-style: italic; } b, strong { font-weight: bold; color: #000; } dl { margin-left: 40px } dt { font-weight: bold; color: #000; } hr { color: #eee; background-color: #ccc; border: 0; height: 1px; margin: 30px 0; } blockquote { margin: 20px 60px 20px 30px; padding: 0; color: #556; } blockquote em { color:#001; } blockquote strong { color:#001; font-weight: normal; } tt, pre, code, samp, kbd { color: #000; font-size: 13px; font-family: Consolas, 'Lucida Console', 'Bitstream Vera Sans Mono', 'Courier New', monospace; } pre { color:#333; background-color:#f9f9f9; padding:6px 4px 4px 6px; border:1px solid #eee; border-left-width:20px; line-height:1.1; overflow:auto; } code { color: #007A00; } pre code { color: #333; } a, a:link { color:#023; background:#eef; } a:visited { color:#345; background:#fff; } a:hover { background:#ccf; color:#000; text-decoration:none; } /* Headings --------------------------------------------------------------------------- */ h1, h2, h3 { font-family:Georgia,'Bitstream Vera Sans Serif','Lucida Grande',Helvetica,Verdana,Arial,sans-serif; font-weight:normal; letter-spacing:-0.05em; color:#000; } h1 { font-size:2.923em; /* 38px */ line-height:1.05; /* 40px */ margin:10px 0; /* 60px */ } h2 { font-size:26px; /* 26px */ line-height:1.15; /* 30px */ margin:15px 0; /* 60px */ } h3 { font-size:23px; line-height:1.1; margin:30px 0 10px 0; } h4 { font-size:13px; font-weight:bold; line-height:1.538; margin:10px 0 10px 0; } /* Tables --------------------------------------------------------------------------- */ table { margin:10px 0; width:100%; border-style:none; border-color:#ddd; padding:0; } th, td { padding: 4px 10px 4px 5px; border-style:solid; border-color:#fff; } th { font-weight: bold; background: #eef; } td { background: #f9f9f9; } tfoot { font-style: italic; } caption { background: #eee; } /* Header / Titling --------------------------------------------------------------------------- */ #header { text-align:center; margin:20px 20px; } #header h1 { margin:0; } #header h1 a, #header h1 a:link, #header h1 a:visited, #header h1 a:hover { color:#000; text-decoration:none; background:transparent; } #header p { margin: 0; color: #777; text-transform: capitalize; font-variant: small-caps; } #header a, #header a:link, #header a:visited { color:#445; background:#fff; } #header a:hover { background:#ccf; color:#000; text-decoration:none; } #header .email, #header .site { text-transform:none; font-variant:normal; } /* Appendix --------------------------------------------------------------------------- */ #appendix { margin-top: 30px; border-top: 1px solid #ddd; } /* Comments --------------------------------------------------------------------------- */ ol.comments { margin:20px 0px; padding-left:25px; } ol.comments > li { margin-top:20px; margin-bottom:60px; } ol.comments h3 { font-size:18px; color:#555; } ol.comments h3 .commentor { font-family: Verdana, Helvetica, 'Bitstream Vera Sans', Arial, sans-serif; } ol.comments .comment-meta { text-align: right; color: #555; } ol.comments .commentor { color:#000; background:#fff; } #comments form.leave { margin-left: 40px; } #comments form.leave textarea { width: 100%; } /* Admin stuff --------------------------------------------------------------------------- */ li.comment textarea { width: 100%; } li.comment form { text-align: center; } #draft input[type=text], form#draft textarea { width:100%; padding:4px; border:1px dotted #ddd; font-size:inherit; text-align:inherit; font-family:inherit; color:inherit; } #draft #summary { text-align: center; } #draft textarea#body { font-family:Consolas; } form .buttons { text-align: center; } #header .admin { margin-top:-20px; } /* Footer --------------------------------------------------------------------------- */ #footer { clear: both; color: #555; font-size: 11px; line-height: 1.818181818182; border-top:1px solid #ddd; padding: 19px 0 0 0; margin: 40px 0 20px 0; text-align:center; } #footer p { margin:0; } #footer form { float:right; } #footer input{ font-size:10px; } /* Misc Helper Classes --------------------------------------------------------------------------- */ ul.clean, ol.clean { list-style-type: none; padding-left: 0; } .caps { font-variant:small-caps; } /* Index Pages --------------------------------------------------------------------------- */ body#home #header p { font-size:11px } div.index { text-align: center; max-width: 34.5em; margin: 40px auto; } .index .bookmark h3 { font-size: 13px; line-height: 1.7; font-family: Verdana, Helvetica, 'Bitstream Vera Sans', Arial, sans-serif; margin: 0 0 5px 0; } .index .bookmark p, .index .bookmark p.meta { font-size: 11px; margin: 5px 0; font-family: Verdana, Helvetica, 'Bitstream Vera Sans', Arial, sans-serif; } .index .bookmark { margin: 40px 0; } .index .post, .index .article { margin: 60px 0; padding: 0; } .index .post h3, .index .article h3 { font-size: 23px; line-height: 1.36363636; /* repeating, of course */ margin: 0 0 0 0; } .index p.meta { color: #555; margin: 5px; } /* Print Styles --------------------------------------------------------------------------- */ @media print { html, body, #container { margin:0; } #container { width:100%; max-width:100%; } #header { margin-top:0; } #footer { display:none; } a, a:link, a:visited { color:#000; background:#fff; text-decoration:none; } @page { size:8.5in 11in; } } /* Resume Stuff -------------------------------------------------------------------------- */ .chrono h3 { margin-bottom:0; } .chrono p.period { text-align:right; font-weight:bold; } .chrono p.biz { float:left; } .chrono .stuff { clear:all; } .chrono li li { list-style-type:disc; } @media print { .chrono p.biz a { font-weight:bold; } } /* Prettify CSS --------------------------------------------------------------------------- */ .str { color: #181; font-style:italic; } .kwd { color: #369; } .com { color: #666; } .typ { color: #c40; } .lit { color: #900; } .pun { color: #000; font-weight: bold; } .pln { color: #333; } .tag { color: #369; font-weight: bold; } .atn { color: #939; font-weight: bold } .atv { color: #181; } .dec { color: #606; } @media print { .str { color: #060; } .kwd { color: #006; font-weight: bold; } .com { color: #600; font-style: italic; } .typ { color: #404; font-weight: bold; } .lit { color: #044; } .pun { color: #440; } .pln { color: #000; } .tag { color: #006; font-weight: bold; } .atn { color: #404; } .atv { color: #060; } } /* IE Hacks --------------------------------------------------------------------------- */ * html body{width:52em} * html div.index{width:34.5em} /* vim: set ft=css ts=4 sw=4 noexpandtab: */
public/css/wink.css
body { font-size: 81.25%; /* 13px */ font-family: Verdana, Helvetica, 'Bitstream Vera Sans', Arial, sans-serif; line-height: 1.538; /* 20px */ color: #223; background-color: #fff; letter-spacing: 0.01em; margin:0 10px; } #container { max-width:48em; margin:50px auto 10px auto; } table { font-family: Verdana, Helvetica, 'Bitstream Vera Sans', Arial, sans-serif; font-size:11px; } p, ul, ol, dl, pre { margin:10px 0 } i, em { font-style: italic; } b, strong { font-weight: bold; color: #000; } dl { margin-left: 40px } dt { font-weight: bold; color: #000; } hr { color: #eee; background-color: #ccc; border: 0; height: 1px; margin: 30px 0; } blockquote { margin: 20px 60px 20px 30px; padding: 0; color: #556; } blockquote em { color:#001; } blockquote strong { color:#001; font-weight: normal; } tt, pre, code, samp, kbd { color: #000; font-size: 13px; font-family: Consolas, 'Lucida Console', 'Bitstream Vera Sans Mono', 'Courier New', monospace; } pre { color:#333; background-color:#f9f9f9; padding:6px 4px 4px 6px; border:1px solid #eee; border-left-width:20px; line-height:1.1; overflow:auto; } code { color: #007A00; } pre code { color: #333; } a, a:link { color:#023; background:#eef; } a:visited { color:#345; background:#fff; } a:hover { background:#ccf; color:#000; text-decoration:none; } /* Headings --------------------------------------------------------------------------- */ h1, h2, h3 { font-family:Georgia,'Bitstream Vera Sans Serif','Lucida Grande',Helvetica,Verdana,Arial,sans-serif; font-weight:normal; letter-spacing:-0.05em; color:#000; } h1 { font-size:2.923em; /* 38px */ line-height:1.05; /* 40px */ margin:10px 0; /* 60px */ } h2 { font-size:26px; /* 26px */ line-height:1.15; /* 30px */ margin:15px 0; /* 60px */ } h3 { font-size:23px; line-height:1.1; margin:30px 0 10px 0; } h4 { font-size:13px; font-weight:bold; line-height:1.538; margin:10px 0 10px 0; } /* Tables --------------------------------------------------------------------------- */ table { margin:10px 0; width:100%; border-style:none; border-color:#ddd; padding:0; } th, td { padding: 4px 10px 4px 5px; border-style:solid; border-color:#fff; } th { font-weight: bold; background: #eef; } td { background: #f9f9f9; } tfoot { font-style: italic; } caption { background: #eee; } /* Header / Titling --------------------------------------------------------------------------- */ #header { text-align:center; margin:20px 20px; } #header h1 { margin:0; } #header h1 a, #header h1 a:link, #header h1 a:visited, #header h1 a:hover { color:#000; text-decoration:none; background:transparent; } #header p { margin: 0; color: #777; text-transform: capitalize; font-variant: small-caps; } #header a, #header a:link, #header a:visited { color:#445; background:#fff; } #header a:hover { background:#ccf; color:#000; text-decoration:none; } #header .email, #header .site { text-transform:none; font-variant:normal; } /* Appendix --------------------------------------------------------------------------- */ #appendix { margin-top: 30px; border-top: 1px solid #ddd; } /* Comments --------------------------------------------------------------------------- */ ol.comments { margin:20px 0px; padding-left:25px; } ol.comments > li { margin-top:20px; margin-bottom:60px; } ol.comments h3 { font-size:18px; color:#555; } ol.comments h3 .commentor { font-family: Verdana, Helvetica, 'Bitstream Vera Sans', Arial, sans-serif; } ol.comments .comment-meta { text-align: right; color: #555; } ol.comments .commentor { color:#000; background:#fff; } #comments form.leave { margin-left: 40px; } #comments form.leave textarea { width: 100%; } /* Admin stuff --------------------------------------------------------------------------- */ li.comment textarea { width: 100%; } li.comment form { text-align: center; } #draft input[type=text], form#draft textarea { width:100%; padding:4px; border:1px dotted #ddd; font-size:inherit; text-align:inherit; font-family:inherit; color:inherit; } #draft #summary { text-align: center; } #draft textarea#body { font-family:Consolas; } form .buttons { text-align: center; } #header .admin { margin-top:-20px; } /* Footer --------------------------------------------------------------------------- */ #footer { clear: both; color: #555; font-size: 11px; line-height: 1.818181818182; border-top:1px solid #ddd; padding: 19px 0 0 0; margin: 40px 0 20px 0; text-align:center; } #footer p { margin:0; } #footer form { float:right; } #footer input{ font-size:10px; } /* Misc Helper Classes --------------------------------------------------------------------------- */ ul.clean, ol.clean { list-style-type: none; padding-left: 0; } .caps { font-variant:small-caps; } /* Index Pages --------------------------------------------------------------------------- */ body#home #header p { font-size:11px } div.index { text-align: center; max-width: 34.5em; margin: 40px auto; } .index .bookmark h3 { font-size: 13px; line-height: 1.7; font-family: Verdana, Helvetica, 'Bitstream Vera Sans', Arial, sans-serif; margin: 0 0 5px 0; } .index .bookmark p, .index .bookmark p.meta { font-size: 11px; margin: 5px 0; font-family: Verdana, Helvetica, 'Bitstream Vera Sans', Arial, sans-serif; } .index .bookmark { margin: 40px 0; } .index .post, .index .article { margin: 60px 0; padding: 0; } .index .post h3, .index .article h3 { font-size: 23px; line-height: 1.36363636; /* repeating, of course */ margin: 0 0 0 0; } .index p.meta { color: #555; margin: 5px; } /* Print Styles --------------------------------------------------------------------------- */ @media print { html, body, #container { margin:0; } #container { width:100%; max-width:100%; } #header { margin-top:0; } #footer { display:none; } a, a:link, a:visited { color:#000; background:#fff; text-decoration:none; } @page { size:8.5in 11in; } } /* Resume Stuff -------------------------------------------------------------------------- */ .chrono h3 { margin-bottom:0; } .chrono p.period { text-align:right; font-weight:bold; } .chrono p.biz { float:left; } .chrono .stuff { clear:all; } .chrono li li { list-style-type:disc; } @media print { .chrono p.biz a { font-weight:bold; } } /* Prettify CSS --------------------------------------------------------------------------- */ .str { color: #181; font-style:italic; } .kwd { color: #369; } .com { color: #666; } .typ { color: #c40; } .lit { color: #900; } .pun { color: #000; font-weight: bold; } .pln { color: #333; } .tag { color: #369; font-weight: bold; } .atn { color: #939; font-weight: bold } .atv { color: #181; } .dec { color: #606; } @media print { .str { color: #060; } .kwd { color: #006; font-weight: bold; } .com { color: #600; font-style: italic; } .typ { color: #404; font-weight: bold; } .lit { color: #044; } .pun { color: #440; } .pln { color: #000; } .tag { color: #006; font-weight: bold; } .atn { color: #404; } .atv { color: #060; } } /* IE Hacks --------------------------------------------------------------------------- */ * html body{width:52em} * html div.index{width:34.5em} /* vim: set ft=css ts=4 sw=4 noexpandtab: */
0.25842
0.057599
:root { --green: #21ff00; --bgblue: #003858; --textblue: white; --linkblue: #00AFED; --black: #000000; } .navbar-default { background: #024a76 !important; border: none !important; font-weight: bold; } .logo { vertical-align: middle; width: 125px; height: 125px; padding-top: 10px; float: left; padding-right: 10px; } .navbar-default .navbar-nav > li > a { color: #abc0ca !important; } .navbar-default .navbar-nav > li > a:hover { color: #03a4fb !important; } .navbar-default .navbar-nav > li > a:focus { color: #03a4fb !important; } .navbar-default .navbar-brand { color: #abc0ca !important; } .footer-content { text-align: center; padding: 0.3em; } .footer-content a { padding: 0px 8px 0px 8px; } .screencast-list-title h3 { color: #4bf8fb !important; font-weight: bold !important; } .screencast-list-title p { color: white; } body { padding-bottom: 20px; margin: 0px; font-family: "Helvetica Neue",Helvetica,Arial,sans-serif !important; color: var(--textblue) !important; font-weight: normal; font-size: 18px !important; background: #252525; background-attachment: fixed !important; background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzJhMmEyOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzFjMWMxYyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=="); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2a2a29), color-stop(100%, #000000)); background: -moz-linear-gradient(#005b8e, #000000); background: -webkit-linear-gradient(#005b8e, #000000); background: linear-gradient(#005b8e, #000000); } .page-stuff a { color: #03a4fb !important; text-decoration: none; } .page-stuff a:hover { color: var(--green) !important; text-decoration: none !important; border-bottom: 1px dotted #03a4fb; padding-bottom: 0.5em; } #page-content { padding-bottom: 4em; } .page-stuff { padding-top: 2em; } .jumbotron { font-family: "Ubuntu", sans-serif !important; background: #053652 !important; background-color: #0b112299; margin-top: 30px; padding-bottom: 25px !important; } .jumbotron h3 { line-height: 0.4; font-size: 20px; } .jumbotron .container h1 { font-size: 30px !important; font-weight: bold !important; text-shadow: 2px 3px #000; } a { color: #4bf8fb !important; text-decoration: none; text-shadow: 0px 2px #080915; font-weight: bold; } a:hover { color: #03a4fb !important; text-decoration: none !important; } .post-list { text-align: left; max-height: 40%; } .post-box { padding-top: 2em; padding-bottom: 2em; } .post-title { font-size: 20px !important; color: #abc0ca !important; } .post-excerpt { color: white !important; font-size: 16px; } .post-container { min-height: 344px !important; max-height: 364px !important; } .post-title-main { font-family: "Ubuntu", sans-serif; text-align: left; color: white !important; font-size: 24px !important; text-shadow: 2px 3px #000; } .post-content { font-size: 19px; text-align: justify; padding-bottom: 5em; } .post-image-container { max-width: 255px !important; max-height: 255px !important; overflow: hidden; } /* post list */ .post-list-container { box-shadow: 0px 0px 5px #888888; padding: 10px 10px 0px 10px; margin: 20px 10px 10px 10px; width: 350px !important; height: 550px !important; background-color: #00668633; } .post-list-image-container img { max-width: 255px !important; max-height: 255px !important; text-align: center !important; padding: 5px 15px 15px 5px !important; } .post-list-title { font-size: 22px !important; } .post-list-desc { font-family: "Ubuntu" sans-serif; text-align: left !important; } .post-list-keep-reading a { color: yellow !important; text-align: center; } .post-list-posted-on { color: #00cadc; padding: 0px 5px 5px 5px; color: grey; text-align: left !important; } .link-post { color: #4bf8fb !important; line-height: 1.5 !important; } .post-meta { color: skyblue !important; } .post-message-footer { color: grey; text-align: center; } .page-tagline { font-size: 20px; text-align: center; } .post-image-header { display: block; margin: 0 auto 0 auto; width: 30%; } .download { padding: 2em; font-size: 19px; } .intro { font-size: 19px; } .manual-title { font-size: 21px; padding: 1em; text-transform: uppercase; } .manual-content { text-align: justify; font-size: 19px; } .man-title { font-size: 22px; text-align: center; padding: 1em; letter-spacing: 2px; } .jumbotron { box-shadow: 0px 1px 10px 0px #04d7fb; } .navbar { box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15); } .c { color: #39c24d !important; }
_site/css/main.css
:root { --green: #21ff00; --bgblue: #003858; --textblue: white; --linkblue: #00AFED; --black: #000000; } .navbar-default { background: #024a76 !important; border: none !important; font-weight: bold; } .logo { vertical-align: middle; width: 125px; height: 125px; padding-top: 10px; float: left; padding-right: 10px; } .navbar-default .navbar-nav > li > a { color: #abc0ca !important; } .navbar-default .navbar-nav > li > a:hover { color: #03a4fb !important; } .navbar-default .navbar-nav > li > a:focus { color: #03a4fb !important; } .navbar-default .navbar-brand { color: #abc0ca !important; } .footer-content { text-align: center; padding: 0.3em; } .footer-content a { padding: 0px 8px 0px 8px; } .screencast-list-title h3 { color: #4bf8fb !important; font-weight: bold !important; } .screencast-list-title p { color: white; } body { padding-bottom: 20px; margin: 0px; font-family: "Helvetica Neue",Helvetica,Arial,sans-serif !important; color: var(--textblue) !important; font-weight: normal; font-size: 18px !important; background: #252525; background-attachment: fixed !important; background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzJhMmEyOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzFjMWMxYyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=="); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2a2a29), color-stop(100%, #000000)); background: -moz-linear-gradient(#005b8e, #000000); background: -webkit-linear-gradient(#005b8e, #000000); background: linear-gradient(#005b8e, #000000); } .page-stuff a { color: #03a4fb !important; text-decoration: none; } .page-stuff a:hover { color: var(--green) !important; text-decoration: none !important; border-bottom: 1px dotted #03a4fb; padding-bottom: 0.5em; } #page-content { padding-bottom: 4em; } .page-stuff { padding-top: 2em; } .jumbotron { font-family: "Ubuntu", sans-serif !important; background: #053652 !important; background-color: #0b112299; margin-top: 30px; padding-bottom: 25px !important; } .jumbotron h3 { line-height: 0.4; font-size: 20px; } .jumbotron .container h1 { font-size: 30px !important; font-weight: bold !important; text-shadow: 2px 3px #000; } a { color: #4bf8fb !important; text-decoration: none; text-shadow: 0px 2px #080915; font-weight: bold; } a:hover { color: #03a4fb !important; text-decoration: none !important; } .post-list { text-align: left; max-height: 40%; } .post-box { padding-top: 2em; padding-bottom: 2em; } .post-title { font-size: 20px !important; color: #abc0ca !important; } .post-excerpt { color: white !important; font-size: 16px; } .post-container { min-height: 344px !important; max-height: 364px !important; } .post-title-main { font-family: "Ubuntu", sans-serif; text-align: left; color: white !important; font-size: 24px !important; text-shadow: 2px 3px #000; } .post-content { font-size: 19px; text-align: justify; padding-bottom: 5em; } .post-image-container { max-width: 255px !important; max-height: 255px !important; overflow: hidden; } /* post list */ .post-list-container { box-shadow: 0px 0px 5px #888888; padding: 10px 10px 0px 10px; margin: 20px 10px 10px 10px; width: 350px !important; height: 550px !important; background-color: #00668633; } .post-list-image-container img { max-width: 255px !important; max-height: 255px !important; text-align: center !important; padding: 5px 15px 15px 5px !important; } .post-list-title { font-size: 22px !important; } .post-list-desc { font-family: "Ubuntu" sans-serif; text-align: left !important; } .post-list-keep-reading a { color: yellow !important; text-align: center; } .post-list-posted-on { color: #00cadc; padding: 0px 5px 5px 5px; color: grey; text-align: left !important; } .link-post { color: #4bf8fb !important; line-height: 1.5 !important; } .post-meta { color: skyblue !important; } .post-message-footer { color: grey; text-align: center; } .page-tagline { font-size: 20px; text-align: center; } .post-image-header { display: block; margin: 0 auto 0 auto; width: 30%; } .download { padding: 2em; font-size: 19px; } .intro { font-size: 19px; } .manual-title { font-size: 21px; padding: 1em; text-transform: uppercase; } .manual-content { text-align: justify; font-size: 19px; } .man-title { font-size: 22px; text-align: center; padding: 1em; letter-spacing: 2px; } .jumbotron { box-shadow: 0px 1px 10px 0px #04d7fb; } .navbar { box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15); } .c { color: #39c24d !important; }
0.35869
0.131703
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 { -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; } .btn { background-image: none; text-shadow: none; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; border-radius: 0; font-weight: 200; } body { background-color: #f5f5f5; } .reg .alert h4 { font-weight: bold; } .lk { margin-bottom: 30px; background-color: #ffffff; min-height: 700px; border-top: 2px solid rgba(0, 0, 0, 0.1); -webkit-border-radius: 2px; -webkit-background-clip: padding-box; -moz-border-radius: 2px; -moz-background-clip: padding; border-radius: 2px; background-clip: padding-box; -webkit-box-shadow: 0 0 0 0, 0 5px 5px rgba(0, 0, 0, 0.2); -moz-box-shadow: 0 0 0 0, 0 5px 5px rgba(0, 0, 0, 0.2); box-shadow: 0 0 0 0, 0 5px 5px rgba(0, 0, 0, 0.2); position: relative; } .back1 { color: #ffffff; background: url(/img/right_panel.png) repeat-x; height: 90px; min-height: 90px; border-bottom: 1px solid #ccc; } .back1 #userName, .back1 #userFamil { font-size: 16pt; font-weight: 400; } h1 { color: #ffffff; text-shadow: 0 0 2px rgba(0, 0, 0, 0.5); } .group { margin-right: 10px; } .settings a, .settings:focus, .settings:visited { margin-left: 7px; color: #ffffff; text-decoration: none; } .settings a:hover, .settings:focus:hover, .settings:visited:hover { color: #f6f6f6; border-bottom: 1px dashed graytext; } .menu .nav-pills { width: 180px; margin-left: 18px; } .menu .nav-pills .icon-file { margin-left: 2px; } .menu .nav-pills li:nth-child(2) a span { margin-left: 4px; } .menu .nav-pills li:nth-child(3) a span { margin-left: 4px; } .menu .nav-pills li:nth-child(4) a span { margin-left: 1px; } .menu .nav-pills li:nth-child(5) a span { margin-left: 3px; } .menu .nav-pills a, .menu .nav-pills :hover, .menu .nav-pills :focus { color: #2e3436; } .menu .nav-pills i { margin-right: 16px; } .menu .nav-pills .active .icon-angle-right { float: right; } .menu .nav-pills .active a, .menu .nav-pills .active :hover, .menu .nav-pills .active :focus { color: #000000; font-weight: 600; background: #f5f5f5; } .menu .nav-pills .active a span, .menu .nav-pills .active :hover span, .menu .nav-pills .active :focus span { color: #000000; font-weight: 600; } .imgprofile { position: absolute; z-index: 1; left: 18px; top: 15px; height: 180px; width: 180px; } .imgprofile .profile { -webkit-box-shadow: inset 0 0 8px 4px rgba(0, 0, 0, 0.35); -moz-box-shadow: inset 0 0 8px 4px rgba(0, 0, 0, 0.35); box-shadow: inset 0 0 8px 4px rgba(0, 0, 0, 0.35); -webkit-border-radius: 2px; -webkit-background-clip: padding-box; -moz-border-radius: 2px; -moz-background-clip: padding; border-radius: 2px; background-clip: padding-box; } .imgprofile .profile img { -webkit-border-radius: 2px; -webkit-background-clip: padding-box; -moz-border-radius: 2px; -moz-background-clip: padding; border-radius: 2px; background-clip: padding-box; position: relative; z-index: -2; } #loader { display: none; } #content { padding-top: 10px; } #content .loader, #content .title { text-align: center; } #content .title { font-size: 14pt; } #content .loader { position: absolute; top: 20%; left: 57%; } #content h1.development { text-align: center; text-transform: uppercase; color: #000000; } #content .msg { margin-top: 10px; margin-bottom: 20px; } #content .msg .span5 { border-bottom: 1px solid #cccccc; } #content .msg .span5 b { font-weight: 400; } #content .msg .span5 .span8 { margin-top: 5px; }
www/application/media/css/lk/lk.css
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 { -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; } .btn { background-image: none; text-shadow: none; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; border-radius: 0; font-weight: 200; } body { background-color: #f5f5f5; } .reg .alert h4 { font-weight: bold; } .lk { margin-bottom: 30px; background-color: #ffffff; min-height: 700px; border-top: 2px solid rgba(0, 0, 0, 0.1); -webkit-border-radius: 2px; -webkit-background-clip: padding-box; -moz-border-radius: 2px; -moz-background-clip: padding; border-radius: 2px; background-clip: padding-box; -webkit-box-shadow: 0 0 0 0, 0 5px 5px rgba(0, 0, 0, 0.2); -moz-box-shadow: 0 0 0 0, 0 5px 5px rgba(0, 0, 0, 0.2); box-shadow: 0 0 0 0, 0 5px 5px rgba(0, 0, 0, 0.2); position: relative; } .back1 { color: #ffffff; background: url(/img/right_panel.png) repeat-x; height: 90px; min-height: 90px; border-bottom: 1px solid #ccc; } .back1 #userName, .back1 #userFamil { font-size: 16pt; font-weight: 400; } h1 { color: #ffffff; text-shadow: 0 0 2px rgba(0, 0, 0, 0.5); } .group { margin-right: 10px; } .settings a, .settings:focus, .settings:visited { margin-left: 7px; color: #ffffff; text-decoration: none; } .settings a:hover, .settings:focus:hover, .settings:visited:hover { color: #f6f6f6; border-bottom: 1px dashed graytext; } .menu .nav-pills { width: 180px; margin-left: 18px; } .menu .nav-pills .icon-file { margin-left: 2px; } .menu .nav-pills li:nth-child(2) a span { margin-left: 4px; } .menu .nav-pills li:nth-child(3) a span { margin-left: 4px; } .menu .nav-pills li:nth-child(4) a span { margin-left: 1px; } .menu .nav-pills li:nth-child(5) a span { margin-left: 3px; } .menu .nav-pills a, .menu .nav-pills :hover, .menu .nav-pills :focus { color: #2e3436; } .menu .nav-pills i { margin-right: 16px; } .menu .nav-pills .active .icon-angle-right { float: right; } .menu .nav-pills .active a, .menu .nav-pills .active :hover, .menu .nav-pills .active :focus { color: #000000; font-weight: 600; background: #f5f5f5; } .menu .nav-pills .active a span, .menu .nav-pills .active :hover span, .menu .nav-pills .active :focus span { color: #000000; font-weight: 600; } .imgprofile { position: absolute; z-index: 1; left: 18px; top: 15px; height: 180px; width: 180px; } .imgprofile .profile { -webkit-box-shadow: inset 0 0 8px 4px rgba(0, 0, 0, 0.35); -moz-box-shadow: inset 0 0 8px 4px rgba(0, 0, 0, 0.35); box-shadow: inset 0 0 8px 4px rgba(0, 0, 0, 0.35); -webkit-border-radius: 2px; -webkit-background-clip: padding-box; -moz-border-radius: 2px; -moz-background-clip: padding; border-radius: 2px; background-clip: padding-box; } .imgprofile .profile img { -webkit-border-radius: 2px; -webkit-background-clip: padding-box; -moz-border-radius: 2px; -moz-background-clip: padding; border-radius: 2px; background-clip: padding-box; position: relative; z-index: -2; } #loader { display: none; } #content { padding-top: 10px; } #content .loader, #content .title { text-align: center; } #content .title { font-size: 14pt; } #content .loader { position: absolute; top: 20%; left: 57%; } #content h1.development { text-align: center; text-transform: uppercase; color: #000000; } #content .msg { margin-top: 10px; margin-bottom: 20px; } #content .msg .span5 { border-bottom: 1px solid #cccccc; } #content .msg .span5 b { font-weight: 400; } #content .msg .span5 .span8 { margin-top: 5px; }
0.270095
0.121087
:root { --color: #040410; --color-header:#040410; --color-item:#3f3f41; --color-foot:#b9b9b9; --contrast: #1950c5; --contrast25: rgb(19, 20, 109); --background:rgba(191, 191, 219, 0.5); --background-item: #fafafd; --background-header:#fbfcfd; --background-banner: #292bd6; --background-foot:#040529; --background-foot-bot:#070718; --border: #bccae9; --header-background: #FFFFFFF2; --header-background-inversed: #4869eeF2; --during: cubic-bezier(0.175, 0.885, 0.32, 1.275); --space:8px; } *, *::before, *::after { box-sizing: border-box; } 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; } button { color: inherit; padding: 0; border: none; cursor: pointer; background: transparent; font-size: inherit; } button:disabled, button[disabled], button:disabled:hover, button[disabled]:hover { border: 1px solid #363636; background-color: #363636; color: #e7e7e7; opacity: 0.65; cursor: not-allowed; } form { display: block; } select, input { font-size: inherit; font-family: inherit; } pre { font-family: monospace; } 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; } img { max-width: 100%; height: auto; } a { text-decoration: none; color: inherit; opacity: 0.8; transition: opacity 0.3s; } a:hover { opacity: 1; } textarea { font-size: inherit; font-family: inherit; line-height: inherit; resize: none; } hr { height: 1px; background: var(--border); margin: 0; padding: 0; border: none; } *:focus:not(:focus-visible) { outline: none; } svg { width: 20px; height: 20px; vertical-align: middle; transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94); -moz-transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94); -webkit-transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94); } p { margin: 12px 0; } .hero-title { font-size: 52px; font-family: "Inter", sans-serif; font-weight: 700; line-height: 1.2; } .hero-title strong { color: var(--contrast); } @media (max-width: 675px) { .hero-title { font-size: 45px; } } .hero-text { font-size: 16px; } .hero-text strong { font-weight: bold; } .hero-text a { text-decoration: underline; } @media (min-width: 600px) { .hero-text { font-size: 22px; } } .section-title { font-family: "Inter", sans-serif; font-size: 18px; font-weight: bold; border-bottom: 1px solid var(--border-light); padding-bottom: calc(0.5 * var(--space)); margin-bottom: calc(2 * var(--space)); } .h1 { font-family: "Inter", sans-serif; font-weight: 700; font-style: normal; font-size: 32px; line-height: 1.2; } @media (min-width: 600px) { .h1 { font-size: 42px; } } .h2 { font-weight: 700; font-style: normal; font-size: 32px; line-height: 1.2; } .h3 { font-style: normal; font-weight: 700; font-size: 24px; line-height: 1.3; } .h3 strong { font-weight: bold; } .h3 .icon { width: 20px; height: 20px; } .h4 { font-family: "Inter", sans-serif; font-weight: bold; } small, .text-small { font-size: 0.9em; } .text-left { text-align: left !important; } .text-right { text-align: right !important; } .text-center { text-align: center !important; } .text-inversed { color: var(--color-inversed); } .normal { font-weight: normal; } .bold { font-weight: bold; } .uppercase { text-transform: uppercase; } .underline { text-decoration: underline; } a.underline:hover { text-decoration: none; } .reader-only { display: none; } .text-danger { color: var(--red); } .text-muted { color: var(--color-light); } .text-truncate { overflow: hidden; text-overflow: ellipsis; } .text-big { font-size: 1.1em; } .ignore-br br { display: none; } .link { transition: color 0.3s; } .link:hover { color: var(--contrast); text-decoration: underline; } :root { --container-padding: 20px; --container-width: calc(100vw - var(--container-padding) * 2); } @media only screen and (min-width: 900px) { :root { --container-padding: 32px; } } @media only screen and (min-width: 1370px) { :root { --container-padding: 20px; --container-width: 1330px; } } .waves { position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; z-index: -1; } .waves.left { transform: scaleX(-1); } .title { font-weight: 700; font-size: 1.5em; line-height: 1.4; color: #19181a; } @media (min-width: 800px) { .title { font-size: 2em; } } .title2 { font-weight: 700; font-size: 0.875em; line-height: 1.4; color: #19181a; } @media (min-width: 800px) { .title2 { font-size: 1em; } } .title3 { font-weight: 400; font-size: 0.875em; line-height: 1.4; color: #19181a; } @media (min-width: 800px) { .title3 { font-size: 1em; } } .relative { position: relative; } .absolute { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: auto; } .fixed { position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important; width: calc(100% + 5px) !important; color: var(--color) !important; background-color: #fff !important; box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.3) !important; } .fixed .social-item { color: var(--color-dark) !important; } .fixed .social-item:hover { color: var(--yellow) !important; } .page-wrapper { min-height: 100vh; display: flex; flex-direction: column; width: 100%; overflow: hidden; } .wrapper { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; width: 100%; overflow: hidden; } @media (max-width: 800px) { .wrapper { flex-direction: column; } } .text_primary { color: var(--contrast); } .text_center { text-align: center; } .main_admin { width: 100%; min-height: calc(100vh - 170px); display: grid !important; --gap: 2; grid-gap: calc(var(--gap) * var(--space)); grid-template-columns: 1fr; background-color: var(--background-admin); } @media (min-width: 800px) { .main_admin { grid-template-columns: 280px 1fr; } } .admin_main { width: 100%; min-height: 100vh; margin-top: 32px; } .main_admin .is-active { color: #2261e7; background: #121929; } .active { color: var(--colorActive); } .layout-sidebar, .container { width: 100%; padding-left: 10px; padding-right: 10px; } @media (min-width: 630px) { .layout-sidebar, .container { padding-left: 40px; padding-right: 40px; } } @media (min-width: 1340px) { .layout-sidebar, .container { padding-left: calc(50vw - 630px); padding-right: calc(50vw - 630px); } } .container-narrow { max-width: 700px; margin-left: auto; margin-right: auto; } .ratio { height: 0; padding-bottom: 56.25%; position: relative; } .ratio > * { position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; } .inline { display: inline; } .flex { display: flex !important; align-items: center; justify-content: space-between; flex-direction: column; align-items: center; } .flex > * { min-width: 0; } @media (min-width: 600px) { .flex { flex-direction: row; } } .end { justify-content: flex-end; } .stretch { align-items: stretch; } @media (min-width: 500px) { .flex-md { display: flex; align-items: center; justify-content: space-between; } } .flex-start { justify-content: flex-start; } .flex-end { justify-content: flex-end; } .center { display: flex; align-items: center; justify-content: center; } .inline-1 { display: flex; } .inline-1 > * + * { margin-left: calc(1 * var(--space)); } .inline-b { display: inline-block; } .hidden { display: none; } .btn { padding: 6px 8px; border-radius: 3px; background: #0c2dc0; color: #e7e7e7; opacity: 0.8; transition: cubic-bezier(0.215, 0.61, 0.355, 1); cursor: pointer; border: none; margin-bottom: calc(0.5 * var(--space)); } .btn:hover { opacity: 1; } .w100 { width: 100%; } .grid { width: 100%; display: grid !important; grid-gap: calc(2 * var(--space)); grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); } .grid2 { width: 100%; display: grid !important; --gap: 2; grid-gap: calc(var(--gap) * var(--space)); grid-template-columns: 1fr; } @media (min-width: 730px) { .grid2 { grid-template-columns: repeat(2, 1fr); } } .grid3 { width: 100%; display: grid !important; --gap: 2; grid-gap: calc(var(--gap) * var(--space)); grid-template-columns: 1fr; } @media (min-width: 730px) { .grid3 { grid-template-columns: repeat(3, 1fr); } } .grid.fit { grid-template-columns: repeat(auto-fit, minmax(var(--col, 275px), 1fr)); } .grid .full, .grid2 .full { grid-column: 1/-1; } .grid .end { justify-content: flex-end; } .stack, .stack-large, .stack-separated { --gap: 2; display: grid !important; grid-template-columns: 1fr; align-content: flex-start; grid-gap: calc(var(--gap) * var(--space)); } .stack > *, .stack-large > *, .stack-separated > * { min-width: 0; } .stack-large { --gap: 4; } .stack-separated { --gap: 3; --gap-separated: var(--gap); grid-gap: calc(var(--gap) * var(--space) * 2); } .stack-separated > * + * { position: relative; } .stack-separated > * + *::before { content: ""; position: absolute; left: 0; right: 0; height: 1px; width: 100%; background: var(--border-light); top: calc(var(--gap-separated) * var(--space) * -1); } .hstack { display: flex; flex-wrap: wrap; --gap: 2; margin: calc(var(--gap) * var(--space) * -0.5); margin-bottom: calc(var(--gap) * var(--space) * -1); margin-top: 0; } .nowrap { flex-wrap: nowrap; } .hstack > * { margin-left: calc(var(--gap) * var(--space) * 0.5); margin-right: calc(var(--gap) * var(--space) * 0.5); margin-bottom: calc(var(--gap) * var(--space)); } .hstack-large > * + * { margin-left: calc(4 * var(--space)); } .main-page { margin-top: calc(6 * var(--space)); margin-bottom: calc(16 * var(--space)); overflow: hidden; min-height: calc(100vh - 280px); } .layout-sidebar { --gap: 5; display: grid; grid-gap: calc(var(--gap) * var(--space)); grid-template-columns: 1fr; } .layout-sidebar > * { min-width: 0; } @media (min-width: 1100px) { .layout-sidebar { grid-template-columns: 1fr 300px; } } .sticky { position: sticky; top: calc(3 * var(--space)); } .mla { margin-left: auto; } body .p0 { padding: calc(0 * var(--space)); } body .pt0 { padding-top: calc(0 * var(--space)); } body .pb0 { padding-bottom: calc(0 * var(--space)); } body .px0 { padding-left: calc(0 * var(--space)); padding-right: calc(0 * var(--space)); } body .py0 { padding-top: calc(0 * var(--space)); padding-bottom: calc(0 * var(--space)); } body .my0 { margin-top: calc(0 * var(--space)); margin-bottom: calc(0 * var(--space)); } body .m0 { margin: calc(0 * var(--space)); } body .mx0 { margin-left: calc(0 * var(--space)); margin-right: calc(0 * var(--space)); } body .mt0 { margin-top: calc(0 * var(--space)); } body .mb0 { margin-bottom: calc(0 * var(--space)); } body .mr0 { margin-right: calc(0 * var(--space)); } body .ml0 { margin-left: calc(0 * var(--space)); } body .p1 { padding: calc(1 * var(--space)); } body .pt1 { padding-top: calc(1 * var(--space)); } body .pb1 { padding-bottom: calc(1 * var(--space)); } body .px1 { padding-left: calc(1 * var(--space)); padding-right: calc(1 * var(--space)); } body .py1 { padding-top: calc(1 * var(--space)); padding-bottom: calc(1 * var(--space)); } body .my1 { margin-top: calc(1 * var(--space)); margin-bottom: calc(1 * var(--space)); } body .m1 { margin: calc(1 * var(--space)); } body .mx1 { margin-left: calc(1 * var(--space)); margin-right: calc(1 * var(--space)); } body .mt1 { margin-top: calc(1 * var(--space)); } body .mb1 { margin-bottom: calc(1 * var(--space)); } body .mr1 { margin-right: calc(1 * var(--space)); } body .ml1 { margin-left: calc(1 * var(--space)); } body .p2 { padding: calc(2 * var(--space)); } body .pt2 { padding-top: calc(2 * var(--space)); } body .pb2 { padding-bottom: calc(2 * var(--space)); } body .px2 { padding-left: calc(2 * var(--space)); padding-right: calc(2 * var(--space)); } body .py2 { padding-top: calc(2 * var(--space)); padding-bottom: calc(2 * var(--space)); } body .my2 { margin-top: calc(2 * var(--space)); margin-bottom: calc(2 * var(--space)); } body .m2 { margin: calc(2 * var(--space)); } body .mx2 { margin-left: calc(2 * var(--space)); margin-right: calc(2 * var(--space)); } body .mt2 { margin-top: calc(2 * var(--space)); } body .mb2 { margin-bottom: calc(2 * var(--space)); } body .mr2 { margin-right: calc(2 * var(--space)); } body .ml2 { margin-left: calc(2 * var(--space)); } body .p3 { padding: calc(3 * var(--space)); } body .pt3 { padding-top: calc(3 * var(--space)); } body .pb3 { padding-bottom: calc(3 * var(--space)); } body .px3 { padding-left: calc(3 * var(--space)); padding-right: calc(3 * var(--space)); } body .py3 { padding-top: calc(3 * var(--space)); padding-bottom: calc(3 * var(--space)); } body .my3 { margin-top: calc(3 * var(--space)); margin-bottom: calc(3 * var(--space)); } body .m3 { margin: calc(3 * var(--space)); } body .mx3 { margin-left: calc(3 * var(--space)); margin-right: calc(3 * var(--space)); } body .mt3 { margin-top: calc(3 * var(--space)); } body .mb3 { margin-bottom: calc(3 * var(--space)); } body .mr3 { margin-right: calc(3 * var(--space)); } body .ml3 { margin-left: calc(3 * var(--space)); } body .p4 { padding: calc(4 * var(--space)); } body .pt4 { padding-top: calc(4 * var(--space)); } body .pb4 { padding-bottom: calc(4 * var(--space)); } body .px4 { padding-left: calc(4 * var(--space)); padding-right: calc(4 * var(--space)); } body .py4 { padding-top: calc(4 * var(--space)); padding-bottom: calc(4 * var(--space)); } body .my4 { margin-top: calc(4 * var(--space)); margin-bottom: calc(4 * var(--space)); } body .m4 { margin: calc(4 * var(--space)); } body .mx4 { margin-left: calc(4 * var(--space)); margin-right: calc(4 * var(--space)); } body .mt4 { margin-top: calc(4 * var(--space)); } body .mb4 { margin-bottom: calc(4 * var(--space)); } body .mr4 { margin-right: calc(4 * var(--space)); } body .ml4 { margin-left: calc(4 * var(--space)); } body .p5 { padding: calc(5 * var(--space)); } body .pt5 { padding-top: calc(5 * var(--space)); } body .pb5 { padding-bottom: calc(5 * var(--space)); } body .px5 { padding-left: calc(5 * var(--space)); padding-right: calc(5 * var(--space)); } body .py5 { padding-top: calc(5 * var(--space)); padding-bottom: calc(5 * var(--space)); } body .my5 { margin-top: calc(5 * var(--space)); margin-bottom: calc(5 * var(--space)); } body .m5 { margin: calc(5 * var(--space)); } body .mx5 { margin-left: calc(5 * var(--space)); margin-right: calc(5 * var(--space)); } body .mt5 { margin-top: calc(5 * var(--space)); } body .mb5 { margin-bottom: calc(5 * var(--space)); } body .mr5 { margin-right: calc(5 * var(--space)); } body .ml5 { margin-left: calc(5 * var(--space)); } @media (min-width: 700px) { .mobile-only { display: none; } } @media (max-width: 700px) { .mobile-hidden { display: none; } } body { font-family: "Inter", sans-serif; font-size: 16px; color: var(--color); line-height: 1.6; background: var(--background); scroll-margin: 100px 0 0 0; word-break: break-word; z-index: 1; } .form_error, .alert_error, .alert_success { padding: 8px 16px; margin: 16px 0; border-radius: 5px; } .form_error, .alert_error { background: #f1808a; color: #eb0b0b; } body::after { display: none; content: ""; position: absolute; top: 0; left: 0; width: 580px; height: 506px; z-index: -1; pointer-events: none; } @media (min-width: 700px) { body::after { display: block; } } .auth_form { width: 100vw; height: 100vh; display: flex; justify-content: center; align-items: center; color: var(--color-item); } .form_user { width: 420px; background-color: var(--background-item); padding: 8px 16px; box-shadow: 0px 0px 5px 0.5px rgba(54, 54, 54, 0.63); border-radius: 5px; } .form_controle, .form_input { width: 100%; } .form_input { padding: 4px 6px; } .form_controle, .form_group { margin-bottom: 8px; display: block; } .form_controle { font-weight: 400; } .form_login { display: grid; grid-gap: calc(2 * var(--space)); grid-template-columns: 1fr; } .form_control_danger { border: 1px solid #f03c3c; } .flash_success, .form_danger, .flash_errors { font-size: 0.75em; font-weight: 200; } .form_danger, .flash_errors { color: #f03c3c; } .flash_success { color: #3dec3d; } .btn_forgot { color: var(--contrast); } .main_admin { width: 100%; display: grid; grid-template-columns: 1fr; } @media (min-width: 630px) { .main_admin { grid-template-columns: 200px 1fr; } } .asidbar { background: #040529; color: #f8f8f8; display: none; } @media (min-width: 630px) { .asidbar { display: initial; } } .main_content { margin-top: 40px; color: #040410; } .asid_fixed { position: fixed; left: 0; right: 0; top: 0; width: 200px; color: #b9b9b9; } .header { background: #fff; position: fixed; left: 200px; right: 0px; top: 0; color: #b9b9b9; padding: 0 10px; box-shadow: 0px 0px 5px 0.5px rgba(54, 54, 54, 0.63); z-index: 5; } .profile, .header_wrap, .profile_username { display: flex; flex-wrap: wrap; align-items: center; } .header_wrap { flex-direction: row; justify-content: space-between; padding: 10px 0; } .header_search .form_controle { margin-bottom: 0; } .header_input { border: 1px solid #b9b9b9; border-radius: 5px; padding: 3px 8px; color: #b9b9b9; } .head_input { border: none; } .head_input:focus-within { border: none; } .profile { color: #b9b9b9; } .profile_username { flex-direction: column; margin-right: 5px; } .profile_username span { font-size: 0.8rem; line-height: 1.2; } .profile_img { height: 40px; width: 40px; border-radius: 50%; overflow: hidden; } .main_body { min-height: 100vh; margin-top: 70px; } .asidlogo { margin-top: 40px; margin-bottom: 20px; width: 140px; padding: 4px 16px; } .asid_item { margin: 10px 0; } .asid_item svg { margin-right: 5px; } .asid_link { display: flex; align-items: center; color: #b9b9b9; transition: cubic-bezier(0.19, 1, 0.22, 1); padding: 4px 16px; } .asid_link:hover { color: #e7e7e7; } .profile_wrap { margin-top: calc(3 * var(--space)); margin-bottom: calc(3 * var(--space)); display: grid; grid-template-columns: 1fr; justify-content: center; grid-gap: calc(2 * var(--space)); } @media (min-width: 1100px) { .profile_wrap { grid-template-columns: 300px 1fr; } } .profile_user, .profile_form { background: var(--background-item); padding: calc(2 * var(--space)); } .profile_user_head { margin-top: calc(2 * var(--space)); } .profile_user_img { width: 180px; height: 180px; border-radius: 50%; overflow: hidden; } .profile_user_body { margin-top: calc(1 * var(--space)); padding-top: calc(1 * var(--space)); } .profile_user_item { margin-top: calc(1 * var(--space)); font-size: 1em; } .profile_user_item span + span { margin-left: calc(0.5 * var(--space)); } .profile_user_i { font-weight: 700; } .form { margin-top: calc(2 * var(--space)); } .teams_wrap { background: var(--background-item); color: var(--color-item); border-radius: 3px; padding: calc(1 * var(--space)); } .teams_head { display: flex; flex-direction: row; justify-content: space-between; padding: calc(3 * var(--space)) calc(1 * var(--space)); } .teams_tab_head { background: #2f3135; padding: calc(2 * var(--space)) calc(1 * var(--space)); color: #f0f4ff; width: 100%; display: flex; flex-direction: row; justify-content: space-around; } .teams_head_new_link { color: var(--contrast); } .separator { margin: calc(2 * var(--space)) 0; } .section_moving { margin-bottom: calc(4 * var(--space)); } .section_team { margin-top: calc(2 * var(--space)); } .section_team h1 { margin-bottom: calc(1 * var(--space)); } .text_link { color: rgba(18, 62, 206, 0.933); } .user_header { background: var(--background-header); color: var(--color-header); display: flex; flex-direction: row; justify-content: space-between; align-items: center; box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.6); } @media (max-width: 730px) { .user_header { flex-direction: column; } } .logo { width: 80px; } @media (max-width: 400px) { .logo { padding: calc(1 * var(--space)); } } .header_text { margin-left: calc(4 * var(--space)); font-size: 0.75em; font-weight: 600; text-transform: uppercase; } @media (max-width: 800px) { .header_text { margin-left: calc(2 * var(--space)); } } .user_header_left, .head_action_over { display: flex; flex-direction: row; align-items: center; } @media (max-width: 400px) { .user_header_left, .head_action_over { flex-direction: column; } } .head_prices { display: flex; flex-direction: row; } @media (max-width: 400px) { .head_prices { margin: calc(1 * var(--space)); } } .head_prices_img { width: 40px; height: 40px; overflow: hidden; } .head_prices { padding: calc(1.2 * var(--space)); background: rgba(128, 178, 243, 0.705); margin-left: calc(2 * var(--space)); margin-right: calc(2 * var(--space)); height: auto; } .head_prices_total { display: flex; flex-direction: column; align-items: center; font-size: 0.75em; } .head_prices_total_p { font-weight: 600; } .head_cart_icon { padding: calc(2 * var(--space)); position: relative; color: #6b6b6b; } .head_cart_icon:hover { color: #d45; } .head_cart_number { position: absolute; top: 5px; right: 0; background: #d45; border-radius: 50%; padding: calc(0.5 * var(--space)) calc(1 * var(--space)); font-size: 0.6875em; color: aliceblue; } .action_icon { cursor: pointer; color: #6b6b6b; transition: all var(--during); } .action_icon:hover { color: #1445a1; } .head_prices_icon { color: #0f25a1; } .head_prices_icon svg { width: 40px; height: 40px; } .banner_user { border: 1px solid transparent; padding-bottom: calc(8 * var(--space)); background: #479fec; color: aliceblue; } @media (max-width: 730px) { .banner_user { padding-top: calc(4 * var(--space)); padding-bottom: calc(6 * var(--space)); } } .user_wrap { padding-top: calc(2 * var(--space)); padding-bottom: calc(2 * var(--space)); } .user_wrappper { box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.8); transform: translateY(-60px); background-color: aliceblue; color: #5f6061; display: grid; grid-gap: calc(1 * var(--space)); grid-template-columns: 180px 1fr; } @media (max-width: 800px) { .user_wrappper { grid-template-columns: 1fr; } } .asidbar_user { border-right: 1px solid #747575; } .menu_items { color: black; } .menu_link { display: flex; flex-direction: row; align-items: center; padding: calc(1 * var(--space)) 0; border-bottom: 1px solid #747575; padding-left: calc(1 * var(--space)); } .menu_link span { padding: 3px 0 0 5px; } .menu_head { background-color: #a2c4e0; color: #191a1b; font-weight: 600; text-transform: uppercase; padding: calc(1 * var(--space)); } .main_page { padding: calc(2 * var(--space)); } .widget { display: flex; flex-direction: row; justify-content: space-between; align-items: center; padding-top: calc(1 * var(--space)); padding-bottom: calc(1 * var(--space)); color: #ecf1f5; } .widget_head { display: flex; flex-direction: row; align-items: center; } .widget_head_img { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; } .widget_head_name { margin-left: calc(1 * var(--space)); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; } .teams_body { margin-top: calc(2 * var(--space)); } .teams_wrap { border-radius: 5px; padding: calc(2 * var(--space)); } .tab_teams { width: 100%; text-align: center; font-size: 0.875em; } .tab_teams th, .tab_teams td { padding: calc(1 * var(--space)) 0; } .tab_teams tr { display: flex; flex-direction: row; justify-content: space-between; align-items: center; width: 100%; padding: 0 calc(2 * var(--space)); } .tabs_head { background: #030b1b; color: #e4e8f0; font-weight: 600; text-transform: uppercase; } .tabs_body tr { background: #d9dbe0; color: #292a2c; } .tabs_body td:nth(odd) { background-color: #f12; color: aliceblue; } .tabs_action { display: flex; flex-direction: row; justify-content: center; align-items: center; } .tabs_action .btn_danger { color: #f12; margin-left: calc(1 * var(--space)); background-color: #e4b1b3; padding: calc(0.65 * var(--space)) calc(1 * var(--space)); } .tabs_action .btn_info { color: #1d58c5; background-color: #b2c0da; padding: calc(1 * var(--space)) calc(1 * var(--space)); } .tabs_icon_e { margin-left: calc(1 * var(--space)); margin-right: calc(1 * var(--space)); } .btn_order { color: #28a745; background: #81e097; padding: calc(1 * var(--space)); } .teams_foot { display: flex; justify-content: center; margin: calc(2 * var(--space)) 0; } .tabs_body tr:nth-child(even) { background: #ccc; } .tabs_body tr:nth-child(odd) { background: #fff; } .team_status { color: var(--header-background); border-radius: 5px; padding: calc(0.5 * var(--space)) calc(1 * var(--space)); } .team_act { background: #226fc7; } .team_sus { background: #da932a; } .team_des { background: #db1f48; } .ordos_wrap { padding: calc(4 * var(--space)); } .ordos_head_img { width: 100px; } .enter_title { text-align: center; } .ordos_indice { font-weight: 600; } .ordos_msg { background: #cbccce; padding: calc(2 * var(--space)); color: #141414; border-radius: 5px; margin-top: calc(2 * var(--space)); } .ordos_body_person { margin-top: calc(4 * var(--space)); margin-bottom: calc(2 * var(--space)); padding-top: calc(2 * var(--space)); padding-bottom: calc(2 * var(--space)); border-top: 1px solid #123472; border-bottom: 1px solid #123472; } .ordos_body_tab .title { text-align: center; margin-bottom: calc(1 * var(--space)); } .ordos_body_items .title2 { text-decoration: underline; } .ordos_foot { padding-top: calc(2 * var(--space)); padding-bottom: calc(2 * var(--space)); margin-top: calc(4 * var(--space)); } .ordos_foot_title { color: #31dbb1; } .ordos_table { width: 100%; text-align: center; font-size: 0.875em; } .ordos_table_head tr { color: #e4e6ee; background: #060b13; } .ordos_table_head th { line-height: 1.4; padding-top: calc(0.5 * var(--space)); padding-bottom: calc(0.5 * var(--space)); } .ordos_table_body tr { border-top: 1px solid #a7b9db; border-bottom: 1px solid #a3b8e0; } .ordos_table_body td { padding-top: calc(0.5 * var(--space)); padding-bottom: calc(0.5 * var(--space)); } .ordos_table_body tr:hover { background: #b9bac0; } .ordos_foot_link { text-align: end; margin-top: calc(1 * var(--space)); } .btn_ordo { padding: calc(0.5 * var(--space)) calc(1 * var(--space)); border-radius: 3px; background-color: #123472; color: #e1e5ee; } .ordos_foot_b { padding: calc(1 * var(--space)); color: #e1e2eb; background: #123472; margin-top: calc(2 * var(--space)); display: flex; flex-direction: row; justify-content: space-between; align-items: center; } .ordos_foot_item span { margin-left: calc(0.5=2 * var(--space)); } .banner_patient { padding: calc(1 * var(--space)); border-radius: 3px; margin-bottom: calc(2 * var(--space)); background: #9ecaee; position: relative; } .banner_patient_wrap { display: flex; flex-direction: row; justify-content: space-between; z-index: 5; } .banner_level { padding: calc(1 * var(--space)); background: #f0a9a9; color: #eee9e8; border-radius: 50%; z-index: 2; } .banner_patient_prog { height: 10px; position: absolute; top: 46%; left: 20px; background: #e72a53; z-index: 1; } .banner_patient_prog_s { display: block; height: 10px; width: calc(100% - 40px); background: #dfcbcb; position: absolute; top: 46%; left: 20px; } .forms_controls { text-align: end; } .btn_controls { padding: calc(1 * var(--space)) calc(1.5 * var(--space)); border-radius: 3px; font-size: 0.75em; color: #f3ebeb; opacity: 0.8; cursor: pointer; transition: var(--during); } .btn_controls:hover { opacity: 1; } .btn_remove, .btn_danger { background: #e90e0e; } .btn_adding { background: #0ee932; } .btn_m { margin: 0 calc(2 * var(--space)); } .btn_labo { background: #031647; } .user_cart { padding: calc(2 * var(--space)); border-radius: 5px; background-color: var(--background-item); color: var(--color-item); box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.4); display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; margin: calc(2 * var(--space)); } @media (max-width: 800px) { .user_cart { margin: calc(1 * var(--space)); } } .user_left { display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; box-sizing: 1px solid blue; } .user_rigth { width: calc(100% - 0px); margin-left: calc(0.5 * var(--space)); margin-top: calc(2 * var(--space)); } .user_left_h { height: 140px; width: 140px; border-radius: 50%; overflow: hidden; border: 1px solid var(--color-foot); } .user_name { font-size: 1.5em; font-weight: 600; padding: 0 auto; line-height: 1; } .user_rigth_b { width: 100%; display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: space-between; padding: calc(1 * var(--space)) 0; border-top: 1px solid var(--color-foot); font-size: 0.875em; } .user_work { color: var(--contrast); font-weight: 600; font-size: 0.875em; } .user_rigth_h { padding: calc(1 * var(--space)) calc(2 * var(--space)); } .user_rigth_h p { font-weight: 400; padding: 0; line-height: 1.2; } .user_rigth_item { margin: calc(0.5 * var(--space)); } .user_rigth_day { color: #27da74; } .user_rigth_time { color: #526b5d; } .cart_static { width: 100%; display: grid !important; grid-gap: calc(2 * var(--space)); grid-template-columns: repeat(auto-fill, minmax(225px, 1fr)); margin-top: calc(4 * var(--space)); } .cart_static_item { box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.4); border-radius: 3px; padding: calc(2 * var(--space)); margin: calc(1 * var(--space)); display: flex; flex-direction: column; flex-wrap: wrap; align-items: center; } .cart_static_head { font-size: 1.125em; } .cart_static_body { font-size: 2em; font-weight: 600; } .cart_patient { color: white; background: #e05822; } .cart_static_item { color: white; } .cart_ordo { background: #e0ad22; } .cart_cons { background: #228ae0; } .cart_att { background: #e02222; } .cart_tot { background: #22e042; } .cart_sal { background: #4b22e0; } .cart_emp { background: #ba22e0; } .cart_art { background: #22d3e0; } .section_enterprise { margin-top: calc(2 * var(--space)); margin-bottom: calc(4 * var(--space)); } .enterprise_items { margin-top: calc(2 * var(--space)); margin-bottom: calc(4 * var(--space)); } .enterprise_head { overflow: hidden; border-bottom-right-radius: 80px; } .enterprise_head_ac, .enterprise_head_wr { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; align-items: center; } .enterprise_head_ac { justify-content: space-evenly; } .btn_mar { margin: 0 calc(2 * var(--space)); } .article_wrap { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; padding: calc(1.5 * var(--space)); } .article_cart { border-radius: 5px; overflow: hidden; width: 170px; margin: calc(1.5 * var(--space)); border: 1px solid #0002; } @media (max-width: 479px) { .article_cart { width: 160px; } } @media (max-width: 430px) { .article_cart { width: 100%; } } .cart_head { opacity: 0.8; transform: scale(1); transition: 1s var(--during); } .article_cart:hover .cart_head { opacity: 1; transform: scale(1.1); } .cart_body { color: var(--color); font-weight: 600; padding: 0 calc(0.5 * var(--space)); } .cart_foot { padding: 0 calc(0.5 * var(--space)); display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; align-items: end; margin: calc(0.5 * var(--space)) 0; } .cart_text { opacity: 0.8; } .normal_text { color: #292bd6; } .danger_text { color: #ef233c; } .cart_icon { border-radius: 3px; padding: calc(0.5 * var(--space)) calc(0.8 * var(--space)); background: #ef233c; color: #FFFFFFF2; cursor: pointer; opacity: 0.8; transition: opacity var(--during); } .cart_icon:hover { opacity: 1; } .article_paginate { padding: calc(1 * var(--space)) 0; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; } .pagination { display: flex; flex-direction: row; } .pagination .disabled { background: #4869eeF2; } .pagination .sr-only { display: none; } .pagination .page-link { background: #2261e7; display: inline-block; padding: calc(0.5 * var(--space)) calc(1.5 * var(--space)); color: #FFFFFFF2; } .popular { margin: calc(4 * var(--space)) 0; } .popular_head { padding: 0 calc(2 * var(--space)); } .popu_wrap { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; padding-top: calc(2 * var(--space)); } .panier_tab { width: 100%; text-align: center; } .panier_tab thead { font-weight: 600; background: #e1e1e2; } .panier_tab th { padding: calc(2 * var(--space)) 0; font-size: 1em; } .panier_tab td { border-bottom: 1px solid #8f8f92; padding-top: calc(1 * var(--space)); padding-bottom: calc(1 * var(--space)); } .panier_cart { display: flex; flex-direction: row; justify-content: center; } .panier_cart_head { width: 120px; border-radius: 3px; overflow: hidden; } .panier_cart_body { display: flex; flex-direction: column; text-align: start; padding-left: calc(1 * var(--space)); font-size: 0.875em; } .panier_cart_name { font-weight: 600; } .panier_foot { display: flex; flex-direction: row; justify-content: space-between; margin-top: calc(3 * var(--space)); } .panier_totals { font-weight: 600; font-size: 1.125em; } .panier_totals span { font-weight: 400; font-style: italic; } .btn_add { background: #0a8b0a; } .panier_number { margin: 0 calc(1 * var(--space)); } .print_foot .ordos_foot_title { color: #000; } .print_foot .ordos_foot_b { color: #000; background: #0002; } .tab_print { width: 100%; } .tab_print .tabs_head { color: #000; background: #0004; } .tab_print tr { display: normal; text-align: center; } .tab_print td, .tab_print th { padding: calc(0.5 * var(--space)) 0; border: 1px solid #000; } .print_marg { background: #fff; display: flex; flex-direction: column; justify-content: space-between; } .print_time { display: block; margin-bottom: calc(1 * var(--space)); text-align: end; } .sign_pres { font-size: 0.875em; font-weight: 600; text-decoration: underline; color: #000; } .print_totals { font-weight: 700; font-size: 1em; margin-top: calc(2 * var(--space)); } .sign_pres_name { text-transform: uppercase; } @page { size: A4; margin: 11mm 17mm 17mm 17mm; background: #fff; color-adjust: exact; -webkit-print-color-adjust: exact; } @media print { .footer { position: fixed; bottom: 0; left: 16px; right: 16px; } .content-block, p { page-break-inside: avoid; } html, body { width: 210mm; height: 297mm; background: #fff; } } /*# sourceMappingURL=bundle.style.css.map*/
public/assets/bundle.style.css
:root { --color: #040410; --color-header:#040410; --color-item:#3f3f41; --color-foot:#b9b9b9; --contrast: #1950c5; --contrast25: rgb(19, 20, 109); --background:rgba(191, 191, 219, 0.5); --background-item: #fafafd; --background-header:#fbfcfd; --background-banner: #292bd6; --background-foot:#040529; --background-foot-bot:#070718; --border: #bccae9; --header-background: #FFFFFFF2; --header-background-inversed: #4869eeF2; --during: cubic-bezier(0.175, 0.885, 0.32, 1.275); --space:8px; } *, *::before, *::after { box-sizing: border-box; } 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; } button { color: inherit; padding: 0; border: none; cursor: pointer; background: transparent; font-size: inherit; } button:disabled, button[disabled], button:disabled:hover, button[disabled]:hover { border: 1px solid #363636; background-color: #363636; color: #e7e7e7; opacity: 0.65; cursor: not-allowed; } form { display: block; } select, input { font-size: inherit; font-family: inherit; } pre { font-family: monospace; } 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; } img { max-width: 100%; height: auto; } a { text-decoration: none; color: inherit; opacity: 0.8; transition: opacity 0.3s; } a:hover { opacity: 1; } textarea { font-size: inherit; font-family: inherit; line-height: inherit; resize: none; } hr { height: 1px; background: var(--border); margin: 0; padding: 0; border: none; } *:focus:not(:focus-visible) { outline: none; } svg { width: 20px; height: 20px; vertical-align: middle; transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94); -moz-transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94); -webkit-transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94); } p { margin: 12px 0; } .hero-title { font-size: 52px; font-family: "Inter", sans-serif; font-weight: 700; line-height: 1.2; } .hero-title strong { color: var(--contrast); } @media (max-width: 675px) { .hero-title { font-size: 45px; } } .hero-text { font-size: 16px; } .hero-text strong { font-weight: bold; } .hero-text a { text-decoration: underline; } @media (min-width: 600px) { .hero-text { font-size: 22px; } } .section-title { font-family: "Inter", sans-serif; font-size: 18px; font-weight: bold; border-bottom: 1px solid var(--border-light); padding-bottom: calc(0.5 * var(--space)); margin-bottom: calc(2 * var(--space)); } .h1 { font-family: "Inter", sans-serif; font-weight: 700; font-style: normal; font-size: 32px; line-height: 1.2; } @media (min-width: 600px) { .h1 { font-size: 42px; } } .h2 { font-weight: 700; font-style: normal; font-size: 32px; line-height: 1.2; } .h3 { font-style: normal; font-weight: 700; font-size: 24px; line-height: 1.3; } .h3 strong { font-weight: bold; } .h3 .icon { width: 20px; height: 20px; } .h4 { font-family: "Inter", sans-serif; font-weight: bold; } small, .text-small { font-size: 0.9em; } .text-left { text-align: left !important; } .text-right { text-align: right !important; } .text-center { text-align: center !important; } .text-inversed { color: var(--color-inversed); } .normal { font-weight: normal; } .bold { font-weight: bold; } .uppercase { text-transform: uppercase; } .underline { text-decoration: underline; } a.underline:hover { text-decoration: none; } .reader-only { display: none; } .text-danger { color: var(--red); } .text-muted { color: var(--color-light); } .text-truncate { overflow: hidden; text-overflow: ellipsis; } .text-big { font-size: 1.1em; } .ignore-br br { display: none; } .link { transition: color 0.3s; } .link:hover { color: var(--contrast); text-decoration: underline; } :root { --container-padding: 20px; --container-width: calc(100vw - var(--container-padding) * 2); } @media only screen and (min-width: 900px) { :root { --container-padding: 32px; } } @media only screen and (min-width: 1370px) { :root { --container-padding: 20px; --container-width: 1330px; } } .waves { position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; z-index: -1; } .waves.left { transform: scaleX(-1); } .title { font-weight: 700; font-size: 1.5em; line-height: 1.4; color: #19181a; } @media (min-width: 800px) { .title { font-size: 2em; } } .title2 { font-weight: 700; font-size: 0.875em; line-height: 1.4; color: #19181a; } @media (min-width: 800px) { .title2 { font-size: 1em; } } .title3 { font-weight: 400; font-size: 0.875em; line-height: 1.4; color: #19181a; } @media (min-width: 800px) { .title3 { font-size: 1em; } } .relative { position: relative; } .absolute { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: auto; } .fixed { position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important; width: calc(100% + 5px) !important; color: var(--color) !important; background-color: #fff !important; box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.3) !important; } .fixed .social-item { color: var(--color-dark) !important; } .fixed .social-item:hover { color: var(--yellow) !important; } .page-wrapper { min-height: 100vh; display: flex; flex-direction: column; width: 100%; overflow: hidden; } .wrapper { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; width: 100%; overflow: hidden; } @media (max-width: 800px) { .wrapper { flex-direction: column; } } .text_primary { color: var(--contrast); } .text_center { text-align: center; } .main_admin { width: 100%; min-height: calc(100vh - 170px); display: grid !important; --gap: 2; grid-gap: calc(var(--gap) * var(--space)); grid-template-columns: 1fr; background-color: var(--background-admin); } @media (min-width: 800px) { .main_admin { grid-template-columns: 280px 1fr; } } .admin_main { width: 100%; min-height: 100vh; margin-top: 32px; } .main_admin .is-active { color: #2261e7; background: #121929; } .active { color: var(--colorActive); } .layout-sidebar, .container { width: 100%; padding-left: 10px; padding-right: 10px; } @media (min-width: 630px) { .layout-sidebar, .container { padding-left: 40px; padding-right: 40px; } } @media (min-width: 1340px) { .layout-sidebar, .container { padding-left: calc(50vw - 630px); padding-right: calc(50vw - 630px); } } .container-narrow { max-width: 700px; margin-left: auto; margin-right: auto; } .ratio { height: 0; padding-bottom: 56.25%; position: relative; } .ratio > * { position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; } .inline { display: inline; } .flex { display: flex !important; align-items: center; justify-content: space-between; flex-direction: column; align-items: center; } .flex > * { min-width: 0; } @media (min-width: 600px) { .flex { flex-direction: row; } } .end { justify-content: flex-end; } .stretch { align-items: stretch; } @media (min-width: 500px) { .flex-md { display: flex; align-items: center; justify-content: space-between; } } .flex-start { justify-content: flex-start; } .flex-end { justify-content: flex-end; } .center { display: flex; align-items: center; justify-content: center; } .inline-1 { display: flex; } .inline-1 > * + * { margin-left: calc(1 * var(--space)); } .inline-b { display: inline-block; } .hidden { display: none; } .btn { padding: 6px 8px; border-radius: 3px; background: #0c2dc0; color: #e7e7e7; opacity: 0.8; transition: cubic-bezier(0.215, 0.61, 0.355, 1); cursor: pointer; border: none; margin-bottom: calc(0.5 * var(--space)); } .btn:hover { opacity: 1; } .w100 { width: 100%; } .grid { width: 100%; display: grid !important; grid-gap: calc(2 * var(--space)); grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); } .grid2 { width: 100%; display: grid !important; --gap: 2; grid-gap: calc(var(--gap) * var(--space)); grid-template-columns: 1fr; } @media (min-width: 730px) { .grid2 { grid-template-columns: repeat(2, 1fr); } } .grid3 { width: 100%; display: grid !important; --gap: 2; grid-gap: calc(var(--gap) * var(--space)); grid-template-columns: 1fr; } @media (min-width: 730px) { .grid3 { grid-template-columns: repeat(3, 1fr); } } .grid.fit { grid-template-columns: repeat(auto-fit, minmax(var(--col, 275px), 1fr)); } .grid .full, .grid2 .full { grid-column: 1/-1; } .grid .end { justify-content: flex-end; } .stack, .stack-large, .stack-separated { --gap: 2; display: grid !important; grid-template-columns: 1fr; align-content: flex-start; grid-gap: calc(var(--gap) * var(--space)); } .stack > *, .stack-large > *, .stack-separated > * { min-width: 0; } .stack-large { --gap: 4; } .stack-separated { --gap: 3; --gap-separated: var(--gap); grid-gap: calc(var(--gap) * var(--space) * 2); } .stack-separated > * + * { position: relative; } .stack-separated > * + *::before { content: ""; position: absolute; left: 0; right: 0; height: 1px; width: 100%; background: var(--border-light); top: calc(var(--gap-separated) * var(--space) * -1); } .hstack { display: flex; flex-wrap: wrap; --gap: 2; margin: calc(var(--gap) * var(--space) * -0.5); margin-bottom: calc(var(--gap) * var(--space) * -1); margin-top: 0; } .nowrap { flex-wrap: nowrap; } .hstack > * { margin-left: calc(var(--gap) * var(--space) * 0.5); margin-right: calc(var(--gap) * var(--space) * 0.5); margin-bottom: calc(var(--gap) * var(--space)); } .hstack-large > * + * { margin-left: calc(4 * var(--space)); } .main-page { margin-top: calc(6 * var(--space)); margin-bottom: calc(16 * var(--space)); overflow: hidden; min-height: calc(100vh - 280px); } .layout-sidebar { --gap: 5; display: grid; grid-gap: calc(var(--gap) * var(--space)); grid-template-columns: 1fr; } .layout-sidebar > * { min-width: 0; } @media (min-width: 1100px) { .layout-sidebar { grid-template-columns: 1fr 300px; } } .sticky { position: sticky; top: calc(3 * var(--space)); } .mla { margin-left: auto; } body .p0 { padding: calc(0 * var(--space)); } body .pt0 { padding-top: calc(0 * var(--space)); } body .pb0 { padding-bottom: calc(0 * var(--space)); } body .px0 { padding-left: calc(0 * var(--space)); padding-right: calc(0 * var(--space)); } body .py0 { padding-top: calc(0 * var(--space)); padding-bottom: calc(0 * var(--space)); } body .my0 { margin-top: calc(0 * var(--space)); margin-bottom: calc(0 * var(--space)); } body .m0 { margin: calc(0 * var(--space)); } body .mx0 { margin-left: calc(0 * var(--space)); margin-right: calc(0 * var(--space)); } body .mt0 { margin-top: calc(0 * var(--space)); } body .mb0 { margin-bottom: calc(0 * var(--space)); } body .mr0 { margin-right: calc(0 * var(--space)); } body .ml0 { margin-left: calc(0 * var(--space)); } body .p1 { padding: calc(1 * var(--space)); } body .pt1 { padding-top: calc(1 * var(--space)); } body .pb1 { padding-bottom: calc(1 * var(--space)); } body .px1 { padding-left: calc(1 * var(--space)); padding-right: calc(1 * var(--space)); } body .py1 { padding-top: calc(1 * var(--space)); padding-bottom: calc(1 * var(--space)); } body .my1 { margin-top: calc(1 * var(--space)); margin-bottom: calc(1 * var(--space)); } body .m1 { margin: calc(1 * var(--space)); } body .mx1 { margin-left: calc(1 * var(--space)); margin-right: calc(1 * var(--space)); } body .mt1 { margin-top: calc(1 * var(--space)); } body .mb1 { margin-bottom: calc(1 * var(--space)); } body .mr1 { margin-right: calc(1 * var(--space)); } body .ml1 { margin-left: calc(1 * var(--space)); } body .p2 { padding: calc(2 * var(--space)); } body .pt2 { padding-top: calc(2 * var(--space)); } body .pb2 { padding-bottom: calc(2 * var(--space)); } body .px2 { padding-left: calc(2 * var(--space)); padding-right: calc(2 * var(--space)); } body .py2 { padding-top: calc(2 * var(--space)); padding-bottom: calc(2 * var(--space)); } body .my2 { margin-top: calc(2 * var(--space)); margin-bottom: calc(2 * var(--space)); } body .m2 { margin: calc(2 * var(--space)); } body .mx2 { margin-left: calc(2 * var(--space)); margin-right: calc(2 * var(--space)); } body .mt2 { margin-top: calc(2 * var(--space)); } body .mb2 { margin-bottom: calc(2 * var(--space)); } body .mr2 { margin-right: calc(2 * var(--space)); } body .ml2 { margin-left: calc(2 * var(--space)); } body .p3 { padding: calc(3 * var(--space)); } body .pt3 { padding-top: calc(3 * var(--space)); } body .pb3 { padding-bottom: calc(3 * var(--space)); } body .px3 { padding-left: calc(3 * var(--space)); padding-right: calc(3 * var(--space)); } body .py3 { padding-top: calc(3 * var(--space)); padding-bottom: calc(3 * var(--space)); } body .my3 { margin-top: calc(3 * var(--space)); margin-bottom: calc(3 * var(--space)); } body .m3 { margin: calc(3 * var(--space)); } body .mx3 { margin-left: calc(3 * var(--space)); margin-right: calc(3 * var(--space)); } body .mt3 { margin-top: calc(3 * var(--space)); } body .mb3 { margin-bottom: calc(3 * var(--space)); } body .mr3 { margin-right: calc(3 * var(--space)); } body .ml3 { margin-left: calc(3 * var(--space)); } body .p4 { padding: calc(4 * var(--space)); } body .pt4 { padding-top: calc(4 * var(--space)); } body .pb4 { padding-bottom: calc(4 * var(--space)); } body .px4 { padding-left: calc(4 * var(--space)); padding-right: calc(4 * var(--space)); } body .py4 { padding-top: calc(4 * var(--space)); padding-bottom: calc(4 * var(--space)); } body .my4 { margin-top: calc(4 * var(--space)); margin-bottom: calc(4 * var(--space)); } body .m4 { margin: calc(4 * var(--space)); } body .mx4 { margin-left: calc(4 * var(--space)); margin-right: calc(4 * var(--space)); } body .mt4 { margin-top: calc(4 * var(--space)); } body .mb4 { margin-bottom: calc(4 * var(--space)); } body .mr4 { margin-right: calc(4 * var(--space)); } body .ml4 { margin-left: calc(4 * var(--space)); } body .p5 { padding: calc(5 * var(--space)); } body .pt5 { padding-top: calc(5 * var(--space)); } body .pb5 { padding-bottom: calc(5 * var(--space)); } body .px5 { padding-left: calc(5 * var(--space)); padding-right: calc(5 * var(--space)); } body .py5 { padding-top: calc(5 * var(--space)); padding-bottom: calc(5 * var(--space)); } body .my5 { margin-top: calc(5 * var(--space)); margin-bottom: calc(5 * var(--space)); } body .m5 { margin: calc(5 * var(--space)); } body .mx5 { margin-left: calc(5 * var(--space)); margin-right: calc(5 * var(--space)); } body .mt5 { margin-top: calc(5 * var(--space)); } body .mb5 { margin-bottom: calc(5 * var(--space)); } body .mr5 { margin-right: calc(5 * var(--space)); } body .ml5 { margin-left: calc(5 * var(--space)); } @media (min-width: 700px) { .mobile-only { display: none; } } @media (max-width: 700px) { .mobile-hidden { display: none; } } body { font-family: "Inter", sans-serif; font-size: 16px; color: var(--color); line-height: 1.6; background: var(--background); scroll-margin: 100px 0 0 0; word-break: break-word; z-index: 1; } .form_error, .alert_error, .alert_success { padding: 8px 16px; margin: 16px 0; border-radius: 5px; } .form_error, .alert_error { background: #f1808a; color: #eb0b0b; } body::after { display: none; content: ""; position: absolute; top: 0; left: 0; width: 580px; height: 506px; z-index: -1; pointer-events: none; } @media (min-width: 700px) { body::after { display: block; } } .auth_form { width: 100vw; height: 100vh; display: flex; justify-content: center; align-items: center; color: var(--color-item); } .form_user { width: 420px; background-color: var(--background-item); padding: 8px 16px; box-shadow: 0px 0px 5px 0.5px rgba(54, 54, 54, 0.63); border-radius: 5px; } .form_controle, .form_input { width: 100%; } .form_input { padding: 4px 6px; } .form_controle, .form_group { margin-bottom: 8px; display: block; } .form_controle { font-weight: 400; } .form_login { display: grid; grid-gap: calc(2 * var(--space)); grid-template-columns: 1fr; } .form_control_danger { border: 1px solid #f03c3c; } .flash_success, .form_danger, .flash_errors { font-size: 0.75em; font-weight: 200; } .form_danger, .flash_errors { color: #f03c3c; } .flash_success { color: #3dec3d; } .btn_forgot { color: var(--contrast); } .main_admin { width: 100%; display: grid; grid-template-columns: 1fr; } @media (min-width: 630px) { .main_admin { grid-template-columns: 200px 1fr; } } .asidbar { background: #040529; color: #f8f8f8; display: none; } @media (min-width: 630px) { .asidbar { display: initial; } } .main_content { margin-top: 40px; color: #040410; } .asid_fixed { position: fixed; left: 0; right: 0; top: 0; width: 200px; color: #b9b9b9; } .header { background: #fff; position: fixed; left: 200px; right: 0px; top: 0; color: #b9b9b9; padding: 0 10px; box-shadow: 0px 0px 5px 0.5px rgba(54, 54, 54, 0.63); z-index: 5; } .profile, .header_wrap, .profile_username { display: flex; flex-wrap: wrap; align-items: center; } .header_wrap { flex-direction: row; justify-content: space-between; padding: 10px 0; } .header_search .form_controle { margin-bottom: 0; } .header_input { border: 1px solid #b9b9b9; border-radius: 5px; padding: 3px 8px; color: #b9b9b9; } .head_input { border: none; } .head_input:focus-within { border: none; } .profile { color: #b9b9b9; } .profile_username { flex-direction: column; margin-right: 5px; } .profile_username span { font-size: 0.8rem; line-height: 1.2; } .profile_img { height: 40px; width: 40px; border-radius: 50%; overflow: hidden; } .main_body { min-height: 100vh; margin-top: 70px; } .asidlogo { margin-top: 40px; margin-bottom: 20px; width: 140px; padding: 4px 16px; } .asid_item { margin: 10px 0; } .asid_item svg { margin-right: 5px; } .asid_link { display: flex; align-items: center; color: #b9b9b9; transition: cubic-bezier(0.19, 1, 0.22, 1); padding: 4px 16px; } .asid_link:hover { color: #e7e7e7; } .profile_wrap { margin-top: calc(3 * var(--space)); margin-bottom: calc(3 * var(--space)); display: grid; grid-template-columns: 1fr; justify-content: center; grid-gap: calc(2 * var(--space)); } @media (min-width: 1100px) { .profile_wrap { grid-template-columns: 300px 1fr; } } .profile_user, .profile_form { background: var(--background-item); padding: calc(2 * var(--space)); } .profile_user_head { margin-top: calc(2 * var(--space)); } .profile_user_img { width: 180px; height: 180px; border-radius: 50%; overflow: hidden; } .profile_user_body { margin-top: calc(1 * var(--space)); padding-top: calc(1 * var(--space)); } .profile_user_item { margin-top: calc(1 * var(--space)); font-size: 1em; } .profile_user_item span + span { margin-left: calc(0.5 * var(--space)); } .profile_user_i { font-weight: 700; } .form { margin-top: calc(2 * var(--space)); } .teams_wrap { background: var(--background-item); color: var(--color-item); border-radius: 3px; padding: calc(1 * var(--space)); } .teams_head { display: flex; flex-direction: row; justify-content: space-between; padding: calc(3 * var(--space)) calc(1 * var(--space)); } .teams_tab_head { background: #2f3135; padding: calc(2 * var(--space)) calc(1 * var(--space)); color: #f0f4ff; width: 100%; display: flex; flex-direction: row; justify-content: space-around; } .teams_head_new_link { color: var(--contrast); } .separator { margin: calc(2 * var(--space)) 0; } .section_moving { margin-bottom: calc(4 * var(--space)); } .section_team { margin-top: calc(2 * var(--space)); } .section_team h1 { margin-bottom: calc(1 * var(--space)); } .text_link { color: rgba(18, 62, 206, 0.933); } .user_header { background: var(--background-header); color: var(--color-header); display: flex; flex-direction: row; justify-content: space-between; align-items: center; box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.6); } @media (max-width: 730px) { .user_header { flex-direction: column; } } .logo { width: 80px; } @media (max-width: 400px) { .logo { padding: calc(1 * var(--space)); } } .header_text { margin-left: calc(4 * var(--space)); font-size: 0.75em; font-weight: 600; text-transform: uppercase; } @media (max-width: 800px) { .header_text { margin-left: calc(2 * var(--space)); } } .user_header_left, .head_action_over { display: flex; flex-direction: row; align-items: center; } @media (max-width: 400px) { .user_header_left, .head_action_over { flex-direction: column; } } .head_prices { display: flex; flex-direction: row; } @media (max-width: 400px) { .head_prices { margin: calc(1 * var(--space)); } } .head_prices_img { width: 40px; height: 40px; overflow: hidden; } .head_prices { padding: calc(1.2 * var(--space)); background: rgba(128, 178, 243, 0.705); margin-left: calc(2 * var(--space)); margin-right: calc(2 * var(--space)); height: auto; } .head_prices_total { display: flex; flex-direction: column; align-items: center; font-size: 0.75em; } .head_prices_total_p { font-weight: 600; } .head_cart_icon { padding: calc(2 * var(--space)); position: relative; color: #6b6b6b; } .head_cart_icon:hover { color: #d45; } .head_cart_number { position: absolute; top: 5px; right: 0; background: #d45; border-radius: 50%; padding: calc(0.5 * var(--space)) calc(1 * var(--space)); font-size: 0.6875em; color: aliceblue; } .action_icon { cursor: pointer; color: #6b6b6b; transition: all var(--during); } .action_icon:hover { color: #1445a1; } .head_prices_icon { color: #0f25a1; } .head_prices_icon svg { width: 40px; height: 40px; } .banner_user { border: 1px solid transparent; padding-bottom: calc(8 * var(--space)); background: #479fec; color: aliceblue; } @media (max-width: 730px) { .banner_user { padding-top: calc(4 * var(--space)); padding-bottom: calc(6 * var(--space)); } } .user_wrap { padding-top: calc(2 * var(--space)); padding-bottom: calc(2 * var(--space)); } .user_wrappper { box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.8); transform: translateY(-60px); background-color: aliceblue; color: #5f6061; display: grid; grid-gap: calc(1 * var(--space)); grid-template-columns: 180px 1fr; } @media (max-width: 800px) { .user_wrappper { grid-template-columns: 1fr; } } .asidbar_user { border-right: 1px solid #747575; } .menu_items { color: black; } .menu_link { display: flex; flex-direction: row; align-items: center; padding: calc(1 * var(--space)) 0; border-bottom: 1px solid #747575; padding-left: calc(1 * var(--space)); } .menu_link span { padding: 3px 0 0 5px; } .menu_head { background-color: #a2c4e0; color: #191a1b; font-weight: 600; text-transform: uppercase; padding: calc(1 * var(--space)); } .main_page { padding: calc(2 * var(--space)); } .widget { display: flex; flex-direction: row; justify-content: space-between; align-items: center; padding-top: calc(1 * var(--space)); padding-bottom: calc(1 * var(--space)); color: #ecf1f5; } .widget_head { display: flex; flex-direction: row; align-items: center; } .widget_head_img { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; } .widget_head_name { margin-left: calc(1 * var(--space)); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; } .teams_body { margin-top: calc(2 * var(--space)); } .teams_wrap { border-radius: 5px; padding: calc(2 * var(--space)); } .tab_teams { width: 100%; text-align: center; font-size: 0.875em; } .tab_teams th, .tab_teams td { padding: calc(1 * var(--space)) 0; } .tab_teams tr { display: flex; flex-direction: row; justify-content: space-between; align-items: center; width: 100%; padding: 0 calc(2 * var(--space)); } .tabs_head { background: #030b1b; color: #e4e8f0; font-weight: 600; text-transform: uppercase; } .tabs_body tr { background: #d9dbe0; color: #292a2c; } .tabs_body td:nth(odd) { background-color: #f12; color: aliceblue; } .tabs_action { display: flex; flex-direction: row; justify-content: center; align-items: center; } .tabs_action .btn_danger { color: #f12; margin-left: calc(1 * var(--space)); background-color: #e4b1b3; padding: calc(0.65 * var(--space)) calc(1 * var(--space)); } .tabs_action .btn_info { color: #1d58c5; background-color: #b2c0da; padding: calc(1 * var(--space)) calc(1 * var(--space)); } .tabs_icon_e { margin-left: calc(1 * var(--space)); margin-right: calc(1 * var(--space)); } .btn_order { color: #28a745; background: #81e097; padding: calc(1 * var(--space)); } .teams_foot { display: flex; justify-content: center; margin: calc(2 * var(--space)) 0; } .tabs_body tr:nth-child(even) { background: #ccc; } .tabs_body tr:nth-child(odd) { background: #fff; } .team_status { color: var(--header-background); border-radius: 5px; padding: calc(0.5 * var(--space)) calc(1 * var(--space)); } .team_act { background: #226fc7; } .team_sus { background: #da932a; } .team_des { background: #db1f48; } .ordos_wrap { padding: calc(4 * var(--space)); } .ordos_head_img { width: 100px; } .enter_title { text-align: center; } .ordos_indice { font-weight: 600; } .ordos_msg { background: #cbccce; padding: calc(2 * var(--space)); color: #141414; border-radius: 5px; margin-top: calc(2 * var(--space)); } .ordos_body_person { margin-top: calc(4 * var(--space)); margin-bottom: calc(2 * var(--space)); padding-top: calc(2 * var(--space)); padding-bottom: calc(2 * var(--space)); border-top: 1px solid #123472; border-bottom: 1px solid #123472; } .ordos_body_tab .title { text-align: center; margin-bottom: calc(1 * var(--space)); } .ordos_body_items .title2 { text-decoration: underline; } .ordos_foot { padding-top: calc(2 * var(--space)); padding-bottom: calc(2 * var(--space)); margin-top: calc(4 * var(--space)); } .ordos_foot_title { color: #31dbb1; } .ordos_table { width: 100%; text-align: center; font-size: 0.875em; } .ordos_table_head tr { color: #e4e6ee; background: #060b13; } .ordos_table_head th { line-height: 1.4; padding-top: calc(0.5 * var(--space)); padding-bottom: calc(0.5 * var(--space)); } .ordos_table_body tr { border-top: 1px solid #a7b9db; border-bottom: 1px solid #a3b8e0; } .ordos_table_body td { padding-top: calc(0.5 * var(--space)); padding-bottom: calc(0.5 * var(--space)); } .ordos_table_body tr:hover { background: #b9bac0; } .ordos_foot_link { text-align: end; margin-top: calc(1 * var(--space)); } .btn_ordo { padding: calc(0.5 * var(--space)) calc(1 * var(--space)); border-radius: 3px; background-color: #123472; color: #e1e5ee; } .ordos_foot_b { padding: calc(1 * var(--space)); color: #e1e2eb; background: #123472; margin-top: calc(2 * var(--space)); display: flex; flex-direction: row; justify-content: space-between; align-items: center; } .ordos_foot_item span { margin-left: calc(0.5=2 * var(--space)); } .banner_patient { padding: calc(1 * var(--space)); border-radius: 3px; margin-bottom: calc(2 * var(--space)); background: #9ecaee; position: relative; } .banner_patient_wrap { display: flex; flex-direction: row; justify-content: space-between; z-index: 5; } .banner_level { padding: calc(1 * var(--space)); background: #f0a9a9; color: #eee9e8; border-radius: 50%; z-index: 2; } .banner_patient_prog { height: 10px; position: absolute; top: 46%; left: 20px; background: #e72a53; z-index: 1; } .banner_patient_prog_s { display: block; height: 10px; width: calc(100% - 40px); background: #dfcbcb; position: absolute; top: 46%; left: 20px; } .forms_controls { text-align: end; } .btn_controls { padding: calc(1 * var(--space)) calc(1.5 * var(--space)); border-radius: 3px; font-size: 0.75em; color: #f3ebeb; opacity: 0.8; cursor: pointer; transition: var(--during); } .btn_controls:hover { opacity: 1; } .btn_remove, .btn_danger { background: #e90e0e; } .btn_adding { background: #0ee932; } .btn_m { margin: 0 calc(2 * var(--space)); } .btn_labo { background: #031647; } .user_cart { padding: calc(2 * var(--space)); border-radius: 5px; background-color: var(--background-item); color: var(--color-item); box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.4); display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; margin: calc(2 * var(--space)); } @media (max-width: 800px) { .user_cart { margin: calc(1 * var(--space)); } } .user_left { display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; box-sizing: 1px solid blue; } .user_rigth { width: calc(100% - 0px); margin-left: calc(0.5 * var(--space)); margin-top: calc(2 * var(--space)); } .user_left_h { height: 140px; width: 140px; border-radius: 50%; overflow: hidden; border: 1px solid var(--color-foot); } .user_name { font-size: 1.5em; font-weight: 600; padding: 0 auto; line-height: 1; } .user_rigth_b { width: 100%; display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: space-between; padding: calc(1 * var(--space)) 0; border-top: 1px solid var(--color-foot); font-size: 0.875em; } .user_work { color: var(--contrast); font-weight: 600; font-size: 0.875em; } .user_rigth_h { padding: calc(1 * var(--space)) calc(2 * var(--space)); } .user_rigth_h p { font-weight: 400; padding: 0; line-height: 1.2; } .user_rigth_item { margin: calc(0.5 * var(--space)); } .user_rigth_day { color: #27da74; } .user_rigth_time { color: #526b5d; } .cart_static { width: 100%; display: grid !important; grid-gap: calc(2 * var(--space)); grid-template-columns: repeat(auto-fill, minmax(225px, 1fr)); margin-top: calc(4 * var(--space)); } .cart_static_item { box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.4); border-radius: 3px; padding: calc(2 * var(--space)); margin: calc(1 * var(--space)); display: flex; flex-direction: column; flex-wrap: wrap; align-items: center; } .cart_static_head { font-size: 1.125em; } .cart_static_body { font-size: 2em; font-weight: 600; } .cart_patient { color: white; background: #e05822; } .cart_static_item { color: white; } .cart_ordo { background: #e0ad22; } .cart_cons { background: #228ae0; } .cart_att { background: #e02222; } .cart_tot { background: #22e042; } .cart_sal { background: #4b22e0; } .cart_emp { background: #ba22e0; } .cart_art { background: #22d3e0; } .section_enterprise { margin-top: calc(2 * var(--space)); margin-bottom: calc(4 * var(--space)); } .enterprise_items { margin-top: calc(2 * var(--space)); margin-bottom: calc(4 * var(--space)); } .enterprise_head { overflow: hidden; border-bottom-right-radius: 80px; } .enterprise_head_ac, .enterprise_head_wr { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; align-items: center; } .enterprise_head_ac { justify-content: space-evenly; } .btn_mar { margin: 0 calc(2 * var(--space)); } .article_wrap { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; padding: calc(1.5 * var(--space)); } .article_cart { border-radius: 5px; overflow: hidden; width: 170px; margin: calc(1.5 * var(--space)); border: 1px solid #0002; } @media (max-width: 479px) { .article_cart { width: 160px; } } @media (max-width: 430px) { .article_cart { width: 100%; } } .cart_head { opacity: 0.8; transform: scale(1); transition: 1s var(--during); } .article_cart:hover .cart_head { opacity: 1; transform: scale(1.1); } .cart_body { color: var(--color); font-weight: 600; padding: 0 calc(0.5 * var(--space)); } .cart_foot { padding: 0 calc(0.5 * var(--space)); display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; align-items: end; margin: calc(0.5 * var(--space)) 0; } .cart_text { opacity: 0.8; } .normal_text { color: #292bd6; } .danger_text { color: #ef233c; } .cart_icon { border-radius: 3px; padding: calc(0.5 * var(--space)) calc(0.8 * var(--space)); background: #ef233c; color: #FFFFFFF2; cursor: pointer; opacity: 0.8; transition: opacity var(--during); } .cart_icon:hover { opacity: 1; } .article_paginate { padding: calc(1 * var(--space)) 0; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; } .pagination { display: flex; flex-direction: row; } .pagination .disabled { background: #4869eeF2; } .pagination .sr-only { display: none; } .pagination .page-link { background: #2261e7; display: inline-block; padding: calc(0.5 * var(--space)) calc(1.5 * var(--space)); color: #FFFFFFF2; } .popular { margin: calc(4 * var(--space)) 0; } .popular_head { padding: 0 calc(2 * var(--space)); } .popu_wrap { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; padding-top: calc(2 * var(--space)); } .panier_tab { width: 100%; text-align: center; } .panier_tab thead { font-weight: 600; background: #e1e1e2; } .panier_tab th { padding: calc(2 * var(--space)) 0; font-size: 1em; } .panier_tab td { border-bottom: 1px solid #8f8f92; padding-top: calc(1 * var(--space)); padding-bottom: calc(1 * var(--space)); } .panier_cart { display: flex; flex-direction: row; justify-content: center; } .panier_cart_head { width: 120px; border-radius: 3px; overflow: hidden; } .panier_cart_body { display: flex; flex-direction: column; text-align: start; padding-left: calc(1 * var(--space)); font-size: 0.875em; } .panier_cart_name { font-weight: 600; } .panier_foot { display: flex; flex-direction: row; justify-content: space-between; margin-top: calc(3 * var(--space)); } .panier_totals { font-weight: 600; font-size: 1.125em; } .panier_totals span { font-weight: 400; font-style: italic; } .btn_add { background: #0a8b0a; } .panier_number { margin: 0 calc(1 * var(--space)); } .print_foot .ordos_foot_title { color: #000; } .print_foot .ordos_foot_b { color: #000; background: #0002; } .tab_print { width: 100%; } .tab_print .tabs_head { color: #000; background: #0004; } .tab_print tr { display: normal; text-align: center; } .tab_print td, .tab_print th { padding: calc(0.5 * var(--space)) 0; border: 1px solid #000; } .print_marg { background: #fff; display: flex; flex-direction: column; justify-content: space-between; } .print_time { display: block; margin-bottom: calc(1 * var(--space)); text-align: end; } .sign_pres { font-size: 0.875em; font-weight: 600; text-decoration: underline; color: #000; } .print_totals { font-weight: 700; font-size: 1em; margin-top: calc(2 * var(--space)); } .sign_pres_name { text-transform: uppercase; } @page { size: A4; margin: 11mm 17mm 17mm 17mm; background: #fff; color-adjust: exact; -webkit-print-color-adjust: exact; } @media print { .footer { position: fixed; bottom: 0; left: 16px; right: 16px; } .content-block, p { page-break-inside: avoid; } html, body { width: 210mm; height: 297mm; background: #fff; } } /*# sourceMappingURL=bundle.style.css.map*/
0.542379
0.149935
/* ========================================================================== Base styles: opinionated defaults ========================================================================== */ html { color: #222; font-size: 1em; line-height: 1.4; } /* * Remove text-shadow in selection highlight: * https://twitter.com/miketaylr/status/12228805301 * * These selection rule sets have to be separate. * Customize the background color to match your design. */ ::-moz-selection { background: #b3d4fc; text-shadow: none; } ::selection { background: #b3d4fc; text-shadow: none; } /* * A better looking default horizontal rule */ hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; } /* * Remove the gap between audio, canvas, iframes, * images, videos and the bottom of their containers: * https://github.com/h5bp/html5-boilerplate/issues/440 */ audio, canvas, iframe, img, svg, video { vertical-align: middle; } /* * Remove default fieldset styles. */ fieldset { border: 0; margin: 0; padding: 0; } /* * Allow only vertical resizing of textareas. */ textarea { resize: vertical; } /* ========================================================================== Browser Upgrade Prompt ========================================================================== */ .browserupgrade { margin: 0.2em 0; background: #ccc; color: #000; padding: 0.2em 0; } /* ========================================================================== Author's custom styles ========================================================================== */ /*Layout*/ .container{ margin: 0px auto; width: 87%; } a{ text-decoration: none; } body{ font-family: "Maven Pro",sans-serif; } /*Begin titlebar*/ .title{ background: #242424; width: 100%; height: 50px; } .logo{ float: left; margin: 10px 0px; } .log_reg{ border-right: 1px solid #3C3C3C; padding: 11px 16px; float: right; } ul{ list-style: outside none none; margin: 0px; padding: 0px; list-style-type: none; } .log_reg ul li{ display: inline-block; } .log_reg ul li a{ font-family: "Maven Pro",sans-serif; color: #777; display: block; padding: 5px 8px; text-transform: uppercase; font-size: 0.8125em; } .log_reg li.log{ font-size: 0.8125em; color: #777; text-transform: lowercase; } .clear{ clear: both; } .web_search{ float: right; border-right: 1px solid #3C3C3C; padding: 14px 25px; } /*Einde titlebar*/ /*Begin navbar*/ .navbar{ float: left; } .navbar ul li{ float: left; border-left: 1px solid #E2E2E2; } .navbar ul li.active a{ color: #57C5A0; } .navbar ul li a{ display: block; padding: 22px 30px; color: #2D2D2D; font-size: 1.1em; text-transform: capitalize; } .navbar ul li a:hover{ color: #57C5A0; } .navbar ul li:nth-child(6){ border-right: 1px solid #E2E2E2; } .navbar_right{ float: right; margin-left: 55px; } .navbar_right ul li{ display: inline-block; } .navbar_right ul li a{ font-family: "Maven Pro",sans-serif; display: block; line-height: 1.8em; font-size: 1em; color: #FFF; padding: 20px 26px; border-left: 1px solid #E2E2E2; } .navbar_right ul li:nth-child(2) a{ border-right: 1px solid #E2E2E2; } .navbar_right ul li a img{ display: inline-block; vertical-align: middle; } .navbar_right ul li a span.color1{ background: #999; } .navbar_right ul li a span{ background: #57C5A0; border-radius: 5px; padding: 5px 8px; margin-left: 10px; } /*Einde navbar*/ /*Begin slider*/ .slider{ position: relative; clear: both; } .slider_info{ position: absolute; right: 290px; top: 35px; left: 685px; bottom: 200px; } .slider_info .price{ padding: 25px 20px 20px 15px; background: #57C5A0; color: #FFF; text-align: center; margin-right: 280px } .slider_info h1{ font-size: 2.5em; color: #242424; text-transform: capitalize; width: 307px; line-height: 40px; } .slider_info p{ font-size: 1.1em } .icons img{ float: left; margin-left: 2px; padding: 15px 13px 15px; background: #FFF; } .slider_nav{ max-width: 950px; display: block; height: 10px; position: relative; margin: 0px auto; left: 2%; } .slider_nav li{ width: 19.286%; position: relative; float: left; height: 100%; border-right: 1px solid #2A2929; } .slider_nav li:nth-child(5){ border-right: none; } .slider_nav li a{ text-align: center; display: block; background: #000; width: 100%; height: 100%; cursor: pointer; text-align: center; box-shadow: 0px 1px 1px 0px #272626; } .slider_nav li a span{ padding-top: 30px; color: #999; text-transform: capitalize; display: inline-block; font-size: 1.2em; } .slider_nav li a span.active{ color: #FFF; } .slider_nav li a p{ text-transform: capitalize; font-size: 0.8125em; color: #999; line-height: 0.1em; } .slider_nav_background{ background: #2E2E2E; height: 120px; width: 100%; } .slider_nav_element{ position: absolute; } .slider_nav .slider_element{ background: #57C5A0; height: 6px; width: 180px; position: absolute; z-index: 10; text-indent: -9000px; left: 2px; margin-top: 2px; } /*Einde slider*/ /*Begin offers*/ .offers_background{ background: #242424; width: 100%; height: 240px; } .offers .image-3{ float: left; text-align: center; margin-top: 30px; position: relative; left: 120px; margin-left: 20px; } .offers .image-3 a span.tag{ padding: 15px 30px; background: #242424; color: #FFF; font-size: 1.2em; text-transform: uppercase; opacity: 0.9; } .offers .image-3 a span.tag:hover{ opacity: 0.8; background: #242424; } .offers .image-3 a span{ position: absolute; top: 60px; right: 48px; left: 35px; } /*Einde offers*/ /*Begin products*/ .products_background{ background: #EBE7DF; height: 1090px; width: 100%; } .top_main h2{ float: left; text-transform: capitalize; color: #242424; font-size: 1.5em; margin-left: 140px; } .top_main a{ font-size: 1em; float: right; text-transform: capitalize; padding: 8px 20px; color: #BCB4A7; border: 1px solid #BCB4A7; margin-top: 30px; margin-right: 90px; } .top_main a:hover{ color: #FFF; background: #BCB4A7; } .top_main1 a:hover{ color: #FFF; background: #BCB4A7; } .top_main{ clear: both; height: 70px; width: 100%; } .products-3{ display: block; text-align: center; height: 286px; margin-top: 15px; margin-left: 139px; clear: both; } .grids-3:first-child{ margin-left: 0px; } .grids-3{ float: left; width: 29.1%; background: #FFF; position: relative; margin-left: 20px; } .grids-3 a{ display: block; } .grids-3 h3{ border-top: 1px solid #EBEBEB; font-size: 1.2em; color: #000; text-transform: capitalize; position: relative; margin-left: 70px; } .price1{ background: #57C5A0; color: #FFF; font-size: 0.8725em; padding: 25px 12px; position: absolute; top: 216px; left: 15px; } .price2{ font-size: 0.8725em; color: #FFF; padding: 25px 10px; position: absolute; top: 0px; right: 10px; text-transform: uppercase; background: #242424; } .top_main1 h2{ float: left; text-transform: capitalize; color: #242424; font-size: 1.5em; } .top_main1 a{ font-size: 1em; float: right; text-transform: capitalize; padding: 8px 20px; color: #BCB4A7; border: 1px solid #BCB4A7; margin-top: 20px; } .top_main1{ clear: both; height: 70px; width: 945px; } .price3{ font-size: 0.8725em; color: #FFF; padding: 25px 10px; position: absolute; top: 0px; right: 10px; text-transform: uppercase; background: #F27E4B; width: 60px; } /*Einde products*/ /*Begin main info*/ .grids-2{ float: left; width: 45.7778%; margin-left: 11.8%; margin-top: 50px; } .grids-2 .info{ float: left; width: 38.7778%; margin-left: 6.3333%; background: #DFDBD4; padding: 5px 15px 0px 20px; } .grids-2 .info:first-child{ margin-left: 0px; } .grids-2 h2{ font-size: 1.2em; color: #141414; text-transform: uppercase; margin-bottom: 4%; } .grids-2 .info p{ font-size: 0.8725em; line-height: 1.5em; color: #141414; } .blog{ background: #DFDBD4; float: right; margin-right: 90px; width: 375px; padding-left: 17px; padding-bottom: 47px; margin-top: 50px; } .grid_date{ margin-top: 4%; } .date1{ float: left; width: 12.3333%; } .date1 h4{ font-size: 0.8925em; margin-top: 4px; background: #57C5A0; padding: 3px; text-transform: uppercase; color: #FFF; text-align: center; } .blog h2{ font-size: 1.2em; color: #141414; text-transform: uppercase; margin-bottom: 4%; } .date-text{ float: left; width: 84.3333%; margin-left: 3.3333%; } .date-text p{ font-size: 0.8725em; line-height: 1.5em; color: #141414; margin: 0px; } .date-text h4{ margin: 0px; } /*Einde main info*/ /*Begin footer top*/ .footer_top{ background: #242424; height: 330px; width: 100%; } .edit{ display: block; } .edit-text{ float: left; width: 26%; margin-left: 7.333%; margin-top: 50px; } .edit-text h3{ font-size: 1.2em; color: #5E5E5E; text-transform: uppercase; margin-bottom: 6%; } .edit-text p{ font-size: 0.8725em; color: #9B9B9B; line-height: 1.8em; } .edit-text p a{ color: #57C5A0; } .edit-text p.top{ margin-top: 2%; } .edit-text li{ float: left; width: 23.333%; margin: 0px 14px 10px 0px; } .edit-text li a{ display: block; width: 75px; } .edit-text li a:hover{ opacity: 0.5; color: #242424; } /*Einde footer top*/ /*Begin footer mid*/ .footer-mid{ border-top: 1px solid #141414; background: #242424; width: 100%; height: 145px; } .submit{ float: left; position: relative; width: 24.3333%; margin-top: 50px; margin-left: 87px; } .submit input[type="text"]{ font-style: italic; font-size: 0.8725em; line-height: 24px; width: 77.3333%; padding: 10px; background: #2E2E2E; color: #9B9B9B; border: medium none; outline: medium none: } .submit form input[type="submit"]{ cursor: pointer; line-height: 24px; position: absolute; right: 0px; background: url(../img/search_logo.jpg) #2A2A2A 15px 15px; padding: 10px; width: 16.3333%; border: medium none; outline: medium none; background-repeat: no-repeat; } .social{ float: right; margin-right: 5%; } .social ul li{ float: left; margin-left: 10px; } .social ul li a.icon1{ background: url(../img/facebook1.jpg); } .social ul li a.icon1:hover{ color: #3B579D; opacity: 0.5; } .social ul li a.icon2{ background: url(../img/twitter1.jpg); } .social ul li a.icon2:hover{ color: #3B579D; opacity: 0.5; } .social ul li a.icon3{ background: url(../img/google1.jpg); } .social ul li a.icon3:hover{ color: #3B579D; opacity: 0.5; } .social ul li a.icon4{ background: url(../img/in1.jpg); } .social ul li a.icon4:hover{ color: #3B579D; opacity: 0.5; } .social ul li a.icon5{ background: url(../img/meer1.png); } .social ul li a.icon5:hover{ color: #3B579D; opacity: 0.5; } .social ul li a{ display: block; width: 37px; height: 37px; margin-top: 50px; } /*Einde footer mid*/ /*Begin footer bottom*/ .footer-bottom{ background: #2E2E2E; height: 70px; width: 100%; } .copy{ float: left; } .copy p{ color: #7D7D7D; font-size: 0.8725em; line-height: 0.1; margin-top: 20px; margin-left: 85px; } .f-nav{ float: right; margin-right: 60px; margin-top: 25px; } .f-nav li{ float: left; margin-left: 10px; } .f-nav li a{ display: block; color: #7D7D7D; text-transform: capitalize; font-size: 0.8725em; } .f-nav li a:hover{ color: #57C5A0; } /*Einde footer bottom*/ /*Pagina Products*/ /*Begin slider*/ .slider_info1{ position: absolute; right: 190px; top: 35px; left: 710px; bottom: 200px; height: 180px; } .slider1{ position: relative; clear: both; } .slider_info1 .price4{ padding: 25px 20px 20px 15px; background: #57C5A0; color: #FFF; text-align: center; float: left; margin-top: 7px; } .slider_info1 h1{ font-size: 2.5em; color: #242424; text-transform: capitalize; width: 404px; line-height: 40px; margin: 0px; padding-left: 130px; } .slider_info1 p{ font-size: 1.3em; margin: 0px; margin-top: 10px; } /*Einde Slider products*/ /*Begin selectors products*/ .select-background{ background: #2E2E2E; height: 90px; width: 100%; } .select h2{ font-size: 1.6em; color: #FFF; text-transform: capitalize; float: left; margin-left: 165px; } .select .selectors h2{ padding: 10px 91px 10px 85px; margin-left: 10px; float: left; color: #FFF; font-size: 1.2em; background: #242424; margin-top: 20px; } .select .selectors{ margin-left: 330px; width: 755px; } .select .selectors h2 a{ text-align: center; color: #FFF; } /*Einde selectors products*/ .products_background1{ background: #EBE7DF; height: 1425px; width: 100%; } /* ========================================================================== Helper classes ========================================================================== */ /* * Hide visually and from screen readers: */ .hidden { display: none !important; } /* * Hide only visually, but have it available for screen readers: * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */ .visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } /* * Extends the .visuallyhidden class to allow the element * to be focusable when navigated to via the keyboard: * https://www.drupal.org/node/897638 */ .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; } /* * Hide visually and from screen readers, but maintain layout */ .invisible { visibility: hidden; } /* * Clearfix: contain floats * * For modern browsers * 1. The space content is one way to avoid an Opera bug when the * `contenteditable` attribute is included anywhere else in the document. * Otherwise it causes space to appear at the top and bottom of elements * that receive the `clearfix` class. * 2. The use of `table` rather than `block` is only necessary if using * `:before` to contain the top-margins of child elements. */ .clearfix:before, .clearfix:after { content: " "; /* 1 */ display: table; /* 2 */ } .clearfix:after { clear: both; } /* ========================================================================== EXAMPLE Media Queries for Responsive Design. These examples override the primary ('mobile first') styles. Modify as content requires. ========================================================================== */ @media only screen and (min-width: 35em) { /* Style adjustments for viewports that meet the condition */ } @media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) { /* Style adjustments for high resolution devices */ } /* ========================================================================== Print styles. Inlined to avoid the additional HTTP request: http://www.phpied.com/delay-loading-your-print-css/ ========================================================================== */ @media print { *, *:before, *:after { background: transparent !important; color: #000 !important; /* Black prints faster: http://www.sanbeiji.com/archives/953 */ box-shadow: none !important; text-shadow: none !important; } a, a:visited { text-decoration: underline; } a[href]:after { content: " (" attr(href) ")"; } abbr[title]:after { content: " (" attr(title) ")"; } /* * Don't show links that are fragment identifiers, * or use the `javascript:` pseudo protocol */ a[href^="#"]:after, a[href^="javascript:"]:after { content: ""; } pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } /* * Printing Tables: * http://css-discuss.incutio.com/wiki/Printing_Tables */ thead { display: table-header-group; } tr, img { page-break-inside: avoid; } img { max-width: 100% !important; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3 { page-break-after: avoid; } }
css/main.css
/* ========================================================================== Base styles: opinionated defaults ========================================================================== */ html { color: #222; font-size: 1em; line-height: 1.4; } /* * Remove text-shadow in selection highlight: * https://twitter.com/miketaylr/status/12228805301 * * These selection rule sets have to be separate. * Customize the background color to match your design. */ ::-moz-selection { background: #b3d4fc; text-shadow: none; } ::selection { background: #b3d4fc; text-shadow: none; } /* * A better looking default horizontal rule */ hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; } /* * Remove the gap between audio, canvas, iframes, * images, videos and the bottom of their containers: * https://github.com/h5bp/html5-boilerplate/issues/440 */ audio, canvas, iframe, img, svg, video { vertical-align: middle; } /* * Remove default fieldset styles. */ fieldset { border: 0; margin: 0; padding: 0; } /* * Allow only vertical resizing of textareas. */ textarea { resize: vertical; } /* ========================================================================== Browser Upgrade Prompt ========================================================================== */ .browserupgrade { margin: 0.2em 0; background: #ccc; color: #000; padding: 0.2em 0; } /* ========================================================================== Author's custom styles ========================================================================== */ /*Layout*/ .container{ margin: 0px auto; width: 87%; } a{ text-decoration: none; } body{ font-family: "Maven Pro",sans-serif; } /*Begin titlebar*/ .title{ background: #242424; width: 100%; height: 50px; } .logo{ float: left; margin: 10px 0px; } .log_reg{ border-right: 1px solid #3C3C3C; padding: 11px 16px; float: right; } ul{ list-style: outside none none; margin: 0px; padding: 0px; list-style-type: none; } .log_reg ul li{ display: inline-block; } .log_reg ul li a{ font-family: "Maven Pro",sans-serif; color: #777; display: block; padding: 5px 8px; text-transform: uppercase; font-size: 0.8125em; } .log_reg li.log{ font-size: 0.8125em; color: #777; text-transform: lowercase; } .clear{ clear: both; } .web_search{ float: right; border-right: 1px solid #3C3C3C; padding: 14px 25px; } /*Einde titlebar*/ /*Begin navbar*/ .navbar{ float: left; } .navbar ul li{ float: left; border-left: 1px solid #E2E2E2; } .navbar ul li.active a{ color: #57C5A0; } .navbar ul li a{ display: block; padding: 22px 30px; color: #2D2D2D; font-size: 1.1em; text-transform: capitalize; } .navbar ul li a:hover{ color: #57C5A0; } .navbar ul li:nth-child(6){ border-right: 1px solid #E2E2E2; } .navbar_right{ float: right; margin-left: 55px; } .navbar_right ul li{ display: inline-block; } .navbar_right ul li a{ font-family: "Maven Pro",sans-serif; display: block; line-height: 1.8em; font-size: 1em; color: #FFF; padding: 20px 26px; border-left: 1px solid #E2E2E2; } .navbar_right ul li:nth-child(2) a{ border-right: 1px solid #E2E2E2; } .navbar_right ul li a img{ display: inline-block; vertical-align: middle; } .navbar_right ul li a span.color1{ background: #999; } .navbar_right ul li a span{ background: #57C5A0; border-radius: 5px; padding: 5px 8px; margin-left: 10px; } /*Einde navbar*/ /*Begin slider*/ .slider{ position: relative; clear: both; } .slider_info{ position: absolute; right: 290px; top: 35px; left: 685px; bottom: 200px; } .slider_info .price{ padding: 25px 20px 20px 15px; background: #57C5A0; color: #FFF; text-align: center; margin-right: 280px } .slider_info h1{ font-size: 2.5em; color: #242424; text-transform: capitalize; width: 307px; line-height: 40px; } .slider_info p{ font-size: 1.1em } .icons img{ float: left; margin-left: 2px; padding: 15px 13px 15px; background: #FFF; } .slider_nav{ max-width: 950px; display: block; height: 10px; position: relative; margin: 0px auto; left: 2%; } .slider_nav li{ width: 19.286%; position: relative; float: left; height: 100%; border-right: 1px solid #2A2929; } .slider_nav li:nth-child(5){ border-right: none; } .slider_nav li a{ text-align: center; display: block; background: #000; width: 100%; height: 100%; cursor: pointer; text-align: center; box-shadow: 0px 1px 1px 0px #272626; } .slider_nav li a span{ padding-top: 30px; color: #999; text-transform: capitalize; display: inline-block; font-size: 1.2em; } .slider_nav li a span.active{ color: #FFF; } .slider_nav li a p{ text-transform: capitalize; font-size: 0.8125em; color: #999; line-height: 0.1em; } .slider_nav_background{ background: #2E2E2E; height: 120px; width: 100%; } .slider_nav_element{ position: absolute; } .slider_nav .slider_element{ background: #57C5A0; height: 6px; width: 180px; position: absolute; z-index: 10; text-indent: -9000px; left: 2px; margin-top: 2px; } /*Einde slider*/ /*Begin offers*/ .offers_background{ background: #242424; width: 100%; height: 240px; } .offers .image-3{ float: left; text-align: center; margin-top: 30px; position: relative; left: 120px; margin-left: 20px; } .offers .image-3 a span.tag{ padding: 15px 30px; background: #242424; color: #FFF; font-size: 1.2em; text-transform: uppercase; opacity: 0.9; } .offers .image-3 a span.tag:hover{ opacity: 0.8; background: #242424; } .offers .image-3 a span{ position: absolute; top: 60px; right: 48px; left: 35px; } /*Einde offers*/ /*Begin products*/ .products_background{ background: #EBE7DF; height: 1090px; width: 100%; } .top_main h2{ float: left; text-transform: capitalize; color: #242424; font-size: 1.5em; margin-left: 140px; } .top_main a{ font-size: 1em; float: right; text-transform: capitalize; padding: 8px 20px; color: #BCB4A7; border: 1px solid #BCB4A7; margin-top: 30px; margin-right: 90px; } .top_main a:hover{ color: #FFF; background: #BCB4A7; } .top_main1 a:hover{ color: #FFF; background: #BCB4A7; } .top_main{ clear: both; height: 70px; width: 100%; } .products-3{ display: block; text-align: center; height: 286px; margin-top: 15px; margin-left: 139px; clear: both; } .grids-3:first-child{ margin-left: 0px; } .grids-3{ float: left; width: 29.1%; background: #FFF; position: relative; margin-left: 20px; } .grids-3 a{ display: block; } .grids-3 h3{ border-top: 1px solid #EBEBEB; font-size: 1.2em; color: #000; text-transform: capitalize; position: relative; margin-left: 70px; } .price1{ background: #57C5A0; color: #FFF; font-size: 0.8725em; padding: 25px 12px; position: absolute; top: 216px; left: 15px; } .price2{ font-size: 0.8725em; color: #FFF; padding: 25px 10px; position: absolute; top: 0px; right: 10px; text-transform: uppercase; background: #242424; } .top_main1 h2{ float: left; text-transform: capitalize; color: #242424; font-size: 1.5em; } .top_main1 a{ font-size: 1em; float: right; text-transform: capitalize; padding: 8px 20px; color: #BCB4A7; border: 1px solid #BCB4A7; margin-top: 20px; } .top_main1{ clear: both; height: 70px; width: 945px; } .price3{ font-size: 0.8725em; color: #FFF; padding: 25px 10px; position: absolute; top: 0px; right: 10px; text-transform: uppercase; background: #F27E4B; width: 60px; } /*Einde products*/ /*Begin main info*/ .grids-2{ float: left; width: 45.7778%; margin-left: 11.8%; margin-top: 50px; } .grids-2 .info{ float: left; width: 38.7778%; margin-left: 6.3333%; background: #DFDBD4; padding: 5px 15px 0px 20px; } .grids-2 .info:first-child{ margin-left: 0px; } .grids-2 h2{ font-size: 1.2em; color: #141414; text-transform: uppercase; margin-bottom: 4%; } .grids-2 .info p{ font-size: 0.8725em; line-height: 1.5em; color: #141414; } .blog{ background: #DFDBD4; float: right; margin-right: 90px; width: 375px; padding-left: 17px; padding-bottom: 47px; margin-top: 50px; } .grid_date{ margin-top: 4%; } .date1{ float: left; width: 12.3333%; } .date1 h4{ font-size: 0.8925em; margin-top: 4px; background: #57C5A0; padding: 3px; text-transform: uppercase; color: #FFF; text-align: center; } .blog h2{ font-size: 1.2em; color: #141414; text-transform: uppercase; margin-bottom: 4%; } .date-text{ float: left; width: 84.3333%; margin-left: 3.3333%; } .date-text p{ font-size: 0.8725em; line-height: 1.5em; color: #141414; margin: 0px; } .date-text h4{ margin: 0px; } /*Einde main info*/ /*Begin footer top*/ .footer_top{ background: #242424; height: 330px; width: 100%; } .edit{ display: block; } .edit-text{ float: left; width: 26%; margin-left: 7.333%; margin-top: 50px; } .edit-text h3{ font-size: 1.2em; color: #5E5E5E; text-transform: uppercase; margin-bottom: 6%; } .edit-text p{ font-size: 0.8725em; color: #9B9B9B; line-height: 1.8em; } .edit-text p a{ color: #57C5A0; } .edit-text p.top{ margin-top: 2%; } .edit-text li{ float: left; width: 23.333%; margin: 0px 14px 10px 0px; } .edit-text li a{ display: block; width: 75px; } .edit-text li a:hover{ opacity: 0.5; color: #242424; } /*Einde footer top*/ /*Begin footer mid*/ .footer-mid{ border-top: 1px solid #141414; background: #242424; width: 100%; height: 145px; } .submit{ float: left; position: relative; width: 24.3333%; margin-top: 50px; margin-left: 87px; } .submit input[type="text"]{ font-style: italic; font-size: 0.8725em; line-height: 24px; width: 77.3333%; padding: 10px; background: #2E2E2E; color: #9B9B9B; border: medium none; outline: medium none: } .submit form input[type="submit"]{ cursor: pointer; line-height: 24px; position: absolute; right: 0px; background: url(../img/search_logo.jpg) #2A2A2A 15px 15px; padding: 10px; width: 16.3333%; border: medium none; outline: medium none; background-repeat: no-repeat; } .social{ float: right; margin-right: 5%; } .social ul li{ float: left; margin-left: 10px; } .social ul li a.icon1{ background: url(../img/facebook1.jpg); } .social ul li a.icon1:hover{ color: #3B579D; opacity: 0.5; } .social ul li a.icon2{ background: url(../img/twitter1.jpg); } .social ul li a.icon2:hover{ color: #3B579D; opacity: 0.5; } .social ul li a.icon3{ background: url(../img/google1.jpg); } .social ul li a.icon3:hover{ color: #3B579D; opacity: 0.5; } .social ul li a.icon4{ background: url(../img/in1.jpg); } .social ul li a.icon4:hover{ color: #3B579D; opacity: 0.5; } .social ul li a.icon5{ background: url(../img/meer1.png); } .social ul li a.icon5:hover{ color: #3B579D; opacity: 0.5; } .social ul li a{ display: block; width: 37px; height: 37px; margin-top: 50px; } /*Einde footer mid*/ /*Begin footer bottom*/ .footer-bottom{ background: #2E2E2E; height: 70px; width: 100%; } .copy{ float: left; } .copy p{ color: #7D7D7D; font-size: 0.8725em; line-height: 0.1; margin-top: 20px; margin-left: 85px; } .f-nav{ float: right; margin-right: 60px; margin-top: 25px; } .f-nav li{ float: left; margin-left: 10px; } .f-nav li a{ display: block; color: #7D7D7D; text-transform: capitalize; font-size: 0.8725em; } .f-nav li a:hover{ color: #57C5A0; } /*Einde footer bottom*/ /*Pagina Products*/ /*Begin slider*/ .slider_info1{ position: absolute; right: 190px; top: 35px; left: 710px; bottom: 200px; height: 180px; } .slider1{ position: relative; clear: both; } .slider_info1 .price4{ padding: 25px 20px 20px 15px; background: #57C5A0; color: #FFF; text-align: center; float: left; margin-top: 7px; } .slider_info1 h1{ font-size: 2.5em; color: #242424; text-transform: capitalize; width: 404px; line-height: 40px; margin: 0px; padding-left: 130px; } .slider_info1 p{ font-size: 1.3em; margin: 0px; margin-top: 10px; } /*Einde Slider products*/ /*Begin selectors products*/ .select-background{ background: #2E2E2E; height: 90px; width: 100%; } .select h2{ font-size: 1.6em; color: #FFF; text-transform: capitalize; float: left; margin-left: 165px; } .select .selectors h2{ padding: 10px 91px 10px 85px; margin-left: 10px; float: left; color: #FFF; font-size: 1.2em; background: #242424; margin-top: 20px; } .select .selectors{ margin-left: 330px; width: 755px; } .select .selectors h2 a{ text-align: center; color: #FFF; } /*Einde selectors products*/ .products_background1{ background: #EBE7DF; height: 1425px; width: 100%; } /* ========================================================================== Helper classes ========================================================================== */ /* * Hide visually and from screen readers: */ .hidden { display: none !important; } /* * Hide only visually, but have it available for screen readers: * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */ .visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } /* * Extends the .visuallyhidden class to allow the element * to be focusable when navigated to via the keyboard: * https://www.drupal.org/node/897638 */ .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; } /* * Hide visually and from screen readers, but maintain layout */ .invisible { visibility: hidden; } /* * Clearfix: contain floats * * For modern browsers * 1. The space content is one way to avoid an Opera bug when the * `contenteditable` attribute is included anywhere else in the document. * Otherwise it causes space to appear at the top and bottom of elements * that receive the `clearfix` class. * 2. The use of `table` rather than `block` is only necessary if using * `:before` to contain the top-margins of child elements. */ .clearfix:before, .clearfix:after { content: " "; /* 1 */ display: table; /* 2 */ } .clearfix:after { clear: both; } /* ========================================================================== EXAMPLE Media Queries for Responsive Design. These examples override the primary ('mobile first') styles. Modify as content requires. ========================================================================== */ @media only screen and (min-width: 35em) { /* Style adjustments for viewports that meet the condition */ } @media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) { /* Style adjustments for high resolution devices */ } /* ========================================================================== Print styles. Inlined to avoid the additional HTTP request: http://www.phpied.com/delay-loading-your-print-css/ ========================================================================== */ @media print { *, *:before, *:after { background: transparent !important; color: #000 !important; /* Black prints faster: http://www.sanbeiji.com/archives/953 */ box-shadow: none !important; text-shadow: none !important; } a, a:visited { text-decoration: underline; } a[href]:after { content: " (" attr(href) ")"; } abbr[title]:after { content: " (" attr(title) ")"; } /* * Don't show links that are fragment identifiers, * or use the `javascript:` pseudo protocol */ a[href^="#"]:after, a[href^="javascript:"]:after { content: ""; } pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } /* * Printing Tables: * http://css-discuss.incutio.com/wiki/Printing_Tables */ thead { display: table-header-group; } tr, img { page-break-inside: avoid; } img { max-width: 100% !important; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3 { page-break-after: avoid; } }
0.550849
0.077797
vkontakte black+green By dedushka http://userstyles.org/styles/22423 */ @namespace url(http://www.w3.org/1999/xhtml); .leftAd, div#myLink, a.ad_box, div#bFooter {display: none !important;} * { } body {background: #000 !important;} a {color: lime !important} #userProfile, #leftColumn {background: #000 !important;} .dataWrap {color: #eee !important;} div[style*="background-color: rgb(247, 247, 247)"] {background:#000!important;} #nav {background: none !important;} #nav li { text-align:right;width:118px !important;overflow:hidden !important; border: none !important;} #nav li a {background: #000 !important;border: none !important;} #nav li a:hover {background: lime !important;color: #000 !important;} .sidePanel {background: #000 !important;color: lime !important;} #sideMenu li.active,#sideMenu li.active a {background: lime !important;color: #000 !important;} .giftRow .info .header {background: #777 !important;color: lime !important;} .giftRow .info .header .privacy{color: #eee !important;} .giftRow .info .header small, .wallpost .info .header b{color: #eee !important;} #content {border: 1px solid #333 !important;} #wrapHI, #wrapH {border: none !important;} #header {border-left: none !important;border-right: none !important;border-bottom: 1px solid lime !important;background: #000 !important;} #header h1 {color: lime;} #summary {color: lime !important;} .voting_result_bg {background: #777 !important;} .voting_result_fg {border: none !important;} #mainPanel {background:#000!important;color:lime!important;} .box_title, .box_title_wrap {background: lime !important;color: #000 !important;border: none !important;} .box_body, .box_controls_wrap {background: #000 !important;color: #fff !important;} .box_controls_wrap, .box_controls {background: #777 !important;} .token {border: 1px solid #000 !important;background: #eee !important;} .audioEditRowPlaying , .audioEditRow {background: none !important;border: 1px dotted #777 !important;} .ainfo *,.duration{color:#eee!important;padding:0!important;width:33px;font-size:11px!important;} .audioSearchRow b, .audioEditRow b, .audioEditRowPlaying b, .audioRow b, .audioRowWall b {color: lime !important;text-transform:uppercase;} #audioBar {background: none !important;} .audioRow {background: none !important;color: #eee !important} ul.commentsPages li.current {background: lime !important;border: none !important;} ul.commentsPages li.current a {color: #000 !important;} .audioResults #results, .notesResults #results, .topicsResults #results, .questionsResults #results, .pagesResults #results, .adsResults #results {background: none !important;} a.addAudioLink {background: #777 !important;color: lime !important;} .sec_pad, .sec_pad_over {background: #777 !important;border: none !important;} .sec_pad_sel, .sec_pad_sel_progr {background: lime !important;border: none !important;color: #000 !important;} .playimg {width: 16px !important; overflow: hidden !important; height: 17px !important;background: url('http://img207.imageshack.us/img207/9301/play.gif') no-repeat !important;} img[src*="images/play.gif"],img[src*="images/play.png"] {padding-left: 17px !important;} img[src*="images/pause.gif"],img[src*="images/pause.png"] {width: 16px !important; overflow: hidden !important; background: url('http://img180.imageshack.us/img180/4400/pause.gif') -17px !important; padding-left: 17px!important;} td[style*="width: 18px; vertical-align: top;"], td[style*="width: 20px; vertical-align: top;"] {margin-right: 10px;display: block !important;width:16px !important;height:17px!important;overflow:hidden!important;} .mailbox table th {color:#fff!important;border: none !important; background: #aaa !important; text-transform: uppercase; font-size: 10px!important;} .actionBar {border: none !important; background: #000 !important;} .mailbox table .date{color:#eee!important;} #activity_time a {font-size:11px !important;} .history_item_text, #activity_text {font-size:12px !important;color: #aaa !important;} .history_item_name{color:lime!important;} .simpleHeader, #msg, #dld, .dld, .msg, .alertmsg, #message {border:none!important;background:lime!important;color:#000!important;} #msg a, #dld a, .dld a, .msg a, .alertmsg a, #message a {color:#000!important;} .simpleBar{border: none !important; background: #777 !important;color: #eee !important;} .topTime{color:lime!important;} .comments_count {color: #eee !important;} #categoriesList .catHeader a {color: #000 !important;} .searchBar, #categoriesPanel, #categoriesList {background: none !important;border: none !important;} .category {font-size: 10px !important} #categoriesList .catHeader, #itemInfo .title, .itemCount, #categoriesList h3 {background: lime !important;color: #000 !important;border: none !important;padding: 3px !important;} #itemInfo .description, .marketItem .description {color: lime !important;} ul#sections a {background: #000 !important;color: lime !important;border: 1px solid #777 !important;} ul#sections li a.active {background: lime !important;color: #000 !important;} #itemInfo .price {color: lime !important;} #profileActions {background: none !important;} #profileActions a {background: none !important;border-bottom: 1px solid #777 !important;} #profileActions a:hover {background: lime !important;color: #000 !important;} #editor {background: #000 !important;} .header, #add_uni_link, #add_school_link, #add_address_link, #add_work_link, #add_military_link, .placeCategory .row div.lines {color: #eee !important;} #educationFilter {background: none !important;} .filter {color: lime !important;} .filter_on div div {color: #000 !important;background: lime !important;border: none !important;} .filter_on, .filter_on div {border: none !important;} div[style*="padding: 100px 50px; background-color: rgb(247, 247, 247); text-align: center;"] {background: #777 !important;color: #eee !important;} .groupslist .grouprow, .groupslist, #group.profile, #group.profile .right{background: none !important;} .profile .fallback {background: #000 !important;border: none !important;} #group.profile .admins li, ul.listing li span, .flexBox {color: #eee !important;} .wikiText .wikiHeader, .wikiSubHeader, .wikiText .wikiSubSubHeader, .profile .info_table caption {color: lime !important;} #videoCommHead, h2, h4 {color: #eee !important;} #videoactions a, #videoactions .action_link, #videoactions .non_action, #videoactions a:hover, #videoactions .action_link:hover {background: #000 !important;border: 1px solid #777 !important;color: lime !important;} div.adesc, div[id*="comment"] table.wallpost td.info div {max-height: 100px;overflow: auto;color: #eee !important;} div#videocaptionleft {max-height: 100px;overflow: auto;} .filterOpen, .filterShut {background: #000 !important;border: none !important;color: lime !important;} .divider2px {border: 1px solid lime !important;background: none !important;} .mailbox table tr.newRow {background: #777 !important;} #dialog td.dialog {background: #777 !important;border: 10px solid #aaa !important;} #shadowLine {display: none !important;} .mailbox table tr.delRow * {background: lime !important;color: #000 !important;} .label {color: #eee !important;} .wrapped {color: #eee !important;} #messageHistory table tr td.new_td {color: #eee !important;} .feedDay, .commentHeader, .bOpen .flexHeader {background: #777 !important;border: 0 !important;color: lime !important;} .bShut .flexHeader {background: #333 !important;border: 0 !important;} .feedDay { text-transform:uppercase;font-size:10px!important; } .flexHeader h2 {color: #aaa !important;} table[style*="background-color: rgb(255, 255, 255);"] {background: #555 !important;} .notes_titles * {background: none !important;} .notes_titles li.written {padding: 5px 0 !important;} .notes_titles small {color: #eee !important;font-size: 10px !important;} #notesBar {background: none !important;} .note_content {color: #eee !important;} .note .note_header {background: #777 !important;} .note .note_header .byline {color: #eee !important;} #newNote .add {border: none !important;} .activePad {background: lime !important;color: #000 !important;} .activePad a {color: #000 !important} #editorPanel, .editorPanel {background: none !important;} .radiobtn_label, .editorPanel * {color: lime !important;} .select {border: none!important;background: #000 !important;} #qfriends {border: none!important;background: #000 !important; color: lime !important;} #quickSearch input {border: none!important;} #qdropdown, .qdiv_on, .qdiv_off {background: #000 !important; color: lime !important; border: none !important;} .qdiv_over, .qdiv_over_top {background: lime!important;color: #000 !important;border: none !important;} ul.buttonRow a {color: #000 !important;background: lime !important;border: none !important;} .niftycorners {display: none !important;} .inputText, .inputPassword, input[type="text"], input[type="password"], input[type~="text"], input[type~="password"] {color: lime !important;background: #000 !important;} textarea {color: lime !important;background: #000 !important;} .selector_container table {border: none !important;} .selector_container td.selector {border: 1px solid #777 !important; background: #000 !important;} .selector_container td.selector_dropdown {border: none !important;background: #aaa url('http://vkontakte.ru/images/darr_dd_out.gif') no-repeat center center !important;} .result_list ul {background: #777 !important;} .result_list ul li {color: #eee !important;} .result_list ul li.active {background: #eee !important;color: #000 !important;} div[id*="wPost"] {color: #eee !important;} .upArrow a, .dArrow a {background: #000 !important;border: 1px solid #777 !important;} .upArrow a:hover, .dArrow a:hover {border: 1px solid lime !important;} #sideBar * {background: #000 !important;border: 0 !important;color: #eee} #mainFeed {background: #000 !important;color: lime !important;} #mainFeed table td {border-top: 1px solid #777 !important;} .thumb {border: none !important;} .summaryBar .summary {color: #eee !important;} .tBar {border-bottom: 1px solid #777 !important;} ul.t0 li.activeLink a, ul.t0 li.activeLink a:hover {padding-top: 4px !important;background: #777 !important;} .tl1, .tl2 {display: none !important;} ul.t0 a {padding-top: 4px !important;} ul.t0 a:hover {background: #777 !important;} #home {background: url('http://img396.imageshack.us/img396/8523/logoz.gif') no-repeat center center !important;} #pageHeader, #pageHeader1 {background: #000 !important;} .headNav a, .headNav div {padding: 11px 20px !important;background: none !important;border-left: 1px solid lime !important;} .headNav a:hover {background: lime !important;color: #000 !important;text-decoration: none!important} .headNav div {height:20px!important;} .fSub {background: none !important;border-bottom: 1px solid #777 !important;} .fSub .fDetails, .fSub h3 {color: #eee !important;} ul.commPhPages a, .pageList a, .pageList .current, .pageList .current, .pageList .current a, .pageList .current a:hover {border-top: none !important;border-bottom: 2px solid lime !important;padding: 5px 7px !important;} .pageList a:hover, ul.commPhPages a:hover {background: lime !important; color: #000 !important;} ul.commPhPages li.current a, ul.commPhPages li.current a:hover, .pageList .current, .pageList .current a, .pageList .current a:hover {color: #fff !important;border: none !important;padding: 5px !important;} #checkboxFeedWrap {background: none !important;} #checkboxFeed {background: #777 !important;border: none !important;} .side_filter, .side_filter_over {border: none !important;} #wrap1, #wrap2 {border: none !important;} .result .info dd.matches span {padding:2px!important;background: #aaa !important; color: #000 !important;border: none !important;} .match {background: #aaa !important; color: #000 !important;border: none !important;} .triggerBtnOff {background: lime !important;color: #000 !important;border:1px solid lime!important;} .triggerBtnOff:hover {background: #000 !important;color: lime !important;border:1px solid lime!important;} #message * {color: #000 !important;} #editphotoalbum .photo .thumb .covercheck , #editphotoalbum, #editphotoalbum .photo{background: none !important;border: none !important;} #photoborder{background: none !important;border-top: 1px solid #777!important;border-bottom: 1px solid #777!important;} #photoLocation {border-left: 1px solid #777!important;} div.comment, .searchResults, #album {background: none !important;color: #aaa !important;} #album img {background: none !important;border: 1px solid #777 !important;} #photodate, #phototags, #photocaption {color: #eee !important;} .separator {background: none !important;border-bottom: 1px solid lime !important;} .comment .header {background: #555 !important;border-top: none !important;border-bottom: 1px solid lime !important;} .ncc {background: #777 !important;border: none !important;} .nc, .nc1, .nc2 {display: none !important;} .nNav li {border: none !important;} #photoCommHead {color: #aaa !important;} .result {background: #000 !important;border: 1px solid #333 !important;} a#rotateleft, a#rotateright {border-bottom:1px solid lime!important;} a#rotateleft {background: url('http://img91.imageshack.us/img91/2196/ccw.gif') no-repeat 10px center !important;} a#rotateleft:hover {background: #333 url('http://img91.imageshack.us/img91/2196/ccw.gif') no-repeat 10px center !important;} #rotateright {background: url('http://img185.imageshack.us/img185/6679/90394007.gif') no-repeat 10px center !important;} #rotateright:hover {background: #333 url('http://img185.imageshack.us/img185/6679/90394007.gif') no-repeat 10px center !important;} #photoactions a:hover, #photoactions .action_link:hover {background: #333 !important;} #photoactions a, #photoactions .action_link{ border-bottom:1px solid #777!important;} #rateLeft, #rateLeftGold {border: none !important;background: lime !important;} #rateRight, #rateRightGold {border: none !important;background: #777 !important;} #percentGold, #percent, #percentGold a, #percent a {color: #000 !important;} a.wallFunc{background: none !important;} a.wallFunc:hover{background: lime !important;color: #000 !important;} .wallpost .info .header small, .wallpost .info .header b {color: #eee !important;} .wallpost .info {border: 0 !important;} .wallpost .info .header {color: #fff !important;background: #555 !important;border: none !important;}
data/usercss/22423.user.css
vkontakte black+green By dedushka http://userstyles.org/styles/22423 */ @namespace url(http://www.w3.org/1999/xhtml); .leftAd, div#myLink, a.ad_box, div#bFooter {display: none !important;} * { } body {background: #000 !important;} a {color: lime !important} #userProfile, #leftColumn {background: #000 !important;} .dataWrap {color: #eee !important;} div[style*="background-color: rgb(247, 247, 247)"] {background:#000!important;} #nav {background: none !important;} #nav li { text-align:right;width:118px !important;overflow:hidden !important; border: none !important;} #nav li a {background: #000 !important;border: none !important;} #nav li a:hover {background: lime !important;color: #000 !important;} .sidePanel {background: #000 !important;color: lime !important;} #sideMenu li.active,#sideMenu li.active a {background: lime !important;color: #000 !important;} .giftRow .info .header {background: #777 !important;color: lime !important;} .giftRow .info .header .privacy{color: #eee !important;} .giftRow .info .header small, .wallpost .info .header b{color: #eee !important;} #content {border: 1px solid #333 !important;} #wrapHI, #wrapH {border: none !important;} #header {border-left: none !important;border-right: none !important;border-bottom: 1px solid lime !important;background: #000 !important;} #header h1 {color: lime;} #summary {color: lime !important;} .voting_result_bg {background: #777 !important;} .voting_result_fg {border: none !important;} #mainPanel {background:#000!important;color:lime!important;} .box_title, .box_title_wrap {background: lime !important;color: #000 !important;border: none !important;} .box_body, .box_controls_wrap {background: #000 !important;color: #fff !important;} .box_controls_wrap, .box_controls {background: #777 !important;} .token {border: 1px solid #000 !important;background: #eee !important;} .audioEditRowPlaying , .audioEditRow {background: none !important;border: 1px dotted #777 !important;} .ainfo *,.duration{color:#eee!important;padding:0!important;width:33px;font-size:11px!important;} .audioSearchRow b, .audioEditRow b, .audioEditRowPlaying b, .audioRow b, .audioRowWall b {color: lime !important;text-transform:uppercase;} #audioBar {background: none !important;} .audioRow {background: none !important;color: #eee !important} ul.commentsPages li.current {background: lime !important;border: none !important;} ul.commentsPages li.current a {color: #000 !important;} .audioResults #results, .notesResults #results, .topicsResults #results, .questionsResults #results, .pagesResults #results, .adsResults #results {background: none !important;} a.addAudioLink {background: #777 !important;color: lime !important;} .sec_pad, .sec_pad_over {background: #777 !important;border: none !important;} .sec_pad_sel, .sec_pad_sel_progr {background: lime !important;border: none !important;color: #000 !important;} .playimg {width: 16px !important; overflow: hidden !important; height: 17px !important;background: url('http://img207.imageshack.us/img207/9301/play.gif') no-repeat !important;} img[src*="images/play.gif"],img[src*="images/play.png"] {padding-left: 17px !important;} img[src*="images/pause.gif"],img[src*="images/pause.png"] {width: 16px !important; overflow: hidden !important; background: url('http://img180.imageshack.us/img180/4400/pause.gif') -17px !important; padding-left: 17px!important;} td[style*="width: 18px; vertical-align: top;"], td[style*="width: 20px; vertical-align: top;"] {margin-right: 10px;display: block !important;width:16px !important;height:17px!important;overflow:hidden!important;} .mailbox table th {color:#fff!important;border: none !important; background: #aaa !important; text-transform: uppercase; font-size: 10px!important;} .actionBar {border: none !important; background: #000 !important;} .mailbox table .date{color:#eee!important;} #activity_time a {font-size:11px !important;} .history_item_text, #activity_text {font-size:12px !important;color: #aaa !important;} .history_item_name{color:lime!important;} .simpleHeader, #msg, #dld, .dld, .msg, .alertmsg, #message {border:none!important;background:lime!important;color:#000!important;} #msg a, #dld a, .dld a, .msg a, .alertmsg a, #message a {color:#000!important;} .simpleBar{border: none !important; background: #777 !important;color: #eee !important;} .topTime{color:lime!important;} .comments_count {color: #eee !important;} #categoriesList .catHeader a {color: #000 !important;} .searchBar, #categoriesPanel, #categoriesList {background: none !important;border: none !important;} .category {font-size: 10px !important} #categoriesList .catHeader, #itemInfo .title, .itemCount, #categoriesList h3 {background: lime !important;color: #000 !important;border: none !important;padding: 3px !important;} #itemInfo .description, .marketItem .description {color: lime !important;} ul#sections a {background: #000 !important;color: lime !important;border: 1px solid #777 !important;} ul#sections li a.active {background: lime !important;color: #000 !important;} #itemInfo .price {color: lime !important;} #profileActions {background: none !important;} #profileActions a {background: none !important;border-bottom: 1px solid #777 !important;} #profileActions a:hover {background: lime !important;color: #000 !important;} #editor {background: #000 !important;} .header, #add_uni_link, #add_school_link, #add_address_link, #add_work_link, #add_military_link, .placeCategory .row div.lines {color: #eee !important;} #educationFilter {background: none !important;} .filter {color: lime !important;} .filter_on div div {color: #000 !important;background: lime !important;border: none !important;} .filter_on, .filter_on div {border: none !important;} div[style*="padding: 100px 50px; background-color: rgb(247, 247, 247); text-align: center;"] {background: #777 !important;color: #eee !important;} .groupslist .grouprow, .groupslist, #group.profile, #group.profile .right{background: none !important;} .profile .fallback {background: #000 !important;border: none !important;} #group.profile .admins li, ul.listing li span, .flexBox {color: #eee !important;} .wikiText .wikiHeader, .wikiSubHeader, .wikiText .wikiSubSubHeader, .profile .info_table caption {color: lime !important;} #videoCommHead, h2, h4 {color: #eee !important;} #videoactions a, #videoactions .action_link, #videoactions .non_action, #videoactions a:hover, #videoactions .action_link:hover {background: #000 !important;border: 1px solid #777 !important;color: lime !important;} div.adesc, div[id*="comment"] table.wallpost td.info div {max-height: 100px;overflow: auto;color: #eee !important;} div#videocaptionleft {max-height: 100px;overflow: auto;} .filterOpen, .filterShut {background: #000 !important;border: none !important;color: lime !important;} .divider2px {border: 1px solid lime !important;background: none !important;} .mailbox table tr.newRow {background: #777 !important;} #dialog td.dialog {background: #777 !important;border: 10px solid #aaa !important;} #shadowLine {display: none !important;} .mailbox table tr.delRow * {background: lime !important;color: #000 !important;} .label {color: #eee !important;} .wrapped {color: #eee !important;} #messageHistory table tr td.new_td {color: #eee !important;} .feedDay, .commentHeader, .bOpen .flexHeader {background: #777 !important;border: 0 !important;color: lime !important;} .bShut .flexHeader {background: #333 !important;border: 0 !important;} .feedDay { text-transform:uppercase;font-size:10px!important; } .flexHeader h2 {color: #aaa !important;} table[style*="background-color: rgb(255, 255, 255);"] {background: #555 !important;} .notes_titles * {background: none !important;} .notes_titles li.written {padding: 5px 0 !important;} .notes_titles small {color: #eee !important;font-size: 10px !important;} #notesBar {background: none !important;} .note_content {color: #eee !important;} .note .note_header {background: #777 !important;} .note .note_header .byline {color: #eee !important;} #newNote .add {border: none !important;} .activePad {background: lime !important;color: #000 !important;} .activePad a {color: #000 !important} #editorPanel, .editorPanel {background: none !important;} .radiobtn_label, .editorPanel * {color: lime !important;} .select {border: none!important;background: #000 !important;} #qfriends {border: none!important;background: #000 !important; color: lime !important;} #quickSearch input {border: none!important;} #qdropdown, .qdiv_on, .qdiv_off {background: #000 !important; color: lime !important; border: none !important;} .qdiv_over, .qdiv_over_top {background: lime!important;color: #000 !important;border: none !important;} ul.buttonRow a {color: #000 !important;background: lime !important;border: none !important;} .niftycorners {display: none !important;} .inputText, .inputPassword, input[type="text"], input[type="password"], input[type~="text"], input[type~="password"] {color: lime !important;background: #000 !important;} textarea {color: lime !important;background: #000 !important;} .selector_container table {border: none !important;} .selector_container td.selector {border: 1px solid #777 !important; background: #000 !important;} .selector_container td.selector_dropdown {border: none !important;background: #aaa url('http://vkontakte.ru/images/darr_dd_out.gif') no-repeat center center !important;} .result_list ul {background: #777 !important;} .result_list ul li {color: #eee !important;} .result_list ul li.active {background: #eee !important;color: #000 !important;} div[id*="wPost"] {color: #eee !important;} .upArrow a, .dArrow a {background: #000 !important;border: 1px solid #777 !important;} .upArrow a:hover, .dArrow a:hover {border: 1px solid lime !important;} #sideBar * {background: #000 !important;border: 0 !important;color: #eee} #mainFeed {background: #000 !important;color: lime !important;} #mainFeed table td {border-top: 1px solid #777 !important;} .thumb {border: none !important;} .summaryBar .summary {color: #eee !important;} .tBar {border-bottom: 1px solid #777 !important;} ul.t0 li.activeLink a, ul.t0 li.activeLink a:hover {padding-top: 4px !important;background: #777 !important;} .tl1, .tl2 {display: none !important;} ul.t0 a {padding-top: 4px !important;} ul.t0 a:hover {background: #777 !important;} #home {background: url('http://img396.imageshack.us/img396/8523/logoz.gif') no-repeat center center !important;} #pageHeader, #pageHeader1 {background: #000 !important;} .headNav a, .headNav div {padding: 11px 20px !important;background: none !important;border-left: 1px solid lime !important;} .headNav a:hover {background: lime !important;color: #000 !important;text-decoration: none!important} .headNav div {height:20px!important;} .fSub {background: none !important;border-bottom: 1px solid #777 !important;} .fSub .fDetails, .fSub h3 {color: #eee !important;} ul.commPhPages a, .pageList a, .pageList .current, .pageList .current, .pageList .current a, .pageList .current a:hover {border-top: none !important;border-bottom: 2px solid lime !important;padding: 5px 7px !important;} .pageList a:hover, ul.commPhPages a:hover {background: lime !important; color: #000 !important;} ul.commPhPages li.current a, ul.commPhPages li.current a:hover, .pageList .current, .pageList .current a, .pageList .current a:hover {color: #fff !important;border: none !important;padding: 5px !important;} #checkboxFeedWrap {background: none !important;} #checkboxFeed {background: #777 !important;border: none !important;} .side_filter, .side_filter_over {border: none !important;} #wrap1, #wrap2 {border: none !important;} .result .info dd.matches span {padding:2px!important;background: #aaa !important; color: #000 !important;border: none !important;} .match {background: #aaa !important; color: #000 !important;border: none !important;} .triggerBtnOff {background: lime !important;color: #000 !important;border:1px solid lime!important;} .triggerBtnOff:hover {background: #000 !important;color: lime !important;border:1px solid lime!important;} #message * {color: #000 !important;} #editphotoalbum .photo .thumb .covercheck , #editphotoalbum, #editphotoalbum .photo{background: none !important;border: none !important;} #photoborder{background: none !important;border-top: 1px solid #777!important;border-bottom: 1px solid #777!important;} #photoLocation {border-left: 1px solid #777!important;} div.comment, .searchResults, #album {background: none !important;color: #aaa !important;} #album img {background: none !important;border: 1px solid #777 !important;} #photodate, #phototags, #photocaption {color: #eee !important;} .separator {background: none !important;border-bottom: 1px solid lime !important;} .comment .header {background: #555 !important;border-top: none !important;border-bottom: 1px solid lime !important;} .ncc {background: #777 !important;border: none !important;} .nc, .nc1, .nc2 {display: none !important;} .nNav li {border: none !important;} #photoCommHead {color: #aaa !important;} .result {background: #000 !important;border: 1px solid #333 !important;} a#rotateleft, a#rotateright {border-bottom:1px solid lime!important;} a#rotateleft {background: url('http://img91.imageshack.us/img91/2196/ccw.gif') no-repeat 10px center !important;} a#rotateleft:hover {background: #333 url('http://img91.imageshack.us/img91/2196/ccw.gif') no-repeat 10px center !important;} #rotateright {background: url('http://img185.imageshack.us/img185/6679/90394007.gif') no-repeat 10px center !important;} #rotateright:hover {background: #333 url('http://img185.imageshack.us/img185/6679/90394007.gif') no-repeat 10px center !important;} #photoactions a:hover, #photoactions .action_link:hover {background: #333 !important;} #photoactions a, #photoactions .action_link{ border-bottom:1px solid #777!important;} #rateLeft, #rateLeftGold {border: none !important;background: lime !important;} #rateRight, #rateRightGold {border: none !important;background: #777 !important;} #percentGold, #percent, #percentGold a, #percent a {color: #000 !important;} a.wallFunc{background: none !important;} a.wallFunc:hover{background: lime !important;color: #000 !important;} .wallpost .info .header small, .wallpost .info .header b {color: #eee !important;} .wallpost .info {border: 0 !important;} .wallpost .info .header {color: #fff !important;background: #555 !important;border: none !important;}
0.205296
0.075483
@font-face { font-family: OpenSans; src: url("/public/font/OpenSans-VariableFont_wdth\,wght.ttf"); } html { font-family: OpenSans; margin: 0; height: 100%; } .homeUrl { font-size: 25px; background: rgb(2,0,36); background: linear-gradient(45deg, rgba(2,0,36,1) 0%, rgba(255,0,0,1) 0%, rgba(0,0,255,1) 100%); padding-top: 15px; padding-bottom: 15px; font-family: "OpenSans"; font-weight: 800; } h1 { text-align: center; margin: 0; } h2 { color: aliceblue; text-align: center; margin: 0; } body { background-color: #1e1e1e; margin: 0; height: 100%; } .main { margin: auto; width: 60%; min-height: 100%; background-color: #333; } .top { padding: 10px; font-size: 25px; display: flex; flex-direction: row-reverse; justify-content: flex-start; background-color: #333; overflow: hidden; } .versionSelect { width: 90px; height: 30px; border: solid aliceblue 3px; border-radius: 5px; margin: 10px; font-size: 15px; } label { color: aliceblue; margin: 5px; } .cards { padding: 10px; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-evenly; } .card { background-color: #1e1e1e; border-radius: 5px; width: 450px; height: 350px; margin: 10px; display: flex; justify-content: space-around; align-items: center; flex-direction: column; padding: 10px; } .coverImage { border: aliceblue solid 3px; border-radius: 3px; width: 300px; max-height: 150px; object-fit: cover; } .nameAndVer { display: flex; flex-direction: row; align-items: baseline; } h3 { margin: 5px; color: aliceblue; } p { margin: 5px; color: silver; overflow: hidden; } .buttons { margin: 10px; } .buttons button { border: solid aliceblue 3px; border-radius: 15px; height: 35px; font-size: 20px; margin-left: 20px; margin-right: 20px; font-weight: 500; padding-left: 10px; padding-right: 10px; } .buttons button:hover { background-color: hotpink; border: solid hotpink 3px; color: aliceblue; } .buttons button:disabled { border: solid #333; background-color: #333; color: #2c2c2c; } .buttons button:disabled:hover { border: solid #333 3px; background-color: #333; } .modAuthor { display: flex; align-items: center; } .modAuthor img { height: 30px; width: 30px; border-radius: 50%; } .tag { background-color: #333; padding: 1px; border: solid #333 1px; border-radius: 3px; } h3 { text-align: center; margin: auto; } a { color: turquoise; } .pinkCute { margin: 0; padding: 0; color: #222; font-size: 10px; margin-right: 25%; }
public/css/index.css
@font-face { font-family: OpenSans; src: url("/public/font/OpenSans-VariableFont_wdth\,wght.ttf"); } html { font-family: OpenSans; margin: 0; height: 100%; } .homeUrl { font-size: 25px; background: rgb(2,0,36); background: linear-gradient(45deg, rgba(2,0,36,1) 0%, rgba(255,0,0,1) 0%, rgba(0,0,255,1) 100%); padding-top: 15px; padding-bottom: 15px; font-family: "OpenSans"; font-weight: 800; } h1 { text-align: center; margin: 0; } h2 { color: aliceblue; text-align: center; margin: 0; } body { background-color: #1e1e1e; margin: 0; height: 100%; } .main { margin: auto; width: 60%; min-height: 100%; background-color: #333; } .top { padding: 10px; font-size: 25px; display: flex; flex-direction: row-reverse; justify-content: flex-start; background-color: #333; overflow: hidden; } .versionSelect { width: 90px; height: 30px; border: solid aliceblue 3px; border-radius: 5px; margin: 10px; font-size: 15px; } label { color: aliceblue; margin: 5px; } .cards { padding: 10px; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-evenly; } .card { background-color: #1e1e1e; border-radius: 5px; width: 450px; height: 350px; margin: 10px; display: flex; justify-content: space-around; align-items: center; flex-direction: column; padding: 10px; } .coverImage { border: aliceblue solid 3px; border-radius: 3px; width: 300px; max-height: 150px; object-fit: cover; } .nameAndVer { display: flex; flex-direction: row; align-items: baseline; } h3 { margin: 5px; color: aliceblue; } p { margin: 5px; color: silver; overflow: hidden; } .buttons { margin: 10px; } .buttons button { border: solid aliceblue 3px; border-radius: 15px; height: 35px; font-size: 20px; margin-left: 20px; margin-right: 20px; font-weight: 500; padding-left: 10px; padding-right: 10px; } .buttons button:hover { background-color: hotpink; border: solid hotpink 3px; color: aliceblue; } .buttons button:disabled { border: solid #333; background-color: #333; color: #2c2c2c; } .buttons button:disabled:hover { border: solid #333 3px; background-color: #333; } .modAuthor { display: flex; align-items: center; } .modAuthor img { height: 30px; width: 30px; border-radius: 50%; } .tag { background-color: #333; padding: 1px; border: solid #333 1px; border-radius: 3px; } h3 { text-align: center; margin: auto; } a { color: turquoise; } .pinkCute { margin: 0; padding: 0; color: #222; font-size: 10px; margin-right: 25%; }
0.560012
0.109325
@import url("https://fonts.googleapis.com/css?family=Nunito:400,600,700,800"); @import url("https://fonts.googleapis.com/css?family=Roboto"); @import url("https://fonts.googleapis.com/css?family=Ubuntu"); @font-face { font-family: Helveticanormal; src: url("../fonts/helvetica/helvetica-normal.ttf"); } body { font-family: Nunito; color: #566a7d !important; } a { color: #3e474f; font-family: Nunito; } .top_nav .navbar-right { width: auto; } .nav_menu .nav { /*width: 70%; */ } .dashboard-funnels ul.bar_tabs { background: transparent; margin: 0px 0 14px; padding: 0px; } .dashboard-funnels ul.bar_tabs li { float: left; margin-left: 0px; } ul.bar_tabs { padding-left: 0px; } ul.bar_tabs > li { margin-left: 0px; } ul.bar_tabs > li a { font-family: Arial; } .nav_menu .search { list-style-type: none; padding: 0px; text-align: center; } .nav_menu .search > li { display: inline-block; } .nav_menu .search > li:first-child { width: 50%; } .nav_menu .search > li input[type="text"] { width: 100%; } .nav-sm .nav.side-menu li a { font-size: 12px; font-family: Roboto; } ul.bar_tabs > li.active { border-right: 6px solid #1abb9c; } .screenshoot-panel { } .screenshoot-panel #p2i_demo { /*width: 100%;*/ max-width: 100%; } /* ------------- DROPDOWN ------------------------- */ .full-dropdown { margin-bottom: 15px; } .full-dropdown button { text-align: left; padding-top: 13px; padding-bottom: 11px; background: transparent; border: 1px solid #e1e1e1; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s; -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; } .full-dropdown button .caret { float: right; margin-top: 8px; } .full-dropdown > ul { } .full-dropdown > ul > li { } .full-dropdown > ul > li .title { font-size: 15px; padding-left: 15px; } .funnel-lists ul { list-style-type: none; padding: 0px; } .funnel-lists ul li { display: inline-block; vertical-align: middle; } .funnel-lists > ul > li { border-top: 1px solid #f1f1f1; padding-top: 15px; padding-bottom: 15px; } .funnel-lists ul li p { margin: 4px 0px 4px; font-size: 12px; } .funnel-lists > ul > li:first-child { border-top: 0px; } .funnel-lists ul li h3 { margin: 0px; font-size: 21px; } .funnel-lists > ul > li { width: 100%; } .funnel-lists ul li img { width: 64px; } .funnel-lists .funnel-list-item { } .funnel-lists .funnel-list-item > li:nth-child(2) { margin-left: 16px; } .funnel-lists .funnel-list-item > li:last-child { float: right; } .funnel-demo-icon { background: #45b39c; height: 52px; width: 52px; text-align: center; line-height: 59px; color: #fff; font-size: 22px; border-radius: 100px; } .funnel-steps-items-main { background: #32393f; } .funnel-steps-items { list-style-type: none; padding: 0px; margin-bottom: 0px; } .funnel-steps-items > li { display: inline-block; } .funnel-steps-items > li:first-child { width: 15%; height: 54px; text-align: center; color: #fff; background-color: #30363c; border-bottom: 1px solid #2b3238; } .funnel-steps-items > li:first-child > i { font-size: 29px !important; padding-top: 10px; color: #4f5e6d; } .funnel-steps-block { padding: 0px; border: 0px; } .funnel-steps-block .steps { list-style-type: none; padding: 0px; } .funnel-steps-block .steps > li { font-size: 0em; } .funnel-steps-block .steps > li > a { display: inline-block; /* padding: 10px 0px; */ /* background: #2a3f54; */ width: 100%; font-size: 18px; /*border: 1px solid #f1f1f1;*/ border-right: 0px; border-left: 0px; } .funnel-steps-block #sortable li .step-details { list-style-type: none; padding: 0px; } .funnel-steps-block #sortable li .step-details > li { float: left; font-size: 18px; padding: 7px; padding-left: 4px; padding-bottom: 16px; font-family: Arial; } .funnel-steps-block #sortable li .step-details > li:first-child { width: 15%; } .funnel-steps-block #sortable li .step-details > li:nth-child(2) { width: 70%; padding-left: 15px; } .funnel-steps-block #sortable li .step-details > li:last-child { width: 15%; } .funnel-steps-caption { font-size: 14px; color: #748596; font-weight: 600; padding-top: 20px; padding-left: 20px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 18px; padding-top: 18px; padding-left: 20px; font-size: 17px; padding-top: 20px; font-family: Arial; } .funnel-steps-block #sortable li .step-details > li:first-child { /*padding: 16px;*/ /*line-height: 50px;*/ /*background: #1ABB9C; color: #fff; width: auto;*/ position: relative; } .funnel-steps-block #sortable li .step-details > li:first-child:after { position: absolute; content: "\f0d7"; display: inline-block; font-family: FontAwesome; font-style: normal; font-weight: normal; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; bottom: -16px; left: 21px; color: #3e474f; font-size: 26px; z-index: 2; } .funnel-steps-block #sortable li .step-details > li:last-child { padding-top: 16px; padding-left: 23px; text-align: center; } .funnel-steps-block #sortable li .step-details > li:last-child > i { display: none; color: #89a3bf; font-size: 26px; } .funnel-steps-block.funnel-steps-block .steps > li > a:hover > .funnel-steps-items > li:last-child > i { display: block !important; color: #89a3bf; } .funnel-steps-block.funnel-steps-block .steps > li > a > .funnel-steps-items > li:last-child > i:hover { display: block !important; color: #ba3f39 !important; } .funnel-steps-block #sortable li span:last-child { } .funnel-steps-block #sortable li .step-footer { display: block; font-size: 12px; color: #aaa; } .title_left { } .title_left ul { list-style-type: none; padding: 0px; margin-bottom: 0px; margin-top: 5px; } .title_left ul > li { display: inline-block; vertical-align: middle; } .title_left ul > li img { background: #fff; width: 48px; border-radius: 100px; padding: 4px; vertical-align: middle; margin-left: -14px; } .title_left ul > li:first-child { width: 82px; text-align: center; } #sortable > li:last-child { padding: 25px 20px; border-top: 1px solid rgba(79, 94, 110, 0.8); } #sortable > li:last-child button { margin-top: 15px; text-transform: uppercase; } /*.funnel-steps-block .steps > li:hover > a:after { content: '\f00d'; float: right; font-family: FontAwesome; color: #89A3BF; line-height: 64px; background: transparent; width: 43px; text-align: center; font-size: 28px; } .funnel-steps-block .steps > li:hover > a:hover:after { content: '\f00d'; float: right; font-family: FontAwesome; color: #BA3F39; line-height: 64px; background: transparent; width: 43px; text-align: center; font-size: 28px; }*/ .funnel-steps-block .steps > .button-area { text-align: center; padding: 15px 0px; } .funnel-step-area .panel_toolbox > li { position: relative; text-align: center; border: 1px solid #e0e0e0; border-right: 0; border-bottom: 0; color: gray; font-weight: bold; background-color: #f7f7f7; cursor: pointer; float: left; font-size: 16px; } .funnel-step-area .panel_toolbox > li > a { /*padding: 11px 20px; color: #aaa; font-size: 16px; border: 1px solid #f1f1f1;*/ color: #6e6e6e; text-decoration: none; font-weight: bold; padding: 20px 26px; display: inline-block; font-family: Arial; } .funnel-step-area .panel_toolbox > li > a.active { color: #0877b4; } .funnel-step-area .x_title h2 { opacity: 0.9; font-weight: 500; margin-bottom: 0px; font-size: 18px; margin-top: 20px; margin-left: 26px; width: 280px; height: 23px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-decoration: none !important; } .funnel-step-area .x_panel { padding: 0px; /*border-bottom: 1px solid #aaa;*/ } .funnel-step-area .x_panel .x_content { padding: 15px; } .funnel-step-area .x_panel .x_title { padding: 0px; background: #f7f7f7; line-height: 0px; } .funnel-page-inner-header .title_left h3 { margin: 0px; line-height: 54px; color: #fff; font-weight: 700; font-size: 22px; } .funnel-page-inner-header .rows { background: #1abb9c; } .funnel-inner-header-menu { list-style-type: none; padding: 0px; margin-bottom: 0px; } .funnel-inner-header-menu > li { display: inline-block; } .funnel-inner-header-menu > li > a { font-size: 15px; padding-left: 15px; padding-right: 15px; line-height: 64px; color: #026751; display: block; text-transform: uppercase; font-weight: 700; font-family: Arial; } .funnel-inner-header-menu > li > a > span { padding-right: 4px; } .funnel-inner-header-menu > li > a:hover { color: #fff; background: #2a3f54; } .funnel-inner-header-menu > li > a.active { color: #fff; background: #2a3f54; } .step-body-left, .step-body-right { padding-right: 0px; } .step-body-right { padding: 0px; } .thumb img { width: auto; height: auto; border-radius: 0px; } .funnel-templates { } .funnel-templates .template-item { margin-bottom: 15px; } .funnel-templates .template-item .wrap { border: 1px solid #f1f1f1; padding: 0px; margin-right: 0px; } .funnel-templates .template-item img { width: 100%; height: auto; /*max-height: 150px; min-height: 150px;*/ } .funnel-templates .template-item h4 { color: #3e474f; font-size: 14px; background: #eee; padding: 12px 0px; margin-bottom: 0px; } .funnel-templates .template-item .overlay { position: absolute; top: 0%; left: 0px; text-align: center; width: 100%; height: 100%; display: none; webkit-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1); box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1); padding-top: 16%; } .funnel-templates .template-item .wrap-image { min-height: 150px; max-height: 150px; overflow: hidden; } .funnel-templates .template-item:hover .overlay { display: block; background: rgba(62, 71, 79, 0.5) !important; border: 2px solid #1abb9c; } .funnel-steps-block { background: #2f3133; color: #fff; } .funnel-steps-block.funnel-steps-block .steps > li > a { color: #fff; font-weight: 700; height: 64px; /*padding-left: 16px; padding-right: 16px;*/ } .funnel-steps-block.funnel-steps-block .steps > li:hover { background: rgba(54, 54, 54, 0.98); } .funnel-steps-block.funnel-steps-block .steps > li > a > span { /*font-family: FontAwesome;*/ } .funnel-steps-block.funnel-steps-block .steps > li .active { background-color: #fff; color: #2a3f54; } .ui-state-default.active { background: #fff; } .ui-state-default.active .step-details > li:first-child { background: #1abb9c; } .ui-state-default.active .step-details > li:first-child > i { color: #fff; } .ui-state-default.active .step-details > li:first-child:after { color: #fff !important; } .ui-state-default.active .step-details > li:nth-child(2) { color: #1abb9c; } .modal-content { border: 2px solid #0775b2; } .modal-header { background: #0673b0; color: #fff; } .modal-header .close { color: rgb(42, 63, 84); opacity: 1; font-size: 21px; text-shadow: none; } #product_list { } #product_list .products { padding: 15px; padding-bottom: 10px; border: 1px solid #f1f1f1; margin-bottom: 15px; } #product_list .products .product-title { font-size: 13px; } #product_list .products .product-title > i { color: #ddd; } #product_list .products .price-column { color: #0877b4; } #product_list .products .product-price { color: #169f85; font-size: 15px; font-weight: 600; } .header-funnel { background: #60baa7; margin-left: -20px; margin-right: -20px; color: #fff; } .dashboard-search { background: #fff; margin: 10px; margin-top: 0px; padding-top: 10px; /* margin-top: 15px; */ border: 1px solid #e9e9e9; -webkit-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1); box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1); } .nav_menu { background: #2a3f54; border-bottom: 1px solid #2a3f54; color: #fff; } .nav_menu h2 { font-size: 26px; color: #fff; font-family: "Ubuntu"; margin-top: 2px; font-weight: 700; } .navbar-brand, .navbar-nav > li > a { line-height: 59px; padding-top: 0px; padding-bottom: 0px; color: #fff !important; font-family: Arial; font-size: 15px; text-transform: uppercase; text-decoration: none; font-weight: bold; } .nav.navbar-nav > li > a { color: #fff !important; } .top_nav .nav .open > a, .top_nav .nav .open > a:focus, .top_nav .nav .open > a:hover, .top_nav .nav > li > a:focus, .top_nav .nav > li > a:hover { background: #35495d; } .top_nav li a i { padding-right: 4px; } .area-body { background: #2a3f54; /*padding-top: 30px;*/ padding-top: 61px; padding-bottom: 30px; } .area-body > .area-container { /*padding-left: 20px; padding-right: 20px; padding-top: 50px; padding-bottom: 50px;*/ } .area-body > .area-container > .right_col { padding-left: 20px !important; padding-right: 20px !important; padding-top: 32px !important; padding-bottom: 50px !important; } .header-funnel .col-md-6 { padding: 0px; } .funnel-step-area { padding-left: 0px; } .funnel-step-area .x_panel { border: 0px; border-right: 1px solid #ddd; border-bottom: 1px solid #ddd; border-left: 1px solid #ddd; } /* ---------------------------------------- PRODUCt ADD ---------------------------------------- */ .product-add { } .product-add .image { } .product-add .image > .main-image { text-align: center; margin-bottom: 15px; cursor: pointer; } .product-add .image > .main-image img { width: 100%; } .product-add .image > .addition-images { text-align: center; } .product-add .image > .addition-images ul { list-style-type: none; padding: 0px; } .product-add .image > .addition-images ul > li { display: inline-block; cursor: pointer; } .product-add .image > .addition-images ul > li img { width: 48px; height: 48px; } .products .panel_toolbox > li > a { color: #fff; padding: 10px 15px; } .products .panel_toolbox > li > a.btn-primary:hover { color: #2e6da4; } .products .panel_toolbox > li > a.btn-success:hover { color: #169f85; } .varients-container { } .varients-container ul { list-style-type: none; padding: 0px; } .varients-container ul > li { display: inline-block; padding-right: 15px; } .varients-container ul > li .trash_varients { cursor: pointer; color: #f00; } /* bootstrap alert */ .alert-normal-danger { background-color: transparent; color: #333; font-weight: 600; } .alert-normal-danger i { color: rgba(231, 76, 60, 0.88); } .alert-normal-danger a { text-decoration: underline; } .dropdown-menu > li > a { font-size: 14px; } /* INTEGRATIONS */ .integration-tabs { } .integration-tabs ul.bar_tabs { background: transparent; padding-left: 0px; } .integration-tabs .social-body, .social-sidebar, ul.bar_tabs.right li { float: left; } .integration-tabs ul.bar_tabs > li { margin-left: 0px; } .integration-tabs ul.bar_tabs > li > a { font-weight: bold; font-size: 14px; } .btn { } .special-button-warning { background: #fbc16f !important; color: #fff !important; border: 1px solid #e4a851; border-bottom: 2px solid #e4a851; box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.22), 0 1px 1px 0 rgba(0, 0, 0, 0.33); font-size: 15px !important; font-weight: 600; color: #63400e !important; padding: 7px 20px !important; text-shadow: none; font-family: Arial; } .special-button-warning:hover { background: #fbc16f !important; color: #fff !important; border: 1px solid #e4a851; border-bottom: 2px solid #e4a851; box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.22), 0 1px 1px 0 rgba(0, 0, 0, 0.33); font-size: 15px; font-weight: 600; color: #63400e !important; padding: 7px 20px; text-shadow: none; } .special-button-danger { background: #ac2925 !important; color: #fff !important; border: 1px solid #ac2925; border-bottom: 2px solid #ac2925; box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.22), 0 1px 1px 0 rgba(0, 0, 0, 0.33); font-size: 15px; font-weight: 600; color: #fff !important; padding: 7px 20px; text-shadow: none; font-family: Arial; } .special-button-danger:hover { background: #d32925 !important; color: #fff !important; border: 1px solid #ac2925; border-bottom: 2px solid #ac2925; box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.22), 0 1px 1px 0 rgba(0, 0, 0, 0.33); font-size: 15px; font-weight: 600; color: #fff !important; padding: 7px 20px; text-shadow: none; } .special-button-success { background: #1abb9c !important; color: #fff !important; border: 1px solid #1abb9c; border-bottom: 2px solid #1abb9c; box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.22), 0 1px 1px 0 rgba(0, 0, 0, 0.33); font-size: 15px; font-weight: 600; color: #fff !important; padding: 7px 20px; margin-top: -2px; text-shadow: none; } .special-button-success:hover { background: #1ad2b3 !important; color: #fff !important; border: 1px solid #1abb9c; border-bottom: 2px solid #1abb9c; box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.22), 0 1px 1px 0 rgba(0, 0, 0, 0.33); font-size: 15px; font-weight: 600; color: #fff !important; padding: 7px 20px; margin-top: -2px; text-shadow: none; } .special-button-primary { background: #0876b3 !important; color: #fff !important; border: 1px solid #0876b3; border-bottom: 2px solid #0876b3; box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.22), 0 1px 1px 0 rgba(0, 0, 0, 0.33); font-size: 15px; font-weight: 600; color: #fff !important; padding: 7px 20px; margin-top: -2px; text-shadow: none; font-family: Arial !important; } .special-button-primary:hover { background: #3389c7 !important; color: #fff !important; border: 1px solid #286090; border-bottom: 2px solid #286090; box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.22), 0 1px 1px 0 rgba(0, 0, 0, 0.33); font-size: 15px; font-weight: 600; color: #fff !important; padding: 7px 20px; margin-top: -2px; text-shadow: none; } .special-button-default { background: #f1f1f1 !important; color: #fff !important; border: 1px solid #f1f1f1; border-bottom: 2px solid #f1f1f1; box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.22), 0 1px 1px 0 rgba(0, 0, 0, 0.33); font-size: 15px; font-weight: 600; color: #374b5f !important; padding: 7px 20px; margin-top: -2px; text-shadow: none; font-family: Arial; } .special-button-default:hover { background: #e2e2e2 !important; color: #fff !important; border: 1px solid #f1f1f1; border-bottom: 2px solid #f1f1f1; box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.22), 0 1px 1px 0 rgba(0, 0, 0, 0.33); font-size: 15px; font-weight: 600; color: #374b5f !important; padding: 7px 20px; margin-top: -2px; text-shadow: none; } .dynamic-service-details { padding: 15px; text-align: center; background: #fafafa; font-size: 14px; border: 1px solid rgba(200, 201, 203, 0.61); } .dynamic-service-details p { margin: 0px; } .dynamic-service-details .integration-fields { text-align: left; } .integration-list table { width: 100%; margin: 0px; border: 2px solid #eee; padding: 15px; margin-bottom: 15px; } .integration-list table td:nth-child(2) { width: 38%; font-size: 15px; font-weight: 500; padding-top: 18px; } .integration-list table td:last-child { width: 14%; padding-top: 11px; } .integration-list table td img { width: 42px; height: 42px; } .integration-list table td.integration-details span:last-child { font-size: 16px; font-weight: bold; text-decoration: none; color: #3e474f; } /* -------------------- */ .new-funnel-steps { display: none; } .new-funnel-steps:first-child { display: block; } .new-funnel-steps .choose-step { text-align: center; padding-top: 15px; padding-bottom: 15px; padding-left: 40px; padding-right: 40px; border: 2px solid transparent; border-radius: 7px; background: #f1f1f1; } .new-funnel-steps .choose-step:hover { border: 2px solid #1abb9c; } .new-funnel-steps .choose-step ul { list-style-type: none; padding: 0px; } .new-funnel-steps .choose-step ul > li { display: inline-block; } .new-funnel-steps .choose-step ul > li img { width: 48px; height: 48px; margin-bottom: 15px; } .new-funnel-steps .choose-step ul > li:last-child { font-size: 21px; color: #3e474f; font-weight: bold; } .new-funnel-steps .choose-step p { text-align: center; margin-bottom: 30px; font-size: 14px; } .new-funnel-steps .choose-step button { } .--extra-padding-50 { padding-left: 20px; padding-right: 20px; } .profile-sidebar { list-style-type: none; padding: 0px; } .profile-sidebar > li { display: inline-block; } .profile-sidebar > li strong { font-size: 18px; } .profile-sidebar > li img { width: 64px; vertical-align: baseline; margin-top: -11px; } .profile-content { padding: 20px; margin: -20px; background-color: #2a3f54; border-top: 2px solid #ddd; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; margin-top: 15px; color: #fff; text-align: center; font-weight: bold; text-transform: uppercase; } .profile-content table { width: 100%; } .profile-content table tr { border-bottom: 1px solid #fff; } .profile-content table tr:last-child { border-bottom: 0px; } .profile-content table td { padding: 15px 0px; } .profile-content table td:last-child { text-align: right; } .tile-stats .icon { color: #1abb9c; } #image_loader { position: absolute; top: 0px; left: 22%; width: 50%; } .varient-image { position: relative; } #product_varients_container table td { position: relative; vertical-align: middle; } #product_varients_container table td > #image_loader { position: absolute; top: 0px; left: -2%; width: 50%; } .site_title i { border-radius: 0px; border: 0px; } /* ----------------------------------- CHAT ------------------------------------- */ .user-chat { position: fixed; bottom: 30px; right: 30px; z-index: 9999; } .user-chat .chat-circle-normal { width: 64px; height: 64px; border-radius: 100px; background-color: #45b39c; text-align: center; /* padding: 20px 50px; */ font-size: 40px; padding-top: 4px; color: #fff; cursor: pointer; } .user-chat .chat-circle-normal:hover, .no-chat-button-shadow { -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .chat-button-shadow { -webkit-box-shadow: 0px -2px 38px -6px rgba(0, 0, 0, 0.75); -moz-box-shadow: 0px -2px 38px -6px rgba(0, 0, 0, 0.75); box-shadow: 0px -2px 38px -6px rgba(0, 0, 0, 0.75); } .user-chat .chat-window { position: absolute; bottom: 70px; right: 15px; min-height: 500px; border-radius: 5px; width: 400px; border-radius: 5px; background-color: #eeeeee; -webkit-box-shadow: 0px 2px 18px -2px rgba(0, 0, 0, 0.75); -moz-box-shadow: 0px 2px 18px -2px rgba(0, 0, 0, 0.75); box-shadow: 0px 2px 18px -2px rgba(0, 0, 0, 0.75); } .user-chat .chat-window .chat-window-header { padding: 20px 30px; background: #45b39c; color: #ffffff; border-radius: 5px 5px 0px 0px; } .user-chat .chat-window .chat-window-header .messenger_controls { list-style-type: none; padding: 0px; float: right; } .user-chat .chat-window .chat-window-header .messenger_controls > li { display: inline-block; } .user-chat .chat-window .chat-window-header h2 { margin: 0px; } .user-chat .chat-window .chat-window-body { background: #ffffff; width: 100%; height: 77%; position: absolute; overflow: auto; } .user-chat .chat-window .chat-window-body .chat-history { } .user-chat .chat-window .chat-window-body .chat-history .blank_chat_info { text-align: center; padding: 40% 20% 0; color: #ccc; font-size: 15px; } .user-chat .chat-window .chat-window-body .chat-history .chat-history-message { padding: 7px 15px 7px; } .user-chat .chat-window .chat-window-body .chat-history .chat-history-message ul { list-style-type: none; padding: 0px; } .user-chat .chat-window .chat-window-body .chat-history .chat-history-message ul > li { display: inline-block; } .user-chat .chat-window .chat-window-body .chat-history .chat-history-message.message-from-admin ul > li:first-child > img { width: 32px; border-radius: 100px; /* padding: 2px; */ margin: 15px; } .user-chat .chat-window .chat-window-body .chat-history .chat-history-message.message-from-user ul > li:last-child > img { width: 32px; border-radius: 100px; /* padding: 2px; */ margin: 15px; } .user-chat .chat-window .chat-window-body .chat-history .chat-history-message.message-from-admin ul > li:last-child { width: 80%; background: #eee; padding: 15px; border-radius: 5px; } .user-chat .chat-window .chat-window-body .chat-history .chat-history-message.message-from-user { } .user-chat .chat-window .chat-window-header .messenger_controls { cursor: pointer; } .user-chat .chat-window .chat-window-body .chat-history .chat-history-message.message-from-user ul > li:first-child { width: 80%; background-color: #a6e2d5; padding: 15px; border-radius: 5px; } .user-chat .chat-window .chat-window-body .chat-history .chat-history-message.message-from-admin ul > li:last-child p { color: #555; margin-bottom: 0px; } .user-chat .chat-window .chat-window-body .chat-history .chat-history-message.message-from-user ul > li:first-child p { color: #ffffff; margin-bottom: 0px; } .user-chat .chat-window .chat-window-body .chat-history .chat-history-message.message-from-user ul > li.successful { background-color: #68afa0; } .user-chat .chat-window .chat-window-footer { position: absolute; bottom: 0px; width: 100%; padding: 4px; background-color: #ffffff; border-radius: 0px 0px 5px 5px; } .user-chat .chat-window .chat-window-footer > textarea { box-shadow: none; max-height: 46px; border: 0px; } .loader { width: 100%; border: 1px solid #ddd; border-radius: 7px; overflow: hidden; } .loader > .btn { padding: 2px 15px 0px; width: 100%; text-align: left; width: 1%; margin: 0px; } .loader > .btn a { margin: 0px; } .loading, .loading > td, .loading > th, .nav li.loading.active > a, .pagination li.loading, .pagination > li.active.loading > a, .pager > li.loading > a { background-image: linear-gradient( 45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) ); background-size: 40px 40px; animation: 2s linear 0s normal none infinite progress-bar-stripes; -webkit-animation: progress-bar-stripes 2s linear infinite; } .btn.btn-default.loading, input[type="text"].loading, select.loading, textarea.loading, .well.loading, .list-group-item.loading, .pagination > li.active.loading > a, .pager > li.loading > a { background-image: linear-gradient( 45deg, rgba(235, 235, 235, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(235, 235, 235, 0.15) 50%, rgba(235, 235, 235, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) ); } .form-control-feedback { margin-top: 8px; } .form-control { height: 38px; border: 2px solid #ccc; border-radius: 3px; /*border-radius: 3px !important; -webkit-box-shadow: inset 0 1px 10px rgba(26,187,156,.25) ; box-shadow: inset 0 1px 10px rgba(26,187,156,.25);*/ } .form-control:focus { border: 2px solid #0673b0; } .upload-area { border: 4px solid #eee; padding: 30px 15px 15px; text-align: center; margin-bottom: 15px; } .upload-area #button_upload_zip { background: transparent; color: #1f6a95; padding-left: 30px; padding-right: 30px; } .products .panel_toolbox > li > a:hover { background: #286090 !important; } .panel_toolbox > li > a:hover { background: #edf5fd !important; } .--blank-data { padding: 15px; margin-bottom: 30px; text-align: center; border-bottom: 1px solid #f1f1f1; } .--blank-data p { margin-bottom: 0px; font-size: 16px; color: #aaa; } .nav_menu .dropdown-menu > li > a { color: #2a3f54; font-weight: 550; font-size: 16px; font-family: Arial; } .tile-stats .count { font-size: 32px; } .nav_menu .dropdown-menu > li > a:hover { color: #0877b4 !important; } .nav_menu .dropdown-menu > li > a:hover i { color: #45b39c !important; } .dashboard-page-title { font-size: 24px; margin-bottom: 15px; color: #0877b4; font-weight: 600; } #manual_product_list { max-height: 450px; overflow: auto; }
public/frontend/css/style.css
@import url("https://fonts.googleapis.com/css?family=Nunito:400,600,700,800"); @import url("https://fonts.googleapis.com/css?family=Roboto"); @import url("https://fonts.googleapis.com/css?family=Ubuntu"); @font-face { font-family: Helveticanormal; src: url("../fonts/helvetica/helvetica-normal.ttf"); } body { font-family: Nunito; color: #566a7d !important; } a { color: #3e474f; font-family: Nunito; } .top_nav .navbar-right { width: auto; } .nav_menu .nav { /*width: 70%; */ } .dashboard-funnels ul.bar_tabs { background: transparent; margin: 0px 0 14px; padding: 0px; } .dashboard-funnels ul.bar_tabs li { float: left; margin-left: 0px; } ul.bar_tabs { padding-left: 0px; } ul.bar_tabs > li { margin-left: 0px; } ul.bar_tabs > li a { font-family: Arial; } .nav_menu .search { list-style-type: none; padding: 0px; text-align: center; } .nav_menu .search > li { display: inline-block; } .nav_menu .search > li:first-child { width: 50%; } .nav_menu .search > li input[type="text"] { width: 100%; } .nav-sm .nav.side-menu li a { font-size: 12px; font-family: Roboto; } ul.bar_tabs > li.active { border-right: 6px solid #1abb9c; } .screenshoot-panel { } .screenshoot-panel #p2i_demo { /*width: 100%;*/ max-width: 100%; } /* ------------- DROPDOWN ------------------------- */ .full-dropdown { margin-bottom: 15px; } .full-dropdown button { text-align: left; padding-top: 13px; padding-bottom: 11px; background: transparent; border: 1px solid #e1e1e1; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s; -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; } .full-dropdown button .caret { float: right; margin-top: 8px; } .full-dropdown > ul { } .full-dropdown > ul > li { } .full-dropdown > ul > li .title { font-size: 15px; padding-left: 15px; } .funnel-lists ul { list-style-type: none; padding: 0px; } .funnel-lists ul li { display: inline-block; vertical-align: middle; } .funnel-lists > ul > li { border-top: 1px solid #f1f1f1; padding-top: 15px; padding-bottom: 15px; } .funnel-lists ul li p { margin: 4px 0px 4px; font-size: 12px; } .funnel-lists > ul > li:first-child { border-top: 0px; } .funnel-lists ul li h3 { margin: 0px; font-size: 21px; } .funnel-lists > ul > li { width: 100%; } .funnel-lists ul li img { width: 64px; } .funnel-lists .funnel-list-item { } .funnel-lists .funnel-list-item > li:nth-child(2) { margin-left: 16px; } .funnel-lists .funnel-list-item > li:last-child { float: right; } .funnel-demo-icon { background: #45b39c; height: 52px; width: 52px; text-align: center; line-height: 59px; color: #fff; font-size: 22px; border-radius: 100px; } .funnel-steps-items-main { background: #32393f; } .funnel-steps-items { list-style-type: none; padding: 0px; margin-bottom: 0px; } .funnel-steps-items > li { display: inline-block; } .funnel-steps-items > li:first-child { width: 15%; height: 54px; text-align: center; color: #fff; background-color: #30363c; border-bottom: 1px solid #2b3238; } .funnel-steps-items > li:first-child > i { font-size: 29px !important; padding-top: 10px; color: #4f5e6d; } .funnel-steps-block { padding: 0px; border: 0px; } .funnel-steps-block .steps { list-style-type: none; padding: 0px; } .funnel-steps-block .steps > li { font-size: 0em; } .funnel-steps-block .steps > li > a { display: inline-block; /* padding: 10px 0px; */ /* background: #2a3f54; */ width: 100%; font-size: 18px; /*border: 1px solid #f1f1f1;*/ border-right: 0px; border-left: 0px; } .funnel-steps-block #sortable li .step-details { list-style-type: none; padding: 0px; } .funnel-steps-block #sortable li .step-details > li { float: left; font-size: 18px; padding: 7px; padding-left: 4px; padding-bottom: 16px; font-family: Arial; } .funnel-steps-block #sortable li .step-details > li:first-child { width: 15%; } .funnel-steps-block #sortable li .step-details > li:nth-child(2) { width: 70%; padding-left: 15px; } .funnel-steps-block #sortable li .step-details > li:last-child { width: 15%; } .funnel-steps-caption { font-size: 14px; color: #748596; font-weight: 600; padding-top: 20px; padding-left: 20px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 18px; padding-top: 18px; padding-left: 20px; font-size: 17px; padding-top: 20px; font-family: Arial; } .funnel-steps-block #sortable li .step-details > li:first-child { /*padding: 16px;*/ /*line-height: 50px;*/ /*background: #1ABB9C; color: #fff; width: auto;*/ position: relative; } .funnel-steps-block #sortable li .step-details > li:first-child:after { position: absolute; content: "\f0d7"; display: inline-block; font-family: FontAwesome; font-style: normal; font-weight: normal; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; bottom: -16px; left: 21px; color: #3e474f; font-size: 26px; z-index: 2; } .funnel-steps-block #sortable li .step-details > li:last-child { padding-top: 16px; padding-left: 23px; text-align: center; } .funnel-steps-block #sortable li .step-details > li:last-child > i { display: none; color: #89a3bf; font-size: 26px; } .funnel-steps-block.funnel-steps-block .steps > li > a:hover > .funnel-steps-items > li:last-child > i { display: block !important; color: #89a3bf; } .funnel-steps-block.funnel-steps-block .steps > li > a > .funnel-steps-items > li:last-child > i:hover { display: block !important; color: #ba3f39 !important; } .funnel-steps-block #sortable li span:last-child { } .funnel-steps-block #sortable li .step-footer { display: block; font-size: 12px; color: #aaa; } .title_left { } .title_left ul { list-style-type: none; padding: 0px; margin-bottom: 0px; margin-top: 5px; } .title_left ul > li { display: inline-block; vertical-align: middle; } .title_left ul > li img { background: #fff; width: 48px; border-radius: 100px; padding: 4px; vertical-align: middle; margin-left: -14px; } .title_left ul > li:first-child { width: 82px; text-align: center; } #sortable > li:last-child { padding: 25px 20px; border-top: 1px solid rgba(79, 94, 110, 0.8); } #sortable > li:last-child button { margin-top: 15px; text-transform: uppercase; } /*.funnel-steps-block .steps > li:hover > a:after { content: '\f00d'; float: right; font-family: FontAwesome; color: #89A3BF; line-height: 64px; background: transparent; width: 43px; text-align: center; font-size: 28px; } .funnel-steps-block .steps > li:hover > a:hover:after { content: '\f00d'; float: right; font-family: FontAwesome; color: #BA3F39; line-height: 64px; background: transparent; width: 43px; text-align: center; font-size: 28px; }*/ .funnel-steps-block .steps > .button-area { text-align: center; padding: 15px 0px; } .funnel-step-area .panel_toolbox > li { position: relative; text-align: center; border: 1px solid #e0e0e0; border-right: 0; border-bottom: 0; color: gray; font-weight: bold; background-color: #f7f7f7; cursor: pointer; float: left; font-size: 16px; } .funnel-step-area .panel_toolbox > li > a { /*padding: 11px 20px; color: #aaa; font-size: 16px; border: 1px solid #f1f1f1;*/ color: #6e6e6e; text-decoration: none; font-weight: bold; padding: 20px 26px; display: inline-block; font-family: Arial; } .funnel-step-area .panel_toolbox > li > a.active { color: #0877b4; } .funnel-step-area .x_title h2 { opacity: 0.9; font-weight: 500; margin-bottom: 0px; font-size: 18px; margin-top: 20px; margin-left: 26px; width: 280px; height: 23px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-decoration: none !important; } .funnel-step-area .x_panel { padding: 0px; /*border-bottom: 1px solid #aaa;*/ } .funnel-step-area .x_panel .x_content { padding: 15px; } .funnel-step-area .x_panel .x_title { padding: 0px; background: #f7f7f7; line-height: 0px; } .funnel-page-inner-header .title_left h3 { margin: 0px; line-height: 54px; color: #fff; font-weight: 700; font-size: 22px; } .funnel-page-inner-header .rows { background: #1abb9c; } .funnel-inner-header-menu { list-style-type: none; padding: 0px; margin-bottom: 0px; } .funnel-inner-header-menu > li { display: inline-block; } .funnel-inner-header-menu > li > a { font-size: 15px; padding-left: 15px; padding-right: 15px; line-height: 64px; color: #026751; display: block; text-transform: uppercase; font-weight: 700; font-family: Arial; } .funnel-inner-header-menu > li > a > span { padding-right: 4px; } .funnel-inner-header-menu > li > a:hover { color: #fff; background: #2a3f54; } .funnel-inner-header-menu > li > a.active { color: #fff; background: #2a3f54; } .step-body-left, .step-body-right { padding-right: 0px; } .step-body-right { padding: 0px; } .thumb img { width: auto; height: auto; border-radius: 0px; } .funnel-templates { } .funnel-templates .template-item { margin-bottom: 15px; } .funnel-templates .template-item .wrap { border: 1px solid #f1f1f1; padding: 0px; margin-right: 0px; } .funnel-templates .template-item img { width: 100%; height: auto; /*max-height: 150px; min-height: 150px;*/ } .funnel-templates .template-item h4 { color: #3e474f; font-size: 14px; background: #eee; padding: 12px 0px; margin-bottom: 0px; } .funnel-templates .template-item .overlay { position: absolute; top: 0%; left: 0px; text-align: center; width: 100%; height: 100%; display: none; webkit-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1); box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1); padding-top: 16%; } .funnel-templates .template-item .wrap-image { min-height: 150px; max-height: 150px; overflow: hidden; } .funnel-templates .template-item:hover .overlay { display: block; background: rgba(62, 71, 79, 0.5) !important; border: 2px solid #1abb9c; } .funnel-steps-block { background: #2f3133; color: #fff; } .funnel-steps-block.funnel-steps-block .steps > li > a { color: #fff; font-weight: 700; height: 64px; /*padding-left: 16px; padding-right: 16px;*/ } .funnel-steps-block.funnel-steps-block .steps > li:hover { background: rgba(54, 54, 54, 0.98); } .funnel-steps-block.funnel-steps-block .steps > li > a > span { /*font-family: FontAwesome;*/ } .funnel-steps-block.funnel-steps-block .steps > li .active { background-color: #fff; color: #2a3f54; } .ui-state-default.active { background: #fff; } .ui-state-default.active .step-details > li:first-child { background: #1abb9c; } .ui-state-default.active .step-details > li:first-child > i { color: #fff; } .ui-state-default.active .step-details > li:first-child:after { color: #fff !important; } .ui-state-default.active .step-details > li:nth-child(2) { color: #1abb9c; } .modal-content { border: 2px solid #0775b2; } .modal-header { background: #0673b0; color: #fff; } .modal-header .close { color: rgb(42, 63, 84); opacity: 1; font-size: 21px; text-shadow: none; } #product_list { } #product_list .products { padding: 15px; padding-bottom: 10px; border: 1px solid #f1f1f1; margin-bottom: 15px; } #product_list .products .product-title { font-size: 13px; } #product_list .products .product-title > i { color: #ddd; } #product_list .products .price-column { color: #0877b4; } #product_list .products .product-price { color: #169f85; font-size: 15px; font-weight: 600; } .header-funnel { background: #60baa7; margin-left: -20px; margin-right: -20px; color: #fff; } .dashboard-search { background: #fff; margin: 10px; margin-top: 0px; padding-top: 10px; /* margin-top: 15px; */ border: 1px solid #e9e9e9; -webkit-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1); box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1); } .nav_menu { background: #2a3f54; border-bottom: 1px solid #2a3f54; color: #fff; } .nav_menu h2 { font-size: 26px; color: #fff; font-family: "Ubuntu"; margin-top: 2px; font-weight: 700; } .navbar-brand, .navbar-nav > li > a { line-height: 59px; padding-top: 0px; padding-bottom: 0px; color: #fff !important; font-family: Arial; font-size: 15px; text-transform: uppercase; text-decoration: none; font-weight: bold; } .nav.navbar-nav > li > a { color: #fff !important; } .top_nav .nav .open > a, .top_nav .nav .open > a:focus, .top_nav .nav .open > a:hover, .top_nav .nav > li > a:focus, .top_nav .nav > li > a:hover { background: #35495d; } .top_nav li a i { padding-right: 4px; } .area-body { background: #2a3f54; /*padding-top: 30px;*/ padding-top: 61px; padding-bottom: 30px; } .area-body > .area-container { /*padding-left: 20px; padding-right: 20px; padding-top: 50px; padding-bottom: 50px;*/ } .area-body > .area-container > .right_col { padding-left: 20px !important; padding-right: 20px !important; padding-top: 32px !important; padding-bottom: 50px !important; } .header-funnel .col-md-6 { padding: 0px; } .funnel-step-area { padding-left: 0px; } .funnel-step-area .x_panel { border: 0px; border-right: 1px solid #ddd; border-bottom: 1px solid #ddd; border-left: 1px solid #ddd; } /* ---------------------------------------- PRODUCt ADD ---------------------------------------- */ .product-add { } .product-add .image { } .product-add .image > .main-image { text-align: center; margin-bottom: 15px; cursor: pointer; } .product-add .image > .main-image img { width: 100%; } .product-add .image > .addition-images { text-align: center; } .product-add .image > .addition-images ul { list-style-type: none; padding: 0px; } .product-add .image > .addition-images ul > li { display: inline-block; cursor: pointer; } .product-add .image > .addition-images ul > li img { width: 48px; height: 48px; } .products .panel_toolbox > li > a { color: #fff; padding: 10px 15px; } .products .panel_toolbox > li > a.btn-primary:hover { color: #2e6da4; } .products .panel_toolbox > li > a.btn-success:hover { color: #169f85; } .varients-container { } .varients-container ul { list-style-type: none; padding: 0px; } .varients-container ul > li { display: inline-block; padding-right: 15px; } .varients-container ul > li .trash_varients { cursor: pointer; color: #f00; } /* bootstrap alert */ .alert-normal-danger { background-color: transparent; color: #333; font-weight: 600; } .alert-normal-danger i { color: rgba(231, 76, 60, 0.88); } .alert-normal-danger a { text-decoration: underline; } .dropdown-menu > li > a { font-size: 14px; } /* INTEGRATIONS */ .integration-tabs { } .integration-tabs ul.bar_tabs { background: transparent; padding-left: 0px; } .integration-tabs .social-body, .social-sidebar, ul.bar_tabs.right li { float: left; } .integration-tabs ul.bar_tabs > li { margin-left: 0px; } .integration-tabs ul.bar_tabs > li > a { font-weight: bold; font-size: 14px; } .btn { } .special-button-warning { background: #fbc16f !important; color: #fff !important; border: 1px solid #e4a851; border-bottom: 2px solid #e4a851; box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.22), 0 1px 1px 0 rgba(0, 0, 0, 0.33); font-size: 15px !important; font-weight: 600; color: #63400e !important; padding: 7px 20px !important; text-shadow: none; font-family: Arial; } .special-button-warning:hover { background: #fbc16f !important; color: #fff !important; border: 1px solid #e4a851; border-bottom: 2px solid #e4a851; box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.22), 0 1px 1px 0 rgba(0, 0, 0, 0.33); font-size: 15px; font-weight: 600; color: #63400e !important; padding: 7px 20px; text-shadow: none; } .special-button-danger { background: #ac2925 !important; color: #fff !important; border: 1px solid #ac2925; border-bottom: 2px solid #ac2925; box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.22), 0 1px 1px 0 rgba(0, 0, 0, 0.33); font-size: 15px; font-weight: 600; color: #fff !important; padding: 7px 20px; text-shadow: none; font-family: Arial; } .special-button-danger:hover { background: #d32925 !important; color: #fff !important; border: 1px solid #ac2925; border-bottom: 2px solid #ac2925; box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.22), 0 1px 1px 0 rgba(0, 0, 0, 0.33); font-size: 15px; font-weight: 600; color: #fff !important; padding: 7px 20px; text-shadow: none; } .special-button-success { background: #1abb9c !important; color: #fff !important; border: 1px solid #1abb9c; border-bottom: 2px solid #1abb9c; box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.22), 0 1px 1px 0 rgba(0, 0, 0, 0.33); font-size: 15px; font-weight: 600; color: #fff !important; padding: 7px 20px; margin-top: -2px; text-shadow: none; } .special-button-success:hover { background: #1ad2b3 !important; color: #fff !important; border: 1px solid #1abb9c; border-bottom: 2px solid #1abb9c; box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.22), 0 1px 1px 0 rgba(0, 0, 0, 0.33); font-size: 15px; font-weight: 600; color: #fff !important; padding: 7px 20px; margin-top: -2px; text-shadow: none; } .special-button-primary { background: #0876b3 !important; color: #fff !important; border: 1px solid #0876b3; border-bottom: 2px solid #0876b3; box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.22), 0 1px 1px 0 rgba(0, 0, 0, 0.33); font-size: 15px; font-weight: 600; color: #fff !important; padding: 7px 20px; margin-top: -2px; text-shadow: none; font-family: Arial !important; } .special-button-primary:hover { background: #3389c7 !important; color: #fff !important; border: 1px solid #286090; border-bottom: 2px solid #286090; box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.22), 0 1px 1px 0 rgba(0, 0, 0, 0.33); font-size: 15px; font-weight: 600; color: #fff !important; padding: 7px 20px; margin-top: -2px; text-shadow: none; } .special-button-default { background: #f1f1f1 !important; color: #fff !important; border: 1px solid #f1f1f1; border-bottom: 2px solid #f1f1f1; box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.22), 0 1px 1px 0 rgba(0, 0, 0, 0.33); font-size: 15px; font-weight: 600; color: #374b5f !important; padding: 7px 20px; margin-top: -2px; text-shadow: none; font-family: Arial; } .special-button-default:hover { background: #e2e2e2 !important; color: #fff !important; border: 1px solid #f1f1f1; border-bottom: 2px solid #f1f1f1; box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.22), 0 1px 1px 0 rgba(0, 0, 0, 0.33); font-size: 15px; font-weight: 600; color: #374b5f !important; padding: 7px 20px; margin-top: -2px; text-shadow: none; } .dynamic-service-details { padding: 15px; text-align: center; background: #fafafa; font-size: 14px; border: 1px solid rgba(200, 201, 203, 0.61); } .dynamic-service-details p { margin: 0px; } .dynamic-service-details .integration-fields { text-align: left; } .integration-list table { width: 100%; margin: 0px; border: 2px solid #eee; padding: 15px; margin-bottom: 15px; } .integration-list table td:nth-child(2) { width: 38%; font-size: 15px; font-weight: 500; padding-top: 18px; } .integration-list table td:last-child { width: 14%; padding-top: 11px; } .integration-list table td img { width: 42px; height: 42px; } .integration-list table td.integration-details span:last-child { font-size: 16px; font-weight: bold; text-decoration: none; color: #3e474f; } /* -------------------- */ .new-funnel-steps { display: none; } .new-funnel-steps:first-child { display: block; } .new-funnel-steps .choose-step { text-align: center; padding-top: 15px; padding-bottom: 15px; padding-left: 40px; padding-right: 40px; border: 2px solid transparent; border-radius: 7px; background: #f1f1f1; } .new-funnel-steps .choose-step:hover { border: 2px solid #1abb9c; } .new-funnel-steps .choose-step ul { list-style-type: none; padding: 0px; } .new-funnel-steps .choose-step ul > li { display: inline-block; } .new-funnel-steps .choose-step ul > li img { width: 48px; height: 48px; margin-bottom: 15px; } .new-funnel-steps .choose-step ul > li:last-child { font-size: 21px; color: #3e474f; font-weight: bold; } .new-funnel-steps .choose-step p { text-align: center; margin-bottom: 30px; font-size: 14px; } .new-funnel-steps .choose-step button { } .--extra-padding-50 { padding-left: 20px; padding-right: 20px; } .profile-sidebar { list-style-type: none; padding: 0px; } .profile-sidebar > li { display: inline-block; } .profile-sidebar > li strong { font-size: 18px; } .profile-sidebar > li img { width: 64px; vertical-align: baseline; margin-top: -11px; } .profile-content { padding: 20px; margin: -20px; background-color: #2a3f54; border-top: 2px solid #ddd; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; margin-top: 15px; color: #fff; text-align: center; font-weight: bold; text-transform: uppercase; } .profile-content table { width: 100%; } .profile-content table tr { border-bottom: 1px solid #fff; } .profile-content table tr:last-child { border-bottom: 0px; } .profile-content table td { padding: 15px 0px; } .profile-content table td:last-child { text-align: right; } .tile-stats .icon { color: #1abb9c; } #image_loader { position: absolute; top: 0px; left: 22%; width: 50%; } .varient-image { position: relative; } #product_varients_container table td { position: relative; vertical-align: middle; } #product_varients_container table td > #image_loader { position: absolute; top: 0px; left: -2%; width: 50%; } .site_title i { border-radius: 0px; border: 0px; } /* ----------------------------------- CHAT ------------------------------------- */ .user-chat { position: fixed; bottom: 30px; right: 30px; z-index: 9999; } .user-chat .chat-circle-normal { width: 64px; height: 64px; border-radius: 100px; background-color: #45b39c; text-align: center; /* padding: 20px 50px; */ font-size: 40px; padding-top: 4px; color: #fff; cursor: pointer; } .user-chat .chat-circle-normal:hover, .no-chat-button-shadow { -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .chat-button-shadow { -webkit-box-shadow: 0px -2px 38px -6px rgba(0, 0, 0, 0.75); -moz-box-shadow: 0px -2px 38px -6px rgba(0, 0, 0, 0.75); box-shadow: 0px -2px 38px -6px rgba(0, 0, 0, 0.75); } .user-chat .chat-window { position: absolute; bottom: 70px; right: 15px; min-height: 500px; border-radius: 5px; width: 400px; border-radius: 5px; background-color: #eeeeee; -webkit-box-shadow: 0px 2px 18px -2px rgba(0, 0, 0, 0.75); -moz-box-shadow: 0px 2px 18px -2px rgba(0, 0, 0, 0.75); box-shadow: 0px 2px 18px -2px rgba(0, 0, 0, 0.75); } .user-chat .chat-window .chat-window-header { padding: 20px 30px; background: #45b39c; color: #ffffff; border-radius: 5px 5px 0px 0px; } .user-chat .chat-window .chat-window-header .messenger_controls { list-style-type: none; padding: 0px; float: right; } .user-chat .chat-window .chat-window-header .messenger_controls > li { display: inline-block; } .user-chat .chat-window .chat-window-header h2 { margin: 0px; } .user-chat .chat-window .chat-window-body { background: #ffffff; width: 100%; height: 77%; position: absolute; overflow: auto; } .user-chat .chat-window .chat-window-body .chat-history { } .user-chat .chat-window .chat-window-body .chat-history .blank_chat_info { text-align: center; padding: 40% 20% 0; color: #ccc; font-size: 15px; } .user-chat .chat-window .chat-window-body .chat-history .chat-history-message { padding: 7px 15px 7px; } .user-chat .chat-window .chat-window-body .chat-history .chat-history-message ul { list-style-type: none; padding: 0px; } .user-chat .chat-window .chat-window-body .chat-history .chat-history-message ul > li { display: inline-block; } .user-chat .chat-window .chat-window-body .chat-history .chat-history-message.message-from-admin ul > li:first-child > img { width: 32px; border-radius: 100px; /* padding: 2px; */ margin: 15px; } .user-chat .chat-window .chat-window-body .chat-history .chat-history-message.message-from-user ul > li:last-child > img { width: 32px; border-radius: 100px; /* padding: 2px; */ margin: 15px; } .user-chat .chat-window .chat-window-body .chat-history .chat-history-message.message-from-admin ul > li:last-child { width: 80%; background: #eee; padding: 15px; border-radius: 5px; } .user-chat .chat-window .chat-window-body .chat-history .chat-history-message.message-from-user { } .user-chat .chat-window .chat-window-header .messenger_controls { cursor: pointer; } .user-chat .chat-window .chat-window-body .chat-history .chat-history-message.message-from-user ul > li:first-child { width: 80%; background-color: #a6e2d5; padding: 15px; border-radius: 5px; } .user-chat .chat-window .chat-window-body .chat-history .chat-history-message.message-from-admin ul > li:last-child p { color: #555; margin-bottom: 0px; } .user-chat .chat-window .chat-window-body .chat-history .chat-history-message.message-from-user ul > li:first-child p { color: #ffffff; margin-bottom: 0px; } .user-chat .chat-window .chat-window-body .chat-history .chat-history-message.message-from-user ul > li.successful { background-color: #68afa0; } .user-chat .chat-window .chat-window-footer { position: absolute; bottom: 0px; width: 100%; padding: 4px; background-color: #ffffff; border-radius: 0px 0px 5px 5px; } .user-chat .chat-window .chat-window-footer > textarea { box-shadow: none; max-height: 46px; border: 0px; } .loader { width: 100%; border: 1px solid #ddd; border-radius: 7px; overflow: hidden; } .loader > .btn { padding: 2px 15px 0px; width: 100%; text-align: left; width: 1%; margin: 0px; } .loader > .btn a { margin: 0px; } .loading, .loading > td, .loading > th, .nav li.loading.active > a, .pagination li.loading, .pagination > li.active.loading > a, .pager > li.loading > a { background-image: linear-gradient( 45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) ); background-size: 40px 40px; animation: 2s linear 0s normal none infinite progress-bar-stripes; -webkit-animation: progress-bar-stripes 2s linear infinite; } .btn.btn-default.loading, input[type="text"].loading, select.loading, textarea.loading, .well.loading, .list-group-item.loading, .pagination > li.active.loading > a, .pager > li.loading > a { background-image: linear-gradient( 45deg, rgba(235, 235, 235, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(235, 235, 235, 0.15) 50%, rgba(235, 235, 235, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) ); } .form-control-feedback { margin-top: 8px; } .form-control { height: 38px; border: 2px solid #ccc; border-radius: 3px; /*border-radius: 3px !important; -webkit-box-shadow: inset 0 1px 10px rgba(26,187,156,.25) ; box-shadow: inset 0 1px 10px rgba(26,187,156,.25);*/ } .form-control:focus { border: 2px solid #0673b0; } .upload-area { border: 4px solid #eee; padding: 30px 15px 15px; text-align: center; margin-bottom: 15px; } .upload-area #button_upload_zip { background: transparent; color: #1f6a95; padding-left: 30px; padding-right: 30px; } .products .panel_toolbox > li > a:hover { background: #286090 !important; } .panel_toolbox > li > a:hover { background: #edf5fd !important; } .--blank-data { padding: 15px; margin-bottom: 30px; text-align: center; border-bottom: 1px solid #f1f1f1; } .--blank-data p { margin-bottom: 0px; font-size: 16px; color: #aaa; } .nav_menu .dropdown-menu > li > a { color: #2a3f54; font-weight: 550; font-size: 16px; font-family: Arial; } .tile-stats .count { font-size: 32px; } .nav_menu .dropdown-menu > li > a:hover { color: #0877b4 !important; } .nav_menu .dropdown-menu > li > a:hover i { color: #45b39c !important; } .dashboard-page-title { font-size: 24px; margin-bottom: 15px; color: #0877b4; font-weight: 600; } #manual_product_list { max-height: 450px; overflow: auto; }
0.322099
0.079317
button { /* 1. */ border: none; overflow: visible; background: transparent; color: inherit; font: inherit; line-height: normal; /* 2. */ -webkit-font-smoothing: inherit; -moz-osx-font-smoothing: inherit; /* 3. */ -webkit-appearance: none; /* 4. */ width: 100%; height: 100%; } /** * Align wrapper to center. */ .btn-wrapper { display: flex; align-items: center; justify-content: center; } /** * 1. Reset elements with the "btn" class. * 2. Add spacing. * 3. Set the gradient color of the "btn" class elements. * 4. Set transition style & timing. */ .btn { /* 1. */ overflow: visible; background: transparent; font: inherit; line-height: normal; cursor: pointer; -moz-user-select: text; display: block; text-decoration: none; text-transform: uppercase; /* 2. */ padding: 5% 0 5.5% 0; margin: 10% 5% -7.5% 5%; /* 3. */ background-color: var(--bg-button); color: var(--title-button); border: var(--border) solid var(--teal); border-image: linear-gradient(-45deg, var(--orange), var(--pink), var(--light-blue), var(--light-green)) 1; /* 4. */ -webkit-transition: all .5s ease-out; -moz-transition: all .5s ease-out; -o-transition: all .5s ease-out; transition: all .5s ease-out; } /** * Remove the "btn" class element's spacing for Firefox. */ .btn:-moz-focus-inner { border: 0; padding: 0; } /** * Hide the elements are overflowing & display them relative to parent elements. */ .btn-stripe, .btn-level { overflow: hidden; position: relative; } /** * Add in the bottom part of the button. * * 1. Reset the element & set the bottom part height. * 2. Position & set the background size of the stripes. */ .btn-stripe:after, .btn-level:after { /* 1. */ content: ''; display: block; height: 10%; width: 100%; -webkit-backface-visibility: hidden; backface-visibility: hidden; position: absolute; /* 2. */ left: 0; bottom: 0; background-size: 7px 7px; } /** * Set the button animation. */ .btn-stripe:hover:after, .btn-level:hover:after { -webkit-animation: stripe-slide 12s infinite linear forwards; animation: stripe-slide 12s infinite linear forwards; } /** * Set the hover effects for 'btn-stripe' class elements. */ .btn-stripe:hover { background-color: var(--gray); color: var(--white); border-color: var(--red); border-image-source: linear-gradient(-45deg, var(--light-green), var(--light-blue), var(--pink), var(--orange)); } /** * Set the color of the bottom part of the button. */ .btn-stripe:after { background-image: repeating-linear-gradient(45deg, var(--gray), var(--gray) 1px, transparent 2px, transparent 5px); border-top: 1px solid var(--gray); } /** * Set the hover effect of the bottom part of the button. */ .btn-stripe:hover:after, .btn-level:hover:after { background-image: repeating-linear-gradient(45deg, var(--white), var(--white) 1px, transparent 2px, transparent 5px); border-top: 1px solid var(--white); } /** * Set the hover effects for 'btn-level' class elements. */ .btn-level:hover { background-color: var(--dark-teal); color: var(--white); border-color: var(--red); border-image-source: linear-gradient(45deg, var(--pink), var(--light-green)); } /** * Set the color of the bottom part of the level button. */ .btn-level:after { background-image: repeating-linear-gradient(45deg, var(--red), var(--red) 1px, transparent 2px, transparent 5px); border-top: 1px solid var(--teal); } /** * Set color & reset padding. */ .level-multiple-choice { color: var(--white); padding: 0; } /** * 1. Set the item background color. * 2. Set spacing & size. * 3. Add floating effect. */ .level-multiple-choice-item { /* 1. */ background-color: var(--multi-choice-red); /* 2. */ padding: 10% 0; width: 49.5%; margin: 0.25%; /* 3. */ box-shadow: 1px -1px 25px -5px #0c0c0c; -webkit-box-shadow: 1px -1px 25px -5px #0c0c0c; -moz-box-shadow: 1px -1px 25px -5px #0c0c0c; } /** * Set the second item background color. */ .level-multiple-choice-item:nth-child(2) { background-color: var(--multi-choice-blue); } /** * Set the third item background color. */ .level-multiple-choice-item:nth-child(3) { background-color: var(--multi-choice-yellow); } /** * Set the forth item background color. */ .level-multiple-choice-item:nth-child(4) { background-color: var(--multi-choice-green); } /** * 1. Set the text color of all multiple choice items. * 2. Align & set size of text. * 3. Set transition type & timing. */ .level-multiple-choice-item, .level-multiple-choice-item:nth-child(2), .level-multiple-choice-item:nth-child(3), .level-multiple-choice-item:nth-child(4) { /* 1. */ color: var(--bg); /* 2. */ text-align: center; font-weight: 900; font-size: 1.25em; /* 3. */ -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } /** * 1. Set color change when hovered. * 2. Set hover shaking animation. * 3. Round corners. */ .level-multiple-choice-item:hover, .level-multiple-choice-item:nth-child(2):hover, .level-multiple-choice-item:nth-child(3):hover, .level-multiple-choice-item:nth-child(4):hover { /* 1. */ color: var(--bg); background-color: var(--title); /* 2. */ animation: bodyshake 5s; animation-iteration-count: infinite; /* 3. */ border-radius: 10px; } /** * 1. Set sidebar border & spacing. * 2. Bring the button to the front. * 3. Set sidebar animation style & time. */ .btn-sidebar { /* 1. */ padding: 5% 0%; margin: 2.5% 15.25%; border: var(--border) solid var(--light-blue); border-radius: 0.5rem; /* 2. */ z-index: 1; /* 3. */ -webkit-transition: all 0.25s ease-out; -moz-transition: all 0.25s ease-out; -o-transition: all 0.25s ease-out; transition: all 0.25s ease-out; } /** * Set sidebar animation effects when hovered. */ .btn-sidebar:hover { transform: scale(1.025); border-color: var(--pink); border-radius: 0.75rem; } /** * Make the yes exit button shake. */ .exit-yes { animation: bodyshake 2s; animation-iteration-count: infinite; } /** * Make the yes exit button shake differently & faster when hovered on. */ .exit-yes:hover { animation: headshake 0.5s; animation-iteration-count: infinite; } /** * Make the no exit button jump up and down. */ .exit-no { animation: bounce-in-place 2.5s; animation-iteration-count: infinite; } /** * Make the no exit button jump up and down a tiny bit faster. */ .exit-no:hover { animation: bounce-in-place 0.75s; animation-iteration-count: infinite; } /* Tablets ========================================================================== */ /** * CSS for tablets. */ @media only screen and (min-width: 600px) { /** * Set font size. */ .level-multiple-choice-item, .level-multiple-choice-item:nth-child(2), .level-multiple-choice-item:nth-child(3), .level-multiple-choice-item:nth-child(4) { font-size: 1.5em; } /** * Add top spacing. */ .btn { margin-top: 1%; } } /* Desktop ========================================================================== */ /** * CSS for desktops. */ @media only screen and (min-width: 1224px) { /** * Set font size. */ .level-multiple-choice-item, .level-multiple-choice-item:nth-child(2), .level-multiple-choice-item:nth-child(3), .level-multiple-choice-item:nth-child(4) { font-size: 1.75em; } /** * Add top spacing. */ .btn { margin-top: -10%; } /** * Set spacing. */ .btn-sidebar { margin: 2.5% 5%; } }
css/buttons.css
button { /* 1. */ border: none; overflow: visible; background: transparent; color: inherit; font: inherit; line-height: normal; /* 2. */ -webkit-font-smoothing: inherit; -moz-osx-font-smoothing: inherit; /* 3. */ -webkit-appearance: none; /* 4. */ width: 100%; height: 100%; } /** * Align wrapper to center. */ .btn-wrapper { display: flex; align-items: center; justify-content: center; } /** * 1. Reset elements with the "btn" class. * 2. Add spacing. * 3. Set the gradient color of the "btn" class elements. * 4. Set transition style & timing. */ .btn { /* 1. */ overflow: visible; background: transparent; font: inherit; line-height: normal; cursor: pointer; -moz-user-select: text; display: block; text-decoration: none; text-transform: uppercase; /* 2. */ padding: 5% 0 5.5% 0; margin: 10% 5% -7.5% 5%; /* 3. */ background-color: var(--bg-button); color: var(--title-button); border: var(--border) solid var(--teal); border-image: linear-gradient(-45deg, var(--orange), var(--pink), var(--light-blue), var(--light-green)) 1; /* 4. */ -webkit-transition: all .5s ease-out; -moz-transition: all .5s ease-out; -o-transition: all .5s ease-out; transition: all .5s ease-out; } /** * Remove the "btn" class element's spacing for Firefox. */ .btn:-moz-focus-inner { border: 0; padding: 0; } /** * Hide the elements are overflowing & display them relative to parent elements. */ .btn-stripe, .btn-level { overflow: hidden; position: relative; } /** * Add in the bottom part of the button. * * 1. Reset the element & set the bottom part height. * 2. Position & set the background size of the stripes. */ .btn-stripe:after, .btn-level:after { /* 1. */ content: ''; display: block; height: 10%; width: 100%; -webkit-backface-visibility: hidden; backface-visibility: hidden; position: absolute; /* 2. */ left: 0; bottom: 0; background-size: 7px 7px; } /** * Set the button animation. */ .btn-stripe:hover:after, .btn-level:hover:after { -webkit-animation: stripe-slide 12s infinite linear forwards; animation: stripe-slide 12s infinite linear forwards; } /** * Set the hover effects for 'btn-stripe' class elements. */ .btn-stripe:hover { background-color: var(--gray); color: var(--white); border-color: var(--red); border-image-source: linear-gradient(-45deg, var(--light-green), var(--light-blue), var(--pink), var(--orange)); } /** * Set the color of the bottom part of the button. */ .btn-stripe:after { background-image: repeating-linear-gradient(45deg, var(--gray), var(--gray) 1px, transparent 2px, transparent 5px); border-top: 1px solid var(--gray); } /** * Set the hover effect of the bottom part of the button. */ .btn-stripe:hover:after, .btn-level:hover:after { background-image: repeating-linear-gradient(45deg, var(--white), var(--white) 1px, transparent 2px, transparent 5px); border-top: 1px solid var(--white); } /** * Set the hover effects for 'btn-level' class elements. */ .btn-level:hover { background-color: var(--dark-teal); color: var(--white); border-color: var(--red); border-image-source: linear-gradient(45deg, var(--pink), var(--light-green)); } /** * Set the color of the bottom part of the level button. */ .btn-level:after { background-image: repeating-linear-gradient(45deg, var(--red), var(--red) 1px, transparent 2px, transparent 5px); border-top: 1px solid var(--teal); } /** * Set color & reset padding. */ .level-multiple-choice { color: var(--white); padding: 0; } /** * 1. Set the item background color. * 2. Set spacing & size. * 3. Add floating effect. */ .level-multiple-choice-item { /* 1. */ background-color: var(--multi-choice-red); /* 2. */ padding: 10% 0; width: 49.5%; margin: 0.25%; /* 3. */ box-shadow: 1px -1px 25px -5px #0c0c0c; -webkit-box-shadow: 1px -1px 25px -5px #0c0c0c; -moz-box-shadow: 1px -1px 25px -5px #0c0c0c; } /** * Set the second item background color. */ .level-multiple-choice-item:nth-child(2) { background-color: var(--multi-choice-blue); } /** * Set the third item background color. */ .level-multiple-choice-item:nth-child(3) { background-color: var(--multi-choice-yellow); } /** * Set the forth item background color. */ .level-multiple-choice-item:nth-child(4) { background-color: var(--multi-choice-green); } /** * 1. Set the text color of all multiple choice items. * 2. Align & set size of text. * 3. Set transition type & timing. */ .level-multiple-choice-item, .level-multiple-choice-item:nth-child(2), .level-multiple-choice-item:nth-child(3), .level-multiple-choice-item:nth-child(4) { /* 1. */ color: var(--bg); /* 2. */ text-align: center; font-weight: 900; font-size: 1.25em; /* 3. */ -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } /** * 1. Set color change when hovered. * 2. Set hover shaking animation. * 3. Round corners. */ .level-multiple-choice-item:hover, .level-multiple-choice-item:nth-child(2):hover, .level-multiple-choice-item:nth-child(3):hover, .level-multiple-choice-item:nth-child(4):hover { /* 1. */ color: var(--bg); background-color: var(--title); /* 2. */ animation: bodyshake 5s; animation-iteration-count: infinite; /* 3. */ border-radius: 10px; } /** * 1. Set sidebar border & spacing. * 2. Bring the button to the front. * 3. Set sidebar animation style & time. */ .btn-sidebar { /* 1. */ padding: 5% 0%; margin: 2.5% 15.25%; border: var(--border) solid var(--light-blue); border-radius: 0.5rem; /* 2. */ z-index: 1; /* 3. */ -webkit-transition: all 0.25s ease-out; -moz-transition: all 0.25s ease-out; -o-transition: all 0.25s ease-out; transition: all 0.25s ease-out; } /** * Set sidebar animation effects when hovered. */ .btn-sidebar:hover { transform: scale(1.025); border-color: var(--pink); border-radius: 0.75rem; } /** * Make the yes exit button shake. */ .exit-yes { animation: bodyshake 2s; animation-iteration-count: infinite; } /** * Make the yes exit button shake differently & faster when hovered on. */ .exit-yes:hover { animation: headshake 0.5s; animation-iteration-count: infinite; } /** * Make the no exit button jump up and down. */ .exit-no { animation: bounce-in-place 2.5s; animation-iteration-count: infinite; } /** * Make the no exit button jump up and down a tiny bit faster. */ .exit-no:hover { animation: bounce-in-place 0.75s; animation-iteration-count: infinite; } /* Tablets ========================================================================== */ /** * CSS for tablets. */ @media only screen and (min-width: 600px) { /** * Set font size. */ .level-multiple-choice-item, .level-multiple-choice-item:nth-child(2), .level-multiple-choice-item:nth-child(3), .level-multiple-choice-item:nth-child(4) { font-size: 1.5em; } /** * Add top spacing. */ .btn { margin-top: 1%; } } /* Desktop ========================================================================== */ /** * CSS for desktops. */ @media only screen and (min-width: 1224px) { /** * Set font size. */ .level-multiple-choice-item, .level-multiple-choice-item:nth-child(2), .level-multiple-choice-item:nth-child(3), .level-multiple-choice-item:nth-child(4) { font-size: 1.75em; } /** * Add top spacing. */ .btn { margin-top: -10%; } /** * Set spacing. */ .btn-sidebar { margin: 2.5% 5%; } }
0.473657
0.071786
*{ padding: 0; margin: 0; box-sizing: border-box; } html, body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.3em; background: linear-gradient(to top, #0145ac, #82c7a5); } a { color: #333; text-decoration: none; } h1, h2, h3 { padding-bottom: 20px; } p { margin: 10px 0; color: white; } .pad1-y { padding: 10px 0; } .pad2-y { padding: 20px 0; } .pad3-y { padding: 30px 0; } #navbar { background: #333; color: #0145ac; overflow: auto; padding: 0px; } #navbar a { color: white; } #navbar h1 { float: left; padding-top: 15px; } #navbar ul { list-style: none; margin: 0; float: right; } #navbar ul li { float: left; } #navbar ul li a { display: block; padding: 20px; text-align: center; } #navbar ul li a:hover, #navbar ul li a.pagina-atual { background: #444; color: #f7c08a; } .container { margin: auto; max-width: 1100px; overflow: auto; padding-bottom: 0 20px; } #showcase { margin-bottom: 5rem; } #showcase .showcase-principal { color: #0145ac; text-align: center; padding: top 170px; } #showcase .showcase-principal h1 { font-size: 60px; line-height: 1.2em; } .texto-principal { color: #0145ac; } .texto-detalhe { font-size: 20px; } #showcase .showcase-principal p { padding-bottom: 20px; line-height-step: 1.7em; } .btn { display: inline-block; font-size: 18px; color: white; background-color: #333; padding: 20px 30px; border: none; cursor: pointer; } .btn:hover { background-color: #f7c08a; color: #333; } .btn-claro { background: #f4f4f4; color: #333; } #info-principal { height: 400px; } #info-principal .info-imagem { float: left; width: 100px; background: url('../images/R-Rachaki.gif') no-repeat; min-height: 100%; min-width: 50%; } #info-principal .info-conteudo { float: right; width: 50%; height: 100%; text-align: center; padding: 50px 30px; overflow: hidden; color: #fff; } .bg-escuro { background: #333; color: #fff; } .box { float: left; width: 33.333%; padding: 50px; text-align: center; } .box i { margin-bottom: 10px; } .bg-claro { background: #82c7a5; color: #333; } .bg-principal { background: #0145ac; color: #333; } #rodape { background: #444; color: #fff; text-align: center; padding: 30px; } .clr { clear: both; } #info-sobre { background-image: url(#); } #info-sobre .info-esquerda { float: left; width: 50%; min-height: 70%; } #info-sobre .info-direita { float: right; width: 50%; min-height: 70%; } #info-sobre .info-direita img { display: block; margin: auto; width: 60%; border-radius: 50%; } .cabecalho-reviews { font-size: 30px; } #reviews { height: 600px; padding-top: 40px; } #reviews h2 { color: #fff; text-align: center; padding-top: 100px; } #reviews .review { padding: 20px; margin-bottom: 40px; border-radius: 5px; opacity: 0.9; } #reviews .review img { width: 70px; float: left; margin-right: 20px; border-radius: 50%; } .cabecalho-form { text-align: center; padding: 20px; font-size: 40px; } #form-contato { margin: 20px 20px; } #form-contato p { text-align: center; } #form-contato label { display: block; margin-bottom: 5px; } #form-contato input, #form-contato textarea { width: 100%; padding: 10px; border: 1px #ddd solid; } #form-contato textarea { height: 100px; } #form-contato input focus, #form-contato textarea :focus { outline: none; color: #f7c08a; } .classe1 { background: blue; } :root{ --primary-color: #1FB6FF; --secundary-color: #FFF1CC; --shadow-color: #CCC; --text-color: #FFF; } header{ background-color: #0342c9; height: 108px; text-align: center; line-height: 70px; box-shadow: 0 1px 2px var(--shadow-color); } .header-title{ color: black; font-size: 2rem; } main{ flex-grow: 1; display: flex; flex-direction: column; align-items: flex-start; width: 90%; margin: 5vh auto; padding: 50px; box-shadow: 2px 2px 10px var(--shadow-color); gap: 20px; } footer{ width:100; text-align: center; font-weight: 200; font-style: italic; padding: 20px; } @media (max-width:480px){ header{ position:fixed; width:100%; } .header-title{ font-size: 1.5rem; } main{ padding: 0; margin: 20px 0 0 0; width:100%; box-shadow: none; } }
public/css/main.css
*{ padding: 0; margin: 0; box-sizing: border-box; } html, body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.3em; background: linear-gradient(to top, #0145ac, #82c7a5); } a { color: #333; text-decoration: none; } h1, h2, h3 { padding-bottom: 20px; } p { margin: 10px 0; color: white; } .pad1-y { padding: 10px 0; } .pad2-y { padding: 20px 0; } .pad3-y { padding: 30px 0; } #navbar { background: #333; color: #0145ac; overflow: auto; padding: 0px; } #navbar a { color: white; } #navbar h1 { float: left; padding-top: 15px; } #navbar ul { list-style: none; margin: 0; float: right; } #navbar ul li { float: left; } #navbar ul li a { display: block; padding: 20px; text-align: center; } #navbar ul li a:hover, #navbar ul li a.pagina-atual { background: #444; color: #f7c08a; } .container { margin: auto; max-width: 1100px; overflow: auto; padding-bottom: 0 20px; } #showcase { margin-bottom: 5rem; } #showcase .showcase-principal { color: #0145ac; text-align: center; padding: top 170px; } #showcase .showcase-principal h1 { font-size: 60px; line-height: 1.2em; } .texto-principal { color: #0145ac; } .texto-detalhe { font-size: 20px; } #showcase .showcase-principal p { padding-bottom: 20px; line-height-step: 1.7em; } .btn { display: inline-block; font-size: 18px; color: white; background-color: #333; padding: 20px 30px; border: none; cursor: pointer; } .btn:hover { background-color: #f7c08a; color: #333; } .btn-claro { background: #f4f4f4; color: #333; } #info-principal { height: 400px; } #info-principal .info-imagem { float: left; width: 100px; background: url('../images/R-Rachaki.gif') no-repeat; min-height: 100%; min-width: 50%; } #info-principal .info-conteudo { float: right; width: 50%; height: 100%; text-align: center; padding: 50px 30px; overflow: hidden; color: #fff; } .bg-escuro { background: #333; color: #fff; } .box { float: left; width: 33.333%; padding: 50px; text-align: center; } .box i { margin-bottom: 10px; } .bg-claro { background: #82c7a5; color: #333; } .bg-principal { background: #0145ac; color: #333; } #rodape { background: #444; color: #fff; text-align: center; padding: 30px; } .clr { clear: both; } #info-sobre { background-image: url(#); } #info-sobre .info-esquerda { float: left; width: 50%; min-height: 70%; } #info-sobre .info-direita { float: right; width: 50%; min-height: 70%; } #info-sobre .info-direita img { display: block; margin: auto; width: 60%; border-radius: 50%; } .cabecalho-reviews { font-size: 30px; } #reviews { height: 600px; padding-top: 40px; } #reviews h2 { color: #fff; text-align: center; padding-top: 100px; } #reviews .review { padding: 20px; margin-bottom: 40px; border-radius: 5px; opacity: 0.9; } #reviews .review img { width: 70px; float: left; margin-right: 20px; border-radius: 50%; } .cabecalho-form { text-align: center; padding: 20px; font-size: 40px; } #form-contato { margin: 20px 20px; } #form-contato p { text-align: center; } #form-contato label { display: block; margin-bottom: 5px; } #form-contato input, #form-contato textarea { width: 100%; padding: 10px; border: 1px #ddd solid; } #form-contato textarea { height: 100px; } #form-contato input focus, #form-contato textarea :focus { outline: none; color: #f7c08a; } .classe1 { background: blue; } :root{ --primary-color: #1FB6FF; --secundary-color: #FFF1CC; --shadow-color: #CCC; --text-color: #FFF; } header{ background-color: #0342c9; height: 108px; text-align: center; line-height: 70px; box-shadow: 0 1px 2px var(--shadow-color); } .header-title{ color: black; font-size: 2rem; } main{ flex-grow: 1; display: flex; flex-direction: column; align-items: flex-start; width: 90%; margin: 5vh auto; padding: 50px; box-shadow: 2px 2px 10px var(--shadow-color); gap: 20px; } footer{ width:100; text-align: center; font-weight: 200; font-style: italic; padding: 20px; } @media (max-width:480px){ header{ position:fixed; width:100%; } .header-title{ font-size: 1.5rem; } main{ padding: 0; margin: 20px 0 0 0; width:100%; box-shadow: none; } }
0.241847
0.092237
@import url('https://fonts.googleapis.com/css2?family=Paytone+One&display=swap'); body{ width: 960px; background-image: url('../img/service-img/background2.jpg'); background-position: center; background-repeat: no-repeat; background-size: cover; /* opacity: 0.8; */ } h1{ color:#00C1D4 ; font-family:Paytone One; font-size: 50px; margin: 20px; text-align: center; text-transform: uppercase; padding: 20px; font-weight: bold; margin-left: 200px; width: 100%; margin-top: 200px; background-image: url("../img/service-img/background-img1.html"); } .cont{ display: grid; grid-template-rows: auto auto auto ; gap: 70px; height: 100%; width: 100%; display:inline-block; white-space: nowrap; } p{ font-size: 20px; font-family: 'Caveat', cursive; font-family: 'Courgette', cursive; font-family: 'Indie Flower', cursive; font-family: '<NAME>', cursive; line-height: 20px; margin: 5px; padding: 5px; text-indent: 20px; /* box-sizing: 300px 700px; */ color: #787A91; margin-bottom: 40px; } h3{ font-family: 'Caveat', cursive; font-family: 'Indie Flower', cursive; font-family: '<NAME>', cursive; font-size: 40px; margin: 10px; padding: 5px; color: #00C1D4; text-transform: capitalize; margin-top: 40px; text-indent: 40px; } img{ display: inline-block; width: 400px; height: 300px; border-radius: 20px; margin-left: 40px; } .par{ display: grid; grid-template-columns: auto auto auto; gap: 100px; /* margin-left: 200px; */ padding-bottom: 50px; width: 100%; } .oneimg{ position: absolute; right: 150px; top: 300px; width: 100px; height: 100px; -webkit-animation: mover 2s infinite alternate; animation: mover 2s infinite alternate; } @-webkit-keyframes mover { 0% { transform: translateY(0); } 100% { transform: translateY(-20px); } } @keyframes mover { 0% { transform: translateY(0); } 100% { transform: translateY(-20px); } } .imgtow{ position: absolute; right: 150px; top:800px; width: 100px; height: 100px; -webkit-animation: mover 2s infinite alternate; animation: mover 2s infinite alternate; } @-webkit-keyframes mover { 0% { transform: translateY(0); } 100% { transform: translateY(-20px); } } @keyframes mover { 0% { transform: translateY(0); } 100% { transform: translateY(-20px); } } .imgthree { position: absolute; right: 150px; top:1240px; width: 100px; height: 100px; -webkit-animation: mover 2s infinite alternate; animation: mover 2s infinite alternate; } @-webkit-keyframes mover { 0% { transform: translateY(0); } 100% { transform: translateY(-20px); } } @keyframes mover { 0% { transform: translateY(0); } 100% { transform: translateY(-20px); } }
css/service.css
@import url('https://fonts.googleapis.com/css2?family=Paytone+One&display=swap'); body{ width: 960px; background-image: url('../img/service-img/background2.jpg'); background-position: center; background-repeat: no-repeat; background-size: cover; /* opacity: 0.8; */ } h1{ color:#00C1D4 ; font-family:Paytone One; font-size: 50px; margin: 20px; text-align: center; text-transform: uppercase; padding: 20px; font-weight: bold; margin-left: 200px; width: 100%; margin-top: 200px; background-image: url("../img/service-img/background-img1.html"); } .cont{ display: grid; grid-template-rows: auto auto auto ; gap: 70px; height: 100%; width: 100%; display:inline-block; white-space: nowrap; } p{ font-size: 20px; font-family: 'Caveat', cursive; font-family: 'Courgette', cursive; font-family: 'Indie Flower', cursive; font-family: '<NAME>', cursive; line-height: 20px; margin: 5px; padding: 5px; text-indent: 20px; /* box-sizing: 300px 700px; */ color: #787A91; margin-bottom: 40px; } h3{ font-family: 'Caveat', cursive; font-family: 'Indie Flower', cursive; font-family: '<NAME>', cursive; font-size: 40px; margin: 10px; padding: 5px; color: #00C1D4; text-transform: capitalize; margin-top: 40px; text-indent: 40px; } img{ display: inline-block; width: 400px; height: 300px; border-radius: 20px; margin-left: 40px; } .par{ display: grid; grid-template-columns: auto auto auto; gap: 100px; /* margin-left: 200px; */ padding-bottom: 50px; width: 100%; } .oneimg{ position: absolute; right: 150px; top: 300px; width: 100px; height: 100px; -webkit-animation: mover 2s infinite alternate; animation: mover 2s infinite alternate; } @-webkit-keyframes mover { 0% { transform: translateY(0); } 100% { transform: translateY(-20px); } } @keyframes mover { 0% { transform: translateY(0); } 100% { transform: translateY(-20px); } } .imgtow{ position: absolute; right: 150px; top:800px; width: 100px; height: 100px; -webkit-animation: mover 2s infinite alternate; animation: mover 2s infinite alternate; } @-webkit-keyframes mover { 0% { transform: translateY(0); } 100% { transform: translateY(-20px); } } @keyframes mover { 0% { transform: translateY(0); } 100% { transform: translateY(-20px); } } .imgthree { position: absolute; right: 150px; top:1240px; width: 100px; height: 100px; -webkit-animation: mover 2s infinite alternate; animation: mover 2s infinite alternate; } @-webkit-keyframes mover { 0% { transform: translateY(0); } 100% { transform: translateY(-20px); } } @keyframes mover { 0% { transform: translateY(0); } 100% { transform: translateY(-20px); } }
0.329284
0.090293
@keyframes slideInFromRight { 0% { transform: translateX(15%); opacity: 0.5; } 100% { transform: translateX(0); opacity: 1; } } @keyframes slideInFromBottom { 0% { transform: translateY(-25%); opacity: 0.5; } 100% { transform: translateY(-50%); opacity: 1; } } .row-header{ margin:0px auto; padding:0px auto; } .row-content { margin:0px auto; padding: 50px 0px 50px 0px; border-bottom: 1px ridge; min-height:400px; } .footer{ background-color: #242b2c; margin: 0px 0px 0px 0px; padding: 20px 0px 20px 0px; } .jumbotron { /* padding:2vh 2vh 2vh 2vh; */ border-radius: 0 !important; margin:0px auto; background-repeat: no-repeat; background-size: cover; background-position: center; color:floralwhite; } .jumbotext{ /* padding: 1rem 1rem 1rem 1rem; */ animation-duration: 1s; /* the duration of the animation */ animation-timing-function: linear; /* how the animation will behave */ animation-delay: 0s; /* how long to delay the animation from starting */ animation-iteration-count: 1; /* how many times the animation will play */ animation-name: slideInFromBottom; /* the name of the animation we defined above */ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin-left: auto; margin-right: auto; width: 50%; position: absolute; top: 50%; transform: translate(0%, -50%); font-size: 6vh; } .try{ animation-duration: 1s; animation-timing-function: linear; animation-delay: 0s; animation-iteration-count: 1; animation-name: slideInFromBottom; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin-left: auto; margin-right: auto; width: 50%; transform: translateY(-50%); color: white; } .try-static{ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin-left: auto; margin-right: auto; width: 50%; transform: translateY(-50%); color: white; } .jumbotext-static{ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin-left: auto; margin-right: auto; width: 50%; position: absolute; top: 50%; transform: translate(0%, -50%); font-size: 6vh; } address{ font-size:80%; margin:0px; color:#fffefe; } .navbar-dark { background-color: #242b2c; } .request_form{ border-top: 2vh solid rgb(2, 194, 194); padding: 2rem 2rem 2rem 2rem; background-color: white; color: rgb(110, 110, 110); font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size: 2vh; } .loginForm{ padding: 4rem 2rem 2rem 2rem; border-radius: 1vh; box-shadow: 2vh; background-color: #ffffff; } .loading{ display: flex; justify-content: center; align-items: center; color: white; height: 90vh; } /*.request_form_animation{ animation-duration: 1s;*/ /* the duration of the animation */ /* animation-timing-function: linear; /* how the animation will behave */ /* animation-delay: 0s; /* how long to delay the animation from starting */ /* animation-iteration-count: 1; /* how many times the animation will play */ /* animation-name: slideInFromRight; /* the name of the animation we defined above */ /*}*/ /*.request-form-appear { opacity: 0.5; transform: translateX(15%); } */ .request-form{ animation-duration: 1s; animation-timing-function: linear; animation-iteration-count: 1; animation-name: slideInFromRight; opacity: 1; transform: translateX(0); transition: opacity 1s, transform 1s; } .request-form-static{ opacity: 1; } .requestFormButton{ background-color: rgb(2, 194, 194); border: none; transition-duration: 0.4s; } .requestFormButton:hover{ background-color: rgb(13, 221, 221);; } .requests-wrapper{ padding: 20px auto; } .pending_request{ padding: 8vh 12vh 20vh 12vh; } .table{ margin-top: 3vh; font-size: 2vh; } .table thead{ background-color: #242b2c; color: white; } @media screen and (max-width: 1030px) { .jumbotext, .jumbotext-static{ padding: inherit; margin-left: auto; margin-right: auto; width: auto; /* position: absolute; */ /* top: 50%; transform: translate(0, -50%); */ font-size: 3vh; } } @media screen and (max-width: 700px) { .jumbotext{ padding-bottom: 4vh; margin-left: auto; margin-right: auto; width: auto; position: inherit; top: auto; transform: inherit; font-size: 3vh; color: rgb(7, 7, 7); font-weight: bold; } } /* .nav-link{ border: none; color:rgb(3, 233, 233); background-color: inherit; } .nav-link:hover{ outline: none; color: rgb(0, 217, 255); text-decoration: none; background-color: inherit; } .nav-link:active{ outline: none; border: none; color:rgb(3, 233, 233); background-color: inherit; } .nav-link:focus{ outline: none; border: none; color:rgb(3, 233, 233); background-color: inherit; } .nav-link:visited{ outline: none; border: none; color:rgb(3, 233, 233); background-color: inherit; } */
src/App.css
@keyframes slideInFromRight { 0% { transform: translateX(15%); opacity: 0.5; } 100% { transform: translateX(0); opacity: 1; } } @keyframes slideInFromBottom { 0% { transform: translateY(-25%); opacity: 0.5; } 100% { transform: translateY(-50%); opacity: 1; } } .row-header{ margin:0px auto; padding:0px auto; } .row-content { margin:0px auto; padding: 50px 0px 50px 0px; border-bottom: 1px ridge; min-height:400px; } .footer{ background-color: #242b2c; margin: 0px 0px 0px 0px; padding: 20px 0px 20px 0px; } .jumbotron { /* padding:2vh 2vh 2vh 2vh; */ border-radius: 0 !important; margin:0px auto; background-repeat: no-repeat; background-size: cover; background-position: center; color:floralwhite; } .jumbotext{ /* padding: 1rem 1rem 1rem 1rem; */ animation-duration: 1s; /* the duration of the animation */ animation-timing-function: linear; /* how the animation will behave */ animation-delay: 0s; /* how long to delay the animation from starting */ animation-iteration-count: 1; /* how many times the animation will play */ animation-name: slideInFromBottom; /* the name of the animation we defined above */ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin-left: auto; margin-right: auto; width: 50%; position: absolute; top: 50%; transform: translate(0%, -50%); font-size: 6vh; } .try{ animation-duration: 1s; animation-timing-function: linear; animation-delay: 0s; animation-iteration-count: 1; animation-name: slideInFromBottom; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin-left: auto; margin-right: auto; width: 50%; transform: translateY(-50%); color: white; } .try-static{ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin-left: auto; margin-right: auto; width: 50%; transform: translateY(-50%); color: white; } .jumbotext-static{ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin-left: auto; margin-right: auto; width: 50%; position: absolute; top: 50%; transform: translate(0%, -50%); font-size: 6vh; } address{ font-size:80%; margin:0px; color:#fffefe; } .navbar-dark { background-color: #242b2c; } .request_form{ border-top: 2vh solid rgb(2, 194, 194); padding: 2rem 2rem 2rem 2rem; background-color: white; color: rgb(110, 110, 110); font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size: 2vh; } .loginForm{ padding: 4rem 2rem 2rem 2rem; border-radius: 1vh; box-shadow: 2vh; background-color: #ffffff; } .loading{ display: flex; justify-content: center; align-items: center; color: white; height: 90vh; } /*.request_form_animation{ animation-duration: 1s;*/ /* the duration of the animation */ /* animation-timing-function: linear; /* how the animation will behave */ /* animation-delay: 0s; /* how long to delay the animation from starting */ /* animation-iteration-count: 1; /* how many times the animation will play */ /* animation-name: slideInFromRight; /* the name of the animation we defined above */ /*}*/ /*.request-form-appear { opacity: 0.5; transform: translateX(15%); } */ .request-form{ animation-duration: 1s; animation-timing-function: linear; animation-iteration-count: 1; animation-name: slideInFromRight; opacity: 1; transform: translateX(0); transition: opacity 1s, transform 1s; } .request-form-static{ opacity: 1; } .requestFormButton{ background-color: rgb(2, 194, 194); border: none; transition-duration: 0.4s; } .requestFormButton:hover{ background-color: rgb(13, 221, 221);; } .requests-wrapper{ padding: 20px auto; } .pending_request{ padding: 8vh 12vh 20vh 12vh; } .table{ margin-top: 3vh; font-size: 2vh; } .table thead{ background-color: #242b2c; color: white; } @media screen and (max-width: 1030px) { .jumbotext, .jumbotext-static{ padding: inherit; margin-left: auto; margin-right: auto; width: auto; /* position: absolute; */ /* top: 50%; transform: translate(0, -50%); */ font-size: 3vh; } } @media screen and (max-width: 700px) { .jumbotext{ padding-bottom: 4vh; margin-left: auto; margin-right: auto; width: auto; position: inherit; top: auto; transform: inherit; font-size: 3vh; color: rgb(7, 7, 7); font-weight: bold; } } /* .nav-link{ border: none; color:rgb(3, 233, 233); background-color: inherit; } .nav-link:hover{ outline: none; color: rgb(0, 217, 255); text-decoration: none; background-color: inherit; } .nav-link:active{ outline: none; border: none; color:rgb(3, 233, 233); background-color: inherit; } .nav-link:focus{ outline: none; border: none; color:rgb(3, 233, 233); background-color: inherit; } .nav-link:visited{ outline: none; border: none; color:rgb(3, 233, 233); background-color: inherit; } */
0.552781
0.134776
body.dark { --clr-bg: #0d101a; --clr-bg-transparent: #0d101aaa; /* colors */ /* darkest grey - used for body text */ --clr-text-primary: #fafffd; /* second dark grey - used for less important text, for example text on the side */ --clr-text-secondary: #b9b9b9; /* used as background for white text */ --clr-text-background: #b9b9b9; /* alternate color for body text */ --clr-text-primary-alternate: #e5d0e3; /* alternate color for heading text */ --clr-text-secondary-alternate: #aee5d8; --clr-background-alternate: #87a8a0; --clr-text-code: #ed8953; background-color: var(--clr-bg); } body { --clr-bg: #fff; --clr-bg-transparent: #ffffffaa; /* colors */ /* darkest grey - used for body text */ --clr-text-primary: #242424; /* second dark grey - used for less important text, for example text on the side */ --clr-text-secondary: #8c8c8c; /* used as background for white text */ --clr-text-background: #b9b9b9; /* alternate color for body text */ --clr-text-primary-alternate: #769e89; /* alternate color for heading text */ --clr-text-secondary-alternate: #124c2d; --clr-background-alternate: #d4a0a7; --clr-text-code: #f26419; background-color: var(--clr-bg); } /* default light theme */ :root { /* fonts and text*/ --spacing: 0.1rem; /* for body */ --ff-primary: 'Roboto', sans-serif; /* for headings and titles */ --ff-secondary: 'Open Sans', sans-serif; /* for code */ --ff-code: 'Inconsolata', monospace; /* for logo */ --ff-logo: 'Caveat', sans-serif; /* colors */ --clr-white: #fff; /* others */ --transition: all 0.3s linear; --max-width: 1170px; --radius: 0.25rem; } /* =============== Global Styles =============== */ *, ::after, ::before { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: var(--ff-primary); background: var(--clr-bg); color: var(--clr-text-primary); line-height: 1.5; font-size: 1.0625rem; } h1, h2, h3, h4 { letter-spacing: var(--spacing); text-transform: capitalize; line-height: 1.25; margin-bottom: 0.75rem; font-family: var(--ff-secondary); } h1 { font-size: 3rem; } h2 { font-size: 2rem; } h3 { font-size: 1.25rem; } h4 { font-size: 0.875rem; } p { margin-bottom: 1.25rem; font-size: 1.0625rem; } @media screen and (min-width: 800px) { h1 { font-size: 4rem; } h2 { font-size: 2.5rem; } h3 { font-size: 1.75rem; } h4 { font-size: 1rem; } body { font-size: 1rem; } h1, h2, h3, h4 { line-height: 1; } } ul { list-style-type: none; } a { text-decoration: none; } iframe { width: 70vw; height: calc(60vw / 16 * 9); margin-bottom: 1rem; } @media screen and (min-width: 800px) { iframe { width: 60vw; } } /* =============== Social icons =============== */ .social-icon { color: var(--clr-background-alternate); font-size: 1.75rem; transition: var(--transition); margin-left: 0.5rem; } .social-icon:hover { color: var(--clr-text-code); transform: translateY(-5px); } /* =============== Navbar =============== */ .navbar { height: 5rem; display: flex; align-items: center; background: var(--clr-bg-transparent); } .nav-center { width: 90vw; max-width: var(--max-width); margin: 0 auto; } .nav-header { display: flex; justify-content: space-between; align-items: center; } .nav-logo { display: flex; align-items: center; font-size: 2rem; text-transform: uppercase; letter-spacing: var(--spacing); color: var(--clr-text-primary-alternate); font-weight: bold; font-family: var(--ff-logo); } .toggle-btn { font-size: 2rem; background: transparent; border-color: transparent; color: var(--clr-text-primary-alternate); cursor: pointer; transition: var(--transition); } .switch-theme { transform: scale(0.6); } .nav-links { display: none; } .nav-icons { display: none; } @media screen and (min-width: 800px) { .toggle-btn { display: none; } .nav-center { display: grid; grid-template-columns: auto 3fr 1fr; column-gap: 2rem; align-items: center; } .nav-links { display: flex; align-items: center; } .page-link { margin-right: 1rem; color: var(--clr-text-primary); letter-spacing: var(--spacing); font-size: 1.25rem; transition: var(--transition); font-family: var(--ff-primary); cursor: pointer; padding: 0.25rem 0.5rem; border-radius: var(--radius); } .page-link:hover { background: var(--clr-text-primary-alternate); color: var(--clr-bg); } .nav-icons { display: flex; justify-content: flex-start; } } /* =============== Sidebar =============== */ .sidebar { position: fixed; top: 0; left: 0; width: 100vw; height: 100%; background: var(--clr-text-primary-alternate); transition: var(--transition); display: grid; align-items: flex-start; padding-left: 2rem; z-index: 999; transform: translateX(-100vw); visibility: hidden; } .showSidebar { transform: translateX(0); visibility: visible; } .sidebar-container { margin-top: 10vh; } .sidebar-links li { margin-bottom: 1.5rem; } .sidebar-links .page-link { color: var(--clr-bg); letter-spacing: var(--spacing); font-size: 1.5rem; display: block; font-weight: 700; } .sidebar .categories { flex-direction: column; margin: 1rem 0; } .sidebar .category { color: var(--clr-bg); letter-spacing: var(--spacing); font-weight: 700; text-transform: capitalize; padding-left: 1rem; display: block; cursor: pointer; } .close-btn { position: absolute; top: 1rem; right: 1rem; background: transparent; border: transparent; font-size: 3rem; cursor: pointer; color: var(--clr-bg); } @media screen and (min-width: 700px) { .sidebar-links .page-link { font-size: 2rem; } .sidebar .category { font-size: 1.5rem; } } /* =============== Posts Component =============== */ .posts { width: 85vw; max-width: var(--max-width); margin: 0 auto; margin-bottom: 4rem; } .posts-title { display: flex; justify-content: center; font-weight: 700; text-transform: uppercase; color: var(--clr-background-alternate); letter-spacing: var(--spacing); margin-bottom: 2.5rem; } @media screen and (min-width: 992px) { .posts { width: 92vw; } } @media screen and (min-width: 1170px) { .posts-center { display: grid; grid-template-columns: 1fr 250px; column-gap: 1rem; } } /* =============== Footer =============== */ .content { min-height: calc(100vh - 7rem); } .footer { height: 7rem; text-align: center; background: var(--clr-text-primary-alternate); display: grid; place-items: center; } .footer-icons { display: flex; justify-content: center; line-height: 1; margin-bottom: 0.5rem; } .footer-icons a { font-size: 1.5rem; margin: 0 0.5rem; transition: var(--transition); } .footer-icons li { transition: var(--transition); } .footer-icons li:hover { transform: translateY(-10%); } .footer h4 { margin-bottom: 0; color: var(--clr-bg); text-transform: uppercase; letter-spacing: var(--spacing); }
src/css/main.css
body.dark { --clr-bg: #0d101a; --clr-bg-transparent: #0d101aaa; /* colors */ /* darkest grey - used for body text */ --clr-text-primary: #fafffd; /* second dark grey - used for less important text, for example text on the side */ --clr-text-secondary: #b9b9b9; /* used as background for white text */ --clr-text-background: #b9b9b9; /* alternate color for body text */ --clr-text-primary-alternate: #e5d0e3; /* alternate color for heading text */ --clr-text-secondary-alternate: #aee5d8; --clr-background-alternate: #87a8a0; --clr-text-code: #ed8953; background-color: var(--clr-bg); } body { --clr-bg: #fff; --clr-bg-transparent: #ffffffaa; /* colors */ /* darkest grey - used for body text */ --clr-text-primary: #242424; /* second dark grey - used for less important text, for example text on the side */ --clr-text-secondary: #8c8c8c; /* used as background for white text */ --clr-text-background: #b9b9b9; /* alternate color for body text */ --clr-text-primary-alternate: #769e89; /* alternate color for heading text */ --clr-text-secondary-alternate: #124c2d; --clr-background-alternate: #d4a0a7; --clr-text-code: #f26419; background-color: var(--clr-bg); } /* default light theme */ :root { /* fonts and text*/ --spacing: 0.1rem; /* for body */ --ff-primary: 'Roboto', sans-serif; /* for headings and titles */ --ff-secondary: 'Open Sans', sans-serif; /* for code */ --ff-code: 'Inconsolata', monospace; /* for logo */ --ff-logo: 'Caveat', sans-serif; /* colors */ --clr-white: #fff; /* others */ --transition: all 0.3s linear; --max-width: 1170px; --radius: 0.25rem; } /* =============== Global Styles =============== */ *, ::after, ::before { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: var(--ff-primary); background: var(--clr-bg); color: var(--clr-text-primary); line-height: 1.5; font-size: 1.0625rem; } h1, h2, h3, h4 { letter-spacing: var(--spacing); text-transform: capitalize; line-height: 1.25; margin-bottom: 0.75rem; font-family: var(--ff-secondary); } h1 { font-size: 3rem; } h2 { font-size: 2rem; } h3 { font-size: 1.25rem; } h4 { font-size: 0.875rem; } p { margin-bottom: 1.25rem; font-size: 1.0625rem; } @media screen and (min-width: 800px) { h1 { font-size: 4rem; } h2 { font-size: 2.5rem; } h3 { font-size: 1.75rem; } h4 { font-size: 1rem; } body { font-size: 1rem; } h1, h2, h3, h4 { line-height: 1; } } ul { list-style-type: none; } a { text-decoration: none; } iframe { width: 70vw; height: calc(60vw / 16 * 9); margin-bottom: 1rem; } @media screen and (min-width: 800px) { iframe { width: 60vw; } } /* =============== Social icons =============== */ .social-icon { color: var(--clr-background-alternate); font-size: 1.75rem; transition: var(--transition); margin-left: 0.5rem; } .social-icon:hover { color: var(--clr-text-code); transform: translateY(-5px); } /* =============== Navbar =============== */ .navbar { height: 5rem; display: flex; align-items: center; background: var(--clr-bg-transparent); } .nav-center { width: 90vw; max-width: var(--max-width); margin: 0 auto; } .nav-header { display: flex; justify-content: space-between; align-items: center; } .nav-logo { display: flex; align-items: center; font-size: 2rem; text-transform: uppercase; letter-spacing: var(--spacing); color: var(--clr-text-primary-alternate); font-weight: bold; font-family: var(--ff-logo); } .toggle-btn { font-size: 2rem; background: transparent; border-color: transparent; color: var(--clr-text-primary-alternate); cursor: pointer; transition: var(--transition); } .switch-theme { transform: scale(0.6); } .nav-links { display: none; } .nav-icons { display: none; } @media screen and (min-width: 800px) { .toggle-btn { display: none; } .nav-center { display: grid; grid-template-columns: auto 3fr 1fr; column-gap: 2rem; align-items: center; } .nav-links { display: flex; align-items: center; } .page-link { margin-right: 1rem; color: var(--clr-text-primary); letter-spacing: var(--spacing); font-size: 1.25rem; transition: var(--transition); font-family: var(--ff-primary); cursor: pointer; padding: 0.25rem 0.5rem; border-radius: var(--radius); } .page-link:hover { background: var(--clr-text-primary-alternate); color: var(--clr-bg); } .nav-icons { display: flex; justify-content: flex-start; } } /* =============== Sidebar =============== */ .sidebar { position: fixed; top: 0; left: 0; width: 100vw; height: 100%; background: var(--clr-text-primary-alternate); transition: var(--transition); display: grid; align-items: flex-start; padding-left: 2rem; z-index: 999; transform: translateX(-100vw); visibility: hidden; } .showSidebar { transform: translateX(0); visibility: visible; } .sidebar-container { margin-top: 10vh; } .sidebar-links li { margin-bottom: 1.5rem; } .sidebar-links .page-link { color: var(--clr-bg); letter-spacing: var(--spacing); font-size: 1.5rem; display: block; font-weight: 700; } .sidebar .categories { flex-direction: column; margin: 1rem 0; } .sidebar .category { color: var(--clr-bg); letter-spacing: var(--spacing); font-weight: 700; text-transform: capitalize; padding-left: 1rem; display: block; cursor: pointer; } .close-btn { position: absolute; top: 1rem; right: 1rem; background: transparent; border: transparent; font-size: 3rem; cursor: pointer; color: var(--clr-bg); } @media screen and (min-width: 700px) { .sidebar-links .page-link { font-size: 2rem; } .sidebar .category { font-size: 1.5rem; } } /* =============== Posts Component =============== */ .posts { width: 85vw; max-width: var(--max-width); margin: 0 auto; margin-bottom: 4rem; } .posts-title { display: flex; justify-content: center; font-weight: 700; text-transform: uppercase; color: var(--clr-background-alternate); letter-spacing: var(--spacing); margin-bottom: 2.5rem; } @media screen and (min-width: 992px) { .posts { width: 92vw; } } @media screen and (min-width: 1170px) { .posts-center { display: grid; grid-template-columns: 1fr 250px; column-gap: 1rem; } } /* =============== Footer =============== */ .content { min-height: calc(100vh - 7rem); } .footer { height: 7rem; text-align: center; background: var(--clr-text-primary-alternate); display: grid; place-items: center; } .footer-icons { display: flex; justify-content: center; line-height: 1; margin-bottom: 0.5rem; } .footer-icons a { font-size: 1.5rem; margin: 0 0.5rem; transition: var(--transition); } .footer-icons li { transition: var(--transition); } .footer-icons li:hover { transform: translateY(-10%); } .footer h4 { margin-bottom: 0; color: var(--clr-bg); text-transform: uppercase; letter-spacing: var(--spacing); }
0.544317
0.064418
html{ min-height: 100%; position: relative; } body { font-family: 'Raleway'; font-size: 16px; /*font-weight: 800;*/ /*color: #FFFFFF;*/ line-height: 40px; text-align: center; background: #A4A4A4; /*background-color: #C0C0C0 #6B6B6B*/; margin-bottom: 20px; } strong { font-weight: 700; } a, a:hover, a:focus { text-decoration: none; } h2{ font-size: 22px; font-weight: 700; } h3, h4 { color: #F7FE2E; margin-top: 0px; font-size: 30px; font-weight: 0; line-height: 30px; text-shadow: 0.1em 0.1em 0.2em black; } h5{ font-size: 18px; } p{ font-size: 18px; font-weight: 700; } /* Contenidos y Formulario*/ /*.jumbotron { background: #088A08; padding: 13px 28px; color: #fff; letter-spacing: 2px; } .myform-top-left-logo{ float: left; width: 15%; padding-top: 5px; text-align: left; } .myform-top-right-title{ float: right; width: 85%; padding-top: 5px; font-size: 80px; text-align: right; }*/ .my-content { padding: 10px 0 100px 0; } .my-content .mydescription { margin: 10px 0 15px 0; } .my-content .mydescription p { opacity: 0.8; } .myform-cont { margin-top: 15px; } .myform-top { overflow: hidden; padding: 0 25px 15px 25px; background: rgba(243, 243, 165, 1); -moz-border-radius: 10px 10px 0 0; -webkit-border-radius: 10px 10px 0 0; border-radius: 10px 10px 0 0; box-shadow: 0 0 10px rgba(0,0,0,0.6); } .myform-top-left { float: left; width: 75%; padding-top: 25px; text-align: left; } .myform-top-left p { opacity: 0.8; } .myform-top-right { float: right; width: 25%; padding-top: 25px; font-size: 80px; text-align: right; opacity: 0.7; } .myform-bottom { padding: 25px 25px 30px 25px; background: rgba(243, 243, 165, 1); -moz-border-radius: 0 0 10px 10px; -webkit-border-radius: 0 0 10px 10px; border-radius: 0 0 10px 10px; box-shadow: 0 0 10px rgba(0,0,0,0.6); } .myform-bottom .mybtn { width: 30%; } input[type="text"], input[type="password"], textarea, textarea.form-control { height: 50px; vertical-align: middle; background: #fff; border: 3px solid #fff; font-size: 16px; font-weight: 300; line-height: 50px; } input[type="text"]:focus, input[type="password"]:focus, textarea:focus, textarea.form-control:focus { background: #fff; border: 2px solid #4C9900; } button.mybtn { height: 35px; background: #4C9900; border: 0; font-size: 18px; font-weight: 400; line-height: 30px; color: #fff; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; } button.mybtn:hover, button.mybtn:active { opacity: 0.7; color: #FFFF00; } button.mybtn:focus { opacity: 0.6; color: #fff; background: #3333FF; } .footer{ color: #fff; background: #424242; position: absolute; bottom: 0px; width: 100%; text-align: center; height: 50px; } /* Media queries */ @media (min-width: 992px) and (max-width: 1199px) {} @media (min-width: 768px) and (max-width: 991px) {} @media (max-width: 767px) { .mytop-content { padding: 60px 0 110px 0; }3 } @media (max-width: 415px) { h2, h3 { font-size: 32px; } }
public/plugins/bootstrap/css/custom.css
html{ min-height: 100%; position: relative; } body { font-family: 'Raleway'; font-size: 16px; /*font-weight: 800;*/ /*color: #FFFFFF;*/ line-height: 40px; text-align: center; background: #A4A4A4; /*background-color: #C0C0C0 #6B6B6B*/; margin-bottom: 20px; } strong { font-weight: 700; } a, a:hover, a:focus { text-decoration: none; } h2{ font-size: 22px; font-weight: 700; } h3, h4 { color: #F7FE2E; margin-top: 0px; font-size: 30px; font-weight: 0; line-height: 30px; text-shadow: 0.1em 0.1em 0.2em black; } h5{ font-size: 18px; } p{ font-size: 18px; font-weight: 700; } /* Contenidos y Formulario*/ /*.jumbotron { background: #088A08; padding: 13px 28px; color: #fff; letter-spacing: 2px; } .myform-top-left-logo{ float: left; width: 15%; padding-top: 5px; text-align: left; } .myform-top-right-title{ float: right; width: 85%; padding-top: 5px; font-size: 80px; text-align: right; }*/ .my-content { padding: 10px 0 100px 0; } .my-content .mydescription { margin: 10px 0 15px 0; } .my-content .mydescription p { opacity: 0.8; } .myform-cont { margin-top: 15px; } .myform-top { overflow: hidden; padding: 0 25px 15px 25px; background: rgba(243, 243, 165, 1); -moz-border-radius: 10px 10px 0 0; -webkit-border-radius: 10px 10px 0 0; border-radius: 10px 10px 0 0; box-shadow: 0 0 10px rgba(0,0,0,0.6); } .myform-top-left { float: left; width: 75%; padding-top: 25px; text-align: left; } .myform-top-left p { opacity: 0.8; } .myform-top-right { float: right; width: 25%; padding-top: 25px; font-size: 80px; text-align: right; opacity: 0.7; } .myform-bottom { padding: 25px 25px 30px 25px; background: rgba(243, 243, 165, 1); -moz-border-radius: 0 0 10px 10px; -webkit-border-radius: 0 0 10px 10px; border-radius: 0 0 10px 10px; box-shadow: 0 0 10px rgba(0,0,0,0.6); } .myform-bottom .mybtn { width: 30%; } input[type="text"], input[type="password"], textarea, textarea.form-control { height: 50px; vertical-align: middle; background: #fff; border: 3px solid #fff; font-size: 16px; font-weight: 300; line-height: 50px; } input[type="text"]:focus, input[type="password"]:focus, textarea:focus, textarea.form-control:focus { background: #fff; border: 2px solid #4C9900; } button.mybtn { height: 35px; background: #4C9900; border: 0; font-size: 18px; font-weight: 400; line-height: 30px; color: #fff; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; } button.mybtn:hover, button.mybtn:active { opacity: 0.7; color: #FFFF00; } button.mybtn:focus { opacity: 0.6; color: #fff; background: #3333FF; } .footer{ color: #fff; background: #424242; position: absolute; bottom: 0px; width: 100%; text-align: center; height: 50px; } /* Media queries */ @media (min-width: 992px) and (max-width: 1199px) {} @media (min-width: 768px) and (max-width: 991px) {} @media (max-width: 767px) { .mytop-content { padding: 60px 0 110px 0; }3 } @media (max-width: 415px) { h2, h3 { font-size: 32px; } }
0.356559
0.088387
@import url('https://fonts.googleapis.com/css?family=Open+Sans|Roboto'); * { box-sizing: border-box; font-family: 'Open Sans', sans-serif; } html, body { padding: 0; margin: 0; width: 100%; } body { background-color: #dbe5db; background-image: url("./images/double-bubble-outline.png"); } /* Header */ header { grid-area: header; min-width: 390px; } header > * { display: inline-block; margin: 10px 0; } h1 { font-family: 'Roboto', sans-serif; margin: 0; padding-left: 10px; } img#logo { height: 36px; vertical-align: bottom; } header > nav { padding-left: 20px; } header > nav > * { margin: 0 10px; padding: 5px 10px; /* border: solid thin blue; */ border-radius: 5px; text-decoration: none; font-weight: 600; } header > nav > a { background-color: white; } /* Products */ #products { grid-area: products; display: flex; flex-wrap: wrap; align-content: start; } /* Product Items */ .product { width: 200px; height: 300px; min-width: 150px; max-width: 250px; background-color: snow; margin: 5px; padding: 5px; border-radius: 3px; display: flex; justify-content: space-between; flex-direction: column; } .product, .product h2 { font-weight: 600; font-size: 15px; } .product h2 { margin: unset; } .product > div.image { background-color: white; border: solid #666 thin; height: 175px; overflow: hidden; position: relative; } .product > div.image > img { /* display: inline-block; */ max-height: 100%; max-width: 100%; width: auto; height: auto; position: absolute; top: 0; bottom: 0; left: 0; right: 0; margin: auto; } .product .bottom { height: 40px; position: relative; } .product .bottom .description { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; } .product:focus-within .description, .product:hover .description { display: block; top: -180px; width: 100%; height: 175px; background-color: snow; clip: unset; margin: 0; transition: all 0.2s; } .product .bottom > label, .product .bottom > .price { vertical-align: middle; line-height: 40px; } .product .bottom > .price { padding-left: 5px; } .product .bottom > select { float: right; padding-left: 5px; } /* Cart */ #cart { grid-area: cart; margin-top: 10px; margin-right: 10px; width: 350px; overflow-x: hidden; overflow-y: auto; min-height: calc(100vh - 20px); background-color: snow; padding: 10px; border-radius: 5px 0 0 5px; } @media screen and (max-width: 670px) { #cart { margin: 10px; width: calc(100vw - 40px); max-height: 50vh; padding: 10px; border-radius: 5px; } } #cartHeader h1 { font-size: 28px; } #cartHeader img { height: 32px; vertical-align: bottom; } #cartList { margin-top: 10px; width: 100%; } #cart > div > table { width: 100%; border-collapse: collapse; } #cartList > table tr > td:nth-of-type(2) > input { width: 60px; text-align: center; transition: all 0.2s; } #cartList > table tr > td:nth-of-type(2) > input:not(:focus) { border-color: rgba(16,16,16,0.1); background-color: rgba(255,255,255,0.1); } /* Drop shadow for Product items and Cart */ nav > a, .product, #cart { -webkit-box-shadow: -2px 1px 5px 0px rgba(0,0,0,0.75); -moz-box-shadow: -2px 1px 5px 0px rgba(0,0,0,0.75); box-shadow: -2px 1px 5px 0px rgba(0,0,0,0.75); } /* Buttons */ button, input, select { height: 40px; } input:not([type=button]):not([type=submit]), select { line-height: 40px; } button, input[type=button], input[type=submit] { border-radius: 5px; padding: 0 20px; font-weight: 600; } .product button, #cart form *[type=submit] { float: right; background-color: lightgreen; border-color: green; } #cart form button, #cart form input[type=button], #cart form input[type=submit] { margin: 10px 0 0 10px; float: right; } .product button:focus, #cart form *[type=submit]:focus { background-color: rgb(169, 255, 169); } /* Grid */ #gridBox { display: none; grid-template-columns: auto 350px; grid-template-rows: minmax(auto, 85px) auto; grid-template-areas: "header cart" "products cart"; } @media screen and (max-width: 670px) { #gridBox { grid-template-columns: auto ; grid-template-rows: auto auto auto; grid-template-areas: "header" "cart" "products"; } } /* ARIA Alert as toast \ notification bar for visual users */ #alert { position: fixed; bottom: 0px; background-color: snow; border-top-right-radius: 5px; padding: 5px; box-shadow: 2px -1px 2px grey; } #alert:empty { display: none; } /* utility */ .center { text-align: center; } .left { text-align: left; } .right { text-align: right; } .topLine td { border-top: thin grey solid; font-weight: 600; padding-top: 5px; }
style.css
@import url('https://fonts.googleapis.com/css?family=Open+Sans|Roboto'); * { box-sizing: border-box; font-family: 'Open Sans', sans-serif; } html, body { padding: 0; margin: 0; width: 100%; } body { background-color: #dbe5db; background-image: url("./images/double-bubble-outline.png"); } /* Header */ header { grid-area: header; min-width: 390px; } header > * { display: inline-block; margin: 10px 0; } h1 { font-family: 'Roboto', sans-serif; margin: 0; padding-left: 10px; } img#logo { height: 36px; vertical-align: bottom; } header > nav { padding-left: 20px; } header > nav > * { margin: 0 10px; padding: 5px 10px; /* border: solid thin blue; */ border-radius: 5px; text-decoration: none; font-weight: 600; } header > nav > a { background-color: white; } /* Products */ #products { grid-area: products; display: flex; flex-wrap: wrap; align-content: start; } /* Product Items */ .product { width: 200px; height: 300px; min-width: 150px; max-width: 250px; background-color: snow; margin: 5px; padding: 5px; border-radius: 3px; display: flex; justify-content: space-between; flex-direction: column; } .product, .product h2 { font-weight: 600; font-size: 15px; } .product h2 { margin: unset; } .product > div.image { background-color: white; border: solid #666 thin; height: 175px; overflow: hidden; position: relative; } .product > div.image > img { /* display: inline-block; */ max-height: 100%; max-width: 100%; width: auto; height: auto; position: absolute; top: 0; bottom: 0; left: 0; right: 0; margin: auto; } .product .bottom { height: 40px; position: relative; } .product .bottom .description { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; } .product:focus-within .description, .product:hover .description { display: block; top: -180px; width: 100%; height: 175px; background-color: snow; clip: unset; margin: 0; transition: all 0.2s; } .product .bottom > label, .product .bottom > .price { vertical-align: middle; line-height: 40px; } .product .bottom > .price { padding-left: 5px; } .product .bottom > select { float: right; padding-left: 5px; } /* Cart */ #cart { grid-area: cart; margin-top: 10px; margin-right: 10px; width: 350px; overflow-x: hidden; overflow-y: auto; min-height: calc(100vh - 20px); background-color: snow; padding: 10px; border-radius: 5px 0 0 5px; } @media screen and (max-width: 670px) { #cart { margin: 10px; width: calc(100vw - 40px); max-height: 50vh; padding: 10px; border-radius: 5px; } } #cartHeader h1 { font-size: 28px; } #cartHeader img { height: 32px; vertical-align: bottom; } #cartList { margin-top: 10px; width: 100%; } #cart > div > table { width: 100%; border-collapse: collapse; } #cartList > table tr > td:nth-of-type(2) > input { width: 60px; text-align: center; transition: all 0.2s; } #cartList > table tr > td:nth-of-type(2) > input:not(:focus) { border-color: rgba(16,16,16,0.1); background-color: rgba(255,255,255,0.1); } /* Drop shadow for Product items and Cart */ nav > a, .product, #cart { -webkit-box-shadow: -2px 1px 5px 0px rgba(0,0,0,0.75); -moz-box-shadow: -2px 1px 5px 0px rgba(0,0,0,0.75); box-shadow: -2px 1px 5px 0px rgba(0,0,0,0.75); } /* Buttons */ button, input, select { height: 40px; } input:not([type=button]):not([type=submit]), select { line-height: 40px; } button, input[type=button], input[type=submit] { border-radius: 5px; padding: 0 20px; font-weight: 600; } .product button, #cart form *[type=submit] { float: right; background-color: lightgreen; border-color: green; } #cart form button, #cart form input[type=button], #cart form input[type=submit] { margin: 10px 0 0 10px; float: right; } .product button:focus, #cart form *[type=submit]:focus { background-color: rgb(169, 255, 169); } /* Grid */ #gridBox { display: none; grid-template-columns: auto 350px; grid-template-rows: minmax(auto, 85px) auto; grid-template-areas: "header cart" "products cart"; } @media screen and (max-width: 670px) { #gridBox { grid-template-columns: auto ; grid-template-rows: auto auto auto; grid-template-areas: "header" "cart" "products"; } } /* ARIA Alert as toast \ notification bar for visual users */ #alert { position: fixed; bottom: 0px; background-color: snow; border-top-right-radius: 5px; padding: 5px; box-shadow: 2px -1px 2px grey; } #alert:empty { display: none; } /* utility */ .center { text-align: center; } .left { text-align: left; } .right { text-align: right; } .topLine td { border-top: thin grey solid; font-weight: 600; padding-top: 5px; }
0.321353
0.087369
.body { background-image: url("/image/background.jpg"); background-size: cover; color: #3d3d3d; font-size: 0.65rem; font-family: 'Quicksand', sans-serif; } .title { background-image: url('/image/background.jpg') ; color: white; padding: 0.1%; } .head { font-family: 'Blinker', sans-serif; text-align: center; } #content { background-color: white; box-shadow: 0px 3px 15px 3px black; padding: 0px; } #due-date { position: relative; top: -2px; border: none; color: grey; font-weight: bolder; width: 100%; } .category { display: inline-block; vertical-align: top; padding: 2%; padding-right: 0%; border-right: 1px solid lightgrey; width: 50%; } .due-date { position: absolute; padding: 2%; display: inline-block; width: 50%; vertical-align: top; } select { border: none; color: grey; width: 100%; font-weight: bolder; } .todo-description { padding: 2%; border-bottom: 1px solid lightgrey; border-left: none; border-right: none; } #description { border: none; font-weight: bold; width: 100%; } ::placeholder { color: darkgrey; } .form-button { position: relative; border-top: 1px solid lightgrey; z-index: 100; padding: 2%; padding-bottom: 0%; background: white; } .form-button i { padding-right: 2px; } .form-button button { width: 95px; border: none; color: white; height: 35px; font-size: 0.7rem; border-radius: 3px; } .add-task { position: absolute; right: 51%; background-color: #5e666d; } .delete-task { position: relative; left: 51%; background-color: #ff4102; } .entry { width: 100%; border-top: 1px solid lightgrey; padding: 2%; } .date { font-size: 0.5rem; color: darkgrey; } .cat-des { width: 75%; word-wrap: break-word; } .details { display: inline-block; position: relative; width: 94%; left: 5px; /* text-decoration: line-through; text-decoration-color: grey; */ font-size: 0.7rem; } .entry-category { position: absolute; top: 0px; height: 25px; width: 70px; color: white; border-radius: 2px; right: 20px; text-align: center; padding: 4px; } .entry-category div { position: relative; top: 4px; margin: auto; } input:focus, select:focus, textarea:focus { outline: none; }
models/assets/css/home.css
.body { background-image: url("/image/background.jpg"); background-size: cover; color: #3d3d3d; font-size: 0.65rem; font-family: 'Quicksand', sans-serif; } .title { background-image: url('/image/background.jpg') ; color: white; padding: 0.1%; } .head { font-family: 'Blinker', sans-serif; text-align: center; } #content { background-color: white; box-shadow: 0px 3px 15px 3px black; padding: 0px; } #due-date { position: relative; top: -2px; border: none; color: grey; font-weight: bolder; width: 100%; } .category { display: inline-block; vertical-align: top; padding: 2%; padding-right: 0%; border-right: 1px solid lightgrey; width: 50%; } .due-date { position: absolute; padding: 2%; display: inline-block; width: 50%; vertical-align: top; } select { border: none; color: grey; width: 100%; font-weight: bolder; } .todo-description { padding: 2%; border-bottom: 1px solid lightgrey; border-left: none; border-right: none; } #description { border: none; font-weight: bold; width: 100%; } ::placeholder { color: darkgrey; } .form-button { position: relative; border-top: 1px solid lightgrey; z-index: 100; padding: 2%; padding-bottom: 0%; background: white; } .form-button i { padding-right: 2px; } .form-button button { width: 95px; border: none; color: white; height: 35px; font-size: 0.7rem; border-radius: 3px; } .add-task { position: absolute; right: 51%; background-color: #5e666d; } .delete-task { position: relative; left: 51%; background-color: #ff4102; } .entry { width: 100%; border-top: 1px solid lightgrey; padding: 2%; } .date { font-size: 0.5rem; color: darkgrey; } .cat-des { width: 75%; word-wrap: break-word; } .details { display: inline-block; position: relative; width: 94%; left: 5px; /* text-decoration: line-through; text-decoration-color: grey; */ font-size: 0.7rem; } .entry-category { position: absolute; top: 0px; height: 25px; width: 70px; color: white; border-radius: 2px; right: 20px; text-align: center; padding: 4px; } .entry-category div { position: relative; top: 4px; margin: auto; } input:focus, select:focus, textarea:focus { outline: none; }
0.327776
0.086478
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; font-weight: 400; letter-spacing: -.022em; font-synthesis: none; -moz-font-feature-settings: 'kern'; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; color: #333; line-height: 1.5em; padding: 25px; background-color: rgb(163, 216, 219); } h1{ background-color: black; color: white; padding: 10px 20px 15px 20px; text-decoration: underline; text-align: center; } h2{ background-color: #484848; color: white; padding: 5px 10px 5px 10px; text-align: center; } .info{ padding-left: 40px; } .infodt{ font-weight: bold; } .intro{ padding: 0px 40px 0px 40px; } .concurrentie{ padding: 0px 40px 0px 40px; } .scenarios{ padding: 0px 40px 0px 40px; } img { max-width: 100%; /* Afbeeldingen responsive maken */ } .concurrentieintro{ font-weight: bold; } .plus{ width: 700px; background-color: #ADDC65; line-height: 24px; } .min{ width: 700px; background-color: rgb(219, 139, 139); line-height: 24px; } .styleguide-logo{ padding: 0px 40px 0px 40px; } .grootlogo{ width: 400px; height: auto; align-content: flex-start; } .kleinlogo{ width: 400px; height: auto; } .styleguidelogo{ text-align: center; align-content: center; } .styleguide-functies{ background-color: rgb(109, 105, 105); color: white; margin: 0px -50px 0px -50px; padding: 20px 0px 20px 0px; text-align: center; align-content: center; } .DS1{ width: 469px; height: 264px; border: 3px solid #707070; } .DS1:hover { transform: scale(1.1, 1.1); opacity: 1; } .styleguide-icons{ margin: 0px -50px 0px -50px; padding: 20px 0px 20px 0px; text-align: center; align-content: center; } .startbutton1{ width: 150px; height: 50px; padding-top: 39px; padding-bottom: 5px; background-color: #ADDC65; margin: 20px auto 0px auto; border: 4px solid #707070; border-radius: 50px; } .startbutton1 span{ font-family: "Springtime Sunshine"; font-size: 35px; color: #707070; } .startbutton2{ width: 150px; height: 50px; padding-top: 39px; padding-bottom: 5px; background-color: #65DCB7; margin: 20px auto 0px auto; border: 4px solid #707070; border-radius: 50px; } .startbutton2 span{ font-family: "Springtime Sunshine"; font-size: 35px; color: #707070; } .startbutton3{ width: 150px; height: 50px; padding-top: 39px; padding-bottom: 5px; background-color: #DCDC65; margin: 20px auto 0px auto; border: 4px solid #707070; border-radius: 50px; } .startbutton3 span{ font-family: "Springtime Sunshine"; font-size: 35px; color: #707070; } .startbutton4{ width: 150px; height: 50px; padding-top: 30px; padding-bottom: 14px; background-color: #DCAA65; margin: 20px auto 0px auto; border: 4px solid #707070; border-radius: 50px; } .startbutton4 span{ font-family: "Springtime Sunshine"; font-size: 30px; color: #707070; } .DS2{ width: auto; height: 80px; } .DS3{ width: auto; height: 80px; } .DS4{ width: auto; height: 80px; } .DS5{ width: auto; height: 80px; } .DS6{ width: auto; height: 80px; } .DS7{ width: auto; height: 80px; } .orange-rectangle1{ width: 250px; height: auto; padding-top: 5px; padding-bottom: 5px; background-color: #DCAA65; margin: 20px auto 0px auto; border: 1px solid #707070; border-radius: 20px; } .orange-rectangle1 span{ font-family: "Roboto Slab"; font-size: 35; font-weight: bold; color: white; } .orange-rectangle2{ width: 250px; height: auto; padding-top: 5px; padding-bottom: 5px; background-color: #DCAA65; margin: 20px auto 0px auto; border: 1px solid #707070; border-radius: 20px; } .orange-rectangle2 span{ font-family: "Roboto Slab"; font-size: 35; font-weight: bold; color: white; } .orange-rectangle3{ display: table; width: auto; height: auto; padding: 1px 7px 0px 7px; background-color: #DCAA65; margin: 20px auto 0px auto; border: 1px solid #707070; border-radius: 50%; } .orange-rectangle3 span{ font-family: "Roboto Slab"; font-size: 35px; font-weight: bold; color: white; } .styleguide-fonts{ text-align: center; align-content: center; padding: 20px 40px 20px 40px; background-color: rgb(109, 105, 105); color: white; margin: 0px -50px 0px -50px; } .styleguide-fonts2{ display: inline-block; text-align: left; } .header1{ font-family: "Springtime Sunshine"; font-size: 31.5px; } .header2{ font-family: "Roboto Slab"; font-size: 25.5px; text-decoration: underline; font-weight: bold; } .header3{ font-family: "Roboto Slab"; font-size: 20.25px; } .header4{ font-family: "Roboto Slab"; font-size: 30px; text-decoration: underline; } .header5{ font-family: "Roboto Slab"; font-size: 52.5px; font-weight: bold; } .header6{ font-family: "Arial"; font-size: 33.75px; } .header7{ font-family: "Arial"; font-size: 33.75px; font-weight: bold; } .header8{ font-family: "Arial"; font-size: 20.25px; } .header9{ font-family: "Arial"; font-size: 11.25px; } .styleguide-colors{ margin: 0px -50px 0px -50px; padding: 20px 0px 20px 0px; text-align: center; align-content: center; text-align: center; align-content: center; } .colorcolumn1{ display: inline-block; vertical-align: top; align-content: center; text-align: center; } .colorcolumn2{ display: inline-block; vertical-align: top; align-content: center; text-align: center } .color1{ width: 80px; height: auto; padding-top: 28px; padding-bottom: 29px; background-color: #ADDC65; color: black; border: 2px solid white; font-size: 15px; margin-bottom: 5px; } .color2{ width: 80px; height: auto; padding-top: 28px; padding-bottom: 29px; background-color: #65DCB7; color: black; border: 2px solid white; font-size: 15px; margin-bottom: 5px; } .color3{ width: 80px; height: auto; padding-top: 28px; padding-bottom: 29px; background-color: #DCDC65; color: black; border: 2px solid white; font-size: 15px; margin-bottom: 5px; } .color4{ width: 80px; height: auto; padding-top: 28px; padding-bottom: 29px; background-color: #DCAA65; color: black; border: 2px solid white; font-size: 15px; margin-bottom: 5px; } .color5{ width: 80px; height: auto; padding-top: 28px; padding-bottom: 29px; background-color: #EFEAEA; color: black; border: 2px solid white; font-size: 15px; margin-bottom: 5px; } .color6{ width: 80px; height: auto; padding-top: 28px; padding-bottom: 29px; background-color: #B5ABAB; color: black; border: 2px solid white; font-size: 15px; margin-bottom: 5px; } .color7{ width: 80px; height: auto; padding-top: 28px; padding-bottom: 29px; background-color: #696363; color: white; border: 2px solid white; font-size: 15px; margin-bottom: 5px; } .color8{ width: 80px; height: auto; padding-top: 28px; padding-bottom: 29px; background-color: #F2F183; color: black; border: 2px solid white; font-size: 15px; margin-bottom: 5px; } .color9{ width: 80px; height: auto; padding-top: 28px; padding-bottom: 29px; background-color: #FFFFFF; color: black; border: 2px solid white; font-size: 15px; margin-bottom: 5px; } .color10{ width: 80px; height: auto; padding-top: 28px; padding-bottom: 29px; background-color: #7AE2B0; color: black; border: 2px solid white; font-size: 15px; margin-bottom: 5px; } .color11{ width: 80px; height: auto; padding-top: 28px; padding-bottom: 29px; background-color: #E6B9F4; color: black; border: 2px solid white; font-size: 15px; margin-bottom: 5px; } a{ text-decoration: none; }
pages/css/pages.css
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; font-weight: 400; letter-spacing: -.022em; font-synthesis: none; -moz-font-feature-settings: 'kern'; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; color: #333; line-height: 1.5em; padding: 25px; background-color: rgb(163, 216, 219); } h1{ background-color: black; color: white; padding: 10px 20px 15px 20px; text-decoration: underline; text-align: center; } h2{ background-color: #484848; color: white; padding: 5px 10px 5px 10px; text-align: center; } .info{ padding-left: 40px; } .infodt{ font-weight: bold; } .intro{ padding: 0px 40px 0px 40px; } .concurrentie{ padding: 0px 40px 0px 40px; } .scenarios{ padding: 0px 40px 0px 40px; } img { max-width: 100%; /* Afbeeldingen responsive maken */ } .concurrentieintro{ font-weight: bold; } .plus{ width: 700px; background-color: #ADDC65; line-height: 24px; } .min{ width: 700px; background-color: rgb(219, 139, 139); line-height: 24px; } .styleguide-logo{ padding: 0px 40px 0px 40px; } .grootlogo{ width: 400px; height: auto; align-content: flex-start; } .kleinlogo{ width: 400px; height: auto; } .styleguidelogo{ text-align: center; align-content: center; } .styleguide-functies{ background-color: rgb(109, 105, 105); color: white; margin: 0px -50px 0px -50px; padding: 20px 0px 20px 0px; text-align: center; align-content: center; } .DS1{ width: 469px; height: 264px; border: 3px solid #707070; } .DS1:hover { transform: scale(1.1, 1.1); opacity: 1; } .styleguide-icons{ margin: 0px -50px 0px -50px; padding: 20px 0px 20px 0px; text-align: center; align-content: center; } .startbutton1{ width: 150px; height: 50px; padding-top: 39px; padding-bottom: 5px; background-color: #ADDC65; margin: 20px auto 0px auto; border: 4px solid #707070; border-radius: 50px; } .startbutton1 span{ font-family: "Springtime Sunshine"; font-size: 35px; color: #707070; } .startbutton2{ width: 150px; height: 50px; padding-top: 39px; padding-bottom: 5px; background-color: #65DCB7; margin: 20px auto 0px auto; border: 4px solid #707070; border-radius: 50px; } .startbutton2 span{ font-family: "Springtime Sunshine"; font-size: 35px; color: #707070; } .startbutton3{ width: 150px; height: 50px; padding-top: 39px; padding-bottom: 5px; background-color: #DCDC65; margin: 20px auto 0px auto; border: 4px solid #707070; border-radius: 50px; } .startbutton3 span{ font-family: "Springtime Sunshine"; font-size: 35px; color: #707070; } .startbutton4{ width: 150px; height: 50px; padding-top: 30px; padding-bottom: 14px; background-color: #DCAA65; margin: 20px auto 0px auto; border: 4px solid #707070; border-radius: 50px; } .startbutton4 span{ font-family: "Springtime Sunshine"; font-size: 30px; color: #707070; } .DS2{ width: auto; height: 80px; } .DS3{ width: auto; height: 80px; } .DS4{ width: auto; height: 80px; } .DS5{ width: auto; height: 80px; } .DS6{ width: auto; height: 80px; } .DS7{ width: auto; height: 80px; } .orange-rectangle1{ width: 250px; height: auto; padding-top: 5px; padding-bottom: 5px; background-color: #DCAA65; margin: 20px auto 0px auto; border: 1px solid #707070; border-radius: 20px; } .orange-rectangle1 span{ font-family: "Roboto Slab"; font-size: 35; font-weight: bold; color: white; } .orange-rectangle2{ width: 250px; height: auto; padding-top: 5px; padding-bottom: 5px; background-color: #DCAA65; margin: 20px auto 0px auto; border: 1px solid #707070; border-radius: 20px; } .orange-rectangle2 span{ font-family: "Roboto Slab"; font-size: 35; font-weight: bold; color: white; } .orange-rectangle3{ display: table; width: auto; height: auto; padding: 1px 7px 0px 7px; background-color: #DCAA65; margin: 20px auto 0px auto; border: 1px solid #707070; border-radius: 50%; } .orange-rectangle3 span{ font-family: "Roboto Slab"; font-size: 35px; font-weight: bold; color: white; } .styleguide-fonts{ text-align: center; align-content: center; padding: 20px 40px 20px 40px; background-color: rgb(109, 105, 105); color: white; margin: 0px -50px 0px -50px; } .styleguide-fonts2{ display: inline-block; text-align: left; } .header1{ font-family: "Springtime Sunshine"; font-size: 31.5px; } .header2{ font-family: "Roboto Slab"; font-size: 25.5px; text-decoration: underline; font-weight: bold; } .header3{ font-family: "Roboto Slab"; font-size: 20.25px; } .header4{ font-family: "Roboto Slab"; font-size: 30px; text-decoration: underline; } .header5{ font-family: "Roboto Slab"; font-size: 52.5px; font-weight: bold; } .header6{ font-family: "Arial"; font-size: 33.75px; } .header7{ font-family: "Arial"; font-size: 33.75px; font-weight: bold; } .header8{ font-family: "Arial"; font-size: 20.25px; } .header9{ font-family: "Arial"; font-size: 11.25px; } .styleguide-colors{ margin: 0px -50px 0px -50px; padding: 20px 0px 20px 0px; text-align: center; align-content: center; text-align: center; align-content: center; } .colorcolumn1{ display: inline-block; vertical-align: top; align-content: center; text-align: center; } .colorcolumn2{ display: inline-block; vertical-align: top; align-content: center; text-align: center } .color1{ width: 80px; height: auto; padding-top: 28px; padding-bottom: 29px; background-color: #ADDC65; color: black; border: 2px solid white; font-size: 15px; margin-bottom: 5px; } .color2{ width: 80px; height: auto; padding-top: 28px; padding-bottom: 29px; background-color: #65DCB7; color: black; border: 2px solid white; font-size: 15px; margin-bottom: 5px; } .color3{ width: 80px; height: auto; padding-top: 28px; padding-bottom: 29px; background-color: #DCDC65; color: black; border: 2px solid white; font-size: 15px; margin-bottom: 5px; } .color4{ width: 80px; height: auto; padding-top: 28px; padding-bottom: 29px; background-color: #DCAA65; color: black; border: 2px solid white; font-size: 15px; margin-bottom: 5px; } .color5{ width: 80px; height: auto; padding-top: 28px; padding-bottom: 29px; background-color: #EFEAEA; color: black; border: 2px solid white; font-size: 15px; margin-bottom: 5px; } .color6{ width: 80px; height: auto; padding-top: 28px; padding-bottom: 29px; background-color: #B5ABAB; color: black; border: 2px solid white; font-size: 15px; margin-bottom: 5px; } .color7{ width: 80px; height: auto; padding-top: 28px; padding-bottom: 29px; background-color: #696363; color: white; border: 2px solid white; font-size: 15px; margin-bottom: 5px; } .color8{ width: 80px; height: auto; padding-top: 28px; padding-bottom: 29px; background-color: #F2F183; color: black; border: 2px solid white; font-size: 15px; margin-bottom: 5px; } .color9{ width: 80px; height: auto; padding-top: 28px; padding-bottom: 29px; background-color: #FFFFFF; color: black; border: 2px solid white; font-size: 15px; margin-bottom: 5px; } .color10{ width: 80px; height: auto; padding-top: 28px; padding-bottom: 29px; background-color: #7AE2B0; color: black; border: 2px solid white; font-size: 15px; margin-bottom: 5px; } .color11{ width: 80px; height: auto; padding-top: 28px; padding-bottom: 29px; background-color: #E6B9F4; color: black; border: 2px solid white; font-size: 15px; margin-bottom: 5px; } a{ text-decoration: none; }
0.399226
0.101322
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,700|Roboto:300,400,500,700&subset=cyrillic,cyrillic-ext,latin-ext);body, html { width: 100%; height: 100%; margin: 0; } body { font-family: 'Open Sans', sans-serif; font-size: 14px; line-height: 1.42; color: #000; background-color: #fff; -webkit-font-smoothing: antialiased; } .hidden { overflow: hidden; } .clearfix::before, .clearfix::after { content: ''; display: table; } .clearfix::after { clear: both; } .wrapper { position: relative; min-height: 100%; overflow: hidden; } .container { width: 1100px; margin: 0 auto; } ul { margin: 0; padding: 0; } li { list-style: none; } h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: normal; } a { text-decoration: none; } p { margin: 0; } img { border: none; } .button { cursor: pointer; outline: none; display: block; border: 1px solid #ccc; font-family: 'Roboto', sans-serif; font-weight: 300; background: transparent; text-align: center; font-size: 14px; color: #000; padding: 8px 0; transition: .3s; } .button_mb_15 { margin-bottom: 15px; } .button:hover { background-color: #ccc; color: #fff; } .button_map { text-transform: uppercase; } .button_save, .button_add, .button_upload { width: 100%; text-transform: uppercase; background-color: #ccc; } .button_upload { margin-bottom: 20px; } .button_send { display: inline-block; z-index: 999; margin-left: 20px; min-width: 100px; color: rgba(0, 0, 0, 0.7); background-color: #ccc; padding: 9px 6px; border: none; } .button_send:hover { background-color: rgba(0, 0, 0, 0.5); } .button_color_orange { margin: 0; color: #fff; opacity: 1; background-color: #c03411; } .button_color_orange:before { content: ''; position: absolute; transition: .3s; top: 50%; right: 100%; margin-top: -8px; display: block; border: 8px solid transparent; border-right: 8px solid #c03411; } .button_color_orange:hover { background-color: #70210e; } .button_color_orange:hover::before { border-right-color: #70210e; } .header { border-bottom: 1px solid #cccccc; padding: 25px 0; } .header__geo { float: left; } .header__menu { float: right; } .geolocation { transition: .3s; } .geolocation__img { display: inline-block; vertical-align: middle; } .geolocation__link { letter-spacing: 1px; color: #000; font-size: 14px; border-bottom: 1px dashed #ccc; display: inline-block; vertical-align: middle; } .geolocation:hover { opacity: .7; } .menu { float: left; } .menu__item { float: left; margin-left: 20px; } .menu__item:first-child { margin-left: 0; } .menu__link, .auth { text-transform: uppercase; font-family: 'Open Sans', sans-serif; color: #000; font-size: 14px; line-height: 35px; transition: .3s; } .menu__link_active, .menu__link:hover, .auth_active, .auth:hover { opacity: .7; } .auth { float: left; margin-left: 40px; } .main { padding-top: 30px; } .category, .adv, .firms { float: left; } .category, .firms { width: 220px; } .adv { width: 860px; margin-left: 20px; margin-bottom: 40px; } .category__btns { margin-bottom: 35px; } .accordeon-form { position: relative; } .accordeon-form .button_send { display: none; position: absolute; top: 50px; right: -112px; } .accordeon-category__item { margin-bottom: 20px; } .accordeon-category__item_active .accordeon-category__wrap { height: auto; } .accordeon-category__item_active .accordeon-category__trigger::before { transform: rotate(0deg); } .accordeon-category__trigger { display: block; text-transform: uppercase; font-family: 'Open Sans', sans-serif; font-weight: 300; font-size: 16px; color: #000; position: relative; margin-bottom: 15px; } .accordeon-category__trigger::before { content: ''; display: block; width: 20px; height: 10px; transform: rotate(-180deg); background-image: url("/img/accordeon-arrow.png"); background-repeat: no-repeat; position: absolute; right: 5px; top: 50%; margin-top: -5px; transition: .5s; } .accordeon-category__wrap { transition: 1s; height: 0; overflow: hidden; } .accordeon-category__link { display: block; color: #000; font-family: 'Open Sans', sans-serif; padding-bottom: 10px; font-size: 14px; border-bottom: 1px dashed #ccc; margin-bottom: 15px; font-weight: 300; transition: .3s; } .accordeon-category__link:hover { opacity: .7; } .accordeon-category__form-label { position: relative; } .accordeon-category__form-label input { position: absolute; top: 0; left: -9999px; } .adv__list { margin-left: -10px; } .adv__item { float: left; margin-left: 10px; margin-bottom: 10px; } .adv__link { box-sizing: border-box; display: block; width: 207.5px; height: 207.5px; overflow: hidden; border: 1px dashed #ccc; font-size: 0; transition: .3s; text-align: center; } .adv__link::before { content: ''; display: inline-block; height: 100%; vertical-align: middle; } .adv__link:hover { opacity: 0.85; } .adv__img { transition: .3s; display: inline-block; vertical-align: middle; max-width: 100%; min-width: 100%; } .popup-overlay { display: none; position: fixed; top: 0; left: 0; background-color: rgba(0, 0, 0, 0.6); width: 100%; height: 100%; text-align: center; } .popup-overlay::before { content: ''; height: 100%; display: inline-block; vertical-align: middle; } .popup-overlay_active { display: inline-block; } .popup { transition: .5s; position: relative; text-align: left; display: none; vertical-align: middle; width: 300px; box-sizing: border-box; padding: 20px; background-color: #fff; } .popup__title { font-size: 18px; opacity: .7; font-family: 'Roboto', sans-serif; font-weight: 500; margin-bottom: 20px; } .popup__close { cursor: pointer; width: 16px; height: 16px; background-image: url("/img/close.png"); background-repeat: no-repeat; position: absolute; top: 10px; right: 10px; transition: .3; opacity: 0.7; } .popup__close:hover { opacity: 1; } .popup_active { display: inline-block; } #popup-add { width: 600px; } .form-auth { padding-top: 20px; } .form-auth__left, .form-auth__right { width: 50%; float: left; } .form-auth__left { max-height: 600px; overflow-y: auto; width: 40%; } .form-auth__right { margin-left: 30px; } .form-auth__label { position: relative; display: block; margin-bottom: 15px; } .form-auth__label_hidden { display: none; } .form-auth__file { position: absolute; top: 0; left: -9999px; } .form-auth__file-name { display: block; font-size: 12px; margin-left: 40px; margin-top: -10px; color: #c03411; } .form-auth__file-fake { display: inline-block; padding: 10px 0 10px 40px; background-image: url("/img/img-icon.png"); background-repeat: no-repeat; background-position: center left; cursor: pointer; } .form-auth__select { width: 100%; height: 37px; border: 1px solid #ccc; padding-left: 10px; margin-bottom: 20px; outline: none; } .form-auth__select_product, .form-auth__select_tech, .form-auth__select_material { display: none; } .form-auth__label-text { display: block; font-size: 16px; font-family: 'Open Sans', sans-serif; font-weight: 500; margin-bottom: 5px; } .form-auth__input { outline: none; width: 100%; padding: 10px; border: 1px solid #ccc; box-sizing: border-box; } .form-auth__input_area { height: 80px; resize: none; } .form-auth__question { text-decoration: underline; transition: .3s; display: inline-block; color: #ff3333; font-size: 15px; } .form-auth__question_color_gray { color: #666666; text-decoration: none; } .form-auth__question_mb_20 { margin-bottom: 20px; } .form-auth__question:hover { opacity: .8; } .account-info { padding-top: 20px; } .account-info__photo { height: 226px; float: left; width: 50%; overflow: hidden; text-align: center; } .account-info__img { /*max-width: 100%;*/ /*min-width: 100%;*/ } .account-info__contacts { float: left; width: 50%; padding-left: 20px; box-sizing: border-box; } .account-info__title { font-size: 18px; font-family: 'Roboto', sans-serif; margin-bottom: 20px; font-weight: 300; } .account-info__address { margin-bottom: 15px; } .account-info__contact-title { font-weight: 600; text-transform: uppercase; margin-bottom: 6px; } .account-info__contact-text { opacity: .7; } /*# sourceMappingURL=data:application/json;charset=utf-8;base64,<KEY>=*/
public/css/admin/main.css
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,700|Roboto:300,400,500,700&subset=cyrillic,cyrillic-ext,latin-ext);body, html { width: 100%; height: 100%; margin: 0; } body { font-family: 'Open Sans', sans-serif; font-size: 14px; line-height: 1.42; color: #000; background-color: #fff; -webkit-font-smoothing: antialiased; } .hidden { overflow: hidden; } .clearfix::before, .clearfix::after { content: ''; display: table; } .clearfix::after { clear: both; } .wrapper { position: relative; min-height: 100%; overflow: hidden; } .container { width: 1100px; margin: 0 auto; } ul { margin: 0; padding: 0; } li { list-style: none; } h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: normal; } a { text-decoration: none; } p { margin: 0; } img { border: none; } .button { cursor: pointer; outline: none; display: block; border: 1px solid #ccc; font-family: 'Roboto', sans-serif; font-weight: 300; background: transparent; text-align: center; font-size: 14px; color: #000; padding: 8px 0; transition: .3s; } .button_mb_15 { margin-bottom: 15px; } .button:hover { background-color: #ccc; color: #fff; } .button_map { text-transform: uppercase; } .button_save, .button_add, .button_upload { width: 100%; text-transform: uppercase; background-color: #ccc; } .button_upload { margin-bottom: 20px; } .button_send { display: inline-block; z-index: 999; margin-left: 20px; min-width: 100px; color: rgba(0, 0, 0, 0.7); background-color: #ccc; padding: 9px 6px; border: none; } .button_send:hover { background-color: rgba(0, 0, 0, 0.5); } .button_color_orange { margin: 0; color: #fff; opacity: 1; background-color: #c03411; } .button_color_orange:before { content: ''; position: absolute; transition: .3s; top: 50%; right: 100%; margin-top: -8px; display: block; border: 8px solid transparent; border-right: 8px solid #c03411; } .button_color_orange:hover { background-color: #70210e; } .button_color_orange:hover::before { border-right-color: #70210e; } .header { border-bottom: 1px solid #cccccc; padding: 25px 0; } .header__geo { float: left; } .header__menu { float: right; } .geolocation { transition: .3s; } .geolocation__img { display: inline-block; vertical-align: middle; } .geolocation__link { letter-spacing: 1px; color: #000; font-size: 14px; border-bottom: 1px dashed #ccc; display: inline-block; vertical-align: middle; } .geolocation:hover { opacity: .7; } .menu { float: left; } .menu__item { float: left; margin-left: 20px; } .menu__item:first-child { margin-left: 0; } .menu__link, .auth { text-transform: uppercase; font-family: 'Open Sans', sans-serif; color: #000; font-size: 14px; line-height: 35px; transition: .3s; } .menu__link_active, .menu__link:hover, .auth_active, .auth:hover { opacity: .7; } .auth { float: left; margin-left: 40px; } .main { padding-top: 30px; } .category, .adv, .firms { float: left; } .category, .firms { width: 220px; } .adv { width: 860px; margin-left: 20px; margin-bottom: 40px; } .category__btns { margin-bottom: 35px; } .accordeon-form { position: relative; } .accordeon-form .button_send { display: none; position: absolute; top: 50px; right: -112px; } .accordeon-category__item { margin-bottom: 20px; } .accordeon-category__item_active .accordeon-category__wrap { height: auto; } .accordeon-category__item_active .accordeon-category__trigger::before { transform: rotate(0deg); } .accordeon-category__trigger { display: block; text-transform: uppercase; font-family: 'Open Sans', sans-serif; font-weight: 300; font-size: 16px; color: #000; position: relative; margin-bottom: 15px; } .accordeon-category__trigger::before { content: ''; display: block; width: 20px; height: 10px; transform: rotate(-180deg); background-image: url("/img/accordeon-arrow.png"); background-repeat: no-repeat; position: absolute; right: 5px; top: 50%; margin-top: -5px; transition: .5s; } .accordeon-category__wrap { transition: 1s; height: 0; overflow: hidden; } .accordeon-category__link { display: block; color: #000; font-family: 'Open Sans', sans-serif; padding-bottom: 10px; font-size: 14px; border-bottom: 1px dashed #ccc; margin-bottom: 15px; font-weight: 300; transition: .3s; } .accordeon-category__link:hover { opacity: .7; } .accordeon-category__form-label { position: relative; } .accordeon-category__form-label input { position: absolute; top: 0; left: -9999px; } .adv__list { margin-left: -10px; } .adv__item { float: left; margin-left: 10px; margin-bottom: 10px; } .adv__link { box-sizing: border-box; display: block; width: 207.5px; height: 207.5px; overflow: hidden; border: 1px dashed #ccc; font-size: 0; transition: .3s; text-align: center; } .adv__link::before { content: ''; display: inline-block; height: 100%; vertical-align: middle; } .adv__link:hover { opacity: 0.85; } .adv__img { transition: .3s; display: inline-block; vertical-align: middle; max-width: 100%; min-width: 100%; } .popup-overlay { display: none; position: fixed; top: 0; left: 0; background-color: rgba(0, 0, 0, 0.6); width: 100%; height: 100%; text-align: center; } .popup-overlay::before { content: ''; height: 100%; display: inline-block; vertical-align: middle; } .popup-overlay_active { display: inline-block; } .popup { transition: .5s; position: relative; text-align: left; display: none; vertical-align: middle; width: 300px; box-sizing: border-box; padding: 20px; background-color: #fff; } .popup__title { font-size: 18px; opacity: .7; font-family: 'Roboto', sans-serif; font-weight: 500; margin-bottom: 20px; } .popup__close { cursor: pointer; width: 16px; height: 16px; background-image: url("/img/close.png"); background-repeat: no-repeat; position: absolute; top: 10px; right: 10px; transition: .3; opacity: 0.7; } .popup__close:hover { opacity: 1; } .popup_active { display: inline-block; } #popup-add { width: 600px; } .form-auth { padding-top: 20px; } .form-auth__left, .form-auth__right { width: 50%; float: left; } .form-auth__left { max-height: 600px; overflow-y: auto; width: 40%; } .form-auth__right { margin-left: 30px; } .form-auth__label { position: relative; display: block; margin-bottom: 15px; } .form-auth__label_hidden { display: none; } .form-auth__file { position: absolute; top: 0; left: -9999px; } .form-auth__file-name { display: block; font-size: 12px; margin-left: 40px; margin-top: -10px; color: #c03411; } .form-auth__file-fake { display: inline-block; padding: 10px 0 10px 40px; background-image: url("/img/img-icon.png"); background-repeat: no-repeat; background-position: center left; cursor: pointer; } .form-auth__select { width: 100%; height: 37px; border: 1px solid #ccc; padding-left: 10px; margin-bottom: 20px; outline: none; } .form-auth__select_product, .form-auth__select_tech, .form-auth__select_material { display: none; } .form-auth__label-text { display: block; font-size: 16px; font-family: 'Open Sans', sans-serif; font-weight: 500; margin-bottom: 5px; } .form-auth__input { outline: none; width: 100%; padding: 10px; border: 1px solid #ccc; box-sizing: border-box; } .form-auth__input_area { height: 80px; resize: none; } .form-auth__question { text-decoration: underline; transition: .3s; display: inline-block; color: #ff3333; font-size: 15px; } .form-auth__question_color_gray { color: #666666; text-decoration: none; } .form-auth__question_mb_20 { margin-bottom: 20px; } .form-auth__question:hover { opacity: .8; } .account-info { padding-top: 20px; } .account-info__photo { height: 226px; float: left; width: 50%; overflow: hidden; text-align: center; } .account-info__img { /*max-width: 100%;*/ /*min-width: 100%;*/ } .account-info__contacts { float: left; width: 50%; padding-left: 20px; box-sizing: border-box; } .account-info__title { font-size: 18px; font-family: 'Roboto', sans-serif; margin-bottom: 20px; font-weight: 300; } .account-info__address { margin-bottom: 15px; } .account-info__contact-title { font-weight: 600; text-transform: uppercase; margin-bottom: 6px; } .account-info__contact-text { opacity: .7; } /*# sourceMappingURL=data:application/json;charset=utf-8;base64,<KEY>=*/
0.411939
0.067824
.container { height: 100vh; max-width: 720px; margin: 0 auto; padding: 2.5rem 2rem; } .data{ margin-top: 4.2rem; max-width: 1080px; } .containerContent{ margin: 2rem -14rem; display: flex; } .dataInfo{ display: flex; margin-bottom: -4.5rem; } .containerHour{ max-width: 8rem; max-height: 3.8rem; display: inline-block; background: var(--gray-card-program); border-radius: 10px; position: relative; justify-content: center; align-items: center; margin: 42px 1rem; padding: 0.5rem 1.5rem; font-size: .9rem; font-family: Roboto; font-weight: 500; text-align: center; color: var(--black-text); border: none; } .containerDescription{ width: 60rem; position: relative; display: grid; grid-template-columns: 9% 20% 50% 8% 8%; background: var(--gray-card-program); border-radius: 10px; position: relative; justify-content: space-between; align-items: center; margin: 42px 1rem; padding: 2px 24px; font-size: .9rem; font-family: Roboto; font-weight: 500; color: var(--gray-text); border: none; } .title{ max-width: 6rem; display: flex; justify-content: center; align-items: center; text-align: center; color: var(--black-text-high); margin: 0 -1.5rem; } .description{ justify-content: center; align-items: center; margin-right: 3rem; margin-left: -5rem; } .classi{ display: flex; margin-right: 2rem; justify-content: center; align-items: center; text-align: center; } .year{ margin-right: -2rem; display: flex; justify-content: center; align-items: center; text-align: center; } .isShowing{ margin-left: 5rem; width: 10rem; } .image{ margin-right: -5rem; } .isShowing{ margin-left: 24rem; width: 10rem; } .isShowing img{ margin-top: 2rem; margin-bottom: 2rem; } .containerNow p{ justify-content: start; align-items: center; text-align: center; } @media screen and (max-width: 720px) { .container{ max-width: 410px; } .data{ margin-top: 5rem; margin-left: 4rem; max-width: 220px; } .containerContent{ margin: -2rem -12rem; display: block; } .dataInfo{ display: flex; max-width: 420px; margin-left: 5rem; margin-top: 0.5rem; } .containerHour{ max-width: 4rem; max-height: 3rem; background: var(--gray-card-program); margin: 42px 1rem; padding: .5rem 1rem; font-size: .8rem; } .containerDescription{ max-width: 30rem; display: grid; grid-template-columns: 20% 70%; justify-content: space-around; align-items: center; margin: 38px 1rem; padding: 2px 7px; font-size: .8rem; color: var(--black-text); border: none; } .title{ margin: 0 0rem; } .description{ margin-right: 0rem; margin-left: 0rem; } .image{ display: none; } .isShowing{ display: inline-block; margin-left: 5rem; height: 3rem; } .classi{ display: none; } .year{ display: none; } .isShowing img{ margin-left: -.5rem; } } @media screen and (max-width: 398px) { .data{ margin-top: 5rem; margin-left: 5rem; max-width: 100px; } .dataInfo{ margin-left: 2rem; margin-top: 0.5rem; } .containerDescription{ width: 19rem; margin: 42px 1rem; } .description{ width: 12rem; margin-left: 1rem; } .containerHour{ margin-left: 4rem; margin-right: -.1rem; } .isShowing{ display: inline-block; margin-left: 4rem; } .isShowing img{ margin-left: -1rem; } }
styles/components/Content.module.css
.container { height: 100vh; max-width: 720px; margin: 0 auto; padding: 2.5rem 2rem; } .data{ margin-top: 4.2rem; max-width: 1080px; } .containerContent{ margin: 2rem -14rem; display: flex; } .dataInfo{ display: flex; margin-bottom: -4.5rem; } .containerHour{ max-width: 8rem; max-height: 3.8rem; display: inline-block; background: var(--gray-card-program); border-radius: 10px; position: relative; justify-content: center; align-items: center; margin: 42px 1rem; padding: 0.5rem 1.5rem; font-size: .9rem; font-family: Roboto; font-weight: 500; text-align: center; color: var(--black-text); border: none; } .containerDescription{ width: 60rem; position: relative; display: grid; grid-template-columns: 9% 20% 50% 8% 8%; background: var(--gray-card-program); border-radius: 10px; position: relative; justify-content: space-between; align-items: center; margin: 42px 1rem; padding: 2px 24px; font-size: .9rem; font-family: Roboto; font-weight: 500; color: var(--gray-text); border: none; } .title{ max-width: 6rem; display: flex; justify-content: center; align-items: center; text-align: center; color: var(--black-text-high); margin: 0 -1.5rem; } .description{ justify-content: center; align-items: center; margin-right: 3rem; margin-left: -5rem; } .classi{ display: flex; margin-right: 2rem; justify-content: center; align-items: center; text-align: center; } .year{ margin-right: -2rem; display: flex; justify-content: center; align-items: center; text-align: center; } .isShowing{ margin-left: 5rem; width: 10rem; } .image{ margin-right: -5rem; } .isShowing{ margin-left: 24rem; width: 10rem; } .isShowing img{ margin-top: 2rem; margin-bottom: 2rem; } .containerNow p{ justify-content: start; align-items: center; text-align: center; } @media screen and (max-width: 720px) { .container{ max-width: 410px; } .data{ margin-top: 5rem; margin-left: 4rem; max-width: 220px; } .containerContent{ margin: -2rem -12rem; display: block; } .dataInfo{ display: flex; max-width: 420px; margin-left: 5rem; margin-top: 0.5rem; } .containerHour{ max-width: 4rem; max-height: 3rem; background: var(--gray-card-program); margin: 42px 1rem; padding: .5rem 1rem; font-size: .8rem; } .containerDescription{ max-width: 30rem; display: grid; grid-template-columns: 20% 70%; justify-content: space-around; align-items: center; margin: 38px 1rem; padding: 2px 7px; font-size: .8rem; color: var(--black-text); border: none; } .title{ margin: 0 0rem; } .description{ margin-right: 0rem; margin-left: 0rem; } .image{ display: none; } .isShowing{ display: inline-block; margin-left: 5rem; height: 3rem; } .classi{ display: none; } .year{ display: none; } .isShowing img{ margin-left: -.5rem; } } @media screen and (max-width: 398px) { .data{ margin-top: 5rem; margin-left: 5rem; max-width: 100px; } .dataInfo{ margin-left: 2rem; margin-top: 0.5rem; } .containerDescription{ width: 19rem; margin: 42px 1rem; } .description{ width: 12rem; margin-left: 1rem; } .containerHour{ margin-left: 4rem; margin-right: -.1rem; } .isShowing{ display: inline-block; margin-left: 4rem; } .isShowing img{ margin-left: -1rem; } }
0.485112
0.058939
.alo-bold, .alo-err .label { font-weight: 700 } .alo-uline { text-decoration: underline } .alo-err u { display: none } .alo-err { display: inline-block; text-align: left } .alo-err .label, .text-center { text-align: center } .alo-err table { border-collapse: collapse; border-spacing: 0 } .alo-err td, .alo-err th { padding: 0 } .alo-err .table > tbody > tr > td, .alo-err .table > tbody > tr > th, .alo-err .table > thead > tr > td, .alo-err .table > thead > tr > th { padding: 8px; vertical-align: top } .alo-err.table > thead > tr > th { vertical-align: bottom } .alo-err .table .table { background-color: #fff } .alo-err .label { display: inline; padding: .2em .6em .3em; font-size: 75%; line-height: 1; color: #fff; white-space: nowrap; vertical-align: baseline; border-radius: .25em; position: relative; top: -1px } .alo-err .label-default { background-color: #777 } .alo-err.alert { padding: 15px; margin-bottom: 20px; border: 1px solid transparent; border-radius: 4px; text-shadow: 0 1px 0 rgba(255, 255, 255, .2); -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05) } .alo-err.alert-info { background-color: #d9edf7; color: #31708f; background-image: -webkit-linear-gradient(top, #d9edf7 0, #b9def0 100%); background-image: -o-linear-gradient(top, #d9edf7 0, #b9def0 100%); background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0)); background-image: linear-gradient(to bottom, #d9edf7 0, #b9def0 100%); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0); border-color: #9acfea } .alo-err.alert-warning { background-color: #fcf8e3; color: #8a6d3b; background-image: -webkit-linear-gradient(top, #fcf8e3 0, #f8efc0 100%); background-image: -o-linear-gradient(top, #fcf8e3 0, #f8efc0 100%); background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0)); background-image: linear-gradient(to bottom, #fcf8e3 0, #f8efc0 100%); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0); border-color: #f5e79e } .alo-err.alert-danger { background-color: #f2dede; color: #a94442; background-image: -webkit-linear-gradient(top, #f2dede 0, #e7c3c3 100%); background-image: -o-linear-gradient(top, #f2dede 0, #e7c3c3 100%); background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3)); background-image: linear-gradient(to bottom, #f2dede 0, #e7c3c3 100%); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0); border-color: #dca7a7 } .alo-err .kint footer { display: none; } .alo-err .kint-parent dfn { display: none; }
src/error.css
.alo-bold, .alo-err .label { font-weight: 700 } .alo-uline { text-decoration: underline } .alo-err u { display: none } .alo-err { display: inline-block; text-align: left } .alo-err .label, .text-center { text-align: center } .alo-err table { border-collapse: collapse; border-spacing: 0 } .alo-err td, .alo-err th { padding: 0 } .alo-err .table > tbody > tr > td, .alo-err .table > tbody > tr > th, .alo-err .table > thead > tr > td, .alo-err .table > thead > tr > th { padding: 8px; vertical-align: top } .alo-err.table > thead > tr > th { vertical-align: bottom } .alo-err .table .table { background-color: #fff } .alo-err .label { display: inline; padding: .2em .6em .3em; font-size: 75%; line-height: 1; color: #fff; white-space: nowrap; vertical-align: baseline; border-radius: .25em; position: relative; top: -1px } .alo-err .label-default { background-color: #777 } .alo-err.alert { padding: 15px; margin-bottom: 20px; border: 1px solid transparent; border-radius: 4px; text-shadow: 0 1px 0 rgba(255, 255, 255, .2); -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05) } .alo-err.alert-info { background-color: #d9edf7; color: #31708f; background-image: -webkit-linear-gradient(top, #d9edf7 0, #b9def0 100%); background-image: -o-linear-gradient(top, #d9edf7 0, #b9def0 100%); background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0)); background-image: linear-gradient(to bottom, #d9edf7 0, #b9def0 100%); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0); border-color: #9acfea } .alo-err.alert-warning { background-color: #fcf8e3; color: #8a6d3b; background-image: -webkit-linear-gradient(top, #fcf8e3 0, #f8efc0 100%); background-image: -o-linear-gradient(top, #fcf8e3 0, #f8efc0 100%); background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0)); background-image: linear-gradient(to bottom, #fcf8e3 0, #f8efc0 100%); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0); border-color: #f5e79e } .alo-err.alert-danger { background-color: #f2dede; color: #a94442; background-image: -webkit-linear-gradient(top, #f2dede 0, #e7c3c3 100%); background-image: -o-linear-gradient(top, #f2dede 0, #e7c3c3 100%); background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3)); background-image: linear-gradient(to bottom, #f2dede 0, #e7c3c3 100%); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0); border-color: #dca7a7 } .alo-err .kint footer { display: none; } .alo-err .kint-parent dfn { display: none; }
0.390011
0.150528
@keyframes example { from { width: 150px; opacity: 1; margin-top: 0px; } to { width: 300px; opacity: 0; margin-top: -75px; } } @keyframes lux { 0% { box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.63); } 50% { box-shadow: 0 0 60px 15px #fff ; } 100% { box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.63); } } @keyframes news { from { height: 62px; } to { height: calc(100% - 52px); } } @keyframes newsc { from { height: calc(100% - 52px); } to { height: 62px; } } .news_open { animation-name: news; animation-duration: .5s; -webkit-animation-iteration-count:1; -webkit-animation-fill-mode: forwards; } .news_closer { animation-name: newsc; animation-duration: .5s; -webkit-animation-iteration-count:1; -webkit-animation-fill-mode: forwards; } div.content .los img { animation-name: example; animation-duration: 3s; animation-iteration-count: infinite; } div.content .los img.ani_d2 { opacity: 0; animation-delay: 2s; } div.content .los img.ani_d3 { opacity: 0; animation-delay: 4s; } .flax_bot { display: none; } .hover_lasr { box-shadow: 0 0 20px 4px #fff; } .hover_first { animation-name: lux; animation-duration: 2s; animation-iteration-count: infinite; } .hover_lasr, .hover_first { width: 100%; height: 100%; position: absolute; top: 0; border-radius: 50%; z-index: 1; display: none; } .box-shad_cover {box-shadow: 0 0 41px 5px #fff !important;} .box-shad_butPlay {box-shadow: 0 0 20px 0px #fff;} .play, .pause { z-index: 9; position: relative; } @keyframes spin { 0% { -webkit-transform: rotate(0deg); transform:rotate(0deg); } 100% { -webkit-transform: rotate(180deg); transform:rotate(180deg); } } @keyframes nospin { 0% { -webkit-transform: rotate(180deg); transform:rotate(180deg); } 100% { -webkit-transform: rotate(0deg); transform:rotate(0deg); } } .rotate_news { animation-name: spin; animation-duration: .5s; -webkit-animation-iteration-count:1; -webkit-animation-fill-mode: forwards; } .norotate_news { animation-name: nospin; animation-duration: .5s; -webkit-animation-iteration-count:1; -webkit-animation-fill-mode: forwards; } @keyframes bordercolor { 0% { border-bottom: 1px solid rgba(255, 255, 255, 0); } 100% { border-bottom: 1px solid rgba(255, 255, 255, 0.51); } } div.news_open .butNews { border-bottom: 1px solid rgba(255, 255, 255, 0); animation-name: bordercolor; animation-duration: 1s; -webkit-animation-iteration-count:1; -webkit-animation-fill-mode: forwards; } @keyframes nobordercolor { 0% { border-bottom: 1px solid rgba(255, 255, 255, 0.51); } 100% { border-bottom: 1px solid rgba(255, 255, 255, 0); } } div.news_open.news_closer .butNews { border-bottom: 1px solid rgba(255, 255, 255, 0); animation-name: nobordercolor; animation-duration: 1s; -webkit-animation-iteration-count:1; -webkit-animation-fill-mode: forwards; } @keyframes menu_open { 0% { left: -60%; } 100% { left: 0%; } } #app .body_app div#menuApp.menu_open { animation-name: menu_open; animation-duration: .3s; -webkit-animation-iteration-count:1; -webkit-animation-fill-mode: forwards; } @keyframes menu_closer { 0% { left: 0%; } 100% { left: -65%; } } #app .body_app div#menuApp.menu_closer { animation-name: menu_closer; animation-duration: .3s; -webkit-animation-iteration-count:1; -webkit-animation-fill-mode: forwards; }
app/assets/style/animation.css
@keyframes example { from { width: 150px; opacity: 1; margin-top: 0px; } to { width: 300px; opacity: 0; margin-top: -75px; } } @keyframes lux { 0% { box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.63); } 50% { box-shadow: 0 0 60px 15px #fff ; } 100% { box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.63); } } @keyframes news { from { height: 62px; } to { height: calc(100% - 52px); } } @keyframes newsc { from { height: calc(100% - 52px); } to { height: 62px; } } .news_open { animation-name: news; animation-duration: .5s; -webkit-animation-iteration-count:1; -webkit-animation-fill-mode: forwards; } .news_closer { animation-name: newsc; animation-duration: .5s; -webkit-animation-iteration-count:1; -webkit-animation-fill-mode: forwards; } div.content .los img { animation-name: example; animation-duration: 3s; animation-iteration-count: infinite; } div.content .los img.ani_d2 { opacity: 0; animation-delay: 2s; } div.content .los img.ani_d3 { opacity: 0; animation-delay: 4s; } .flax_bot { display: none; } .hover_lasr { box-shadow: 0 0 20px 4px #fff; } .hover_first { animation-name: lux; animation-duration: 2s; animation-iteration-count: infinite; } .hover_lasr, .hover_first { width: 100%; height: 100%; position: absolute; top: 0; border-radius: 50%; z-index: 1; display: none; } .box-shad_cover {box-shadow: 0 0 41px 5px #fff !important;} .box-shad_butPlay {box-shadow: 0 0 20px 0px #fff;} .play, .pause { z-index: 9; position: relative; } @keyframes spin { 0% { -webkit-transform: rotate(0deg); transform:rotate(0deg); } 100% { -webkit-transform: rotate(180deg); transform:rotate(180deg); } } @keyframes nospin { 0% { -webkit-transform: rotate(180deg); transform:rotate(180deg); } 100% { -webkit-transform: rotate(0deg); transform:rotate(0deg); } } .rotate_news { animation-name: spin; animation-duration: .5s; -webkit-animation-iteration-count:1; -webkit-animation-fill-mode: forwards; } .norotate_news { animation-name: nospin; animation-duration: .5s; -webkit-animation-iteration-count:1; -webkit-animation-fill-mode: forwards; } @keyframes bordercolor { 0% { border-bottom: 1px solid rgba(255, 255, 255, 0); } 100% { border-bottom: 1px solid rgba(255, 255, 255, 0.51); } } div.news_open .butNews { border-bottom: 1px solid rgba(255, 255, 255, 0); animation-name: bordercolor; animation-duration: 1s; -webkit-animation-iteration-count:1; -webkit-animation-fill-mode: forwards; } @keyframes nobordercolor { 0% { border-bottom: 1px solid rgba(255, 255, 255, 0.51); } 100% { border-bottom: 1px solid rgba(255, 255, 255, 0); } } div.news_open.news_closer .butNews { border-bottom: 1px solid rgba(255, 255, 255, 0); animation-name: nobordercolor; animation-duration: 1s; -webkit-animation-iteration-count:1; -webkit-animation-fill-mode: forwards; } @keyframes menu_open { 0% { left: -60%; } 100% { left: 0%; } } #app .body_app div#menuApp.menu_open { animation-name: menu_open; animation-duration: .3s; -webkit-animation-iteration-count:1; -webkit-animation-fill-mode: forwards; } @keyframes menu_closer { 0% { left: 0%; } 100% { left: -65%; } } #app .body_app div#menuApp.menu_closer { animation-name: menu_closer; animation-duration: .3s; -webkit-animation-iteration-count:1; -webkit-animation-fill-mode: forwards; }
0.36557
0.09277