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
*{ font-family: Roboto; box-sizing: border-box; } body{ background-color: rgb(255, 255, 255); display:grid; grid-template-columns: 1fr 1fr; grid-template-rows: 100px 2fr 50px; grid-template-areas: 'header header' 'main section' 'footer footer'; height:100vh; margin: 0; } form.registro{ display:grid; grid-template-columns: 300px ; } form.login{ grid-area: form-registro; margin: 0 20px 40px 0; } .input-login{ margin: 40px 5px; outline:thick; border-radius: 4px; border: solid 1px rgb(190, 190, 190); font-family: Helvetica; font-weight: 500; height: 25px; padding: 7px; letter-spacing: 0.3px; } .input-btn{ background-color: rgb(0, 143, 187); border-radius: 7px; height:25px; width:50px; outline: none; border-style: none; color:#fff; border-color:transparent; cursor: pointer; } .input-registro{ margin-top: 10px; height:40px; outline: none; border: solid 1px rgb(190, 190, 190); padding: 10px; font-size: 15px; border-radius: 5px; font-family: Helvetica; } button{ height:40px; width:50%; border-radius: 15px; border-color: transparent; background-color: rgb(0, 143, 187); color:rgb(255, 255, 255); margin: 10px auto; outline: none; cursor: pointer; } header{ grid-area: header; display:flex; justify-content: space-between; background: linear-gradient(to bottom, #3A6073, #35cab6); } main{ grid-area:main; display:flex; flex-direction: column; justify-content: center; align-items: center; font-size: 2em; color: rgb(129, 129, 129) } section{ grid-area:section; display:grid; justify-content: center; } h3{ margin-top: 50px; color:rgb(141, 140, 140); font-size: 1.5em } footer{ grid-area: footer; background: linear-gradient(to top, rgb(85, 137, 163), #35cab6); color:#fff; display: flex; justify-content: flex-end; align-items: flex-end; } a{ text-decoration: none; color:#fff } .title{ font-weight: 900; font-family: Arial; margin-left: 20px; } label{ color:#fff; } @media (max-width:700px) { body{ background-color: rgb(255, 255, 255); display:grid; grid-template-columns: 100%; grid-template-rows: 200px 1fr 60px; grid-template-areas: 'header' 'section' 'footer'; margin: 0; height: 100vh; } header{ display: flex; flex-direction: column; justify-content: center; background: linear-gradient(to bottom, #3A6073, #35cab6); padding-top: 0; } main{ display: none; } .title{ margin-bottom: 15px; margin-top: 0; font-size: 1.7em; text-align: center; padding: 0; } h3{ margin-top: 20px; } form.registro{ grid-template-columns: 200px; } .input-registro{ margin-top:0; } form.login{ display: grid; justify-content: center; margin:0; } .input-login,.input-btn { margin: 5px auto; } .input-login{ width: 170px; } footer{ background: linear-gradient(to top, #3A6073, #35cab6) } .logout, .adicionar{ text-align: center; } .logout{ width:20%; align-self: center; } .title-contact{ padding: 0; font-size: 1.7em; text-align: center; } table{ font-size: 0.9em; } tr{ height: 20px; } section h3{ margin: 5px auto ; } } .error-msg{ color:#f00; font-weight: bold; } .success-msg{ color: rgba(3, 163, 3, 0.705); font-weight: bold; } .login-error, .session-error{ color:red; font-size: 1.1em; font-weight:bold; text-align: right; } .div-main{ font-weight: bolder; } .div-footer{ margin: 0 15px 15px 0; } .input-btn:hover,button:hover{ background-color: rgb(2, 116, 151) ; } .title-contact{ margin-left: 30px ; color:#fff } .header-contact{ grid-area: header-contact; background-color: rgb(123, 188, 221); display:flex; text-align: center; justify-content: space-between; } table{ grid-area: table-contact; margin-top: 40px; font-size: 1.2em; margin-left: 30px; margin-right: 20px; background-color: #35cab6; } thead tr{ font-weight: bold; height: 70px; text-align: center; width: 20%; } thead tr td{ color: black; border: none; margin:0; background-color:white; } tr{ height:40px; text-align: center; background-color: white } td{ color: rgb(46, 44, 44) } .editar a{ text-align: center; color:rgb(34, 109, 207) } .editar a:hover{ transition: 0.2s; color:blue } .excluir a{ color:rgb(223, 91, 91); text-align: center; } .excluir a:hover{ transition: 0.2s; color:red; } .body-contact{ display:grid; grid-template-rows: 100px 2fr 75px; grid-template-areas: 'header-contact header-contact' 'table-contact table-contact ' 'footer footer' ; } .adicionar{ color:green; width: 125px; } .adicionar:hover{ transition: 0.1s; color:rgb(6, 241, 6); } .logout{ color: red; font-weight: bold; margin: auto 30px; font-size: 1em; } .empty-contact{ color: rgb(129, 129, 129); display: flex; flex-direction: column; text-align: center; justify-content: center; align-items: center; width:100vw; } div h3{ font-size: 1.9em; } .section-form{ width: 100vw; display: grid; justify-content: center; } .body-form{ display: grid; grid-template-rows: 100px 2fr 75px; } .section-form form { display: grid; grid-template-columns: 300px; grid-template-rows: repeat(4,50px); } .header-form{ text-align: center; height: 100px; color:rgb(255, 255, 255) } .header-form h1{ margin: 10px; } .section-form form button{ background-color: rgb(255, 255, 255); color:black; border: solid 1.5px #35cab6 } .section-form form button:hover{ background-color:#35cab6 ; border:none; font-weight: bold; color:white; transition: 0.1s; } span{ color:rgb(233, 233, 233); font-weight: bold; font-size: 1.2em; margin: auto 10px; } div.errors{ margin: auto auto }
Node/frontend/assets/css/style.css
*{ font-family: Roboto; box-sizing: border-box; } body{ background-color: rgb(255, 255, 255); display:grid; grid-template-columns: 1fr 1fr; grid-template-rows: 100px 2fr 50px; grid-template-areas: 'header header' 'main section' 'footer footer'; height:100vh; margin: 0; } form.registro{ display:grid; grid-template-columns: 300px ; } form.login{ grid-area: form-registro; margin: 0 20px 40px 0; } .input-login{ margin: 40px 5px; outline:thick; border-radius: 4px; border: solid 1px rgb(190, 190, 190); font-family: Helvetica; font-weight: 500; height: 25px; padding: 7px; letter-spacing: 0.3px; } .input-btn{ background-color: rgb(0, 143, 187); border-radius: 7px; height:25px; width:50px; outline: none; border-style: none; color:#fff; border-color:transparent; cursor: pointer; } .input-registro{ margin-top: 10px; height:40px; outline: none; border: solid 1px rgb(190, 190, 190); padding: 10px; font-size: 15px; border-radius: 5px; font-family: Helvetica; } button{ height:40px; width:50%; border-radius: 15px; border-color: transparent; background-color: rgb(0, 143, 187); color:rgb(255, 255, 255); margin: 10px auto; outline: none; cursor: pointer; } header{ grid-area: header; display:flex; justify-content: space-between; background: linear-gradient(to bottom, #3A6073, #35cab6); } main{ grid-area:main; display:flex; flex-direction: column; justify-content: center; align-items: center; font-size: 2em; color: rgb(129, 129, 129) } section{ grid-area:section; display:grid; justify-content: center; } h3{ margin-top: 50px; color:rgb(141, 140, 140); font-size: 1.5em } footer{ grid-area: footer; background: linear-gradient(to top, rgb(85, 137, 163), #35cab6); color:#fff; display: flex; justify-content: flex-end; align-items: flex-end; } a{ text-decoration: none; color:#fff } .title{ font-weight: 900; font-family: Arial; margin-left: 20px; } label{ color:#fff; } @media (max-width:700px) { body{ background-color: rgb(255, 255, 255); display:grid; grid-template-columns: 100%; grid-template-rows: 200px 1fr 60px; grid-template-areas: 'header' 'section' 'footer'; margin: 0; height: 100vh; } header{ display: flex; flex-direction: column; justify-content: center; background: linear-gradient(to bottom, #3A6073, #35cab6); padding-top: 0; } main{ display: none; } .title{ margin-bottom: 15px; margin-top: 0; font-size: 1.7em; text-align: center; padding: 0; } h3{ margin-top: 20px; } form.registro{ grid-template-columns: 200px; } .input-registro{ margin-top:0; } form.login{ display: grid; justify-content: center; margin:0; } .input-login,.input-btn { margin: 5px auto; } .input-login{ width: 170px; } footer{ background: linear-gradient(to top, #3A6073, #35cab6) } .logout, .adicionar{ text-align: center; } .logout{ width:20%; align-self: center; } .title-contact{ padding: 0; font-size: 1.7em; text-align: center; } table{ font-size: 0.9em; } tr{ height: 20px; } section h3{ margin: 5px auto ; } } .error-msg{ color:#f00; font-weight: bold; } .success-msg{ color: rgba(3, 163, 3, 0.705); font-weight: bold; } .login-error, .session-error{ color:red; font-size: 1.1em; font-weight:bold; text-align: right; } .div-main{ font-weight: bolder; } .div-footer{ margin: 0 15px 15px 0; } .input-btn:hover,button:hover{ background-color: rgb(2, 116, 151) ; } .title-contact{ margin-left: 30px ; color:#fff } .header-contact{ grid-area: header-contact; background-color: rgb(123, 188, 221); display:flex; text-align: center; justify-content: space-between; } table{ grid-area: table-contact; margin-top: 40px; font-size: 1.2em; margin-left: 30px; margin-right: 20px; background-color: #35cab6; } thead tr{ font-weight: bold; height: 70px; text-align: center; width: 20%; } thead tr td{ color: black; border: none; margin:0; background-color:white; } tr{ height:40px; text-align: center; background-color: white } td{ color: rgb(46, 44, 44) } .editar a{ text-align: center; color:rgb(34, 109, 207) } .editar a:hover{ transition: 0.2s; color:blue } .excluir a{ color:rgb(223, 91, 91); text-align: center; } .excluir a:hover{ transition: 0.2s; color:red; } .body-contact{ display:grid; grid-template-rows: 100px 2fr 75px; grid-template-areas: 'header-contact header-contact' 'table-contact table-contact ' 'footer footer' ; } .adicionar{ color:green; width: 125px; } .adicionar:hover{ transition: 0.1s; color:rgb(6, 241, 6); } .logout{ color: red; font-weight: bold; margin: auto 30px; font-size: 1em; } .empty-contact{ color: rgb(129, 129, 129); display: flex; flex-direction: column; text-align: center; justify-content: center; align-items: center; width:100vw; } div h3{ font-size: 1.9em; } .section-form{ width: 100vw; display: grid; justify-content: center; } .body-form{ display: grid; grid-template-rows: 100px 2fr 75px; } .section-form form { display: grid; grid-template-columns: 300px; grid-template-rows: repeat(4,50px); } .header-form{ text-align: center; height: 100px; color:rgb(255, 255, 255) } .header-form h1{ margin: 10px; } .section-form form button{ background-color: rgb(255, 255, 255); color:black; border: solid 1.5px #35cab6 } .section-form form button:hover{ background-color:#35cab6 ; border:none; font-weight: bold; color:white; transition: 0.1s; } span{ color:rgb(233, 233, 233); font-weight: bold; font-size: 1.2em; margin: auto 10px; } div.errors{ margin: auto auto }
0.49048
0.099821
typography ===========================================*/ @import url("../../../../../css.css"); @font-face { font-family: amrFont; src: url("../fonts/Gilbert Bold-Preview_1004.otf"); } @font-face { font-family: amrFont; src: url("../fonts/Gilbert-Color Bold-Preview_1004.otf"); } /*========================================== section title ==========================================*/ .section-title { margin-bottom: 38px; margin-top: -19px; } .section-title.add-space { margin-bottom: 59px; } .section-title h2 { font-size: 72px; font-family: amrfont; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .section-title h2.remove-space { margin-bottom: 7px; } .title-acs { font-size: 24px; font-family: amrfont; -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .c-white { color: #fff; } /*========================================== Preloader ==========================================*/ .preloader { position: fixed; left: 0; top: 0; width: 100%; height: 100%; background: #020c16; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; z-index: 9999; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; z-index: 555; } .preloader:after { position: absolute; width: 100%; height: 100%; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .7; z-index: -1; left: 0; top: 0; content: ''; } .loader, .loader hr { -webkit-box-sizing: border-box; box-sizing: border-box; position: absolute; left: 0; right: 0; top: 50%; margin-top: -50px; bottom: 0; } .loader { width: 100px; height: 100px; font-size: 0; left: 50%; margin-left: -50px; border-radius: 50%; overflow: hidden; } .loader hr { border: 50px solid transparent; border-top-color: #fff; -webkit-animation: 1s spin infinite linear; animation: 1s spin infinite linear; opacity: 1; } .loader hr:nth-of-type(1) { opacity: 0.25; border-left-color: #fff; } .loader hr:nth-of-type(2) { animation-direction: reverse; -webkit-animation-duration: 2.5s; animation-duration: 2.5s; } @-webkit-keyframes spin { from { -webkit-transform: rotate(0deg); transform: rotate(0deg); } to { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes spin { from { -webkit-transform: rotate(0deg); transform: rotate(0deg); } to { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } /*========================================== scroll to top button ==========================================*/ .scroll-to-top { position: fixed; right: 50px; bottom: 80px; display: inline-block; z-index: 9; width: 40px; height: 40px; background: #052157; border: 2px solid #fff; text-align: center; } .scroll-to-top a { text-decoration: none; font-family: 'Lato', sans-serif; font-weight: 900; cursor: pointer; font-size: 24px; color: #fff; padding: 2px 0 0px 0; display: inline-block; } .scroll-to-top a i { color: #fff; } /*========================================== normalize ==========================================*/ html { font-family: "Open Sans", sans-serif; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; overflow-x: hidden; } body { font-family: "Open Sans", sans-serif; font-size: 16px; margin: 0; color: #3d5169; overflow-x: hidden; } h1, h2, h3, h4, h5, h6, a { line-height: 1.3; } h1, h2, h3, h4, h5, h6 { font-family: "Poppins", sans-serif; } p { line-height: 1.6; font-family: "Open Sans", sans-serif; } a { color: #101830; text-decoration: none; } a, a:hover, a:focus, a:active { text-decoration: none; outline: none; } a i { padding: 0 2px; } img { max-width: 100%; } /*input and button type focus outline disable*/ input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="number"]:focus, textarea:focus, input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus, select:focus { outline: none; -webkit-box-shadow: none; box-shadow: none; border: 1px solid #ddd; } /** * 5.0 - Alignments */ .alignleft { float: left; } .alignright { float: right; } .aligncenter { clear: both; display: block; margin: 0 auto 1.75em; } ul { margin: 0; padding: 0; list-style: none; } /*========================================== Header ==========================================*/ .header { position: absolute; left: 0; top: 0; z-index: 55; width: 100%; border-bottom: 1px solid rgba(255, 255, 255, 0.2); } .header .logo a { display: inline-block; } .header .mainmenu .navbar { padding: 0; float: right; } .header .mainmenu .navbar .navbar-nav .nav-item .nav-link { padding: 31px 0; font-family: "Poppins", sans-serif; font-size: 14px; font-weight: 500; margin-right: 30px; color: #fff; position: relative; } .header .mainmenu .navbar .navbar-nav .nav-item .nav-link:before { position: absolute; content: ''; width: 0px; height: 0px; left: 50%; top: 50%; -webkit-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg); margin-top: -2px; border-radius: 50%; margin-left: -25px; opacity: 0; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); } .header .mainmenu .navbar .navbar-nav .nav-item .nav-link:hover:before, .header .mainmenu .navbar .navbar-nav .nav-item .nav-link.active:before { width: 50px; height: 4px; -webkit-transform: rotate(30deg); -ms-transform: rotate(30deg); transform: rotate(30deg); opacity: .8; } .header .mainmenu .navbar .navbar-nav .nav-item:last-child .nav-link { margin-right: 0px; } /*========================================== breadcrump ==========================================*/ .breadcrump { background: url("../img/breadcrump-bg.jpg") center center no-repeat; background-size: cover; position: relative; z-index: 2; } .breadcrump:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: #03111e; z-index: -1; opacity: .88; } .breadcrump .breadcrump-content { margin-top: 81px; padding: 27px 0 26px; } .breadcrump .breadcrump-content span { display: inline-block; color: #bbb; font-size: 18px; text-transform: capitalize; font-weight: 500; margin-right: 10px; } /*========================================== banner ==========================================*/ .banner { background: #01151d; background-size: cover; position: relative; z-index: 2; } .banner:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: #01151d; opacity: .88; z-index: -1; } .banner .banner-content { display: inline-block; text-align: center; padding: 150px 0 50px; } .banner .banner-content h1 { font-family: amrFont; font-size: 100px; background-image: -webkit-gradient(linear, left top, right top, from(#f4627c), to(#b439a8)); background-image: -webkit-linear-gradient(left, #f4627c, #b439a8); background-image: -o-linear-gradient(left, #f4627c, #b439a8); background-image: linear-gradient(to right, #f4627c, #b439a8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 23px; } .banner .banner-content h4 { color: #fff; text-transform: uppercase; letter-spacing: 8px; text-align: right; } .banner .banner-bottom { position: relative; z-index: 2; } .banner .banner-bottom:after { position: absolute; content: ''; left: 0; top: 20px; bottom: 0; width: 999999px; background: #730049; opacity: .3; z-index: -1; } .banner .banner-bottom .promo-video { margin-top: 20px; } .banner .banner-bottom .promo-video .part-icon { background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); width: 75px; height: 75px; border: 15px solid #1e2f38; border-radius: 50%; line-height: 45px; font-size: 14px; text-align: center; float: left; margin-right: 20px; } .banner .banner-bottom .promo-video .part-icon a { color: #fff; } .banner .banner-bottom .promo-video .part-text { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; height: 75px; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .banner .banner-bottom .promo-video .part-text h3 { font-size: 24px; font-weight: 500; text-transform: uppercase; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 3px; } .banner .banner-bottom .promo-video .part-text span.intro { display: inline-block; font-weight: 500; color: #fff; } .banner .banner-bottom .banner-buttons { text-align: right; width: 100%; margin-top: 26px; } .banner .banner-bottom .banner-buttons a { display: inline-block; height: 60px; width: 160px; border-radius: 5px; position: relative; font-weight: 600; text-transform: capitalize; color: #fff; line-height: 60px; text-align: center; z-index: 2; overflow: hidden; } .banner .banner-bottom .banner-buttons a:after { position: absolute; content: ''; left: 0; top: 0; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); width: 100%; height: 100%; z-index: -2; } .banner .banner-bottom .banner-buttons a:before { background: #0b1e1d; position: absolute; content: ''; left: 2px; top: 2px; right: 2px; bottom: 2px; z-index: -1; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; } .banner .banner-bottom .banner-buttons a:last-child { margin-left: 16px; } .banner .banner-bottom .banner-buttons a:last-child:before { opacity: 1; } .banner .banner-bottom .banner-buttons a:last-child:hover:before { opacity: 0; } .banner .banner-bottom .banner-buttons a:first-child:before { opacity: 0; } .banner .banner-bottom .banner-buttons a:first-child:hover:before { opacity: 1; } /*========================================== countdown ==========================================*/ .countdown { padding: 120px 0; position: relative; z-index: 2; background: #0a131f; } .countdown:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: url("../img/countdown.png") center bottom no-repeat; background-size: 100%; opacity: .04; z-index: -1; } .countdown.event-page { background: #020c16; } .countdown .countdown-title h2 { font-size: 72px; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-family: amrfont; margin: 0; line-height: 57px; } .countdown .part-countdown { text-align: right; } .countdown .part-countdown .timer { display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; } .countdown .part-countdown .timer .single-count { padding: 14px 0 23px; display: inline-block; width: 120px; text-align: center; margin-right: 11px; position: relative; border-radius: 5px; overflow: hidden; } .countdown .part-countdown .timer .single-count:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .15; } .countdown .part-countdown .timer .single-count:last-child { margin-right: 0; } .countdown .part-countdown .timer .single-count span { display: block; color: #fff; } .countdown .part-countdown .timer .single-count span.day, .countdown .part-countdown .timer .single-count span.hour, .countdown .part-countdown .timer .single-count span.minute, .countdown .part-countdown .timer .single-count span.second { font-size: 40px; font-weight: 300; } .countdown .part-countdown .timer .single-count span.title { font-size: 18px; font-weight: 500; text-transform: capitalize; } /*========================================== about ==========================================*/ .about { padding: 120px 0; position: relative; z-index: 2; background: #020c16; } .about:after { position: absolute; background: url("../img/about.png") right bottom no-repeat; background-size: cover; content: ''; left: 0; top: 0; width: 100%; height: 100%; opacity: .04; z-index: -1; } .about .about-area { background: url("../img/about-bg.jpg") center center no-repeat; background-size: cover; } .about .about-area .part-text { display: -ms-inline-grid; display: inline-grid; background: rgba(3, 17, 30, 0.97); padding: 60px; } .about .about-area .part-text h2 { font-size: 72px; font-family: amrfont; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-text-fill-color: transparent; -webkit-background-clip: text; margin-bottom: 10px; margin-top: -16px; } .about .about-area .part-text p { font-size: 16px; line-height: 28px; color: #bbb; } .about .about-area .part-text a { display: inline-block; height: 60px; width: 160px; border-radius: 5px; position: relative; font-weight: 600; text-transform: capitalize; color: #fff; line-height: 60px; text-align: center; z-index: 2; overflow: hidden; margin-top: 29px; } .about .about-area .part-text a:after { position: absolute; content: ''; left: 0; top: 0; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); width: 100%; height: 100%; z-index: -2; } .about .about-area .part-text a:before { background: #0b1e1d; position: absolute; content: ''; left: 2px; top: 2px; right: 2px; bottom: 2px; z-index: -1; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; border-radius: 5px; } .about .about-area .part-text a:before { opacity: 0; } .about .about-area .part-text a:hover:before { opacity: 1; } /*========================================== event schedule ==========================================*/ .event-schedule { padding: 120px 0; background: #0a131f; z-index: 2; position: relative; } .event-schedule:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: url("../img/event-bg.png") left bottom no-repeat; background-size: 100%; z-index: -1; opacity: .04; } .event-schedule .nav.nav-pills { background: #151124; border-radius: 5px; overflow: hidden; } .event-schedule .nav.nav-pills .nav-link { color: #fff; font-size: 20px; font-weight: 600; padding: 25px 30px 26px; border-radius: 0 !important; position: relative; border-radius: 5px; opacity: .9; } .event-schedule .nav.nav-pills .nav-link.active { opacity: 1; } .event-schedule .nav.nav-pills .nav-link.active span.month-count { opacity: 1; } .event-schedule .nav.nav-pills .nav-link:after { position: absolute; content: ''; left: 0; top: 0; height: 1px; width: 100%; opacity: .5; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); } .event-schedule .nav.nav-pills .nav-link.active { background-image: -webkit-linear-gradient(0deg, #a730b2 0%, #d34d94 56%, #ff6975 100%); } .event-schedule .nav.nav-pills .nav-link.active:after { display: none; } .event-schedule .nav.nav-pills .nav-link:first-child:after { display: none; } .event-schedule .nav.nav-pills .nav-link span { display: block; } .event-schedule .nav.nav-pills .nav-link span.month-count { font-size: 15px; color: #fff; font-weight: 500; margin-top: 10px; opacity: .7; } .event-schedule .tab-content #accordion, .event-schedule .tab-content #accordion2, .event-schedule .tab-content #accordion3, .event-schedule .tab-content #accordion4 { border-radius: 5px; overflow: hidden; } .event-schedule .tab-content #accordion .card, .event-schedule .tab-content #accordion2 .card, .event-schedule .tab-content #accordion3 .card, .event-schedule .tab-content #accordion4 .card { border-radius: 0 !important; border: none; position: relative; z-index: 2; background: #1e1622; } .event-schedule .tab-content #accordion .card:last-child .card-header.collapsed:after, .event-schedule .tab-content #accordion2 .card:last-child .card-header.collapsed:after, .event-schedule .tab-content #accordion3 .card:last-child .card-header.collapsed:after, .event-schedule .tab-content #accordion4 .card:last-child .card-header.collapsed:after { display: none; } .event-schedule .tab-content #accordion .card:after, .event-schedule .tab-content #accordion2 .card:after, .event-schedule .tab-content #accordion3 .card:after, .event-schedule .tab-content #accordion4 .card:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .05; z-index: -1; } .event-schedule .tab-content #accordion .card .card-header, .event-schedule .tab-content #accordion2 .card .card-header, .event-schedule .tab-content #accordion3 .card .card-header, .event-schedule .tab-content #accordion4 .card .card-header { border-radius: 0 !important; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; padding: 30px 30px 25px; display: flow-root; border: none; background: transparent; } .event-schedule .tab-content #accordion .card .card-header.collapsed, .event-schedule .tab-content #accordion2 .card .card-header.collapsed, .event-schedule .tab-content #accordion3 .card .card-header.collapsed, .event-schedule .tab-content #accordion4 .card .card-header.collapsed { background: #1b1521; position: relative; padding: 30px 30px 29px; } .event-schedule .tab-content #accordion .card .card-header.collapsed:after, .event-schedule .tab-content #accordion2 .card .card-header.collapsed:after, .event-schedule .tab-content #accordion3 .card .card-header.collapsed:after, .event-schedule .tab-content #accordion4 .card .card-header.collapsed:after { position: absolute; content: ''; left: 0; bottom: 0; width: 100%; height: 1px; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .4; } .event-schedule .tab-content #accordion .card .card-header.collapsed .part-text:after, .event-schedule .tab-content #accordion2 .card .card-header.collapsed .part-text:after, .event-schedule .tab-content #accordion3 .card .card-header.collapsed .part-text:after, .event-schedule .tab-content #accordion4 .card .card-header.collapsed .part-text:after { display: none; } .event-schedule .tab-content #accordion .card .card-header.collapsed .part-text h3, .event-schedule .tab-content #accordion2 .card .card-header.collapsed .part-text h3, .event-schedule .tab-content #accordion3 .card .card-header.collapsed .part-text h3, .event-schedule .tab-content #accordion4 .card .card-header.collapsed .part-text h3 { margin: 7px 0 9px; } .event-schedule .tab-content #accordion .card .card-header .part-text, .event-schedule .tab-content #accordion2 .card .card-header .part-text, .event-schedule .tab-content #accordion3 .card .card-header .part-text, .event-schedule .tab-content #accordion4 .card .card-header .part-text { display: table; position: relative; } .event-schedule .tab-content #accordion .card .card-header .part-text:after, .event-schedule .tab-content #accordion2 .card .card-header .part-text:after, .event-schedule .tab-content #accordion3 .card .card-header .part-text:after, .event-schedule .tab-content #accordion4 .card .card-header .part-text:after { position: absolute; content: ''; left: 0; bottom: -14px; width: 100%; height: 0px; border-top: 1px dotted rgba(255, 255, 255, 0.2); } .event-schedule .tab-content #accordion .card .card-header .part-text span.time, .event-schedule .tab-content #accordion .card .card-header .part-text span.location, .event-schedule .tab-content #accordion2 .card .card-header .part-text span.time, .event-schedule .tab-content #accordion2 .card .card-header .part-text span.location, .event-schedule .tab-content #accordion3 .card .card-header .part-text span.time, .event-schedule .tab-content #accordion3 .card .card-header .part-text span.location, .event-schedule .tab-content #accordion4 .card .card-header .part-text span.time, .event-schedule .tab-content #accordion4 .card .card-header .part-text span.location { color: #7b7b7b; font-size: 15px; margin-right: 20px; } .event-schedule .tab-content #accordion .card .card-header .part-text span.time i, .event-schedule .tab-content #accordion .card .card-header .part-text span.location i, .event-schedule .tab-content #accordion2 .card .card-header .part-text span.time i, .event-schedule .tab-content #accordion2 .card .card-header .part-text span.location i, .event-schedule .tab-content #accordion3 .card .card-header .part-text span.time i, .event-schedule .tab-content #accordion3 .card .card-header .part-text span.location i, .event-schedule .tab-content #accordion4 .card .card-header .part-text span.time i, .event-schedule .tab-content #accordion4 .card .card-header .part-text span.location i { margin-right: 6px; } .event-schedule .tab-content #accordion .card .card-header .part-text h3, .event-schedule .tab-content #accordion2 .card .card-header .part-text h3, .event-schedule .tab-content #accordion3 .card .card-header .part-text h3, .event-schedule .tab-content #accordion4 .card .card-header .part-text h3 { color: #fff; font-weight: 500; font-size: 24px; opacity: .8; margin: -4px 0 9px; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; } .event-schedule .tab-content #accordion .card .card-header .part-img, .event-schedule .tab-content #accordion2 .card .card-header .part-img, .event-schedule .tab-content #accordion3 .card .card-header .part-img, .event-schedule .tab-content #accordion4 .card .card-header .part-img { width: 80px; height: 80px; border-radius: 50%; margin-right: 30px; float: left; position: relative; z-index: 2; } .event-schedule .tab-content #accordion .card .card-header .part-img:after, .event-schedule .tab-content #accordion2 .card .card-header .part-img:after, .event-schedule .tab-content #accordion3 .card .card-header .part-img:after, .event-schedule .tab-content #accordion4 .card .card-header .part-img:after { position: absolute; content: ''; left: -2px; top: -2px; bottom: -2px; right: -2px; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); z-index: -1; border-radius: 50%; } .event-schedule .tab-content #accordion .card .card-header .part-img img, .event-schedule .tab-content #accordion2 .card .card-header .part-img img, .event-schedule .tab-content #accordion3 .card .card-header .part-img img, .event-schedule .tab-content #accordion4 .card .card-header .part-img img { width: 100%; height: 100%; border: 4px solid #1b1521; border-radius: 50%; } .event-schedule .tab-content #accordion .card .card-body, .event-schedule .tab-content #accordion2 .card .card-body, .event-schedule .tab-content #accordion3 .card .card-body, .event-schedule .tab-content #accordion4 .card .card-body { padding: 0 30px 27px 140px; } .event-schedule .tab-content #accordion .card .card-body p, .event-schedule .tab-content #accordion2 .card .card-body p, .event-schedule .tab-content #accordion3 .card .card-body p, .event-schedule .tab-content #accordion4 .card .card-body p { color: #bbb; font-size: 16px; line-height: 28px; margin-top: -6px; } .event-schedule .tab-content #accordion .card .card-body span.name, .event-schedule .tab-content #accordion2 .card .card-body span.name, .event-schedule .tab-content #accordion3 .card .card-body span.name, .event-schedule .tab-content #accordion4 .card .card-body span.name { display: inline-block; font-size: 20px; font-weight: 600; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-text-fill-color: transparent; -webkit-background-clip: text; } /*========================================== gallery ==========================================*/ .gallery { padding: 120px 0 90px; background: #020c16; z-index: 2; position: relative; } .gallery:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: url("../img/gallery.png") right bottom no-repeat; background-size: 100%; z-index: -1; opacity: .04; } .gallery .single-img { margin-bottom: 30px; border-radius: 5px; overflow: hidden; position: relative; } .gallery .single-img img { width: 100%; } .gallery .single-img .hover-effect { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; z-index: 2; } .gallery .single-img .hover-effect:hover:after { left: 0; top: 0; } .gallery .single-img .hover-effect:hover:before { right: 0; bottom: 0; } .gallery .single-img .hover-effect:hover a { opacity: 1; visibility: visible; } .gallery .single-img .hover-effect:after { position: absolute; content: ''; left: -100%; top: -100%; width: 100%; height: 100%; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .6; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; z-index: -1; } .gallery .single-img .hover-effect:before { position: absolute; content: ''; right: -100%; bottom: -100%; width: 100%; height: 100%; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .6; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; z-index: -1; } .gallery .single-img .hover-effect a { display: inline-block; font-size: 20px; color: #d34d94; height: 50px; width: 50px; border: 1px solid #fff; line-height: 50px; text-align: center; border-radius: 50%; background-color: #fff; -webkit-transition: 1s; -moz-transition: 1s; -o-transition: 1s; transition: 1s; opacity: 0; visibility: hidden; } .gallery .single-img .hover-effect a:hover { background-color: transparent; color: #fff; } /*========================================== team dj ==========================================*/ .team-dj { padding: 120px 0; background: #0a131f; z-index: 2; position: relative; } .team-dj:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: url("../img/dj-bg.png") left bottom no-repeat; background-size: 100%; z-index: -1; opacity: .04; } .team-dj.top-dj-page { padding-bottom: 90px; background: #020c16; } .team-dj.top-dj-page .single-dj { margin-bottom: 30px; } .team-dj .single-dj .part-img { position: relative; border-radius: 5px; overflow: hidden; } .team-dj .single-dj .part-img img { width: 100%; } .team-dj .single-dj .part-img .hover-effect { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; z-index: 2; } .team-dj .single-dj .part-img .hover-effect:hover:after { left: 0; top: 0; } .team-dj .single-dj .part-img .hover-effect:hover:before { right: 0; bottom: 0; } .team-dj .single-dj .part-img .hover-effect:hover a { opacity: 1; visibility: visible; } .team-dj .single-dj .part-img .hover-effect:after { position: absolute; content: ''; left: -100%; top: -100%; width: 100%; height: 100%; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .6; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; z-index: -1; } .team-dj .single-dj .part-img .hover-effect:before { position: absolute; content: ''; right: -100%; bottom: -100%; width: 100%; height: 100%; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .6; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; z-index: -1; } .team-dj .single-dj .part-img .hover-effect a { display: inline-block; font-size: 20px; color: #d34d94; height: 50px; width: 50px; border: 1px solid #fff; line-height: 50px; text-align: center; border-radius: 50%; background-color: #fff; -webkit-transition: 1s; -moz-transition: 1s; -o-transition: 1s; transition: 1s; opacity: 0; visibility: hidden; margin-bottom: 10px; } .team-dj .single-dj .part-img .hover-effect a:last-child { margin-bottom: 0; } .team-dj .single-dj .part-img .hover-effect a:hover { background-color: transparent; color: #fff; } /*========================================== about venu ==========================================*/ .about-venu { padding: 180px 0 120px; background: #020c16; z-index: 2; position: relative; } .about-venu:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: url("../img/venu-bg.png") right bottom no-repeat; background-size: 100%; z-index: -1; opacity: .04; } .about-venu .part-img { border-radius: 5px; overflow: hidden; height: 611px; margin-top: -60px; } .about-venu .part-img img { width: 100%; height: auto; } .about-venu .part-text { display: -ms-inline-grid; display: inline-grid; background: #20152a; padding: 60px 60px 60px 30px; border-radius: 0 5px 5px 0; position: relative; } .about-venu .part-text:after { position: absolute; content: ''; right: 100%; top: 0; width: 50%; height: 100%; background: #20152a; z-index: -1; border-radius: 0 0 0 5px; } .about-venu .part-text h3 { font-size: 72px; font-family: amrfont; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-text-fill-color: transparent; -webkit-background-clip: text; margin-bottom: 10px; margin-top: -19px; } .about-venu .part-text p { font-size: 16px; line-height: 28px; color: #bbb; } .about-venu .part-text a { display: inline-block; height: 60px; width: 160px; border-radius: 5px; position: relative; font-weight: 600; text-transform: capitalize; color: #fff; line-height: 60px; text-align: center; z-index: 2; overflow: hidden; margin-top: 29px; } .about-venu .part-text a:after { position: absolute; content: ''; left: 0; top: 0; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); width: 100%; height: 100%; z-index: -2; } .about-venu .part-text a:before { background: #20152a; position: absolute; content: ''; left: 2px; top: 2px; right: 2px; bottom: 2px; z-index: -1; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; } .about-venu .part-text a:before { opacity: 0; } .about-venu .part-text a:hover:before { opacity: 1; } /*========================================== ticket price ==========================================*/ .ticket-price { background: #0a131f; padding: 120px 0 90px; z-index: 2; position: relative; } .ticket-price:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: url("../img/ticket-bg.png") left bottom no-repeat; background-size: 100%; z-index: -1; opacity: .04; } .ticket-price .single-ticket-price { padding: 47px 40px 50px; position: relative; border-radius: 5px; overflow: hidden; z-index: 2; margin-bottom: 30px; } .ticket-price .single-ticket-price:hover:after { opacity: .15; } .ticket-price .single-ticket-price:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; z-index: -1; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .1; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; } .ticket-price .single-ticket-price .part-feature span.price { font-size: 62px; font-family: amrfont; position: relative; display: inline-block; line-height: 50px; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-text-fill-color: transparent; -webkit-background-clip: text; margin-left: 15.19px; } .ticket-price .single-ticket-price .part-feature span.price:after { position: absolute; content: '$'; right: 100%; bottom: 0; font-size: 30px; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-text-fill-color: transparent; -webkit-background-clip: text; font-family: amrfont; line-height: 30px; } .ticket-price .single-ticket-price .part-feature h3 { font-size: 24px; font-weight: 500; color: #f3f3f3; opacity: .9; margin: 29px 0 23px; } .ticket-price .single-ticket-price .part-feature ul li { font-size: 15px; font-weight: 400; color: #bbb; margin-bottom: 10px; } .ticket-price .single-ticket-price .part-feature ul li span.text { line-height: 25px; position: absolute; margin-left: 10px; } .ticket-price .single-ticket-price .part-feature ul li span.icon { display: inline-block; width: 20px; height: 20px; position: relative; border-radius: 50%; overflow: hidden; z-index: 2; line-height: 20px; text-align: center; font-size: 10px; opacity: .9; } .ticket-price .single-ticket-price .part-feature ul li span.icon:after { background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; z-index: -1; opacity: .95; } .ticket-price .single-ticket-price .part-button { display: -webkit-box; display: -ms-flexbox; display: flex; } .ticket-price .single-ticket-price .part-button a { display: inline-block; height: 50px; width: 160px; border-radius: 5px; position: relative; font-weight: 600; text-transform: capitalize; color: #fff; line-height: 50px; text-align: center; z-index: 2; overflow: hidden; margin-top: 25px; } .ticket-price .single-ticket-price .part-button a:after { position: absolute; content: ''; left: 0; top: 0; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); width: 100%; height: 100%; z-index: -2; } .ticket-price .single-ticket-price .part-button a:before { background: #20152a; position: absolute; content: ''; left: 2px; top: 2px; right: 2px; bottom: 2px; z-index: -1; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; } .ticket-price .single-ticket-price .part-button a:before { opacity: 0; } .ticket-price .single-ticket-price .part-button a:hover:before { opacity: 1; } /*========================================== blog ==========================================*/ .blog { padding: 120px 0 70px; background: #020c16; z-index: 2; position: relative; } .blog:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: url("../img/blog-bg.png") right bottom no-repeat; background-size: 100%; z-index: -1; opacity: .04; } .blog.blog-details { padding-bottom: 120px; } .blog.blog-details .single-blog .part-img { margin-bottom: 30px; } .blog .single-blog { margin-bottom: 50px; } .blog .single-blog .part-img { border-radius: 5px; overflow: hidden; position: relative; } .blog .single-blog .part-img img { width: 100%; } .blog .single-blog .part-img .date-on-img { position: absolute; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); top: 0; left: 0; padding: 20px 30px 21px; border-radius: 5px 0; } .blog .single-blog .part-img .date-on-img span.date { color: #fff; font-weight: 500; font-size: 24px; text-transform: uppercase; display: inline-block; } .blog .single-blog .part-text h3 { font-size: 24px; font-weight: 500; color: #f3f3f3; margin-bottom: 23px; margin-top: -5px; } .blog .single-blog .part-text p { font-size: 16px; line-height: 28px; color: #bbb; margin-bottom: 17px; } .blog .single-blog .part-text p.last-line { margin-bottom: auto; } .blog .single-blog .part-text p a { display: inline-block; font-weight: 600; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-text-fill-color: transparent; -webkit-background-clip: text; margin-left: 5px; } .blog .single-blog .part-text span { display: block; color: #fff; font-size: 14px; } .blog .single-blog .part-text span.poster { font-size: 16px; position: relative; margin-left: 23px; margin-bottom: 3px; margin-top: 41px; } .blog .single-blog .part-text span.poster:after { position: absolute; content: 'by'; right: 100%; bottom: 0; color: #aaa; margin-right: 5px; } .blog .single-blog .part-text span.poster:before { position: absolute; content: ''; left: 0; top: -18px; bottom: 100%; margin-left: -23px; width: 200px; height: 2px; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); } .blog .single-blog .part-text span.date { opacity: 1; color: #bbb; } /*========================================== testimonial ==========================================*/ .testimonial { padding: 120px 0; background: #0a131f; z-index: 2; position: relative; } .testimonial.event-page { background: #020c16; } .testimonial:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: url("../img/testimonial-bg.png") left bottom no-repeat; background-size: 100%; z-index: -1; opacity: .04; } .testimonial .single-testimonial { border-radius: 5px; overflow: hidden; position: relative; z-index: 2; } .testimonial .single-testimonial:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); height: 100%; opacity: .15; z-index: -1; } .testimonial .single-testimonial .part-img { width: 100%; height: 100%; overflow: hidden; background: url("../img/testimonial-1.jpg") center center no-repeat; background-size: cover; border-radius: 5px; } .testimonial .single-testimonial .part-img.two { background: url("../img/testimonial-2.jpg") center center no-repeat; background-size: cover; } .testimonial .single-testimonial .part-text { padding: 30px; } .testimonial .single-testimonial .part-text .bio { padding-bottom: 14px; position: relative; margin-bottom: 11px; } .testimonial .single-testimonial .part-text .bio:after { position: absolute; content: ''; left: 0; bottom: 0; width: 200px; height: 1px; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); } .testimonial .single-testimonial .part-text .bio span { display: block; } .testimonial .single-testimonial .part-text .bio span.name { margin-top: -9px; font-size: 24px; font-weight: 600; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-text-fill-color: transparent; -webkit-background-clip: text; margin-bottom: 2px; } .testimonial .single-testimonial .part-text .bio span.position { font-size: 14px; color: #fff; } .testimonial .single-testimonial .part-text .social { margin-bottom: 18px; } .testimonial .single-testimonial .part-text .social a { color: #bbb; display: inline-block; margin-right: 13px; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; } .testimonial .single-testimonial .part-text .social a:hover { color: #a730b2; opacity: 1; } .testimonial .single-testimonial .part-text .text p { margin-bottom: -5px; color: #bbb; line-height: 27px; font-size: 15px; } /*========================================== faq ==========================================*/ .faq { padding: 120px 0; background: #020c16; z-index: 2; position: relative; } .faq:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: url("../img/faq-bg.png") right bottom no-repeat; background-size: 100%; z-index: -1; opacity: .04; } .faq.about-page { background: #0a131f; } .faq .accordion .card, .faq .accordion2 .card { background: transparent; position: relative; z-index: 2; } .faq .accordion .card:after, .faq .accordion2 .card:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; z-index: -1; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .1; } .faq .accordion .card .card-header, .faq .accordion2 .card .card-header { padding: 0; border: none; } .faq .accordion .card .card-header h5, .faq .accordion2 .card .card-header h5 { margin: 0; } .faq .accordion .card .card-header h5 button, .faq .accordion2 .card .card-header h5 button { width: 100%; text-align: left; padding: 0; background: transparent; text-decoration: none; border: none; color: #f3f3f3; font-size: 20px; font-weight: 600; opacity: .85; padding: 24px 30px 15px; position: relative; z-index: 2; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .faq .accordion .card .card-header h5 button:before, .faq .accordion2 .card .card-header h5 button:before { position: absolute; right: 30px; top: 50%; margin-top: -10px; background-color: transparent; color: #fff; text-align: center; content: '\f067'; font-size: 16px; line-height: 18px; font-family: "Font Awesome 5 Free"; font-weight: 900; margin-top: -9px; } .faq .accordion .card .card-header h5 button.collapsed, .faq .accordion2 .card .card-header h5 button.collapsed { padding: 15px 30px; background-image: -webkit-linear-gradient(0deg, #ffffff 0%, #ffffff 56%, #ffffff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .faq .accordion .card .card-header h5 button.collapsed:after, .faq .accordion2 .card .card-header h5 button.collapsed:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; z-index: -1; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .1; } .faq .accordion .card .card-body, .faq .accordion2 .card .card-body { font-size: 16px; line-height: 28px; color: #bbb; padding: 6px 30px 24px; } .faq .accordion .card .card-header h5 button[aria-expanded="true"]:before, .faq .accordion2 .card .card-header h5 button[aria-expanded="true"]:before { content: '\f068'; margin-top: -4px; } /*========================================== subscribe newsletter ==========================================*/ .subscribe-newsletter { padding: 120px 0; background: #0a131f; z-index: 2; position: relative; } .subscribe-newsletter:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: url("../img/subscribe-newsletter-bg.png") left bottom no-repeat; background-size: 100%; z-index: -1; opacity: .04; } .subscribe-newsletter.about-page { background: #020c16; } .subscribe-newsletter .form .newsletter-form { position: relative; } .subscribe-newsletter .form .newsletter-form:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); height: 100%; z-index: -1; opacity: .15; } input .form-qwe { border: 12px solid white; border-radius: 4px; } .subscribe-newsletter .form .newsletter-form input.newsletter-input { height: 60px; padding: 0px 190px 0px 30px; border: none; outline: none; color: #fff; width: 100%; z-index: 2; background: transparent; } .subscribe-newsletter .form .newsletter-form input.newsletter-input::-webkit-input-placeholder { opacity: .75; color: #fff; } .subscribe-newsletter .form .newsletter-form input.newsletter-input:-ms-input-placeholder { opacity: .75; color: #fff; } .subscribe-newsletter .form .newsletter-form input.newsletter-input::-ms-input-placeholder { opacity: .75; color: #fff; } .subscribe-newsletter .form .newsletter-form input.newsletter-input::placeholder { opacity: .75; color: #fff; } .subscribe-newsletter .form .newsletter-form button { background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); height: 100%; position: absolute; border: none; color: #fff; font-weight: 500; top: 0; right: 0; width: 160px; cursor: pointer; } /*========================================== contact ==========================================*/ .contact { padding: 120px 0; background: #020c16; z-index: 2; position: relative; } .contact:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: url("../img/contact-bg.png") right bottom no-repeat; background-size: 100%; z-index: -1; opacity: .04; } .contact .contact-form form input { width: 100%; height: 60px; padding: 0 30px; color: #fff; opacity: .85; border: none; background: none; position: relative; z-index: 2; margin-bottom: 30px; border-radius: 5px; } .contact .contact-form form input::-webkit-input-placeholder { color: #bbb; } .contact .contact-form form input:-ms-input-placeholder { color: #bbb; } .contact .contact-form form input::-ms-input-placeholder { color: #bbb; } .contact .contact-form form input::placeholder { color: #bbb; } .contact .contact-form form span { display: block; position: absolute; content: ''; left: 15px; top: 0; right: 15px; height: 60px; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .15; z-index: -1; border-radius: 5px; } .contact .contact-form form span.textarea { height: 200px; } .contact .contact-form form textarea { width: 100%; height: 200px; background: none; border: none; padding: 15px 30px; color: #fff; opacity: .85; border-radius: 5px; resize: none; } .contact .contact-form form textarea::-webkit-input-placeholder { color: #bbb; } .contact .contact-form form textarea:-ms-input-placeholder { color: #bbb; } .contact .contact-form form textarea::-ms-input-placeholder { color: #bbb; } .contact .contact-form form textarea::placeholder { color: #bbb; } .contact .contact-form form button { height: 60px; width: 100%; color: #fff; background: transparent; font-weight: 500; border: none; border-radius: 5px; z-index: 2; position: relative; overflow: hidden; margin-top: 35px; outline: none; } .contact .contact-form form button:after { position: absolute; content: ''; left: 0; top: 0; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); width: 100%; height: 100%; z-index: -2; border-radius: 5px; } .contact .contact-form form button:before { background: #20152a; position: absolute; content: ''; left: 2px; border-radius: 5px; cursor: pointer; top: 2px; right: 2px; bottom: 2px; z-index: -1; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; } .contact .contact-form form button:before { opacity: 0; } .contact .contact-form form button:hover:before { opacity: 1; } /*========================================== footer ==========================================*/ .footer { background: #020c16; position: relative; z-index: 2; } .footer:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); background-size: 100%; z-index: -1; opacity: .25; } .footer .footer-menu { text-align: right; } .footer .footer-menu .navbar { padding: 0; float: right; } .footer .footer-menu .navbar .navbar-nav { width: 100%; } .footer .footer-menu .navbar .navbar-nav .nav-item .nav-link { padding: 0; color: #fff; opacity: .8; font-size: 16px; font-weight: 400; margin-left: 30px; padding: 30px 0; } .footer .footer-menu .navbar .navbar-nav .nav-item:first-child .nav-link { margin-left: 0; } /*========================================== blog details comment ==========================================*/ .comment-area h3 { background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-text-fill-color: transparent; -webkit-background-clip: text; font-family: amrfont; font-size: 30px; display: inline-block; margin: -10px 0 20px; } .comment-area .single-comment { display: flow-root; border-top: 1px solid #161f29; padding: 30px 30px; } .comment-area .single-comment:last-child { border-bottom: 1px solid #161f29; } .comment-area .single-comment .part-img { float: left; width: 100px; overflow: hidden; margin-right: 20px; border-radius: 50%; } .comment-area .single-comment .part-img img { width: 100%; } .comment-area .single-comment .part-text { display: table; } .comment-area .single-comment .part-text span.commentor-name { color: #fff; font-size: 20px; font-weight: 500; display: inline-block; margin-bottom: 7px; } .comment-area .single-comment .part-text p { color: #bbb; margin: 0; font-size: 15px; line-height: 25px; } /*========================================== blog details comment box ==========================================*/ .comment-box h3 { background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-text-fill-color: transparent; -webkit-background-clip: text; font-family: amrfont; font-size: 30px; display: inline-block; margin: 42px 0 21px; } .comment-box form input { width: 100%; height: 60px; padding: 0 30px; color: #fff; opacity: .85; border: none; background: none; position: relative; z-index: 2; margin-bottom: 30px; border-radius: 5px; } .comment-box form input:focus { border: none; outline: none; } .comment-box form input::-webkit-input-placeholder { color: #fff; overflow: .75; } .comment-box form input:-ms-input-placeholder { color: #fff; overflow: .75; } .comment-box form input::-ms-input-placeholder { color: #fff; overflow: .75; } .comment-box form input::placeholder { color: #fff; overflow: .75; } .comment-box form span { display: block; position: absolute; content: ''; left: 15px; top: 0; right: 15px; height: 60px; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .15; z-index: -1; border-radius: 5px; } .comment-box form span.textarea { height: 200px; } .comment-box form textarea { width: 100%; height: 200px; background: none; border: none; padding: 15px 30px; color: #fff; opacity: .85; border-radius: 5px; resize: none; } .comment-box form textarea::-webkit-input-placeholder { color: #fff; overflow: .75; } .comment-box form textarea:-ms-input-placeholder { color: #fff; overflow: .75; } .comment-box form textarea::-ms-input-placeholder { color: #fff; overflow: .75; } .comment-box form textarea::placeholder { color: #fff; overflow: .75; } .comment-box form button { height: 60px; width: 100%; color: #fff; background: transparent; font-weight: 500; border: none; border-radius: 5px; z-index: 2; position: relative; overflow: hidden; margin-top: 35px; outline: none; } .comment-box form button:after { position: absolute; content: ''; left: 0; top: 0; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); width: 100%; height: 100%; z-index: -2; border-radius: 5px; } .comment-box form button:before { background: #20152a; position: absolute; content: ''; left: 2px; border-radius: 5px; cursor: pointer; top: 2px; right: 2px; bottom: 2px; z-index: -1; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; } .comment-box form button:before { opacity: 0; } .comment-box form button:hover:before { opacity: 1; } /*========================================== blog details widget ==========================================*/ .single-widget { margin-bottom: 30px; } .single-widget form { position: relative; } .single-widget form input { width: 100%; height: 60px; padding: 0 30px; color: #fff; opacity: .85; border: none; background: none; position: relative; z-index: 2; border-radius: 5px; padding-right: 60px; } .single-widget form input:focus { border: none; outline: none; } .single-widget form input::-webkit-input-placeholder { color: #fff; overflow: .75; } .single-widget form input:-ms-input-placeholder { color: #fff; overflow: .75; } .single-widget form input::-ms-input-placeholder { color: #fff; overflow: .75; } .single-widget form input::placeholder { color: #fff; overflow: .75; } .single-widget form span { display: block; position: absolute; content: ''; left: 0; top: 0; right: 0; height: 60px; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .15; z-index: -1; border-radius: 5px; } .single-widget form button { background: none; border: none; outline: none; width: auto; height: auto; position: absolute; top: 0; right: 0; color: #fff; bottom: 0; width: 60px; z-index: 2; cursor: pointer; } .single-widget.category { padding: 30px; position: relative; } .single-widget.category:after { position: absolute; content: ''; left: 0; top: 0; right: 0; bottom: 0; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .15; z-index: -1; border-radius: 5px; } .single-widget.category h3 { font-size: 20px; color: #fff; margin-bottom: 17px; margin-top: -6px; } .single-widget.category ul li a { color: #bbb; font-size: 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.2); display: block; padding: 9px 0 10px; } .single-widget.category ul li a i { margin-right: 8px; } /*========================================== direct contact ==========================================*/ .direct-contact { padding: 120px 0; background: #020c16; z-index: 2; position: relative; } .direct-contact:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: url("../img/blog-bg.png") right bottom no-repeat; background-size: 100%; z-index: -1; opacity: .04; } .direct-contact .address-area { text-align: center; } .direct-contact .address-area ul li { display: inline-block; font-size: 18px; font-weight: 400; color: #fff; margin-right: 30px; } .direct-contact .address-area ul li i { margin-right: 8px; } .direct-contact .address-area ul li:last-child { margin-right: 0; } /*========================================== counter-up ==========================================*/ .counter { padding: 60px 0; background: #0a131f; z-index: 2; position: relative; } .counter:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: url("../img/blog-bg.png") right bottom no-repeat; background-size: 100%; z-index: -1; opacity: .04; } .counter .single-counter { margin: -16px 0 -3px; text-align: center; } .counter .single-counter span { display: block; } .counter .single-counter span.number { display: inline-block; font-size: 42px; font-family: amrfont; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 4px; margin-bottom: 7px; } .counter .single-counter span.title { font-size: 18px; color: #bbb; font-weight: 500; } /*========================================== single-event ==========================================*/ .single-event { padding: 120px 0; background: #020c16; z-index: 2; position: relative; } .single-event:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: url("../img/single-event-bg.png") right bottom no-repeat; background-size: 100%; z-index: -1; opacity: .04; } .single-event .part-img { border-radius: 5px; overflow: hidden; } .single-event .part-img img { width: 100%; } .single-event .part-text h3 { font-size: 72px; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; font-family: amrfont; margin-bottom: 32px; margin-top: -19px; } .single-event .part-text p { font-size: 16px; line-height: 28px; color: #bbb; margin-bottom: 19px; } .single-event .part-text .meta-info span { display: block; } .single-event .part-text .meta-info span.eventor-name { display: inline-block; font-size: 20px; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 600; margin-top: -2px; margin-bottom: 2px; } .single-event .part-text .meta-info span.location { font-size: 16px; color: #bbb; }
public/assets/css/style.css
typography ===========================================*/ @import url("../../../../../css.css"); @font-face { font-family: amrFont; src: url("../fonts/Gilbert Bold-Preview_1004.otf"); } @font-face { font-family: amrFont; src: url("../fonts/Gilbert-Color Bold-Preview_1004.otf"); } /*========================================== section title ==========================================*/ .section-title { margin-bottom: 38px; margin-top: -19px; } .section-title.add-space { margin-bottom: 59px; } .section-title h2 { font-size: 72px; font-family: amrfont; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .section-title h2.remove-space { margin-bottom: 7px; } .title-acs { font-size: 24px; font-family: amrfont; -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .c-white { color: #fff; } /*========================================== Preloader ==========================================*/ .preloader { position: fixed; left: 0; top: 0; width: 100%; height: 100%; background: #020c16; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; z-index: 9999; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; z-index: 555; } .preloader:after { position: absolute; width: 100%; height: 100%; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .7; z-index: -1; left: 0; top: 0; content: ''; } .loader, .loader hr { -webkit-box-sizing: border-box; box-sizing: border-box; position: absolute; left: 0; right: 0; top: 50%; margin-top: -50px; bottom: 0; } .loader { width: 100px; height: 100px; font-size: 0; left: 50%; margin-left: -50px; border-radius: 50%; overflow: hidden; } .loader hr { border: 50px solid transparent; border-top-color: #fff; -webkit-animation: 1s spin infinite linear; animation: 1s spin infinite linear; opacity: 1; } .loader hr:nth-of-type(1) { opacity: 0.25; border-left-color: #fff; } .loader hr:nth-of-type(2) { animation-direction: reverse; -webkit-animation-duration: 2.5s; animation-duration: 2.5s; } @-webkit-keyframes spin { from { -webkit-transform: rotate(0deg); transform: rotate(0deg); } to { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes spin { from { -webkit-transform: rotate(0deg); transform: rotate(0deg); } to { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } /*========================================== scroll to top button ==========================================*/ .scroll-to-top { position: fixed; right: 50px; bottom: 80px; display: inline-block; z-index: 9; width: 40px; height: 40px; background: #052157; border: 2px solid #fff; text-align: center; } .scroll-to-top a { text-decoration: none; font-family: 'Lato', sans-serif; font-weight: 900; cursor: pointer; font-size: 24px; color: #fff; padding: 2px 0 0px 0; display: inline-block; } .scroll-to-top a i { color: #fff; } /*========================================== normalize ==========================================*/ html { font-family: "Open Sans", sans-serif; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; overflow-x: hidden; } body { font-family: "Open Sans", sans-serif; font-size: 16px; margin: 0; color: #3d5169; overflow-x: hidden; } h1, h2, h3, h4, h5, h6, a { line-height: 1.3; } h1, h2, h3, h4, h5, h6 { font-family: "Poppins", sans-serif; } p { line-height: 1.6; font-family: "Open Sans", sans-serif; } a { color: #101830; text-decoration: none; } a, a:hover, a:focus, a:active { text-decoration: none; outline: none; } a i { padding: 0 2px; } img { max-width: 100%; } /*input and button type focus outline disable*/ input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="number"]:focus, textarea:focus, input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus, select:focus { outline: none; -webkit-box-shadow: none; box-shadow: none; border: 1px solid #ddd; } /** * 5.0 - Alignments */ .alignleft { float: left; } .alignright { float: right; } .aligncenter { clear: both; display: block; margin: 0 auto 1.75em; } ul { margin: 0; padding: 0; list-style: none; } /*========================================== Header ==========================================*/ .header { position: absolute; left: 0; top: 0; z-index: 55; width: 100%; border-bottom: 1px solid rgba(255, 255, 255, 0.2); } .header .logo a { display: inline-block; } .header .mainmenu .navbar { padding: 0; float: right; } .header .mainmenu .navbar .navbar-nav .nav-item .nav-link { padding: 31px 0; font-family: "Poppins", sans-serif; font-size: 14px; font-weight: 500; margin-right: 30px; color: #fff; position: relative; } .header .mainmenu .navbar .navbar-nav .nav-item .nav-link:before { position: absolute; content: ''; width: 0px; height: 0px; left: 50%; top: 50%; -webkit-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg); margin-top: -2px; border-radius: 50%; margin-left: -25px; opacity: 0; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); } .header .mainmenu .navbar .navbar-nav .nav-item .nav-link:hover:before, .header .mainmenu .navbar .navbar-nav .nav-item .nav-link.active:before { width: 50px; height: 4px; -webkit-transform: rotate(30deg); -ms-transform: rotate(30deg); transform: rotate(30deg); opacity: .8; } .header .mainmenu .navbar .navbar-nav .nav-item:last-child .nav-link { margin-right: 0px; } /*========================================== breadcrump ==========================================*/ .breadcrump { background: url("../img/breadcrump-bg.jpg") center center no-repeat; background-size: cover; position: relative; z-index: 2; } .breadcrump:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: #03111e; z-index: -1; opacity: .88; } .breadcrump .breadcrump-content { margin-top: 81px; padding: 27px 0 26px; } .breadcrump .breadcrump-content span { display: inline-block; color: #bbb; font-size: 18px; text-transform: capitalize; font-weight: 500; margin-right: 10px; } /*========================================== banner ==========================================*/ .banner { background: #01151d; background-size: cover; position: relative; z-index: 2; } .banner:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: #01151d; opacity: .88; z-index: -1; } .banner .banner-content { display: inline-block; text-align: center; padding: 150px 0 50px; } .banner .banner-content h1 { font-family: amrFont; font-size: 100px; background-image: -webkit-gradient(linear, left top, right top, from(#f4627c), to(#b439a8)); background-image: -webkit-linear-gradient(left, #f4627c, #b439a8); background-image: -o-linear-gradient(left, #f4627c, #b439a8); background-image: linear-gradient(to right, #f4627c, #b439a8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 23px; } .banner .banner-content h4 { color: #fff; text-transform: uppercase; letter-spacing: 8px; text-align: right; } .banner .banner-bottom { position: relative; z-index: 2; } .banner .banner-bottom:after { position: absolute; content: ''; left: 0; top: 20px; bottom: 0; width: 999999px; background: #730049; opacity: .3; z-index: -1; } .banner .banner-bottom .promo-video { margin-top: 20px; } .banner .banner-bottom .promo-video .part-icon { background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); width: 75px; height: 75px; border: 15px solid #1e2f38; border-radius: 50%; line-height: 45px; font-size: 14px; text-align: center; float: left; margin-right: 20px; } .banner .banner-bottom .promo-video .part-icon a { color: #fff; } .banner .banner-bottom .promo-video .part-text { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; height: 75px; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .banner .banner-bottom .promo-video .part-text h3 { font-size: 24px; font-weight: 500; text-transform: uppercase; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 3px; } .banner .banner-bottom .promo-video .part-text span.intro { display: inline-block; font-weight: 500; color: #fff; } .banner .banner-bottom .banner-buttons { text-align: right; width: 100%; margin-top: 26px; } .banner .banner-bottom .banner-buttons a { display: inline-block; height: 60px; width: 160px; border-radius: 5px; position: relative; font-weight: 600; text-transform: capitalize; color: #fff; line-height: 60px; text-align: center; z-index: 2; overflow: hidden; } .banner .banner-bottom .banner-buttons a:after { position: absolute; content: ''; left: 0; top: 0; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); width: 100%; height: 100%; z-index: -2; } .banner .banner-bottom .banner-buttons a:before { background: #0b1e1d; position: absolute; content: ''; left: 2px; top: 2px; right: 2px; bottom: 2px; z-index: -1; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; } .banner .banner-bottom .banner-buttons a:last-child { margin-left: 16px; } .banner .banner-bottom .banner-buttons a:last-child:before { opacity: 1; } .banner .banner-bottom .banner-buttons a:last-child:hover:before { opacity: 0; } .banner .banner-bottom .banner-buttons a:first-child:before { opacity: 0; } .banner .banner-bottom .banner-buttons a:first-child:hover:before { opacity: 1; } /*========================================== countdown ==========================================*/ .countdown { padding: 120px 0; position: relative; z-index: 2; background: #0a131f; } .countdown:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: url("../img/countdown.png") center bottom no-repeat; background-size: 100%; opacity: .04; z-index: -1; } .countdown.event-page { background: #020c16; } .countdown .countdown-title h2 { font-size: 72px; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-family: amrfont; margin: 0; line-height: 57px; } .countdown .part-countdown { text-align: right; } .countdown .part-countdown .timer { display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; } .countdown .part-countdown .timer .single-count { padding: 14px 0 23px; display: inline-block; width: 120px; text-align: center; margin-right: 11px; position: relative; border-radius: 5px; overflow: hidden; } .countdown .part-countdown .timer .single-count:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .15; } .countdown .part-countdown .timer .single-count:last-child { margin-right: 0; } .countdown .part-countdown .timer .single-count span { display: block; color: #fff; } .countdown .part-countdown .timer .single-count span.day, .countdown .part-countdown .timer .single-count span.hour, .countdown .part-countdown .timer .single-count span.minute, .countdown .part-countdown .timer .single-count span.second { font-size: 40px; font-weight: 300; } .countdown .part-countdown .timer .single-count span.title { font-size: 18px; font-weight: 500; text-transform: capitalize; } /*========================================== about ==========================================*/ .about { padding: 120px 0; position: relative; z-index: 2; background: #020c16; } .about:after { position: absolute; background: url("../img/about.png") right bottom no-repeat; background-size: cover; content: ''; left: 0; top: 0; width: 100%; height: 100%; opacity: .04; z-index: -1; } .about .about-area { background: url("../img/about-bg.jpg") center center no-repeat; background-size: cover; } .about .about-area .part-text { display: -ms-inline-grid; display: inline-grid; background: rgba(3, 17, 30, 0.97); padding: 60px; } .about .about-area .part-text h2 { font-size: 72px; font-family: amrfont; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-text-fill-color: transparent; -webkit-background-clip: text; margin-bottom: 10px; margin-top: -16px; } .about .about-area .part-text p { font-size: 16px; line-height: 28px; color: #bbb; } .about .about-area .part-text a { display: inline-block; height: 60px; width: 160px; border-radius: 5px; position: relative; font-weight: 600; text-transform: capitalize; color: #fff; line-height: 60px; text-align: center; z-index: 2; overflow: hidden; margin-top: 29px; } .about .about-area .part-text a:after { position: absolute; content: ''; left: 0; top: 0; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); width: 100%; height: 100%; z-index: -2; } .about .about-area .part-text a:before { background: #0b1e1d; position: absolute; content: ''; left: 2px; top: 2px; right: 2px; bottom: 2px; z-index: -1; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; border-radius: 5px; } .about .about-area .part-text a:before { opacity: 0; } .about .about-area .part-text a:hover:before { opacity: 1; } /*========================================== event schedule ==========================================*/ .event-schedule { padding: 120px 0; background: #0a131f; z-index: 2; position: relative; } .event-schedule:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: url("../img/event-bg.png") left bottom no-repeat; background-size: 100%; z-index: -1; opacity: .04; } .event-schedule .nav.nav-pills { background: #151124; border-radius: 5px; overflow: hidden; } .event-schedule .nav.nav-pills .nav-link { color: #fff; font-size: 20px; font-weight: 600; padding: 25px 30px 26px; border-radius: 0 !important; position: relative; border-radius: 5px; opacity: .9; } .event-schedule .nav.nav-pills .nav-link.active { opacity: 1; } .event-schedule .nav.nav-pills .nav-link.active span.month-count { opacity: 1; } .event-schedule .nav.nav-pills .nav-link:after { position: absolute; content: ''; left: 0; top: 0; height: 1px; width: 100%; opacity: .5; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); } .event-schedule .nav.nav-pills .nav-link.active { background-image: -webkit-linear-gradient(0deg, #a730b2 0%, #d34d94 56%, #ff6975 100%); } .event-schedule .nav.nav-pills .nav-link.active:after { display: none; } .event-schedule .nav.nav-pills .nav-link:first-child:after { display: none; } .event-schedule .nav.nav-pills .nav-link span { display: block; } .event-schedule .nav.nav-pills .nav-link span.month-count { font-size: 15px; color: #fff; font-weight: 500; margin-top: 10px; opacity: .7; } .event-schedule .tab-content #accordion, .event-schedule .tab-content #accordion2, .event-schedule .tab-content #accordion3, .event-schedule .tab-content #accordion4 { border-radius: 5px; overflow: hidden; } .event-schedule .tab-content #accordion .card, .event-schedule .tab-content #accordion2 .card, .event-schedule .tab-content #accordion3 .card, .event-schedule .tab-content #accordion4 .card { border-radius: 0 !important; border: none; position: relative; z-index: 2; background: #1e1622; } .event-schedule .tab-content #accordion .card:last-child .card-header.collapsed:after, .event-schedule .tab-content #accordion2 .card:last-child .card-header.collapsed:after, .event-schedule .tab-content #accordion3 .card:last-child .card-header.collapsed:after, .event-schedule .tab-content #accordion4 .card:last-child .card-header.collapsed:after { display: none; } .event-schedule .tab-content #accordion .card:after, .event-schedule .tab-content #accordion2 .card:after, .event-schedule .tab-content #accordion3 .card:after, .event-schedule .tab-content #accordion4 .card:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .05; z-index: -1; } .event-schedule .tab-content #accordion .card .card-header, .event-schedule .tab-content #accordion2 .card .card-header, .event-schedule .tab-content #accordion3 .card .card-header, .event-schedule .tab-content #accordion4 .card .card-header { border-radius: 0 !important; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; padding: 30px 30px 25px; display: flow-root; border: none; background: transparent; } .event-schedule .tab-content #accordion .card .card-header.collapsed, .event-schedule .tab-content #accordion2 .card .card-header.collapsed, .event-schedule .tab-content #accordion3 .card .card-header.collapsed, .event-schedule .tab-content #accordion4 .card .card-header.collapsed { background: #1b1521; position: relative; padding: 30px 30px 29px; } .event-schedule .tab-content #accordion .card .card-header.collapsed:after, .event-schedule .tab-content #accordion2 .card .card-header.collapsed:after, .event-schedule .tab-content #accordion3 .card .card-header.collapsed:after, .event-schedule .tab-content #accordion4 .card .card-header.collapsed:after { position: absolute; content: ''; left: 0; bottom: 0; width: 100%; height: 1px; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .4; } .event-schedule .tab-content #accordion .card .card-header.collapsed .part-text:after, .event-schedule .tab-content #accordion2 .card .card-header.collapsed .part-text:after, .event-schedule .tab-content #accordion3 .card .card-header.collapsed .part-text:after, .event-schedule .tab-content #accordion4 .card .card-header.collapsed .part-text:after { display: none; } .event-schedule .tab-content #accordion .card .card-header.collapsed .part-text h3, .event-schedule .tab-content #accordion2 .card .card-header.collapsed .part-text h3, .event-schedule .tab-content #accordion3 .card .card-header.collapsed .part-text h3, .event-schedule .tab-content #accordion4 .card .card-header.collapsed .part-text h3 { margin: 7px 0 9px; } .event-schedule .tab-content #accordion .card .card-header .part-text, .event-schedule .tab-content #accordion2 .card .card-header .part-text, .event-schedule .tab-content #accordion3 .card .card-header .part-text, .event-schedule .tab-content #accordion4 .card .card-header .part-text { display: table; position: relative; } .event-schedule .tab-content #accordion .card .card-header .part-text:after, .event-schedule .tab-content #accordion2 .card .card-header .part-text:after, .event-schedule .tab-content #accordion3 .card .card-header .part-text:after, .event-schedule .tab-content #accordion4 .card .card-header .part-text:after { position: absolute; content: ''; left: 0; bottom: -14px; width: 100%; height: 0px; border-top: 1px dotted rgba(255, 255, 255, 0.2); } .event-schedule .tab-content #accordion .card .card-header .part-text span.time, .event-schedule .tab-content #accordion .card .card-header .part-text span.location, .event-schedule .tab-content #accordion2 .card .card-header .part-text span.time, .event-schedule .tab-content #accordion2 .card .card-header .part-text span.location, .event-schedule .tab-content #accordion3 .card .card-header .part-text span.time, .event-schedule .tab-content #accordion3 .card .card-header .part-text span.location, .event-schedule .tab-content #accordion4 .card .card-header .part-text span.time, .event-schedule .tab-content #accordion4 .card .card-header .part-text span.location { color: #7b7b7b; font-size: 15px; margin-right: 20px; } .event-schedule .tab-content #accordion .card .card-header .part-text span.time i, .event-schedule .tab-content #accordion .card .card-header .part-text span.location i, .event-schedule .tab-content #accordion2 .card .card-header .part-text span.time i, .event-schedule .tab-content #accordion2 .card .card-header .part-text span.location i, .event-schedule .tab-content #accordion3 .card .card-header .part-text span.time i, .event-schedule .tab-content #accordion3 .card .card-header .part-text span.location i, .event-schedule .tab-content #accordion4 .card .card-header .part-text span.time i, .event-schedule .tab-content #accordion4 .card .card-header .part-text span.location i { margin-right: 6px; } .event-schedule .tab-content #accordion .card .card-header .part-text h3, .event-schedule .tab-content #accordion2 .card .card-header .part-text h3, .event-schedule .tab-content #accordion3 .card .card-header .part-text h3, .event-schedule .tab-content #accordion4 .card .card-header .part-text h3 { color: #fff; font-weight: 500; font-size: 24px; opacity: .8; margin: -4px 0 9px; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; } .event-schedule .tab-content #accordion .card .card-header .part-img, .event-schedule .tab-content #accordion2 .card .card-header .part-img, .event-schedule .tab-content #accordion3 .card .card-header .part-img, .event-schedule .tab-content #accordion4 .card .card-header .part-img { width: 80px; height: 80px; border-radius: 50%; margin-right: 30px; float: left; position: relative; z-index: 2; } .event-schedule .tab-content #accordion .card .card-header .part-img:after, .event-schedule .tab-content #accordion2 .card .card-header .part-img:after, .event-schedule .tab-content #accordion3 .card .card-header .part-img:after, .event-schedule .tab-content #accordion4 .card .card-header .part-img:after { position: absolute; content: ''; left: -2px; top: -2px; bottom: -2px; right: -2px; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); z-index: -1; border-radius: 50%; } .event-schedule .tab-content #accordion .card .card-header .part-img img, .event-schedule .tab-content #accordion2 .card .card-header .part-img img, .event-schedule .tab-content #accordion3 .card .card-header .part-img img, .event-schedule .tab-content #accordion4 .card .card-header .part-img img { width: 100%; height: 100%; border: 4px solid #1b1521; border-radius: 50%; } .event-schedule .tab-content #accordion .card .card-body, .event-schedule .tab-content #accordion2 .card .card-body, .event-schedule .tab-content #accordion3 .card .card-body, .event-schedule .tab-content #accordion4 .card .card-body { padding: 0 30px 27px 140px; } .event-schedule .tab-content #accordion .card .card-body p, .event-schedule .tab-content #accordion2 .card .card-body p, .event-schedule .tab-content #accordion3 .card .card-body p, .event-schedule .tab-content #accordion4 .card .card-body p { color: #bbb; font-size: 16px; line-height: 28px; margin-top: -6px; } .event-schedule .tab-content #accordion .card .card-body span.name, .event-schedule .tab-content #accordion2 .card .card-body span.name, .event-schedule .tab-content #accordion3 .card .card-body span.name, .event-schedule .tab-content #accordion4 .card .card-body span.name { display: inline-block; font-size: 20px; font-weight: 600; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-text-fill-color: transparent; -webkit-background-clip: text; } /*========================================== gallery ==========================================*/ .gallery { padding: 120px 0 90px; background: #020c16; z-index: 2; position: relative; } .gallery:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: url("../img/gallery.png") right bottom no-repeat; background-size: 100%; z-index: -1; opacity: .04; } .gallery .single-img { margin-bottom: 30px; border-radius: 5px; overflow: hidden; position: relative; } .gallery .single-img img { width: 100%; } .gallery .single-img .hover-effect { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; z-index: 2; } .gallery .single-img .hover-effect:hover:after { left: 0; top: 0; } .gallery .single-img .hover-effect:hover:before { right: 0; bottom: 0; } .gallery .single-img .hover-effect:hover a { opacity: 1; visibility: visible; } .gallery .single-img .hover-effect:after { position: absolute; content: ''; left: -100%; top: -100%; width: 100%; height: 100%; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .6; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; z-index: -1; } .gallery .single-img .hover-effect:before { position: absolute; content: ''; right: -100%; bottom: -100%; width: 100%; height: 100%; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .6; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; z-index: -1; } .gallery .single-img .hover-effect a { display: inline-block; font-size: 20px; color: #d34d94; height: 50px; width: 50px; border: 1px solid #fff; line-height: 50px; text-align: center; border-radius: 50%; background-color: #fff; -webkit-transition: 1s; -moz-transition: 1s; -o-transition: 1s; transition: 1s; opacity: 0; visibility: hidden; } .gallery .single-img .hover-effect a:hover { background-color: transparent; color: #fff; } /*========================================== team dj ==========================================*/ .team-dj { padding: 120px 0; background: #0a131f; z-index: 2; position: relative; } .team-dj:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: url("../img/dj-bg.png") left bottom no-repeat; background-size: 100%; z-index: -1; opacity: .04; } .team-dj.top-dj-page { padding-bottom: 90px; background: #020c16; } .team-dj.top-dj-page .single-dj { margin-bottom: 30px; } .team-dj .single-dj .part-img { position: relative; border-radius: 5px; overflow: hidden; } .team-dj .single-dj .part-img img { width: 100%; } .team-dj .single-dj .part-img .hover-effect { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; z-index: 2; } .team-dj .single-dj .part-img .hover-effect:hover:after { left: 0; top: 0; } .team-dj .single-dj .part-img .hover-effect:hover:before { right: 0; bottom: 0; } .team-dj .single-dj .part-img .hover-effect:hover a { opacity: 1; visibility: visible; } .team-dj .single-dj .part-img .hover-effect:after { position: absolute; content: ''; left: -100%; top: -100%; width: 100%; height: 100%; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .6; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; z-index: -1; } .team-dj .single-dj .part-img .hover-effect:before { position: absolute; content: ''; right: -100%; bottom: -100%; width: 100%; height: 100%; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .6; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; z-index: -1; } .team-dj .single-dj .part-img .hover-effect a { display: inline-block; font-size: 20px; color: #d34d94; height: 50px; width: 50px; border: 1px solid #fff; line-height: 50px; text-align: center; border-radius: 50%; background-color: #fff; -webkit-transition: 1s; -moz-transition: 1s; -o-transition: 1s; transition: 1s; opacity: 0; visibility: hidden; margin-bottom: 10px; } .team-dj .single-dj .part-img .hover-effect a:last-child { margin-bottom: 0; } .team-dj .single-dj .part-img .hover-effect a:hover { background-color: transparent; color: #fff; } /*========================================== about venu ==========================================*/ .about-venu { padding: 180px 0 120px; background: #020c16; z-index: 2; position: relative; } .about-venu:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: url("../img/venu-bg.png") right bottom no-repeat; background-size: 100%; z-index: -1; opacity: .04; } .about-venu .part-img { border-radius: 5px; overflow: hidden; height: 611px; margin-top: -60px; } .about-venu .part-img img { width: 100%; height: auto; } .about-venu .part-text { display: -ms-inline-grid; display: inline-grid; background: #20152a; padding: 60px 60px 60px 30px; border-radius: 0 5px 5px 0; position: relative; } .about-venu .part-text:after { position: absolute; content: ''; right: 100%; top: 0; width: 50%; height: 100%; background: #20152a; z-index: -1; border-radius: 0 0 0 5px; } .about-venu .part-text h3 { font-size: 72px; font-family: amrfont; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-text-fill-color: transparent; -webkit-background-clip: text; margin-bottom: 10px; margin-top: -19px; } .about-venu .part-text p { font-size: 16px; line-height: 28px; color: #bbb; } .about-venu .part-text a { display: inline-block; height: 60px; width: 160px; border-radius: 5px; position: relative; font-weight: 600; text-transform: capitalize; color: #fff; line-height: 60px; text-align: center; z-index: 2; overflow: hidden; margin-top: 29px; } .about-venu .part-text a:after { position: absolute; content: ''; left: 0; top: 0; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); width: 100%; height: 100%; z-index: -2; } .about-venu .part-text a:before { background: #20152a; position: absolute; content: ''; left: 2px; top: 2px; right: 2px; bottom: 2px; z-index: -1; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; } .about-venu .part-text a:before { opacity: 0; } .about-venu .part-text a:hover:before { opacity: 1; } /*========================================== ticket price ==========================================*/ .ticket-price { background: #0a131f; padding: 120px 0 90px; z-index: 2; position: relative; } .ticket-price:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: url("../img/ticket-bg.png") left bottom no-repeat; background-size: 100%; z-index: -1; opacity: .04; } .ticket-price .single-ticket-price { padding: 47px 40px 50px; position: relative; border-radius: 5px; overflow: hidden; z-index: 2; margin-bottom: 30px; } .ticket-price .single-ticket-price:hover:after { opacity: .15; } .ticket-price .single-ticket-price:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; z-index: -1; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .1; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; } .ticket-price .single-ticket-price .part-feature span.price { font-size: 62px; font-family: amrfont; position: relative; display: inline-block; line-height: 50px; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-text-fill-color: transparent; -webkit-background-clip: text; margin-left: 15.19px; } .ticket-price .single-ticket-price .part-feature span.price:after { position: absolute; content: '$'; right: 100%; bottom: 0; font-size: 30px; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-text-fill-color: transparent; -webkit-background-clip: text; font-family: amrfont; line-height: 30px; } .ticket-price .single-ticket-price .part-feature h3 { font-size: 24px; font-weight: 500; color: #f3f3f3; opacity: .9; margin: 29px 0 23px; } .ticket-price .single-ticket-price .part-feature ul li { font-size: 15px; font-weight: 400; color: #bbb; margin-bottom: 10px; } .ticket-price .single-ticket-price .part-feature ul li span.text { line-height: 25px; position: absolute; margin-left: 10px; } .ticket-price .single-ticket-price .part-feature ul li span.icon { display: inline-block; width: 20px; height: 20px; position: relative; border-radius: 50%; overflow: hidden; z-index: 2; line-height: 20px; text-align: center; font-size: 10px; opacity: .9; } .ticket-price .single-ticket-price .part-feature ul li span.icon:after { background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; z-index: -1; opacity: .95; } .ticket-price .single-ticket-price .part-button { display: -webkit-box; display: -ms-flexbox; display: flex; } .ticket-price .single-ticket-price .part-button a { display: inline-block; height: 50px; width: 160px; border-radius: 5px; position: relative; font-weight: 600; text-transform: capitalize; color: #fff; line-height: 50px; text-align: center; z-index: 2; overflow: hidden; margin-top: 25px; } .ticket-price .single-ticket-price .part-button a:after { position: absolute; content: ''; left: 0; top: 0; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); width: 100%; height: 100%; z-index: -2; } .ticket-price .single-ticket-price .part-button a:before { background: #20152a; position: absolute; content: ''; left: 2px; top: 2px; right: 2px; bottom: 2px; z-index: -1; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; } .ticket-price .single-ticket-price .part-button a:before { opacity: 0; } .ticket-price .single-ticket-price .part-button a:hover:before { opacity: 1; } /*========================================== blog ==========================================*/ .blog { padding: 120px 0 70px; background: #020c16; z-index: 2; position: relative; } .blog:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: url("../img/blog-bg.png") right bottom no-repeat; background-size: 100%; z-index: -1; opacity: .04; } .blog.blog-details { padding-bottom: 120px; } .blog.blog-details .single-blog .part-img { margin-bottom: 30px; } .blog .single-blog { margin-bottom: 50px; } .blog .single-blog .part-img { border-radius: 5px; overflow: hidden; position: relative; } .blog .single-blog .part-img img { width: 100%; } .blog .single-blog .part-img .date-on-img { position: absolute; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); top: 0; left: 0; padding: 20px 30px 21px; border-radius: 5px 0; } .blog .single-blog .part-img .date-on-img span.date { color: #fff; font-weight: 500; font-size: 24px; text-transform: uppercase; display: inline-block; } .blog .single-blog .part-text h3 { font-size: 24px; font-weight: 500; color: #f3f3f3; margin-bottom: 23px; margin-top: -5px; } .blog .single-blog .part-text p { font-size: 16px; line-height: 28px; color: #bbb; margin-bottom: 17px; } .blog .single-blog .part-text p.last-line { margin-bottom: auto; } .blog .single-blog .part-text p a { display: inline-block; font-weight: 600; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-text-fill-color: transparent; -webkit-background-clip: text; margin-left: 5px; } .blog .single-blog .part-text span { display: block; color: #fff; font-size: 14px; } .blog .single-blog .part-text span.poster { font-size: 16px; position: relative; margin-left: 23px; margin-bottom: 3px; margin-top: 41px; } .blog .single-blog .part-text span.poster:after { position: absolute; content: 'by'; right: 100%; bottom: 0; color: #aaa; margin-right: 5px; } .blog .single-blog .part-text span.poster:before { position: absolute; content: ''; left: 0; top: -18px; bottom: 100%; margin-left: -23px; width: 200px; height: 2px; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); } .blog .single-blog .part-text span.date { opacity: 1; color: #bbb; } /*========================================== testimonial ==========================================*/ .testimonial { padding: 120px 0; background: #0a131f; z-index: 2; position: relative; } .testimonial.event-page { background: #020c16; } .testimonial:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: url("../img/testimonial-bg.png") left bottom no-repeat; background-size: 100%; z-index: -1; opacity: .04; } .testimonial .single-testimonial { border-radius: 5px; overflow: hidden; position: relative; z-index: 2; } .testimonial .single-testimonial:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); height: 100%; opacity: .15; z-index: -1; } .testimonial .single-testimonial .part-img { width: 100%; height: 100%; overflow: hidden; background: url("../img/testimonial-1.jpg") center center no-repeat; background-size: cover; border-radius: 5px; } .testimonial .single-testimonial .part-img.two { background: url("../img/testimonial-2.jpg") center center no-repeat; background-size: cover; } .testimonial .single-testimonial .part-text { padding: 30px; } .testimonial .single-testimonial .part-text .bio { padding-bottom: 14px; position: relative; margin-bottom: 11px; } .testimonial .single-testimonial .part-text .bio:after { position: absolute; content: ''; left: 0; bottom: 0; width: 200px; height: 1px; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); } .testimonial .single-testimonial .part-text .bio span { display: block; } .testimonial .single-testimonial .part-text .bio span.name { margin-top: -9px; font-size: 24px; font-weight: 600; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-text-fill-color: transparent; -webkit-background-clip: text; margin-bottom: 2px; } .testimonial .single-testimonial .part-text .bio span.position { font-size: 14px; color: #fff; } .testimonial .single-testimonial .part-text .social { margin-bottom: 18px; } .testimonial .single-testimonial .part-text .social a { color: #bbb; display: inline-block; margin-right: 13px; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; } .testimonial .single-testimonial .part-text .social a:hover { color: #a730b2; opacity: 1; } .testimonial .single-testimonial .part-text .text p { margin-bottom: -5px; color: #bbb; line-height: 27px; font-size: 15px; } /*========================================== faq ==========================================*/ .faq { padding: 120px 0; background: #020c16; z-index: 2; position: relative; } .faq:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: url("../img/faq-bg.png") right bottom no-repeat; background-size: 100%; z-index: -1; opacity: .04; } .faq.about-page { background: #0a131f; } .faq .accordion .card, .faq .accordion2 .card { background: transparent; position: relative; z-index: 2; } .faq .accordion .card:after, .faq .accordion2 .card:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; z-index: -1; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .1; } .faq .accordion .card .card-header, .faq .accordion2 .card .card-header { padding: 0; border: none; } .faq .accordion .card .card-header h5, .faq .accordion2 .card .card-header h5 { margin: 0; } .faq .accordion .card .card-header h5 button, .faq .accordion2 .card .card-header h5 button { width: 100%; text-align: left; padding: 0; background: transparent; text-decoration: none; border: none; color: #f3f3f3; font-size: 20px; font-weight: 600; opacity: .85; padding: 24px 30px 15px; position: relative; z-index: 2; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .faq .accordion .card .card-header h5 button:before, .faq .accordion2 .card .card-header h5 button:before { position: absolute; right: 30px; top: 50%; margin-top: -10px; background-color: transparent; color: #fff; text-align: center; content: '\f067'; font-size: 16px; line-height: 18px; font-family: "Font Awesome 5 Free"; font-weight: 900; margin-top: -9px; } .faq .accordion .card .card-header h5 button.collapsed, .faq .accordion2 .card .card-header h5 button.collapsed { padding: 15px 30px; background-image: -webkit-linear-gradient(0deg, #ffffff 0%, #ffffff 56%, #ffffff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .faq .accordion .card .card-header h5 button.collapsed:after, .faq .accordion2 .card .card-header h5 button.collapsed:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; z-index: -1; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .1; } .faq .accordion .card .card-body, .faq .accordion2 .card .card-body { font-size: 16px; line-height: 28px; color: #bbb; padding: 6px 30px 24px; } .faq .accordion .card .card-header h5 button[aria-expanded="true"]:before, .faq .accordion2 .card .card-header h5 button[aria-expanded="true"]:before { content: '\f068'; margin-top: -4px; } /*========================================== subscribe newsletter ==========================================*/ .subscribe-newsletter { padding: 120px 0; background: #0a131f; z-index: 2; position: relative; } .subscribe-newsletter:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: url("../img/subscribe-newsletter-bg.png") left bottom no-repeat; background-size: 100%; z-index: -1; opacity: .04; } .subscribe-newsletter.about-page { background: #020c16; } .subscribe-newsletter .form .newsletter-form { position: relative; } .subscribe-newsletter .form .newsletter-form:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); height: 100%; z-index: -1; opacity: .15; } input .form-qwe { border: 12px solid white; border-radius: 4px; } .subscribe-newsletter .form .newsletter-form input.newsletter-input { height: 60px; padding: 0px 190px 0px 30px; border: none; outline: none; color: #fff; width: 100%; z-index: 2; background: transparent; } .subscribe-newsletter .form .newsletter-form input.newsletter-input::-webkit-input-placeholder { opacity: .75; color: #fff; } .subscribe-newsletter .form .newsletter-form input.newsletter-input:-ms-input-placeholder { opacity: .75; color: #fff; } .subscribe-newsletter .form .newsletter-form input.newsletter-input::-ms-input-placeholder { opacity: .75; color: #fff; } .subscribe-newsletter .form .newsletter-form input.newsletter-input::placeholder { opacity: .75; color: #fff; } .subscribe-newsletter .form .newsletter-form button { background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); height: 100%; position: absolute; border: none; color: #fff; font-weight: 500; top: 0; right: 0; width: 160px; cursor: pointer; } /*========================================== contact ==========================================*/ .contact { padding: 120px 0; background: #020c16; z-index: 2; position: relative; } .contact:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: url("../img/contact-bg.png") right bottom no-repeat; background-size: 100%; z-index: -1; opacity: .04; } .contact .contact-form form input { width: 100%; height: 60px; padding: 0 30px; color: #fff; opacity: .85; border: none; background: none; position: relative; z-index: 2; margin-bottom: 30px; border-radius: 5px; } .contact .contact-form form input::-webkit-input-placeholder { color: #bbb; } .contact .contact-form form input:-ms-input-placeholder { color: #bbb; } .contact .contact-form form input::-ms-input-placeholder { color: #bbb; } .contact .contact-form form input::placeholder { color: #bbb; } .contact .contact-form form span { display: block; position: absolute; content: ''; left: 15px; top: 0; right: 15px; height: 60px; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .15; z-index: -1; border-radius: 5px; } .contact .contact-form form span.textarea { height: 200px; } .contact .contact-form form textarea { width: 100%; height: 200px; background: none; border: none; padding: 15px 30px; color: #fff; opacity: .85; border-radius: 5px; resize: none; } .contact .contact-form form textarea::-webkit-input-placeholder { color: #bbb; } .contact .contact-form form textarea:-ms-input-placeholder { color: #bbb; } .contact .contact-form form textarea::-ms-input-placeholder { color: #bbb; } .contact .contact-form form textarea::placeholder { color: #bbb; } .contact .contact-form form button { height: 60px; width: 100%; color: #fff; background: transparent; font-weight: 500; border: none; border-radius: 5px; z-index: 2; position: relative; overflow: hidden; margin-top: 35px; outline: none; } .contact .contact-form form button:after { position: absolute; content: ''; left: 0; top: 0; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); width: 100%; height: 100%; z-index: -2; border-radius: 5px; } .contact .contact-form form button:before { background: #20152a; position: absolute; content: ''; left: 2px; border-radius: 5px; cursor: pointer; top: 2px; right: 2px; bottom: 2px; z-index: -1; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; } .contact .contact-form form button:before { opacity: 0; } .contact .contact-form form button:hover:before { opacity: 1; } /*========================================== footer ==========================================*/ .footer { background: #020c16; position: relative; z-index: 2; } .footer:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); background-size: 100%; z-index: -1; opacity: .25; } .footer .footer-menu { text-align: right; } .footer .footer-menu .navbar { padding: 0; float: right; } .footer .footer-menu .navbar .navbar-nav { width: 100%; } .footer .footer-menu .navbar .navbar-nav .nav-item .nav-link { padding: 0; color: #fff; opacity: .8; font-size: 16px; font-weight: 400; margin-left: 30px; padding: 30px 0; } .footer .footer-menu .navbar .navbar-nav .nav-item:first-child .nav-link { margin-left: 0; } /*========================================== blog details comment ==========================================*/ .comment-area h3 { background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-text-fill-color: transparent; -webkit-background-clip: text; font-family: amrfont; font-size: 30px; display: inline-block; margin: -10px 0 20px; } .comment-area .single-comment { display: flow-root; border-top: 1px solid #161f29; padding: 30px 30px; } .comment-area .single-comment:last-child { border-bottom: 1px solid #161f29; } .comment-area .single-comment .part-img { float: left; width: 100px; overflow: hidden; margin-right: 20px; border-radius: 50%; } .comment-area .single-comment .part-img img { width: 100%; } .comment-area .single-comment .part-text { display: table; } .comment-area .single-comment .part-text span.commentor-name { color: #fff; font-size: 20px; font-weight: 500; display: inline-block; margin-bottom: 7px; } .comment-area .single-comment .part-text p { color: #bbb; margin: 0; font-size: 15px; line-height: 25px; } /*========================================== blog details comment box ==========================================*/ .comment-box h3 { background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-text-fill-color: transparent; -webkit-background-clip: text; font-family: amrfont; font-size: 30px; display: inline-block; margin: 42px 0 21px; } .comment-box form input { width: 100%; height: 60px; padding: 0 30px; color: #fff; opacity: .85; border: none; background: none; position: relative; z-index: 2; margin-bottom: 30px; border-radius: 5px; } .comment-box form input:focus { border: none; outline: none; } .comment-box form input::-webkit-input-placeholder { color: #fff; overflow: .75; } .comment-box form input:-ms-input-placeholder { color: #fff; overflow: .75; } .comment-box form input::-ms-input-placeholder { color: #fff; overflow: .75; } .comment-box form input::placeholder { color: #fff; overflow: .75; } .comment-box form span { display: block; position: absolute; content: ''; left: 15px; top: 0; right: 15px; height: 60px; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .15; z-index: -1; border-radius: 5px; } .comment-box form span.textarea { height: 200px; } .comment-box form textarea { width: 100%; height: 200px; background: none; border: none; padding: 15px 30px; color: #fff; opacity: .85; border-radius: 5px; resize: none; } .comment-box form textarea::-webkit-input-placeholder { color: #fff; overflow: .75; } .comment-box form textarea:-ms-input-placeholder { color: #fff; overflow: .75; } .comment-box form textarea::-ms-input-placeholder { color: #fff; overflow: .75; } .comment-box form textarea::placeholder { color: #fff; overflow: .75; } .comment-box form button { height: 60px; width: 100%; color: #fff; background: transparent; font-weight: 500; border: none; border-radius: 5px; z-index: 2; position: relative; overflow: hidden; margin-top: 35px; outline: none; } .comment-box form button:after { position: absolute; content: ''; left: 0; top: 0; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); width: 100%; height: 100%; z-index: -2; border-radius: 5px; } .comment-box form button:before { background: #20152a; position: absolute; content: ''; left: 2px; border-radius: 5px; cursor: pointer; top: 2px; right: 2px; bottom: 2px; z-index: -1; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; } .comment-box form button:before { opacity: 0; } .comment-box form button:hover:before { opacity: 1; } /*========================================== blog details widget ==========================================*/ .single-widget { margin-bottom: 30px; } .single-widget form { position: relative; } .single-widget form input { width: 100%; height: 60px; padding: 0 30px; color: #fff; opacity: .85; border: none; background: none; position: relative; z-index: 2; border-radius: 5px; padding-right: 60px; } .single-widget form input:focus { border: none; outline: none; } .single-widget form input::-webkit-input-placeholder { color: #fff; overflow: .75; } .single-widget form input:-ms-input-placeholder { color: #fff; overflow: .75; } .single-widget form input::-ms-input-placeholder { color: #fff; overflow: .75; } .single-widget form input::placeholder { color: #fff; overflow: .75; } .single-widget form span { display: block; position: absolute; content: ''; left: 0; top: 0; right: 0; height: 60px; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .15; z-index: -1; border-radius: 5px; } .single-widget form button { background: none; border: none; outline: none; width: auto; height: auto; position: absolute; top: 0; right: 0; color: #fff; bottom: 0; width: 60px; z-index: 2; cursor: pointer; } .single-widget.category { padding: 30px; position: relative; } .single-widget.category:after { position: absolute; content: ''; left: 0; top: 0; right: 0; bottom: 0; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); opacity: .15; z-index: -1; border-radius: 5px; } .single-widget.category h3 { font-size: 20px; color: #fff; margin-bottom: 17px; margin-top: -6px; } .single-widget.category ul li a { color: #bbb; font-size: 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.2); display: block; padding: 9px 0 10px; } .single-widget.category ul li a i { margin-right: 8px; } /*========================================== direct contact ==========================================*/ .direct-contact { padding: 120px 0; background: #020c16; z-index: 2; position: relative; } .direct-contact:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: url("../img/blog-bg.png") right bottom no-repeat; background-size: 100%; z-index: -1; opacity: .04; } .direct-contact .address-area { text-align: center; } .direct-contact .address-area ul li { display: inline-block; font-size: 18px; font-weight: 400; color: #fff; margin-right: 30px; } .direct-contact .address-area ul li i { margin-right: 8px; } .direct-contact .address-area ul li:last-child { margin-right: 0; } /*========================================== counter-up ==========================================*/ .counter { padding: 60px 0; background: #0a131f; z-index: 2; position: relative; } .counter:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: url("../img/blog-bg.png") right bottom no-repeat; background-size: 100%; z-index: -1; opacity: .04; } .counter .single-counter { margin: -16px 0 -3px; text-align: center; } .counter .single-counter span { display: block; } .counter .single-counter span.number { display: inline-block; font-size: 42px; font-family: amrfont; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 4px; margin-bottom: 7px; } .counter .single-counter span.title { font-size: 18px; color: #bbb; font-weight: 500; } /*========================================== single-event ==========================================*/ .single-event { padding: 120px 0; background: #020c16; z-index: 2; position: relative; } .single-event:after { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: url("../img/single-event-bg.png") right bottom no-repeat; background-size: 100%; z-index: -1; opacity: .04; } .single-event .part-img { border-radius: 5px; overflow: hidden; } .single-event .part-img img { width: 100%; } .single-event .part-text h3 { font-size: 72px; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; font-family: amrfont; margin-bottom: 32px; margin-top: -19px; } .single-event .part-text p { font-size: 16px; line-height: 28px; color: #bbb; margin-bottom: 19px; } .single-event .part-text .meta-info span { display: block; } .single-event .part-text .meta-info span.eventor-name { display: inline-block; font-size: 20px; background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 600; margin-top: -2px; margin-bottom: 2px; } .single-event .part-text .meta-info span.location { font-size: 16px; color: #bbb; }
0.435661
0.057971
* {margin: 0; padding: 0; outline: 0;} .centered { position: relative; top: 50%; left: 50%; transform: translate(-50%, -50%); } html,body { font-family: Helvetica, Arial, Verdana, sans-serif; /*font-size: 12px;*/ background-color: #eceff1; height: 100%; width: 100%; margin: 0; padding: 0; } .container { /*max-width: 1024px;*/ background-color: white; width: 100%; height: 100%; margin: auto; max-height: 1024px; /*border: 1px solid black;*/ } .hidden { display: none; } @font-face { font-family: Cinzel; src: url(../../FONTS/Cinzel/Cinzel-Regular.ttf); } /*-------------NAVBAR---------------*/ #logo-nav, #logo-nav-responsive { font-family: 'Linden Hill', serif; font-size: 35px; font-weight: bold; border-bottom: 0; padding: 0px; } ul.topnav { width: 100%; list-style-type: none; margin: 0; padding: 0; overflow: hidden; background-color: #444; position: fixed; top: 0px; z-index: 9999; } ul.topnav li { float: left; } ul.topnav li a { display: block; color: #fff; text-align: center; padding: 14px 15px; text-decoration: none; } a { color: black; } ul.topnav li a:hover:not(.active) { color: #f06292; font-weight: bold; border-bottom: 2px solid #f06292; } ul.topnav li a.active { color: #f06292; background-color: #444; font-weight: bold; border-bottom: 2px solid #f06292; } ul.topnav ul.right { float: right; list-style-type: none; } /*-----------Event Information(lightbox)---------*/ #EventInformation { position: fixed; background-color: rgba(0,0,0,.8); top: 0; left: 0; width: 100%; height: 100%; z-index: 1000; } #EventInformation > div{ background-color: #3C3C3B; background-image: url(../IMG/Eventos/CodeParty2015Pereira/codeparty_logo.png); background-attachment: fixed; background-repeat: no-repeat; background-position: 25% -20%;/*x,y*/ width: 70%; height: 80%; margin: auto; margin-top: 7%; padding: 20px 5px; border: 3px solid white; box-sizing: border-box; max-height: 700px; position: relative; overflow: scroll; } #EventInformation .robot { position: absolute; left: 15%; top: 50%; width: 20%; height: auto; } #EventInformation .letra { color: white; font-size: 30px; text-align: center; padding-right: 30px; text-shadow: -1px 0 black, 0 2px black, 1px 0 black, 0 -1px black; position: absolute; top: 25%; left: 50%; transform: translate(-30%, 0%); } #EventInformation .close { color: white; font-size: 40px; position: absolute; top: 0; left: 100%; } #EventInformation .close:hover { cursor: pointer; } /*-------------PanelUP---------------*/ .panelup { display: block; width: 100%; height: 90%; min-height: 800px; margin: auto; background-color: black; position: relative; /*border: 1px solid white;*/ } .panelup a:nth-child(2) { position: absolute; text-decoration: none !important; cursor: default; } .current { max-height: 600px; } /*--the arrows--*/ .panelup a:nth-child(1),.panelup a:nth-child(3) { color: white; font-size: 100px; text-decoration: none !important; position: absolute; } .panelup a:nth-child(1) { left: 0; bottom: 0; background-color: rgba(30,30,30,0.7); padding-top: 350px; padding-bottom: 350px; } .panelup a:nth-child(1):hover, .panelup a:nth-child(3):hover { background-color: rgba(30,30,30,1); } .panelup a:nth-child(3) { right: 0; bottom: 0; background-color: rgba(30,30,30,0.7); padding-top: 350px; padding-bottom: 350px; } /*--end arrows--*/ /*--the info of the images--*/ .info { text-align: center; color:white; font-size: 20px; margin-top: 20px; /*border: 1px solid white;*/ background-color: rgba(21,20,20,.5); } .info > p { padding: 10px; } /*--end info of the images--*/ /*-------------PanelBottom---------------*/ .panelbottom { display: block; width: 100%; margin: auto; background-color: #222121; height: 10%; /*border: 1px solid white;*/ /*border: 1px solid black;*/ overflow: scroll; } /*-------------Galería---------------*/ .panelbottom .galeria{ width: 100%; margin: auto; list-style: none; padding: 20px; box-sizing: border-box; /*eliminar?*/ display: flex; } .panelbottom .galeria img{ width: 150px; height: 100px; max-width: 100%; border: 1px solid black; border-radius: 2.5%; box-sizing: border-box;/*los bordes toman espacio hacia adentro*/ transition: all .2s; } .panelbottom .galeria li:last-child img { margin-right: 30px; } .galeria li{ margin: 5px; } .panelbottom .galeria img:hover{ cursor: pointer; transform: scale(1.2);/*hace la imágen más grande*/ }
CSS/codeparty.css
* {margin: 0; padding: 0; outline: 0;} .centered { position: relative; top: 50%; left: 50%; transform: translate(-50%, -50%); } html,body { font-family: Helvetica, Arial, Verdana, sans-serif; /*font-size: 12px;*/ background-color: #eceff1; height: 100%; width: 100%; margin: 0; padding: 0; } .container { /*max-width: 1024px;*/ background-color: white; width: 100%; height: 100%; margin: auto; max-height: 1024px; /*border: 1px solid black;*/ } .hidden { display: none; } @font-face { font-family: Cinzel; src: url(../../FONTS/Cinzel/Cinzel-Regular.ttf); } /*-------------NAVBAR---------------*/ #logo-nav, #logo-nav-responsive { font-family: 'Linden Hill', serif; font-size: 35px; font-weight: bold; border-bottom: 0; padding: 0px; } ul.topnav { width: 100%; list-style-type: none; margin: 0; padding: 0; overflow: hidden; background-color: #444; position: fixed; top: 0px; z-index: 9999; } ul.topnav li { float: left; } ul.topnav li a { display: block; color: #fff; text-align: center; padding: 14px 15px; text-decoration: none; } a { color: black; } ul.topnav li a:hover:not(.active) { color: #f06292; font-weight: bold; border-bottom: 2px solid #f06292; } ul.topnav li a.active { color: #f06292; background-color: #444; font-weight: bold; border-bottom: 2px solid #f06292; } ul.topnav ul.right { float: right; list-style-type: none; } /*-----------Event Information(lightbox)---------*/ #EventInformation { position: fixed; background-color: rgba(0,0,0,.8); top: 0; left: 0; width: 100%; height: 100%; z-index: 1000; } #EventInformation > div{ background-color: #3C3C3B; background-image: url(../IMG/Eventos/CodeParty2015Pereira/codeparty_logo.png); background-attachment: fixed; background-repeat: no-repeat; background-position: 25% -20%;/*x,y*/ width: 70%; height: 80%; margin: auto; margin-top: 7%; padding: 20px 5px; border: 3px solid white; box-sizing: border-box; max-height: 700px; position: relative; overflow: scroll; } #EventInformation .robot { position: absolute; left: 15%; top: 50%; width: 20%; height: auto; } #EventInformation .letra { color: white; font-size: 30px; text-align: center; padding-right: 30px; text-shadow: -1px 0 black, 0 2px black, 1px 0 black, 0 -1px black; position: absolute; top: 25%; left: 50%; transform: translate(-30%, 0%); } #EventInformation .close { color: white; font-size: 40px; position: absolute; top: 0; left: 100%; } #EventInformation .close:hover { cursor: pointer; } /*-------------PanelUP---------------*/ .panelup { display: block; width: 100%; height: 90%; min-height: 800px; margin: auto; background-color: black; position: relative; /*border: 1px solid white;*/ } .panelup a:nth-child(2) { position: absolute; text-decoration: none !important; cursor: default; } .current { max-height: 600px; } /*--the arrows--*/ .panelup a:nth-child(1),.panelup a:nth-child(3) { color: white; font-size: 100px; text-decoration: none !important; position: absolute; } .panelup a:nth-child(1) { left: 0; bottom: 0; background-color: rgba(30,30,30,0.7); padding-top: 350px; padding-bottom: 350px; } .panelup a:nth-child(1):hover, .panelup a:nth-child(3):hover { background-color: rgba(30,30,30,1); } .panelup a:nth-child(3) { right: 0; bottom: 0; background-color: rgba(30,30,30,0.7); padding-top: 350px; padding-bottom: 350px; } /*--end arrows--*/ /*--the info of the images--*/ .info { text-align: center; color:white; font-size: 20px; margin-top: 20px; /*border: 1px solid white;*/ background-color: rgba(21,20,20,.5); } .info > p { padding: 10px; } /*--end info of the images--*/ /*-------------PanelBottom---------------*/ .panelbottom { display: block; width: 100%; margin: auto; background-color: #222121; height: 10%; /*border: 1px solid white;*/ /*border: 1px solid black;*/ overflow: scroll; } /*-------------Galería---------------*/ .panelbottom .galeria{ width: 100%; margin: auto; list-style: none; padding: 20px; box-sizing: border-box; /*eliminar?*/ display: flex; } .panelbottom .galeria img{ width: 150px; height: 100px; max-width: 100%; border: 1px solid black; border-radius: 2.5%; box-sizing: border-box;/*los bordes toman espacio hacia adentro*/ transition: all .2s; } .panelbottom .galeria li:last-child img { margin-right: 30px; } .galeria li{ margin: 5px; } .panelbottom .galeria img:hover{ cursor: pointer; transform: scale(1.2);/*hace la imágen más grande*/ }
0.358353
0.092811
h1{ text-shadow:0px 0px 2px rgba(0,0,0,0.2); font-weight:normal; color:#FFFFFF; letter-spacing:3pt; word-spacing:-2pt; font-size:54px; text-align:center; font-family:Syncopate; line-height:1; } .form-check-input{ } .floating_plus_icon { background:none; position:absolute; top:0; right:0; line-height:45px; padding:5px 15px 0px 15px; color:#FF7F50; border:0; font-size:1.4em; font-weight:bold; cursor:pointer; outline:none; z-index:10000000000000; } header{ width:100%; background:#ffffff; height:60px; line-height:60px; border-bottom:1px solid #dddddd; } .container{ padding: 0vh; margin: 10vh; list-style: none; display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-flex-flow: row wrap; justify-content: space-around; } #icon.icon-menu { padding: 0.5em; height: 3em; background-color: white; } .contains { width: 80%; margin: 1em auto; margin-bottom: 2em; background-image: url("http://wallpapercave.com/wp/ARBuPnm.jpg"); box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24); } .contains * { box-sizing: border-box; padding-bottom: 1em; } .flex-outer{ list-style-type: none; padding: 0; max-width: 800px; margin: auto; } .flex-outer li { display: flex; flex-wrap: wrap; align-items: center; } .flex-outer > li:not(:last-child) { padding-top: 2em; margin-right: 3em; margin-top: 0; } .check-label { margin: auto; max-width = 80%; padding: 0.7em; font-weight: bold; font-size: 1.6em; letter-spacing: .1em; } .flex-outer li label, .flex-outer li p { padding: 0.5em; font-weight: normal; font-size: 1.5em; } .flex-outer > li > label, .flex-outer li p { flex: 1 0 120px; max-width: 100%; } .flex-outer > li > label + *{ flex: 1 0 220px; padding-right: 50px; border-radius: 5px; } .flex-outer li p { margin: 0; } .flex-outer li input:not([type='checkbox']), .flex-outer li textarea { padding: 15px; border: 3em; } .flex-outer li button { margin: auto; padding: 1em 3em; font-size: larger; border: none; background: #333; color: #f2f2f2; text-transform: uppercase; letter-spacing: .09em; border-radius: 10px; } body{ background-color: #76b852; }
public/css/add.css
h1{ text-shadow:0px 0px 2px rgba(0,0,0,0.2); font-weight:normal; color:#FFFFFF; letter-spacing:3pt; word-spacing:-2pt; font-size:54px; text-align:center; font-family:Syncopate; line-height:1; } .form-check-input{ } .floating_plus_icon { background:none; position:absolute; top:0; right:0; line-height:45px; padding:5px 15px 0px 15px; color:#FF7F50; border:0; font-size:1.4em; font-weight:bold; cursor:pointer; outline:none; z-index:10000000000000; } header{ width:100%; background:#ffffff; height:60px; line-height:60px; border-bottom:1px solid #dddddd; } .container{ padding: 0vh; margin: 10vh; list-style: none; display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-flex-flow: row wrap; justify-content: space-around; } #icon.icon-menu { padding: 0.5em; height: 3em; background-color: white; } .contains { width: 80%; margin: 1em auto; margin-bottom: 2em; background-image: url("http://wallpapercave.com/wp/ARBuPnm.jpg"); box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24); } .contains * { box-sizing: border-box; padding-bottom: 1em; } .flex-outer{ list-style-type: none; padding: 0; max-width: 800px; margin: auto; } .flex-outer li { display: flex; flex-wrap: wrap; align-items: center; } .flex-outer > li:not(:last-child) { padding-top: 2em; margin-right: 3em; margin-top: 0; } .check-label { margin: auto; max-width = 80%; padding: 0.7em; font-weight: bold; font-size: 1.6em; letter-spacing: .1em; } .flex-outer li label, .flex-outer li p { padding: 0.5em; font-weight: normal; font-size: 1.5em; } .flex-outer > li > label, .flex-outer li p { flex: 1 0 120px; max-width: 100%; } .flex-outer > li > label + *{ flex: 1 0 220px; padding-right: 50px; border-radius: 5px; } .flex-outer li p { margin: 0; } .flex-outer li input:not([type='checkbox']), .flex-outer li textarea { padding: 15px; border: 3em; } .flex-outer li button { margin: auto; padding: 1em 3em; font-size: larger; border: none; background: #333; color: #f2f2f2; text-transform: uppercase; letter-spacing: .09em; border-radius: 10px; } body{ background-color: #76b852; }
0.318379
0.063337
:root { --background: whitesmoke; --pagedjs-width: 6in; --pagedjs-height: 9in; --color-paper: white; --color-mbox: rgba(0, 0, 0, 0.2); --running-title-width: 2.5in; --screen-pages-spacing: 5mm; } html { line-height: 1.3; } /* generated content */ a[href^="http"]:not([class="uri"])::after { content: " (" attr(href) ")"; font-size: 60%; hyphens: none; word-break: break-all; } .references a[href^=http]:not([class=uri])::after { content: none; } .main a[href^="#"]:not([class^="footnote-"]):not([href*=":"])::after { content: " (page " target-counter(attr(href), page) ")"; } .main a.front-matter-ref[href^="#"]:not([class^="footnote-"]):not([href*=":"])::after { content: " (page " target-counter(attr(href), page, lower-roman) ")"; } /* do not include page references in code blocks */ .sourceCode a[href^="#"]:not([class^="footnote-"]):not([href*=":"])::after, .sourceCode a.front-matter-ref[href^="#"]:not([class^="footnote-"]):not([href*=":"])::after { content: unset; } /* TOC, LOT, LOF */ .toc ul, .lot ul, .lof ul { list-style: none; padding-left: 0; overflow-x: hidden; } .toc li li { padding-left: 1em; } .toc a, .lot a, .lof a { text-decoration: none; background: white; padding-right: .33em; } .toc a::after, .lot a::after, .lof a::after { /* content: leader(dotted) target-counter(attr(href), page); */ content: target-counter(attr(href), page); float: right; background: white; } .toc a.front-matter-ref::after, .lot a.front-matter-ref::after, .lof a.front-matter-ref::after { /* content: leader(dotted) target-counter(attr(href), page, lower-roman); */ content: target-counter(attr(href), page, lower-roman); } .toc .leaders::before, .lot .leaders::before, .lof .leaders::before { float: left; width: 0; white-space: nowrap; content: ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . "; } /* Chapter name */ .chapter > h1 > .header-section-number::before, .chapter-ref > .toc-section-number::before { content: var(--chapter-name-before, "Chapter "); } .chapter > h1 > .header-section-number::after, .chapter-ref > .toc-section-number::after { content: var(--chapter-name-after, ""); } /* misc elements */ .subtitle span { font-size: .9em; } img { max-width: 100%; } pre { padding: 1em; } pre[class] { background: #f9f9f9; } abbr { text-decoration: none; } @media screen { div.sourceCode { overflow: visible !important; } a.sourceLine::before { text-decoration: unset !important; } } pre.numberSource a.sourceLine { left: 0 !important; text-indent: -5em } pre.numberSource { margin-left: 0 !important; } table { margin: auto; border-top: 1px solid #666; border-bottom: 1px solid #666; } table thead th { border-bottom: 1px solid #ddd; } thead, tfoot, tr:nth-child(even) { background: #eee; } .footnotes { font-size: 50%; margin-left: -0in !important; flex-wrap: wrap; word-wrap: break-word; } .footnotes hr::before { content: "Footnotes:"; } .footnotes hr { border: none; } .footnote-break { width: 1in; } body { hyphens: auto; } code { hyphens: none; } /* two pages in a row if possible on screen */ @media screen { body { background-color: var(--background); margin: var(--screen-pages-spacing) auto 0 auto; } .pagedjs_pages { display: flex; max-width: calc(var(--pagedjs-width) * 2); flex: 0; flex-wrap: wrap; margin: 0 auto; } .pagedjs_page { background-color: var(--color-paper); box-shadow: 0 0 0 1px var(--color-mbox); flex-shrink: 0; flex-grow: 0; margin: auto auto var(--screen-pages-spacing) auto; } } /* when a row can hold two pages, start first page on the right */ @media screen and (min-width: 12.32in) { .pagedjs_page { margin: auto 0 var(--screen-pages-spacing) 0; } .pagedjs_first_page { margin-left: var(--pagedjs-width); } } /* use a fixed width body for mobiles */ @media screen and (max-width:1180px) { body { width: calc(var(--pagedjs-width) + 2 * var(--screen-pages-spacing)); } }
custom_default_not_page.css
:root { --background: whitesmoke; --pagedjs-width: 6in; --pagedjs-height: 9in; --color-paper: white; --color-mbox: rgba(0, 0, 0, 0.2); --running-title-width: 2.5in; --screen-pages-spacing: 5mm; } html { line-height: 1.3; } /* generated content */ a[href^="http"]:not([class="uri"])::after { content: " (" attr(href) ")"; font-size: 60%; hyphens: none; word-break: break-all; } .references a[href^=http]:not([class=uri])::after { content: none; } .main a[href^="#"]:not([class^="footnote-"]):not([href*=":"])::after { content: " (page " target-counter(attr(href), page) ")"; } .main a.front-matter-ref[href^="#"]:not([class^="footnote-"]):not([href*=":"])::after { content: " (page " target-counter(attr(href), page, lower-roman) ")"; } /* do not include page references in code blocks */ .sourceCode a[href^="#"]:not([class^="footnote-"]):not([href*=":"])::after, .sourceCode a.front-matter-ref[href^="#"]:not([class^="footnote-"]):not([href*=":"])::after { content: unset; } /* TOC, LOT, LOF */ .toc ul, .lot ul, .lof ul { list-style: none; padding-left: 0; overflow-x: hidden; } .toc li li { padding-left: 1em; } .toc a, .lot a, .lof a { text-decoration: none; background: white; padding-right: .33em; } .toc a::after, .lot a::after, .lof a::after { /* content: leader(dotted) target-counter(attr(href), page); */ content: target-counter(attr(href), page); float: right; background: white; } .toc a.front-matter-ref::after, .lot a.front-matter-ref::after, .lof a.front-matter-ref::after { /* content: leader(dotted) target-counter(attr(href), page, lower-roman); */ content: target-counter(attr(href), page, lower-roman); } .toc .leaders::before, .lot .leaders::before, .lof .leaders::before { float: left; width: 0; white-space: nowrap; content: ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . "; } /* Chapter name */ .chapter > h1 > .header-section-number::before, .chapter-ref > .toc-section-number::before { content: var(--chapter-name-before, "Chapter "); } .chapter > h1 > .header-section-number::after, .chapter-ref > .toc-section-number::after { content: var(--chapter-name-after, ""); } /* misc elements */ .subtitle span { font-size: .9em; } img { max-width: 100%; } pre { padding: 1em; } pre[class] { background: #f9f9f9; } abbr { text-decoration: none; } @media screen { div.sourceCode { overflow: visible !important; } a.sourceLine::before { text-decoration: unset !important; } } pre.numberSource a.sourceLine { left: 0 !important; text-indent: -5em } pre.numberSource { margin-left: 0 !important; } table { margin: auto; border-top: 1px solid #666; border-bottom: 1px solid #666; } table thead th { border-bottom: 1px solid #ddd; } thead, tfoot, tr:nth-child(even) { background: #eee; } .footnotes { font-size: 50%; margin-left: -0in !important; flex-wrap: wrap; word-wrap: break-word; } .footnotes hr::before { content: "Footnotes:"; } .footnotes hr { border: none; } .footnote-break { width: 1in; } body { hyphens: auto; } code { hyphens: none; } /* two pages in a row if possible on screen */ @media screen { body { background-color: var(--background); margin: var(--screen-pages-spacing) auto 0 auto; } .pagedjs_pages { display: flex; max-width: calc(var(--pagedjs-width) * 2); flex: 0; flex-wrap: wrap; margin: 0 auto; } .pagedjs_page { background-color: var(--color-paper); box-shadow: 0 0 0 1px var(--color-mbox); flex-shrink: 0; flex-grow: 0; margin: auto auto var(--screen-pages-spacing) auto; } } /* when a row can hold two pages, start first page on the right */ @media screen and (min-width: 12.32in) { .pagedjs_page { margin: auto 0 var(--screen-pages-spacing) 0; } .pagedjs_first_page { margin-left: var(--pagedjs-width); } } /* use a fixed width body for mobiles */ @media screen and (max-width:1180px) { body { width: calc(var(--pagedjs-width) + 2 * var(--screen-pages-spacing)); } }
0.451085
0.149376
----------------------------------------------------------------------------- Import css */ .dcb { background-image: url(https://cdn.esphere.ru/images/sberbank/grass.jpg); background-position: 50% 0; background-size: cover; background-repeat: no-repeat; background-attachment: fixed; } .dcb > div > .wrapper { min-height: 100vh; } .dcb .wrapper { width: 110rem; } .dcb > * > .wrapper { background: #fafafa; } .dcb .user-box { font-size: 1.2rem; padding: 0 1rem; } .not-allowed { cursor: not-allowed; height: 7.2rem; margin-bottom: 3rem; background-size: 4px 4px; opacity: .5; } .not-allowed:hover { background: transparent url(../images/disabled.png) repeat; } .emulate-dcb-iframe { position: relative; /* height: 600px; padding: 1px; overflow-y: auto; */ } *[ui-view]:empty { display: none; } .name { text-transform: capitalize; } .kit-test { background: rgba(255, 255, 255, 0.5); border: 1px dotted #ec483b; padding: .5rem; } /* UIKIT colors ----------------------------------------------------------------------------- UIKIT colors */ ul.kit-colors:after { content: " "; display: block; clear: both; } ul.kit-colors li { display: block; float: left; width: 25%; margin-bottom: 2rem; } ul.kit-colors div { background: white; margin: 0 0 0 25%; padding: .5rem; } ul.kit-colors label { display: block; font-family: consolas, "courier new", monospace; text-transform: uppercase; } ul.kit-colors label.value { margin-top: -1.1rem; } ul.kit-colors small { color: darkgray; } ul.kit-colors.value div { margin-left: 15%; padding: 0 0 0 1.5rem; } ul.kit-colors.value label { text-transform: lowercase; font-weight: 500; } ul.kit-colors.value li.spacer { width: 100%; margin: 1rem; } /* UIKIT layout ----------------------------------------------------------------------------- UIKIT layout */ .uikit-layout, .uikit-layout [class*="item-"] { border: dashed lightgrey; } .uikit-layout { border-width: 1px; } .uikit-layout [class*="item-"] { border-width: 1px 0 0 1px; } .uikit-layout > div:first-child > [class*="item-"] { border-left-width: 0; } .uikit-layout > div > [class*="item-"]:first-child { border-top-width: 0; } .uikit-layout .item-header, .uikit-layout .item-toolbar, .uikit-layout .item-content, .uikit-layout .item-footer { background: white; } .uikit-layout .item-content { padding-top: 1rem; padding-bottom: 1rem; } /* Promo ----------------------------------------------------------------------------- Promo */ .promo { position: relative; } .promo > div > [class*="width-"], .promo > div > [class*="block"] { background: whitesmoke; margin-bottom: .5rem; text-align: right; } .promo > div > [class*="width-"]:first-child, .promo > div > [class*="block"]:first-child { background: aliceblue; box-shadow: inset -.5rem 0 0 white; text-align: left; } .promo .row { margin-top: 12px; background-color: whitesmoke; } .promo .row:first-child { margin-top: 0; } .promo .row [class*="col"] { padding-top: 12px; padding-bottom: 12px; background-color: aliceblue; border: 1px solid rgba(86, 61, 124, 0.2); } .promo.alignments .row { min-height: 160px; } .promo-inner [class*="inner-"], .promo-inner [class*="padding-"], .promo-padding [class*="inner-"], .promo-padding [class*="padding-"] { background-color: whitesmoke; } .promo-inner [class*="inner-"] > div, .promo-inner [class*="padding-"] > div, .promo-padding [class*="inner-"] > div, .promo-padding [class*="padding-"] > div { background-color: aliceblue; border: 1px solid rgba(86, 61, 124, 0.2); } .promo-margin .flex-row { padding: 4px; margin-bottom: 8px; background-color: whitesmoke; } .promo-margin .flex-row [class*="margin-"] { background-color: aliceblue; } .promo-margin .flex-row li { border: 1px solid rgba(86, 61, 124, 0.2); padding: 4px; } .promo-info { position: absolute; text-align: center; top: 42%; left: 20%; right: 20%; } /* Footer ----------------------------------------------------------------------------- Footer */ /* Horizontal menu ----------------------------------------------------------------------------- Horizontal menu */ footer .menu-h [class*="level-"] > a, footer .menu-h [class*="level-"] > span { padding-top: .3rem; padding-bottom: .3rem; border-radius: .3rem; } /* Vertical menu ----------------------------------------------------------------------------- Vertical menu */ footer .menu-v [class*="level-"] > a, footer .menu-v [class*="level-"] > span { border: none; } footer .menu-v .level-1 > a, footer .menu-v .level-1 > span { border-radius: .3rem; padding: .7rem 1rem; display: inline-block; } footer nav [class*="level-"]:hover > a { background: rgba(0, 0, 0, 0.05); } footer nav [class*="level-"].active > a { background: #949494; color: white; } footer .menu-v { padding: 1rem; } /* Notices ----------------------------------------------------------------------------- */ .snackbar { padding: 1rem; border-radius: 0.3rem; } .snackbar-icon, .snackbar-close { padding: 0 1.4rem 0 0.7rem; } .snackbar-icon { border-right-width: 2px; } /*# sourceMappingURL=uikit.css.map */
storybook/styles/css/uikit.css
----------------------------------------------------------------------------- Import css */ .dcb { background-image: url(https://cdn.esphere.ru/images/sberbank/grass.jpg); background-position: 50% 0; background-size: cover; background-repeat: no-repeat; background-attachment: fixed; } .dcb > div > .wrapper { min-height: 100vh; } .dcb .wrapper { width: 110rem; } .dcb > * > .wrapper { background: #fafafa; } .dcb .user-box { font-size: 1.2rem; padding: 0 1rem; } .not-allowed { cursor: not-allowed; height: 7.2rem; margin-bottom: 3rem; background-size: 4px 4px; opacity: .5; } .not-allowed:hover { background: transparent url(../images/disabled.png) repeat; } .emulate-dcb-iframe { position: relative; /* height: 600px; padding: 1px; overflow-y: auto; */ } *[ui-view]:empty { display: none; } .name { text-transform: capitalize; } .kit-test { background: rgba(255, 255, 255, 0.5); border: 1px dotted #ec483b; padding: .5rem; } /* UIKIT colors ----------------------------------------------------------------------------- UIKIT colors */ ul.kit-colors:after { content: " "; display: block; clear: both; } ul.kit-colors li { display: block; float: left; width: 25%; margin-bottom: 2rem; } ul.kit-colors div { background: white; margin: 0 0 0 25%; padding: .5rem; } ul.kit-colors label { display: block; font-family: consolas, "courier new", monospace; text-transform: uppercase; } ul.kit-colors label.value { margin-top: -1.1rem; } ul.kit-colors small { color: darkgray; } ul.kit-colors.value div { margin-left: 15%; padding: 0 0 0 1.5rem; } ul.kit-colors.value label { text-transform: lowercase; font-weight: 500; } ul.kit-colors.value li.spacer { width: 100%; margin: 1rem; } /* UIKIT layout ----------------------------------------------------------------------------- UIKIT layout */ .uikit-layout, .uikit-layout [class*="item-"] { border: dashed lightgrey; } .uikit-layout { border-width: 1px; } .uikit-layout [class*="item-"] { border-width: 1px 0 0 1px; } .uikit-layout > div:first-child > [class*="item-"] { border-left-width: 0; } .uikit-layout > div > [class*="item-"]:first-child { border-top-width: 0; } .uikit-layout .item-header, .uikit-layout .item-toolbar, .uikit-layout .item-content, .uikit-layout .item-footer { background: white; } .uikit-layout .item-content { padding-top: 1rem; padding-bottom: 1rem; } /* Promo ----------------------------------------------------------------------------- Promo */ .promo { position: relative; } .promo > div > [class*="width-"], .promo > div > [class*="block"] { background: whitesmoke; margin-bottom: .5rem; text-align: right; } .promo > div > [class*="width-"]:first-child, .promo > div > [class*="block"]:first-child { background: aliceblue; box-shadow: inset -.5rem 0 0 white; text-align: left; } .promo .row { margin-top: 12px; background-color: whitesmoke; } .promo .row:first-child { margin-top: 0; } .promo .row [class*="col"] { padding-top: 12px; padding-bottom: 12px; background-color: aliceblue; border: 1px solid rgba(86, 61, 124, 0.2); } .promo.alignments .row { min-height: 160px; } .promo-inner [class*="inner-"], .promo-inner [class*="padding-"], .promo-padding [class*="inner-"], .promo-padding [class*="padding-"] { background-color: whitesmoke; } .promo-inner [class*="inner-"] > div, .promo-inner [class*="padding-"] > div, .promo-padding [class*="inner-"] > div, .promo-padding [class*="padding-"] > div { background-color: aliceblue; border: 1px solid rgba(86, 61, 124, 0.2); } .promo-margin .flex-row { padding: 4px; margin-bottom: 8px; background-color: whitesmoke; } .promo-margin .flex-row [class*="margin-"] { background-color: aliceblue; } .promo-margin .flex-row li { border: 1px solid rgba(86, 61, 124, 0.2); padding: 4px; } .promo-info { position: absolute; text-align: center; top: 42%; left: 20%; right: 20%; } /* Footer ----------------------------------------------------------------------------- Footer */ /* Horizontal menu ----------------------------------------------------------------------------- Horizontal menu */ footer .menu-h [class*="level-"] > a, footer .menu-h [class*="level-"] > span { padding-top: .3rem; padding-bottom: .3rem; border-radius: .3rem; } /* Vertical menu ----------------------------------------------------------------------------- Vertical menu */ footer .menu-v [class*="level-"] > a, footer .menu-v [class*="level-"] > span { border: none; } footer .menu-v .level-1 > a, footer .menu-v .level-1 > span { border-radius: .3rem; padding: .7rem 1rem; display: inline-block; } footer nav [class*="level-"]:hover > a { background: rgba(0, 0, 0, 0.05); } footer nav [class*="level-"].active > a { background: #949494; color: white; } footer .menu-v { padding: 1rem; } /* Notices ----------------------------------------------------------------------------- */ .snackbar { padding: 1rem; border-radius: 0.3rem; } .snackbar-icon, .snackbar-close { padding: 0 1.4rem 0 0.7rem; } .snackbar-icon { border-right-width: 2px; } /*# sourceMappingURL=uikit.css.map */
0.469277
0.103522
.fd-tooltip .fd-tooltip__content+(left, right, bottom-left, bottom-right) */ .fd-inline-help { font-size: 14px; line-height: 1.42857; color: #32363a; font-family: '72',-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol; position: relative; display: inline-block; width: 18px; height: 18px; top: 3px } .fd-inline-help::before { content: "?"; width: 18px; height: 18px; font-style: normal; position: absolute; left: 0; color: #fff; border-radius: 50%; background-color: #6f7275; text-align: center } .fd-inline-help__content { font-size: .85714rem; line-height: 1.33333; font-weight: 400; background: #fff; padding: 12px; display: block; position: absolute; color: #515559; top: 30px; right: -12px; min-width: 350px; -webkit-transition: opacity 125ms ease-in; transition: opacity 125ms ease-in; text-align: left; z-index: 1; border-radius: 5px; visibility: hidden; opacity: 0; -webkit-filter: drop-shadow(rgba(0, 0, 0, .1) 0 2px 10px); filter: drop-shadow(rgba(0, 0, 0, .1) 0 2px 10px) } .fd-inline-help__content::before { height: 0; width: 0; border-bottom: 8px solid #fff; border-left: 6.5px solid transparent; border-right: 6.5px solid transparent; content: ""; position: absolute; top: -8px; right: 14px } .fd-inline-help__content--left { top: -12px; left: 30px } .fd-inline-help__content--left::before { top: 16px; left: -10px; -webkit-transform: rotate(-90deg); transform: rotate(-90deg) } .fd-inline-help__content--right { top: -12px; right: 30px } .fd-inline-help__content--right::before { top: 16px; right: -10px; -webkit-transform: rotate(90deg); transform: rotate(90deg) } .fd-inline-help__content--bottom-left { left: -8px } .fd-inline-help__content--bottom-left::before { top: -8px; left: 12px } .fd-inline-help:hover .fd-inline-help__content { visibility: visible; opacity: 1; overflow: visible }
dist/components/inline-help.css
.fd-tooltip .fd-tooltip__content+(left, right, bottom-left, bottom-right) */ .fd-inline-help { font-size: 14px; line-height: 1.42857; color: #32363a; font-family: '72',-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol; position: relative; display: inline-block; width: 18px; height: 18px; top: 3px } .fd-inline-help::before { content: "?"; width: 18px; height: 18px; font-style: normal; position: absolute; left: 0; color: #fff; border-radius: 50%; background-color: #6f7275; text-align: center } .fd-inline-help__content { font-size: .85714rem; line-height: 1.33333; font-weight: 400; background: #fff; padding: 12px; display: block; position: absolute; color: #515559; top: 30px; right: -12px; min-width: 350px; -webkit-transition: opacity 125ms ease-in; transition: opacity 125ms ease-in; text-align: left; z-index: 1; border-radius: 5px; visibility: hidden; opacity: 0; -webkit-filter: drop-shadow(rgba(0, 0, 0, .1) 0 2px 10px); filter: drop-shadow(rgba(0, 0, 0, .1) 0 2px 10px) } .fd-inline-help__content::before { height: 0; width: 0; border-bottom: 8px solid #fff; border-left: 6.5px solid transparent; border-right: 6.5px solid transparent; content: ""; position: absolute; top: -8px; right: 14px } .fd-inline-help__content--left { top: -12px; left: 30px } .fd-inline-help__content--left::before { top: 16px; left: -10px; -webkit-transform: rotate(-90deg); transform: rotate(-90deg) } .fd-inline-help__content--right { top: -12px; right: 30px } .fd-inline-help__content--right::before { top: 16px; right: -10px; -webkit-transform: rotate(90deg); transform: rotate(90deg) } .fd-inline-help__content--bottom-left { left: -8px } .fd-inline-help__content--bottom-left::before { top: -8px; left: 12px } .fd-inline-help:hover .fd-inline-help__content { visibility: visible; opacity: 1; overflow: visible }
0.436862
0.066266
.y.axis text { visibility: hidden; } .y.axis g .icon { opacity: 0; } .y.axis g:hover .icon { opacity: 1.0; } .y.axis text, .y.axis image { cursor: pointer; } .y.axis rect:hover { stroke: #fff; stroke-width: 0; opacity: 0 !important; } .y.axis rect:hover .icon { opacity: 1 !important; } .docLabel { } .bar { fill: steelblue; } .bar:hover { fill: brown; } .axis { font: 11px sans-serif; } .axis path, .axis line { fill: none; stroke: #000; shape-rendering: crispEdges; } .docLabel{ font:11px sans-serif; pointer-events: none; } rect { opacity: 0.6; } rect.hover { stroke: #000; stroke-width: 1; shape-rendering: crispEdges; cursor: crosshair; } rect.hover, .legend rect { opacity: 0.8; } .doc:hover rect, .doc.hover rect { opacity: 1.0; } rect:hover { opacity: 1.0 !important; } rect:hover, .legend.hover rect, .legend.selected rect { stroke: #000; stroke-width: 2; shape-rendering: crispEdges; } .selected text, .hover text { font-weight: bold; } .doc text { font-size: 18px; } #legend, #controls { position: absolute; overflow: visible; } .primary { text-transform: uppercase; } text.hover, .title{ font-weight: bold; } /* .primary.doc:hover, .primary.doc { stroke: #000; stroke-width: 1px; stroke-opacity: 1.0; shape-rendering: crispEdges; }*/ .logo-word { background-image: url('/img/inpho_logo.png'); background-size: 172px 92px; width: 172px; height: 84px; padding-top: 6px; margin-top: 14px; margin-bottom: 15px; margin-left: -6px; display: inline-block; text-indent: -3000px; } h1 { text-align: center; margin-bottom: 0; font-size: 59px; line-height: 1; color: inherit; letter-spacing: -1px; } h1 a, h1 a:hover { color: #000; text-decoration: none; } /* .btn { vertical-align: middle; margin-top: 2px; }*/ #twitter-widget-0 { margin-left: 5px; margin-top: 3px; margin-bottom: -8px; } .null, .non-null { display: none; } .formula { font-variant: small-caps; } .formula em { font-variant: normal; } .popover-content { max-height: 250px; overflow-y: scroll; } .typeahead { z-index: 1040; } .popover { z-index: 1100; } h2 { margin-top: -25px; } .bar-container { height:25px; } dt { margin-left: -80px; } @media(min-width:768px) { dd { margin-left: 100px !important; } } .btn-group { display: inline-flex; white-space: nowrap; }
David and Pooja/topicexplorer/www/css/bars.css
.y.axis text { visibility: hidden; } .y.axis g .icon { opacity: 0; } .y.axis g:hover .icon { opacity: 1.0; } .y.axis text, .y.axis image { cursor: pointer; } .y.axis rect:hover { stroke: #fff; stroke-width: 0; opacity: 0 !important; } .y.axis rect:hover .icon { opacity: 1 !important; } .docLabel { } .bar { fill: steelblue; } .bar:hover { fill: brown; } .axis { font: 11px sans-serif; } .axis path, .axis line { fill: none; stroke: #000; shape-rendering: crispEdges; } .docLabel{ font:11px sans-serif; pointer-events: none; } rect { opacity: 0.6; } rect.hover { stroke: #000; stroke-width: 1; shape-rendering: crispEdges; cursor: crosshair; } rect.hover, .legend rect { opacity: 0.8; } .doc:hover rect, .doc.hover rect { opacity: 1.0; } rect:hover { opacity: 1.0 !important; } rect:hover, .legend.hover rect, .legend.selected rect { stroke: #000; stroke-width: 2; shape-rendering: crispEdges; } .selected text, .hover text { font-weight: bold; } .doc text { font-size: 18px; } #legend, #controls { position: absolute; overflow: visible; } .primary { text-transform: uppercase; } text.hover, .title{ font-weight: bold; } /* .primary.doc:hover, .primary.doc { stroke: #000; stroke-width: 1px; stroke-opacity: 1.0; shape-rendering: crispEdges; }*/ .logo-word { background-image: url('/img/inpho_logo.png'); background-size: 172px 92px; width: 172px; height: 84px; padding-top: 6px; margin-top: 14px; margin-bottom: 15px; margin-left: -6px; display: inline-block; text-indent: -3000px; } h1 { text-align: center; margin-bottom: 0; font-size: 59px; line-height: 1; color: inherit; letter-spacing: -1px; } h1 a, h1 a:hover { color: #000; text-decoration: none; } /* .btn { vertical-align: middle; margin-top: 2px; }*/ #twitter-widget-0 { margin-left: 5px; margin-top: 3px; margin-bottom: -8px; } .null, .non-null { display: none; } .formula { font-variant: small-caps; } .formula em { font-variant: normal; } .popover-content { max-height: 250px; overflow-y: scroll; } .typeahead { z-index: 1040; } .popover { z-index: 1100; } h2 { margin-top: -25px; } .bar-container { height:25px; } dt { margin-left: -80px; } @media(min-width:768px) { dd { margin-left: 100px !important; } } .btn-group { display: inline-flex; white-space: nowrap; }
0.643665
0.137272
body { font-size: 16px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: rgb(38, 38, 38); } a { color: rgb(0, 55, 107); font-weight: bold; text-decoration: none; } .flex { display: flex; flex: 1; } .flex-2 { flex: 2; } .flex-col { flex-direction: column; } .flex-align-center { align-items: center; } .container { max-width: 935px; margin: 0 auto; text-align: center; } /* icons */ .icon-search { width: 10px; height: 10px; margin: auto 0.25em; } .icon-search-close { width: 14px; height: 14px; margin: auto 0.75em; } /* Main Styles */ /* Navigation Styles */ #main-nav { border-bottom: 1px solid rgb(219, 219, 219); padding: 0.3rem; position: fixed; width: 100%; background: #fff; } #main-nav .logo { margin-top: 7px; } #main-nav .nav-search { flex: 2; align-items: center; } #main-nav .nav-search .search-container { border: 1px solid rgb(219, 219, 219); border-radius: 0.2em; max-width: 225px; margin: 0 auto; padding: 0.25em; overflow: hidden; margin: auto; position: relative; } #main-nav .nav-search .search-container input#search-input { border: none; opacity: 0; z-index: 1; padding: 0px 10px 0px 19px; } #main-nav .nav-search .search-container input#search-input:focus { outline: none; opacity: 1; } #main-nav .nav-search .search-container input#search-input~#search-actions { display: none; position: absolute; margin: 0 auto; padding: 0px 10px 0px 0px; align-items: center; } #main-nav .nav-search .search-container input#search-input~#search-substitute { display: block; margin: 0 auto; padding: 5px 10px 1px 0px; display: flex; align-items: center; margin-top: -11%; align-items: center; color: rgb(219, 219, 219); } #main-nav .nav-search .search-container input#search-input:focus~#search-actions { display: flex; z-index: 2; width: 100%; pointer-events: none; } #main-nav .nav-search .search-container input#search-input:focus~#search-substitute { display: none; } #nav-actions ul { list-style-type: none; margin: 0; padding: 0; } #nav-actions ul li { float: left; width: 25px; height: 25px; padding: 0.5em; position: relative; } #nav-actions ul li.active::after { background: #ed4956; background: rgba(var(--c37, 237, 73, 86), 1); border-radius: 2px; bottom: 0px; content: ''; height: 4px; left: 0; margin: 0 auto; position: absolute; right: 0; -webkit-transition: bottom .2s ease-in-out; transition: bottom .2s ease-in-out; width: 4px; } #nav-actions ul li img { width: 22px; height: 22px; }
css/style.css
body { font-size: 16px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: rgb(38, 38, 38); } a { color: rgb(0, 55, 107); font-weight: bold; text-decoration: none; } .flex { display: flex; flex: 1; } .flex-2 { flex: 2; } .flex-col { flex-direction: column; } .flex-align-center { align-items: center; } .container { max-width: 935px; margin: 0 auto; text-align: center; } /* icons */ .icon-search { width: 10px; height: 10px; margin: auto 0.25em; } .icon-search-close { width: 14px; height: 14px; margin: auto 0.75em; } /* Main Styles */ /* Navigation Styles */ #main-nav { border-bottom: 1px solid rgb(219, 219, 219); padding: 0.3rem; position: fixed; width: 100%; background: #fff; } #main-nav .logo { margin-top: 7px; } #main-nav .nav-search { flex: 2; align-items: center; } #main-nav .nav-search .search-container { border: 1px solid rgb(219, 219, 219); border-radius: 0.2em; max-width: 225px; margin: 0 auto; padding: 0.25em; overflow: hidden; margin: auto; position: relative; } #main-nav .nav-search .search-container input#search-input { border: none; opacity: 0; z-index: 1; padding: 0px 10px 0px 19px; } #main-nav .nav-search .search-container input#search-input:focus { outline: none; opacity: 1; } #main-nav .nav-search .search-container input#search-input~#search-actions { display: none; position: absolute; margin: 0 auto; padding: 0px 10px 0px 0px; align-items: center; } #main-nav .nav-search .search-container input#search-input~#search-substitute { display: block; margin: 0 auto; padding: 5px 10px 1px 0px; display: flex; align-items: center; margin-top: -11%; align-items: center; color: rgb(219, 219, 219); } #main-nav .nav-search .search-container input#search-input:focus~#search-actions { display: flex; z-index: 2; width: 100%; pointer-events: none; } #main-nav .nav-search .search-container input#search-input:focus~#search-substitute { display: none; } #nav-actions ul { list-style-type: none; margin: 0; padding: 0; } #nav-actions ul li { float: left; width: 25px; height: 25px; padding: 0.5em; position: relative; } #nav-actions ul li.active::after { background: #ed4956; background: rgba(var(--c37, 237, 73, 86), 1); border-radius: 2px; bottom: 0px; content: ''; height: 4px; left: 0; margin: 0 auto; position: absolute; right: 0; -webkit-transition: bottom .2s ease-in-out; transition: bottom .2s ease-in-out; width: 4px; } #nav-actions ul li img { width: 22px; height: 22px; }
0.470007
0.071009
a { text-decoration: none; } .hiddenbox { display: none !important; } .posts { float: left; width: 100%; position: relative; background: #14191C; margin: 10px; padding: 2rem 3rem; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; } .posts .post-header { float: left; width: 100%; position: relative; color: #fff; } .posts .post-header img { float: left; height: 75px; width: 75px; border: 1px solid #FF4800; -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%; margin-right: 1rem; } .posts .post-header h3 { float: left; height: 30px; line-height: 30px; margin: 0px; width: 60%; display: inline-block; font-size: 19px; } .posts .post-header h4 { float: left; height: 30px; line-height: 30px; margin: 0px; width: 60%; display: inline-block; font-size: 19px; } .posts .post-header span { float: left; height: 16px; line-height: 16px; margin: 0px; width: 60%; font-size: 12px; color: #FF4800; } .posts .post-header .right-post-menu { position: absolute; top: 0; height: 30px; right: 0; z-index: 999999; margin: auto; bottom: 0; cursor: pointer; } .posts .post-header .right-post-menu i { font-size: 2rem; color: #CBCBCB; } .posts .post-header .right-post-menu span { height: 6px; margin: 0px 2px; width: 6px; background-color: #fff; -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%; } .posts .post-content { float: left; width: 100%; margin: 1rem 0px; } .posts .post-content .comment-shared { border: 1px solid #354247; } .posts .post-content .comment-shared .post-header { padding: 1rem; } .posts .post-content .comment-shared .post-header .right-shared-menu { right: 2rem; position: absolute; top: 1rem; border: 1px solid #FF4800; color: #fff; padding: 0 1rem; height: 20px; line-height: 20px; font-size: 14px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; cursor: pointer; } .posts .post-content .comment-shared .post-header .right-shared-menu .right-shared-btn i { color: #FF4800; } .posts .post-content .comment-shared .post-content p { padding: 1rem; } .posts .post-content .comment-shared .post-content { margin: 0px; } .posts .post-content p { color: #fff; } .posts .post-content a { color: #FF4800; margin: 0px 15px; font-weight: 500; } .posts .post-content .post-img { float: left; width: 100%; } .posts .post-content .post-like-section { float: left; width: 100%; border-bottom: 2px solid #293235; padding: 1rem .5rem; } .posts .post-content .post-like-section span { float: left; margin: 0px 5px; height: 25px; line-height: 25px; font-size: 12px; color: #fff; cursor: pointer; font-weight: 600; } .posts .post-content .post-like-section span.fa { float: left; color: #FF4800; font-size: 20px; cursor: pointer; font-weight: 100; } .posts .post-content .comment-section { float: left; width: 100%; margin: 1rem 0; } .posts .post-content .comment-section .all-comments { width: 100%; text-align: center; } .posts .post-content .comment-section .all-comments a { display: inline-block; color: #FF4800; text-decoration: none; } .posts .post-content .comment-section .first-comment { color: #fff; } .posts .post-content .comment-section .first-comment strong { font-weight: 600; } .posts .post-content .comment-section .first-comment .comment-hour { color: #FF4800; } .posts .post-content .comment-section .first-comment .comment-dot { color: #CBCBCB; } .posts .post-content .comment-section .first-comment .comment-like-section span { float: left; margin: 0px 5px; height: 20px; line-height: 20px; font-size: 12px; color: #fff; cursor: pointer; font-weight: 600; } .posts .post-content .comment-section .first-comment .comment-like-section span.fa { float: left; color: #FF4800; font-size: 20px; cursor: pointer; font-weight: 100; } .posts .post-content .comment-section .comments-box { color: #fff; } .posts .post-content .comment-section .comments-box .mleft61 { margin-left: 61px; } .posts .post-content .comment-section .comments-box strong { font-weight: 600; margin-right: 0.5rem; } .posts .post-content .comment-section .comments-box .comment-hour { color: #FF4800; } .posts .post-content .comment-section .comments-box .comment-dot { color: #CBCBCB; } .posts .post-content .comment-section .comments-box .comment-like-section span { float: left; margin: 0px 5px; height: 20px; line-height: 20px; font-size: 12px; color: #fff; cursor: pointer; font-weight: 600; } .posts .post-content .comment-section .comments-box .comment-like-section span.fa { float: left; color: #FF4800; font-size: 20px; cursor: pointer; font-weight: 100; } .posts .post-content .comment-section .comments-box img.comment-img-big { max-width: 100%; border: 1px solid #FF4800; margin-bottom: 0.5rem; } .posts .post-content .comment-section .comment-img { float: left; } .posts .post-content .comment-section .comment-img img { height: 45px; width: 45px; -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%; border: 1px solid #FF4800; } .posts .post-content .comment-section .comment-text { float: left; width: 100%; } .posts .post-content .comment-section .comment-text input[type=text] { background: #293235; border: 0px !important; -webkit-border-top-left-radius: 5px; -moz-border-top-left-radius: 5px; border-top-left-radius: 5px; -webkit-border-bottom-left-radius: 5px; -moz-border-bottom-left-radius: 5px; border-bottom-left-radius: 5px; height: 45px; line-height: 45px; padding: 0 2rem; color: #CBCBCB; } .posts .post-content .comment-section .comment-text input[type=text]::placeholder { color: #CBCBCB; } .posts .post-content .comment-section .comment-text button { border: 0px; background: #293235; color: #CBCBCB; } .posts .post-content .comment-section .comment-text button:last-child { padding-right: 2rem; -webkit-border-bottom-right-radius: 5px; -moz-border-bottom-right-radius: 5px; border-bottom-right-radius: 5px; -webkit-border-top-right-radius: 5px; -moz-border-top-right-radius: 5px; border-top-right-radius: 5px; } .posts .post-content .comment-section .comment-text button.added-photo { color: #FF4800; } .posts .post-content .comment-section .comment-text .comment-photo label { margin: 0px; content: ''; } .posts .post-content .comment-section .comment-text .comment-photo input[type=file] { position: absolute !important; } .posts .post-content .comment-section .comment-text .comment-media { background: #293235; padding: 0.5rem 2rem; -webkit-border-bottom-right-radius: 5px; -moz-border-bottom-right-radius: 5px; border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px; -moz-border-bottom-left-radius: 5px; border-bottom-left-radius: 5px; position: relative; } .posts .post-content .comment-section .comment-text .comment-media .media-img:hover .img-hover { display: block; border: 1px solid #FF4800; } .posts .post-content .comment-section .comment-text .comment-media .media-img { position: relative; display: inline-block; text-align: center; } .posts .post-content .comment-section .comment-text .comment-media .media-img .img-hover { position: absolute; height: 100%; text-align: center; width: 100%; background: #8080807a; z-index: 12; display: none; } .posts .post-content .comment-section .comment-text .comment-media .media-img .img-hover .img-center { position: relative; height: 100%; width: 100%; } .posts .post-content .comment-section .comment-text .comment-media .media-img .img-hover img { position: absolute; top: 0px; bottom: 0px; left: 0; right: 0; margin: auto; height: 18px; vertical-align: middle; width: 18px; } .posts .post-content .comment-section .comment-text .comment-media .media-img img { max-height: 50px; } /*# sourceMappingURL=post.css.map */
css/post.css
a { text-decoration: none; } .hiddenbox { display: none !important; } .posts { float: left; width: 100%; position: relative; background: #14191C; margin: 10px; padding: 2rem 3rem; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; } .posts .post-header { float: left; width: 100%; position: relative; color: #fff; } .posts .post-header img { float: left; height: 75px; width: 75px; border: 1px solid #FF4800; -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%; margin-right: 1rem; } .posts .post-header h3 { float: left; height: 30px; line-height: 30px; margin: 0px; width: 60%; display: inline-block; font-size: 19px; } .posts .post-header h4 { float: left; height: 30px; line-height: 30px; margin: 0px; width: 60%; display: inline-block; font-size: 19px; } .posts .post-header span { float: left; height: 16px; line-height: 16px; margin: 0px; width: 60%; font-size: 12px; color: #FF4800; } .posts .post-header .right-post-menu { position: absolute; top: 0; height: 30px; right: 0; z-index: 999999; margin: auto; bottom: 0; cursor: pointer; } .posts .post-header .right-post-menu i { font-size: 2rem; color: #CBCBCB; } .posts .post-header .right-post-menu span { height: 6px; margin: 0px 2px; width: 6px; background-color: #fff; -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%; } .posts .post-content { float: left; width: 100%; margin: 1rem 0px; } .posts .post-content .comment-shared { border: 1px solid #354247; } .posts .post-content .comment-shared .post-header { padding: 1rem; } .posts .post-content .comment-shared .post-header .right-shared-menu { right: 2rem; position: absolute; top: 1rem; border: 1px solid #FF4800; color: #fff; padding: 0 1rem; height: 20px; line-height: 20px; font-size: 14px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; cursor: pointer; } .posts .post-content .comment-shared .post-header .right-shared-menu .right-shared-btn i { color: #FF4800; } .posts .post-content .comment-shared .post-content p { padding: 1rem; } .posts .post-content .comment-shared .post-content { margin: 0px; } .posts .post-content p { color: #fff; } .posts .post-content a { color: #FF4800; margin: 0px 15px; font-weight: 500; } .posts .post-content .post-img { float: left; width: 100%; } .posts .post-content .post-like-section { float: left; width: 100%; border-bottom: 2px solid #293235; padding: 1rem .5rem; } .posts .post-content .post-like-section span { float: left; margin: 0px 5px; height: 25px; line-height: 25px; font-size: 12px; color: #fff; cursor: pointer; font-weight: 600; } .posts .post-content .post-like-section span.fa { float: left; color: #FF4800; font-size: 20px; cursor: pointer; font-weight: 100; } .posts .post-content .comment-section { float: left; width: 100%; margin: 1rem 0; } .posts .post-content .comment-section .all-comments { width: 100%; text-align: center; } .posts .post-content .comment-section .all-comments a { display: inline-block; color: #FF4800; text-decoration: none; } .posts .post-content .comment-section .first-comment { color: #fff; } .posts .post-content .comment-section .first-comment strong { font-weight: 600; } .posts .post-content .comment-section .first-comment .comment-hour { color: #FF4800; } .posts .post-content .comment-section .first-comment .comment-dot { color: #CBCBCB; } .posts .post-content .comment-section .first-comment .comment-like-section span { float: left; margin: 0px 5px; height: 20px; line-height: 20px; font-size: 12px; color: #fff; cursor: pointer; font-weight: 600; } .posts .post-content .comment-section .first-comment .comment-like-section span.fa { float: left; color: #FF4800; font-size: 20px; cursor: pointer; font-weight: 100; } .posts .post-content .comment-section .comments-box { color: #fff; } .posts .post-content .comment-section .comments-box .mleft61 { margin-left: 61px; } .posts .post-content .comment-section .comments-box strong { font-weight: 600; margin-right: 0.5rem; } .posts .post-content .comment-section .comments-box .comment-hour { color: #FF4800; } .posts .post-content .comment-section .comments-box .comment-dot { color: #CBCBCB; } .posts .post-content .comment-section .comments-box .comment-like-section span { float: left; margin: 0px 5px; height: 20px; line-height: 20px; font-size: 12px; color: #fff; cursor: pointer; font-weight: 600; } .posts .post-content .comment-section .comments-box .comment-like-section span.fa { float: left; color: #FF4800; font-size: 20px; cursor: pointer; font-weight: 100; } .posts .post-content .comment-section .comments-box img.comment-img-big { max-width: 100%; border: 1px solid #FF4800; margin-bottom: 0.5rem; } .posts .post-content .comment-section .comment-img { float: left; } .posts .post-content .comment-section .comment-img img { height: 45px; width: 45px; -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%; border: 1px solid #FF4800; } .posts .post-content .comment-section .comment-text { float: left; width: 100%; } .posts .post-content .comment-section .comment-text input[type=text] { background: #293235; border: 0px !important; -webkit-border-top-left-radius: 5px; -moz-border-top-left-radius: 5px; border-top-left-radius: 5px; -webkit-border-bottom-left-radius: 5px; -moz-border-bottom-left-radius: 5px; border-bottom-left-radius: 5px; height: 45px; line-height: 45px; padding: 0 2rem; color: #CBCBCB; } .posts .post-content .comment-section .comment-text input[type=text]::placeholder { color: #CBCBCB; } .posts .post-content .comment-section .comment-text button { border: 0px; background: #293235; color: #CBCBCB; } .posts .post-content .comment-section .comment-text button:last-child { padding-right: 2rem; -webkit-border-bottom-right-radius: 5px; -moz-border-bottom-right-radius: 5px; border-bottom-right-radius: 5px; -webkit-border-top-right-radius: 5px; -moz-border-top-right-radius: 5px; border-top-right-radius: 5px; } .posts .post-content .comment-section .comment-text button.added-photo { color: #FF4800; } .posts .post-content .comment-section .comment-text .comment-photo label { margin: 0px; content: ''; } .posts .post-content .comment-section .comment-text .comment-photo input[type=file] { position: absolute !important; } .posts .post-content .comment-section .comment-text .comment-media { background: #293235; padding: 0.5rem 2rem; -webkit-border-bottom-right-radius: 5px; -moz-border-bottom-right-radius: 5px; border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px; -moz-border-bottom-left-radius: 5px; border-bottom-left-radius: 5px; position: relative; } .posts .post-content .comment-section .comment-text .comment-media .media-img:hover .img-hover { display: block; border: 1px solid #FF4800; } .posts .post-content .comment-section .comment-text .comment-media .media-img { position: relative; display: inline-block; text-align: center; } .posts .post-content .comment-section .comment-text .comment-media .media-img .img-hover { position: absolute; height: 100%; text-align: center; width: 100%; background: #8080807a; z-index: 12; display: none; } .posts .post-content .comment-section .comment-text .comment-media .media-img .img-hover .img-center { position: relative; height: 100%; width: 100%; } .posts .post-content .comment-section .comment-text .comment-media .media-img .img-hover img { position: absolute; top: 0px; bottom: 0px; left: 0; right: 0; margin: auto; height: 18px; vertical-align: middle; width: 18px; } .posts .post-content .comment-section .comment-text .comment-media .media-img img { max-height: 50px; } /*# sourceMappingURL=post.css.map */
0.333178
0.054575
body { font-family: sans-serif; overflow: hidden; } li { list-style: none; } /* Layout */ body { display: flex; flex-flow: column nowrap; height: 100vh; } /* Header */ .header { padding: 15px 50px; display: flex; flex-flow: row nowrap; justify-content: space-between; align-items: center; background-color: #50a5de; box-shadow: 0 0 5px 1px black; z-index: 2; } .header__title { color: white; text-transform: uppercase; } .header__user-container { display: flex; flex-flow: row nowrap; align-items: center; } .header__username { display: none; padding: 0 15px 0 0; color: #39393a; } .header__username.visible { display: block; } .header__login-img { width: 42px; height: 42px; display: inline-block; border-radius: 5px; } .header__login-button { display: flex; flex-flow: row nowrap; align-items: center; width: 120px; background: white; font-family: 'Roboto', sans-serif; border-radius: 5px; border: none; box-shadow: 0px 0px 1px 0 white; cursor: pointer; transition: box-shadow 0.7s; } .header__login-button:hover { box-shadow: 0px 0px 8px 1px white; } .header__login-text { flex: 1; } /* Main */ .main { display: flex; flex-flow: row nowrap; flex: 1; } .menu-list { background-color: #deac50; color: white; box-shadow: 1px 0 5px #825f1e; z-index: 1; display: flex; flex-flow: column nowrap; } .menu-list hr { width: 100%; } .menu-list__header { padding: 15px 15px 0 15px; text-align: center; } .menu-list__item-container { display: flex; flex-flow: column nowrap; align-items: flex-end; overflow: auto; } .menu-list__item { padding: 10px 15px; width: 100%; display: flex; flex-flow: row nowrap; justify-content: space-between; align-items: baseline; flex-shrink: 0; cursor: pointer; } .menu-list__delete-button { background: none; border: none; color: white; font-size: 1.4em; padding: 0 15px 0 0; outline: none; padding: 4px; border-radius: 8px; cursor: pointer; } .menu-list__text { margin: 0 0 0 auto; } .menu-list__delete-button:hover { box-shadow: 1px 1px 2px #9a7c45; } .menu-list__delete-button:active { background: white; color: #deac50; } .menu-list__delete-button.hidden { display: none; } .menu-list__item:hover { background: #e2c691; } .menu-list__item.selected { background: white; color: #deac50; } .menu-list__item.selected .menu-list__delete-button { color: #deac50; } .menu-list__item.selected .menu-list__delete-button:active { background: #deac50; color: white; } .menu-list__new-item { padding: 10px 15px; background: #d09e41; } .menu-list__new-item.hidden { display: none; } .menu-list__input { background: none; border: none; outline: none; color: white; } .menu-list__input::placeholder { color: #ffcd70; } .item-list { flex: 1; padding: 15px; background: #e6e6e6; overflow: auto; } .item-list__header { color: #de5050; } .item-list__new-item { height: 100px; display: flex; flex-flow: row nowrap; justify-content: center; align-items: center; background: #c7c7c7; border-radius: 5px; border: 2px dashed white; color: white; cursor: pointer; } .item-list__new-item:active { background: #de5050; } .item-list__new-item.hidden { display: none; } .item-list__item { display: grid; grid-template: "title title category category" "image description description first-button" "image description description second-button" / 150px auto 200px 50px; padding: 10px; background: #c7c7c7; border-radius: 5px; margin: 0 0 10px 0; } .item-list__item:last-child { margin: 0; } .item-list__item__image { grid-area: image; width: 100%; border-radius: 5px; background: #de5050; min-height: 120px; text-align: center; color: white; } .item-list__item__image-real-input { height: 0; width: 0; } .item-list__item__title { grid-area: title; margin: 0 0 5px 0; color: #3a3a3a; border-radius: 5px; } .item-list__item__category { grid-area: category; margin: 0 0 5px 5px; color: #3a3a3a; border-radius: 5px; } .item-list__item__title.input { background: #e6e6e6; padding: 4px; } .item-list__item__category.input { background: #e6e6e6; padding: 4px; cursor: pointer; } .item-list__item__description { grid-area: description; padding: 0 8px; color: #777777; background: #e6e6e6; border-radius: 5px; padding: 8px; margin: 0 10px; } .item-list__item__description.input { resize: none; } .item-list__item__save-button, .item-list__item__edit-button { grid-area: first-button; } .item-list__item__cancel-button, .item-list__item__delete-button { grid-area: second-button; } .item-list__item__delete-button, .item-list__item__edit-button, .item-list__item__save-button, .item-list__item__cancel-button { border: thin outset #de5050; outline: none; color: white; background: #de5050; border-radius: 5px; font-size: 1.2em; margin: auto 0; height: 80%; min-height: 45px; cursor: pointer; } .item-list__item__delete-button:active, .item-list__item__edit-button:active, .item-list__item__save-button:active, .item-list__item__cancel-button:active { border: thin inset #de5050; } .item-list__item__title.input, .item-list__item__category.input, .item-list__item__image.input, .item-list__item__description.input, .item-list__item__save-button, .item-list__item__cancel-button { display: none; } .item-list__item.editmode .item-list__item__title.input, .item-list__item.editmode .item-list__item__category.input, .item-list__item.editmode .item-list__item__image.input, .item-list__item.editmode .item-list__item__description.input, .item-list__item.editmode .item-list__item__save-button, .item-list__item.editmode .item-list__item__cancel-button { display: block; } .item-list__item.editmode .item-list__item__title, .item-list__item.editmode .item-list__item__category, .item-list__item.editmode .item-list__item__image, .item-list__item.editmode .item-list__item__description, .item-list__item.editmode .item-list__item__edit-button, .item-list__item.editmode .item-list__item__delete-button { display: none; } .item-list__item__delete-button.hidden, .item-list__item__edit-button.hidden { display: none; }
3.Item_Catalog/static/css/main.css
body { font-family: sans-serif; overflow: hidden; } li { list-style: none; } /* Layout */ body { display: flex; flex-flow: column nowrap; height: 100vh; } /* Header */ .header { padding: 15px 50px; display: flex; flex-flow: row nowrap; justify-content: space-between; align-items: center; background-color: #50a5de; box-shadow: 0 0 5px 1px black; z-index: 2; } .header__title { color: white; text-transform: uppercase; } .header__user-container { display: flex; flex-flow: row nowrap; align-items: center; } .header__username { display: none; padding: 0 15px 0 0; color: #39393a; } .header__username.visible { display: block; } .header__login-img { width: 42px; height: 42px; display: inline-block; border-radius: 5px; } .header__login-button { display: flex; flex-flow: row nowrap; align-items: center; width: 120px; background: white; font-family: 'Roboto', sans-serif; border-radius: 5px; border: none; box-shadow: 0px 0px 1px 0 white; cursor: pointer; transition: box-shadow 0.7s; } .header__login-button:hover { box-shadow: 0px 0px 8px 1px white; } .header__login-text { flex: 1; } /* Main */ .main { display: flex; flex-flow: row nowrap; flex: 1; } .menu-list { background-color: #deac50; color: white; box-shadow: 1px 0 5px #825f1e; z-index: 1; display: flex; flex-flow: column nowrap; } .menu-list hr { width: 100%; } .menu-list__header { padding: 15px 15px 0 15px; text-align: center; } .menu-list__item-container { display: flex; flex-flow: column nowrap; align-items: flex-end; overflow: auto; } .menu-list__item { padding: 10px 15px; width: 100%; display: flex; flex-flow: row nowrap; justify-content: space-between; align-items: baseline; flex-shrink: 0; cursor: pointer; } .menu-list__delete-button { background: none; border: none; color: white; font-size: 1.4em; padding: 0 15px 0 0; outline: none; padding: 4px; border-radius: 8px; cursor: pointer; } .menu-list__text { margin: 0 0 0 auto; } .menu-list__delete-button:hover { box-shadow: 1px 1px 2px #9a7c45; } .menu-list__delete-button:active { background: white; color: #deac50; } .menu-list__delete-button.hidden { display: none; } .menu-list__item:hover { background: #e2c691; } .menu-list__item.selected { background: white; color: #deac50; } .menu-list__item.selected .menu-list__delete-button { color: #deac50; } .menu-list__item.selected .menu-list__delete-button:active { background: #deac50; color: white; } .menu-list__new-item { padding: 10px 15px; background: #d09e41; } .menu-list__new-item.hidden { display: none; } .menu-list__input { background: none; border: none; outline: none; color: white; } .menu-list__input::placeholder { color: #ffcd70; } .item-list { flex: 1; padding: 15px; background: #e6e6e6; overflow: auto; } .item-list__header { color: #de5050; } .item-list__new-item { height: 100px; display: flex; flex-flow: row nowrap; justify-content: center; align-items: center; background: #c7c7c7; border-radius: 5px; border: 2px dashed white; color: white; cursor: pointer; } .item-list__new-item:active { background: #de5050; } .item-list__new-item.hidden { display: none; } .item-list__item { display: grid; grid-template: "title title category category" "image description description first-button" "image description description second-button" / 150px auto 200px 50px; padding: 10px; background: #c7c7c7; border-radius: 5px; margin: 0 0 10px 0; } .item-list__item:last-child { margin: 0; } .item-list__item__image { grid-area: image; width: 100%; border-radius: 5px; background: #de5050; min-height: 120px; text-align: center; color: white; } .item-list__item__image-real-input { height: 0; width: 0; } .item-list__item__title { grid-area: title; margin: 0 0 5px 0; color: #3a3a3a; border-radius: 5px; } .item-list__item__category { grid-area: category; margin: 0 0 5px 5px; color: #3a3a3a; border-radius: 5px; } .item-list__item__title.input { background: #e6e6e6; padding: 4px; } .item-list__item__category.input { background: #e6e6e6; padding: 4px; cursor: pointer; } .item-list__item__description { grid-area: description; padding: 0 8px; color: #777777; background: #e6e6e6; border-radius: 5px; padding: 8px; margin: 0 10px; } .item-list__item__description.input { resize: none; } .item-list__item__save-button, .item-list__item__edit-button { grid-area: first-button; } .item-list__item__cancel-button, .item-list__item__delete-button { grid-area: second-button; } .item-list__item__delete-button, .item-list__item__edit-button, .item-list__item__save-button, .item-list__item__cancel-button { border: thin outset #de5050; outline: none; color: white; background: #de5050; border-radius: 5px; font-size: 1.2em; margin: auto 0; height: 80%; min-height: 45px; cursor: pointer; } .item-list__item__delete-button:active, .item-list__item__edit-button:active, .item-list__item__save-button:active, .item-list__item__cancel-button:active { border: thin inset #de5050; } .item-list__item__title.input, .item-list__item__category.input, .item-list__item__image.input, .item-list__item__description.input, .item-list__item__save-button, .item-list__item__cancel-button { display: none; } .item-list__item.editmode .item-list__item__title.input, .item-list__item.editmode .item-list__item__category.input, .item-list__item.editmode .item-list__item__image.input, .item-list__item.editmode .item-list__item__description.input, .item-list__item.editmode .item-list__item__save-button, .item-list__item.editmode .item-list__item__cancel-button { display: block; } .item-list__item.editmode .item-list__item__title, .item-list__item.editmode .item-list__item__category, .item-list__item.editmode .item-list__item__image, .item-list__item.editmode .item-list__item__description, .item-list__item.editmode .item-list__item__edit-button, .item-list__item.editmode .item-list__item__delete-button { display: none; } .item-list__item__delete-button.hidden, .item-list__item__edit-button.hidden { display: none; }
0.272508
0.088151
@import "reset.css"; @import url(http://fonts.googleapis.com/css?family=Anaheim); body { width: 100%; margin: 0; font-size: 1em; color: #333333; font-weight: normal; font-family: 'Anaheim', 'Anaheim', sans-serif; line-height: 100%; background: url(../images/bg.png) repeat; } body.welcome { background:url(../images/bg1.jpg) no-repeat center fixed #000; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } .pointer { position: absolute; top: 0px; float: right; right: 0px; } #wrap { width: 100%; height: 100%; position: absolute; left: 0; padding: 0; } #dropcontain { width: 351px; height: auto; position: absolute; right: 0px;top: 0px; z-index: 55555; margin-top: 0px;} #dropbox { right: 0px; width: 350px; height: auto; background: #0C0C0C; display: none; position: absolute; border-bottom: solid 3px #06C; } #profile { width: 100%; height: 230px; } #profile img { opacity: 0.1; filter: alpha(opacity=10); margin-bottom: 10px; } #profile img:hover { opacity: 1; filter: alpha(opacity=100) } #profile p { padding-left: 10px; margin-bottom: 4px; font-family: 'Anaheim', sans-serif; font-size: 14px; color: #999; } .dropbtn { position: absolute; background-image: url(../images/controls.png); background-repeat: no-repeat; background-position: 0 0; width: 51px; height: 50px; display:block; z-index: 55588; top: 0px; right: 0px; } .dropbtn.active { background-image: url(../images/controls.png); background-repeat: no-repeat; background-position: -51px 0px; width: 51px; height: 50px; } #dropbox h6 { height: 30px; width: 330px; display: block; padding: 20px 0px 0px 20px; background: rgba(0,0,0,1); font-size: 14px; color: #e0e4e7; float: left; clear: left; margin-bottom: 20px; font-weight: normal; } #dropbox form { margin: 50px 0 0 0; height: 250px; } #dropbox form input:focus, #dropbox form textarea:focus { outline: solid #999 1px; } #dropbox form input[type=text], #dropbox form input[type=email], #dropbox form textarea { width: 100%; height: 32px; background: rgba(0,0,0,0.9); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000'); /* IE */ float: left; clear: left; color: #999; font-size: 13px; text-indent: 20px; border: none; font-family: 'Anaheim', sans-serif; } #dropbox form input[type=email], #dropbox form textarea { margin-top: 15px; } #dropbox form textarea { height: 78px; padding: 10px 0px 0px 0px; resize: none; width: 350px; font-family: 'Anaheim', sans-serif; } #dropbox form ::-webkit-input-placeholder, #dropbox form :-moz-placeholder { color: #1c1d1f; font-size: 12px; text-indent: 20px; font-family: 'Anaheim', sans-serif; } .dropsubmitbtn { float: right; clear: left; outline: none; border: none; background: none; color: #a9b0b5; text-shadow: 0px 1px 0px #000000; filter: dropshadow(color=#00000, offx=0, offy=1); font-size: 14px; font-family: 'Anaheim', 'Anaheim', sans-serif; outline: none; margin-right: 20px; margin-top: 13px; cursor: pointer; } .dropsubmitbtn:hover { color: #dcdfe6; } #navwrap, #contentwrap, #links, #content { display: block; overflow:hidden } #navwrap { position: fixed; left: 0; width: 166px; float: left; background: rgba(0, 0, 0, 0.6); filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#4c000000', endColorstr='#4c000000'); /* IE */ height: 100%; } #contentwrap { display: block; max-height: 100%; margin: 0 0 0 -166px; } #image, #image.portfolio { width: 166px; height: 500px; } #image:hover { } #links { position: fixed; width: 166px; height: 250px; left: 0; bottom: 0; } #links ul.nav { padding: 50px 15px; } #links ul.nav li { padding-bottom: 20px; } #links ul.nav li a{ color: #FFF; font-size: 24px; text-decoration: none; } #links ul.nav li a.active, #links ul.nav li a.active:hover { color: #09f; } #links ul.nav li a.active.portfolio { color: #d01d1d } #links ul.nav li a:hover { color: #666 } #content { display: none; position: absolute; width: 800px; height: 550px; left: 50%; top: 50%; margin: -275px 0 0 -317px; } #content.welcome { width: 900px } #contentimg { display: block; width: 800px; height: 350px; background: url(../images/imgbg.jpg); } #contentimg.welcome { height: 110px; background: none; } #contentimg h5 { font-weight: normal; position: absolute; bottom: 0px; font-size: 14px; line-height: 14px; margin-bottom: 200px; padding: 20px; COLOR: #fff; } #contentimg h6 { font-weight: normal; font-size: 24px; line-height: 24px; color: #fff; padding: 20px } #box{ display: block; float: left; overflow: hidden; width: 200px; height: 200px; float: left; -webkit-transition:background-position 0.6s ease; -moz-transition:background-position 0.6s ease; -o-transition:background-position 0.6s ease; transition:background-position 0.6s ease; cursor: pointer; } #box.social { background: url(../images/social.png); width: 50px; height: 50px;} #box.welcome { width: 250px; height: 550px; background: rgba(0, 0, 0, 0.7); filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#4c000000', endColorstr='#4c000000'); /* IE */ margin-right: 20px; border-bottom-left-radius: 30px; } .message { position: relative; top: 30px } #box.welcome h1 { padding: 20px; font-size: 24px; font-weight: normal; color: #09F } #box.welcome p { padding: 20px; font-size: 14px; font-weight: normal; color:#CCC } #box.portfolio { background-image: url(../images/sprite2.jpg); } #box.social.behance { background-position: 0 0; } #box.social.behance:hover { background-position: 0 -50px; } #box.social.facebook { background-position: -50px 0px; } #box.social.facebook:hover { background-position: -50px -50px; } #box.social.google { background-position: -100px 0px; } #box.social.google:hover { background-position: -100px -50px; } #box.social.linked { background-position: -150px 0px; } #box.social.linked:hover { background-position: -150px -50px; } #box.social.skype { background-position: -200px 0; } #box.social.skype:hover { background-position: -200px -50px; } #box.social.twitter { background-position: -250px 0px; } #box.social.twitter:hover { background-position: -250px -50px; } #box.social.vimeo { background-position: -300px 0px; } #box.social.vimeo:hover { background-position: -300px -50px; } .psd { background-position: 0 0; } .psd:hover { background-position: -200px 0; } .cdr { background-position: -400px 0px; } .cdr:hover { background-position: -600px 0; } .c4d { background-position: -800px 0px; } .c4d:hover { background-position: -1000px 0; } .css { background-position: -1200px 0px; } .css:hover { background-position: -1400px 0; } .print { background-position: 0 0; } .print:hover { background-position: 0 -200px; } .brand { background-position: -200px 0px; } .brand:hover { background-position: -200px -200px; } .web { background-position: -400px 0px; } .web:hover { background-position: -400px -200px; } .mobile { background-position: -600px 0px; } .mobile:hover { background-position: -600px -200px; } #portfolioimg { display: block; width: 800px; height: 150px; background: url('../images/port.png') no-repeat; background-position: bottom; } #portfolioimg a{ display: block; margin-left: 50px; text-align: center; text-decoration: none; font-size: 16px; width: 700px; color: #666; background: #000000; border-top-left-radius: 30px; border-top-right-radius: 30px; line-height: 100px; } #portfolioimg a:hover { color: #ccc } .portfoliohover { width: 200px; height: 50px; background-position: 0 0; background-repeat: no-repeat; position: absolute; opacity: 0; top: 0px; left: 0px; background-color: rgba(5, 3, 12, 0.9); background: rgba(5, 3, 12, 0.9); -webkit-transition: opacity .5s ease-in-out; -moz-transition: opacity .5s ease-in-out; -o-transition: opacity .5s ease-in-out; transition: opacity .5s ease-in-out; } #stage li{ position: relative; display: block; float: left; width: 200px; height: 200px; overflow: hidden; background: #000; } .links a { color: white; display: block; margin-bottom:7px; text-decoration: none; } #stage li a:hover .portfoliohover { opacity: 1; -webkit-transition: opacity .5s ease-in-out; -moz-transition: opacity .5s ease-in-out; -o-transition: opacity .5s ease-in-out; transition: opacity .5s ease-in-out; } .porthover1 { font-family: 'Anaheim', 'Anaheim', sans-serif; color:#FFF; font-size: 14px; float: left; clear: both; margin: 10px 10px 0px 10px; } .porthover2 { font-family: 'Segoe UI'; font-size: 11px; color: #FFF; float: left; clear: both; margin: 0px 10px; } p.lead { font-size: 24px; line-height: 1.2; margin: 20px 0; color: #d01d1d; }
archive/2012/assets/css/mainstyle.css
@import "reset.css"; @import url(http://fonts.googleapis.com/css?family=Anaheim); body { width: 100%; margin: 0; font-size: 1em; color: #333333; font-weight: normal; font-family: 'Anaheim', 'Anaheim', sans-serif; line-height: 100%; background: url(../images/bg.png) repeat; } body.welcome { background:url(../images/bg1.jpg) no-repeat center fixed #000; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } .pointer { position: absolute; top: 0px; float: right; right: 0px; } #wrap { width: 100%; height: 100%; position: absolute; left: 0; padding: 0; } #dropcontain { width: 351px; height: auto; position: absolute; right: 0px;top: 0px; z-index: 55555; margin-top: 0px;} #dropbox { right: 0px; width: 350px; height: auto; background: #0C0C0C; display: none; position: absolute; border-bottom: solid 3px #06C; } #profile { width: 100%; height: 230px; } #profile img { opacity: 0.1; filter: alpha(opacity=10); margin-bottom: 10px; } #profile img:hover { opacity: 1; filter: alpha(opacity=100) } #profile p { padding-left: 10px; margin-bottom: 4px; font-family: 'Anaheim', sans-serif; font-size: 14px; color: #999; } .dropbtn { position: absolute; background-image: url(../images/controls.png); background-repeat: no-repeat; background-position: 0 0; width: 51px; height: 50px; display:block; z-index: 55588; top: 0px; right: 0px; } .dropbtn.active { background-image: url(../images/controls.png); background-repeat: no-repeat; background-position: -51px 0px; width: 51px; height: 50px; } #dropbox h6 { height: 30px; width: 330px; display: block; padding: 20px 0px 0px 20px; background: rgba(0,0,0,1); font-size: 14px; color: #e0e4e7; float: left; clear: left; margin-bottom: 20px; font-weight: normal; } #dropbox form { margin: 50px 0 0 0; height: 250px; } #dropbox form input:focus, #dropbox form textarea:focus { outline: solid #999 1px; } #dropbox form input[type=text], #dropbox form input[type=email], #dropbox form textarea { width: 100%; height: 32px; background: rgba(0,0,0,0.9); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000'); /* IE */ float: left; clear: left; color: #999; font-size: 13px; text-indent: 20px; border: none; font-family: 'Anaheim', sans-serif; } #dropbox form input[type=email], #dropbox form textarea { margin-top: 15px; } #dropbox form textarea { height: 78px; padding: 10px 0px 0px 0px; resize: none; width: 350px; font-family: 'Anaheim', sans-serif; } #dropbox form ::-webkit-input-placeholder, #dropbox form :-moz-placeholder { color: #1c1d1f; font-size: 12px; text-indent: 20px; font-family: 'Anaheim', sans-serif; } .dropsubmitbtn { float: right; clear: left; outline: none; border: none; background: none; color: #a9b0b5; text-shadow: 0px 1px 0px #000000; filter: dropshadow(color=#00000, offx=0, offy=1); font-size: 14px; font-family: 'Anaheim', 'Anaheim', sans-serif; outline: none; margin-right: 20px; margin-top: 13px; cursor: pointer; } .dropsubmitbtn:hover { color: #dcdfe6; } #navwrap, #contentwrap, #links, #content { display: block; overflow:hidden } #navwrap { position: fixed; left: 0; width: 166px; float: left; background: rgba(0, 0, 0, 0.6); filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#4c000000', endColorstr='#4c000000'); /* IE */ height: 100%; } #contentwrap { display: block; max-height: 100%; margin: 0 0 0 -166px; } #image, #image.portfolio { width: 166px; height: 500px; } #image:hover { } #links { position: fixed; width: 166px; height: 250px; left: 0; bottom: 0; } #links ul.nav { padding: 50px 15px; } #links ul.nav li { padding-bottom: 20px; } #links ul.nav li a{ color: #FFF; font-size: 24px; text-decoration: none; } #links ul.nav li a.active, #links ul.nav li a.active:hover { color: #09f; } #links ul.nav li a.active.portfolio { color: #d01d1d } #links ul.nav li a:hover { color: #666 } #content { display: none; position: absolute; width: 800px; height: 550px; left: 50%; top: 50%; margin: -275px 0 0 -317px; } #content.welcome { width: 900px } #contentimg { display: block; width: 800px; height: 350px; background: url(../images/imgbg.jpg); } #contentimg.welcome { height: 110px; background: none; } #contentimg h5 { font-weight: normal; position: absolute; bottom: 0px; font-size: 14px; line-height: 14px; margin-bottom: 200px; padding: 20px; COLOR: #fff; } #contentimg h6 { font-weight: normal; font-size: 24px; line-height: 24px; color: #fff; padding: 20px } #box{ display: block; float: left; overflow: hidden; width: 200px; height: 200px; float: left; -webkit-transition:background-position 0.6s ease; -moz-transition:background-position 0.6s ease; -o-transition:background-position 0.6s ease; transition:background-position 0.6s ease; cursor: pointer; } #box.social { background: url(../images/social.png); width: 50px; height: 50px;} #box.welcome { width: 250px; height: 550px; background: rgba(0, 0, 0, 0.7); filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#4c000000', endColorstr='#4c000000'); /* IE */ margin-right: 20px; border-bottom-left-radius: 30px; } .message { position: relative; top: 30px } #box.welcome h1 { padding: 20px; font-size: 24px; font-weight: normal; color: #09F } #box.welcome p { padding: 20px; font-size: 14px; font-weight: normal; color:#CCC } #box.portfolio { background-image: url(../images/sprite2.jpg); } #box.social.behance { background-position: 0 0; } #box.social.behance:hover { background-position: 0 -50px; } #box.social.facebook { background-position: -50px 0px; } #box.social.facebook:hover { background-position: -50px -50px; } #box.social.google { background-position: -100px 0px; } #box.social.google:hover { background-position: -100px -50px; } #box.social.linked { background-position: -150px 0px; } #box.social.linked:hover { background-position: -150px -50px; } #box.social.skype { background-position: -200px 0; } #box.social.skype:hover { background-position: -200px -50px; } #box.social.twitter { background-position: -250px 0px; } #box.social.twitter:hover { background-position: -250px -50px; } #box.social.vimeo { background-position: -300px 0px; } #box.social.vimeo:hover { background-position: -300px -50px; } .psd { background-position: 0 0; } .psd:hover { background-position: -200px 0; } .cdr { background-position: -400px 0px; } .cdr:hover { background-position: -600px 0; } .c4d { background-position: -800px 0px; } .c4d:hover { background-position: -1000px 0; } .css { background-position: -1200px 0px; } .css:hover { background-position: -1400px 0; } .print { background-position: 0 0; } .print:hover { background-position: 0 -200px; } .brand { background-position: -200px 0px; } .brand:hover { background-position: -200px -200px; } .web { background-position: -400px 0px; } .web:hover { background-position: -400px -200px; } .mobile { background-position: -600px 0px; } .mobile:hover { background-position: -600px -200px; } #portfolioimg { display: block; width: 800px; height: 150px; background: url('../images/port.png') no-repeat; background-position: bottom; } #portfolioimg a{ display: block; margin-left: 50px; text-align: center; text-decoration: none; font-size: 16px; width: 700px; color: #666; background: #000000; border-top-left-radius: 30px; border-top-right-radius: 30px; line-height: 100px; } #portfolioimg a:hover { color: #ccc } .portfoliohover { width: 200px; height: 50px; background-position: 0 0; background-repeat: no-repeat; position: absolute; opacity: 0; top: 0px; left: 0px; background-color: rgba(5, 3, 12, 0.9); background: rgba(5, 3, 12, 0.9); -webkit-transition: opacity .5s ease-in-out; -moz-transition: opacity .5s ease-in-out; -o-transition: opacity .5s ease-in-out; transition: opacity .5s ease-in-out; } #stage li{ position: relative; display: block; float: left; width: 200px; height: 200px; overflow: hidden; background: #000; } .links a { color: white; display: block; margin-bottom:7px; text-decoration: none; } #stage li a:hover .portfoliohover { opacity: 1; -webkit-transition: opacity .5s ease-in-out; -moz-transition: opacity .5s ease-in-out; -o-transition: opacity .5s ease-in-out; transition: opacity .5s ease-in-out; } .porthover1 { font-family: 'Anaheim', 'Anaheim', sans-serif; color:#FFF; font-size: 14px; float: left; clear: both; margin: 10px 10px 0px 10px; } .porthover2 { font-family: 'Segoe UI'; font-size: 11px; color: #FFF; float: left; clear: both; margin: 0px 10px; } p.lead { font-size: 24px; line-height: 1.2; margin: 20px 0; color: #d01d1d; }
0.231701
0.063222
.pagination { vertical-align: baseline; zoom: 1; *display: inline; *vertical-align: auto; } .pagination li { float: left; margin-left: 5px; padding: 0 6px; min-width: 17px; line-height: 27px; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px; font-weight: 500; color: #d4d4d4; text-align: center; text-decoration: none !important; border: 1px solid black; border-radius: 3px; } .pagination:first-child { margin-left: 0; } .pagination li { text-decoration: none; text-shadow: 0 1px black; background-clip: padding-box; border-color: rgba(0, 0, 0, 0.9); background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 1px rgba(255, 255, 255, 0.04), inset 0 -1px rgba(0, 0, 0, 0.15), 0 1px 1px rgba(0, 0, 0, 0.1); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 1px rgba(255, 255, 255, 0.04), inset 0 -1px rgba(0, 0, 0, 0.15), 0 1px 1px rgba(0, 0, 0, 0.1); -webkit-transition: 0.1s ease-out; -moz-transition: 0.1s ease-out; -o-transition: 0.1s ease-out; transition: 0.1s ease-out; } .pagination li:hover { background-color: #333; background-color: rgba(255, 255, 255, 0.05); cursor: pointer; } .pagination li.active { color: #eee; text-shadow: 0 -1px black; background: #1c1c1c; background: rgba(255, 255, 255, 0.01); border-color: black rgba(0, 0, 0, 0.65) rgba(0, 0, 0, 0.6); -webkit-box-shadow: inset 0 1px rgba(0, 0, 0, 0.05), inset 0 2px 2px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.06); box-shadow: inset 0 1px rgba(0, 0, 0, 0.05), inset 0 2px 2px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.06); } .pagination .prev, .pagination .next { font-family: Noteworthy, Arial, sans-serif; font-size: 14px; }
public/css/pagination.css
.pagination { vertical-align: baseline; zoom: 1; *display: inline; *vertical-align: auto; } .pagination li { float: left; margin-left: 5px; padding: 0 6px; min-width: 17px; line-height: 27px; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px; font-weight: 500; color: #d4d4d4; text-align: center; text-decoration: none !important; border: 1px solid black; border-radius: 3px; } .pagination:first-child { margin-left: 0; } .pagination li { text-decoration: none; text-shadow: 0 1px black; background-clip: padding-box; border-color: rgba(0, 0, 0, 0.9); background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 1px rgba(255, 255, 255, 0.04), inset 0 -1px rgba(0, 0, 0, 0.15), 0 1px 1px rgba(0, 0, 0, 0.1); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 1px rgba(255, 255, 255, 0.04), inset 0 -1px rgba(0, 0, 0, 0.15), 0 1px 1px rgba(0, 0, 0, 0.1); -webkit-transition: 0.1s ease-out; -moz-transition: 0.1s ease-out; -o-transition: 0.1s ease-out; transition: 0.1s ease-out; } .pagination li:hover { background-color: #333; background-color: rgba(255, 255, 255, 0.05); cursor: pointer; } .pagination li.active { color: #eee; text-shadow: 0 -1px black; background: #1c1c1c; background: rgba(255, 255, 255, 0.01); border-color: black rgba(0, 0, 0, 0.65) rgba(0, 0, 0, 0.6); -webkit-box-shadow: inset 0 1px rgba(0, 0, 0, 0.05), inset 0 2px 2px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.06); box-shadow: inset 0 1px rgba(0, 0, 0, 0.05), inset 0 2px 2px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.06); } .pagination .prev, .pagination .next { font-family: Noteworthy, Arial, sans-serif; font-size: 14px; }
0.530966
0.18159
.dashboard-top-flex { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .dashboard-top-flex div { margin: auto 1%; } .dashboard-top-input { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: start; -webkit-box-align: center; -ms-flex-align: center; align-items: center; width: 7%; } .dashboard-top-input input { margin-left: 2%; } #select-all-label { margin-left: 5%; } .dashboard-top-approve-reject { display: -webkit-box; display: -ms-flexbox; display: flex; width: 22%; } .dashboard-top-approve-reject button { margin: auto 2%; width: 45%; } .approve-reject-select { border: 1px solid #e3e8ee; background-color: white; border-width: 2px; border-style: outset; border-radius: 5px; margin-right: 2%; margin-bottom: 1%; color: #3c4257; height: 4%; } .hidden-button { display: none; } .confirmation-message { width: 90%; text-align: center; } .transparent { opacity: 0; } .dashboard-top-page-number { display: -webkit-box; display: -ms-flexbox; display: flex; width: 71%; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; } #items-per-page { margin-left: 2%; } .items-pp-select { margin-left: 2%; } .column-headers { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; border: solid #e3e8ee 1px; width: 100%; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin-bottom: 0px; border-radius: 5px; } .hidden-input { opacity: 0; text-align: left; margin: auto 1%; } .column-headers-flex { display: -webkit-box; display: -ms-flexbox; display: flex; text-align: left; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; width: 100%; -webkit-box-align: center; -ms-flex-align: center; align-items: center; color: #3c4257; margin: 0 auto; } .column-headers div h4 { font-weight: bold; padding-top: 0.5%; } .description { margin-left: 0px; text-align: left; width: 45%; } .location { width: 18%; margin-left: 2%; } .date { width: 15%; margin-left: 7%; } .incidents { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } /*# sourceMappingURL=Incidents.css.map */
src/components/AdminDashboard/Incidents.css
.dashboard-top-flex { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .dashboard-top-flex div { margin: auto 1%; } .dashboard-top-input { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: start; -webkit-box-align: center; -ms-flex-align: center; align-items: center; width: 7%; } .dashboard-top-input input { margin-left: 2%; } #select-all-label { margin-left: 5%; } .dashboard-top-approve-reject { display: -webkit-box; display: -ms-flexbox; display: flex; width: 22%; } .dashboard-top-approve-reject button { margin: auto 2%; width: 45%; } .approve-reject-select { border: 1px solid #e3e8ee; background-color: white; border-width: 2px; border-style: outset; border-radius: 5px; margin-right: 2%; margin-bottom: 1%; color: #3c4257; height: 4%; } .hidden-button { display: none; } .confirmation-message { width: 90%; text-align: center; } .transparent { opacity: 0; } .dashboard-top-page-number { display: -webkit-box; display: -ms-flexbox; display: flex; width: 71%; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; } #items-per-page { margin-left: 2%; } .items-pp-select { margin-left: 2%; } .column-headers { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; border: solid #e3e8ee 1px; width: 100%; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin-bottom: 0px; border-radius: 5px; } .hidden-input { opacity: 0; text-align: left; margin: auto 1%; } .column-headers-flex { display: -webkit-box; display: -ms-flexbox; display: flex; text-align: left; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; width: 100%; -webkit-box-align: center; -ms-flex-align: center; align-items: center; color: #3c4257; margin: 0 auto; } .column-headers div h4 { font-weight: bold; padding-top: 0.5%; } .description { margin-left: 0px; text-align: left; width: 45%; } .location { width: 18%; margin-left: 2%; } .date { width: 15%; margin-left: 7%; } .incidents { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } /*# sourceMappingURL=Incidents.css.map */
0.351089
0.037222
@charset "utf-8"; html { font-family: PingFangSC-Light,HelveticaNeue-Light,"Helvetica Neue Light","Helvetica Neue",Helvetica,STHeiTi,sans-serif } body,dd,dl,h1,h2,h3,input[type=radio],input[type=checkbox],ol,p,ul { margin: 0 } ol,ul { padding: 0 } body { -webkit-tap-highlight-color: transparent; outline: 0 } h1,h2,h3,h4 { font-size: 100%; font-weight: 400 } table { border-collapse: collapse; border-spacing: 0 } img { border: 0 } li { list-style-type: none } button,input,option,select,textarea { font: inherit; outline: 0; -webkit-appearance: none } button { padding: 0; margin: 0; border: 0 } button::-moz-focus-inner { border: 0; padding: 0 } a { -webkit-touch-callout: none; text-decoration: none } em,i { font-style: normal } *,:after,:before { box-sizing: border-box } .container.login { position: absolute; width: 100%; height: 100%; top: 0; left: 0; background-color: #222 } .login-wrap { position: absolute; max-width: 340px; max-height: 320px; top: 50%; left: 50%; margin-top: -160px; margin-left: -170px } .logo { width: 185px; height: 35px; /* background: url(img/logo.png) center no-repeat; */ margin: 0 auto 45px; text-align: center } .login-typing input.mobile { font-size: 18px; color: #555; width: 100%; height: 40px; border: 0; border-bottom: 1px solid #333; padding: 0; margin-bottom: 5px; vertical-align: middle; box-sizing: border-box; background-color: #222 } .login-typing input:last-child { margin-bottom: 0 } input.mobile::-webkit-input-placeholder { color: #555 } input.mobile::-moz-placeholder { color: #555 } input.mobile:-ms-input-placeholder { color: #555 } input.mobile:-moz-placeholder { color: #555 } input.mobile:-webkit-autofill { -webkit-box-shadow: 0 0 0 1000px #192029 inset; -webkit-text-fill-color: #555 } .btns-wrap { margin-top: 50px } .btns-wrap p { font-size: 18px; color: #fff; width: 100%; height: 45px; line-height: 45px; text-align: center; cursor: pointer } .btns-wrap .btn-login { background-color: #24b37a; margin-bottom: 15px } .btns-wrap .btn-register { background-color: #282828 } .btns-wrap .btn-login:hover { background-color: #1f9a6e } .btns-wrap .btn-register:hover { background-color: #181818 } .gvc-dialog { width: 400px; height: 200px; padding: 25px; background-color: #181818; box-sizing: border-box; box-shadow: 1px 1.73px 20px 0 rgba(8,1,2 ,.4) } .gvc-dialog-hd { position: relative; font-size: 16px; color: #888; min-height: 23px; margin-bottom: 23px } .gvc-dialog-hd strong { display: inline-block; float: left; line-height: 23px } .gvc-dialog-hd .gvc-btn-close { position: absolute; width: 23px; height: 23px; top: 0; right: -4px; background-color: #181818; overflow: hidden; cursor: pointer } .gvc-dialog-hd .gvc-btn-close:before { position: relative; display: block; content: ''; width: 15px; height: 15px; top: 4px; left: 4px; /* background: url(img/icon-close.png) center no-repeat */ } .gvc-dialog-hd .gvc-btn-close:hover:before { /* background: url(img/icon-close-hover.png) center no-repeat */ } .gvc-dialog-bd { margin-bottom: 46px } .gvc-dialog-bd .creating-wrap { font-size: 0 } .creating-wrap span { display: inline-block; font-size: 12px; color: #888; line-height: 30px; margin-right: 20px } .creating-wrap input.gvc-input-text { font-size: 12px; color: #888; width: 281px; height: 30px; padding: 0 10px; background-color: #282828; border: 1px solid #444 } .creating-wrap input.gvc-input-text:focus { background-color: #282828; border: 1px solid #24b37a } .gvc-dialog-ft-btn-wrap { font-size: 0; text-align: center } .gvc-dialog-ft-btn-wrap button.gvc-btn { display: inline-block; font-size: 12px; width: 80px; height: 30px; line-height: 28px; background: #282828; color: #888; border: 1px solid #444; margin: 0 5px; text-align: center; cursor: pointer; outline: 0; box-sizing: border-box } .gvc-dialog-ft-btn-wrap button.gvc-btn.confirm { color: #fff; background: #24b37a; border: 1px solid #24b37a } body,html { position: relative; min-width: 1220px; height: 100%; overflow-x: auto } .connected { color: #24b37a } .label-txt { color: #6c6c6c } .value-txt { color: #999 } ::-webkit-input-placeholder { color: #999 } ::-moz-placeholder { color: #999 } :-ms-input-placeholder { color: #999 } :-moz-placeholder { color: #999 } .sidebar-btn { position: absolute; width: 12px; height: 80px; top: 50%; left: 220px; margin-top: -40px; /* background: url(../../image/fold-left.png) center no-repeat; */ z-index: 99 } .sidebar-btn:hover { /* background: url(../../image/fold-left-hover.png) center no-repeat */ } .chatroom-btn { position: absolute; width: 12px; height: 80px; top: 50%; right: 300px; margin-top: -40px; /* background: url(../../image/fold-right.png) center no-repeat; */ z-index: 99 } .chatroom-btn:hover { /* background: url(../../image/fold-right-hover.png) center no-repeat */ } .main-area { position: absolute; top: 0; right: 0; bottom: 0; left: 220px; overflow-y: hidden; overflow-x: hidden } .container { position: absolute; left: 180px; top: 60px; right: 0; bottom: 0; background-color: #222 } .header { background-color: #181818; height: 60px; padding: 0 20px } .product-wrap { float: left; height: 60px; line-height: 60px } .product-wrap .product-name { color: #24b37a; font-size: 20px; font-weight: 700 } .user-wrap { float: right; height: 60px; line-height: 60px } .nav-user { font-size: 0 } .nav-user li { display: inline-block; font-size: 12px; color: rgba(255,255,255,.5) } .nav-user li a { padding: 0 10px; color: #888 } .nav-user li:first-child a { border-right: 1px solid #444 } .nav-user li:last-child a { border-right: 0 } .nav-user li a:hover { color: #fff } .nav-user li a.text-only:hover { color: #888 } .sidebar { position: relative; display: inline-block; width: 220px; height: 100%; background-color: #282828 } .sidebar h2 { font-size: 16px; color: #888; padding: 0 20px; line-height: 45px } .sidebar-list-wrap { position: absolute; width: 100%; top: 45px; bottom: 0; overflow: auto } .sidebar-list { display: table; width: 100% } .sidebar-list li { position: relative; display: table-row; font-size: 14px; cursor: pointer } .sidebar-list li div { display: table-cell; border-bottom: 1px solid #191919 } .sidebar-list li:last-child div { border-bottom: 0 } li .item-info { padding: 12px 10px 12px 20px } .item-info .room-id { margin-bottom: 5px } .item-info .room-id .value-txt { max-width: 125px } .item-info .user-name .value-txt { max-width: 70px } .item-info .label-txt { display: inline-block; line-height: 20px } .item-info .value-txt { display: inline-block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; vertical-align: top; line-height: 20px } li .item-status { width: 70px; padding: 12px 20px 0 0; text-align: right; vertical-align: top } .sidebar.fold { width: 0 } .sidebar.fold h2 { font-size: 0; padding: 0 } .sidebar.fold .sidebar-btn { left: 0; /* background: url(../../image/fold-right.png) center no-repeat */ } .sidebar.fold .sidebar-btn:hover { /* background: url(../../image/fold-right-hover.png) center no-repeat */ } .main-area .panel { position: relative; display: inline-block; width: 100%; height: 100%; padding-right: 300px } .video-panel { position: relative; width: 100%; height: 100% } .action-panel { display: table; width: 100%; padding: 10px 30px; table-layout: fixed; box-sizing: border-box } .action-panel .left-panel { display: table-cell; font-size: 0; text-align: left } .action-panel .left-panel i { position: relative; display: inline-block; width: 10px; height: 16px; top: 2px; margin-right: 10px; /* background: url(img/icon-back.png) center no-repeat */ } .action-panel .left-panel span { font-size: 16px; color: #888 } .action-panel .right-panel { display: table-cell; text-align: right } .action-panel .right-panel .fluid-layout { display: inline-block; width: 24px; height: 24px; /* background: url(img/mode1.png) center no-repeat; */ vertical-align: text-top; margin-right: 10px; cursor: pointer } .action-panel .right-panel .fixed-layout { display: inline-block; width: 24px; height: 24px; /* background: url(img/mode2.png) center no-repeat; */ vertical-align: text-top; margin-right: 10px; cursor: pointer } .action-panel .right-panel .calling-btn { font-size: 12px; width: 80px; height: 30px; line-height: 30px; color: #fff; background-color: #24b37a; cursor: pointer } .action-panel .right-panel .calling-btn.disabled { color: #888; background-color: #444 } .action-panel .right-panel .calling-btn.decline { color: #fff; background-color: #ea4344 } .action-panel .right-panel .fluid-layout.current,.action-panel .right-panel .fluid-layout:hover { /* background: url(img/mode1-hover.png) center no-repeat */ } .action-panel .right-panel .fixed-layout.current,.action-panel .right-panel .fixed-layout:hover { /* background: url(img/mode2-hover.png) center no-repeat */ } .action-panel .right-panel .calling-btn:hover { background-color: #1f9a6e } .action-panel .right-panel .calling-btn.disabled:hover { background-color: #444; cursor: not-allowed } .action-panel .right-panel .calling-btn.decline:hover { background-color: #d42d3d } .tips { display: inline-block; max-width: 850px; padding: 10px 20px; margin: 0 auto; font-size: 0; background-color: rgba(0,0,0,.7); border-radius: 10px } .tips span { display: inline-block; font-size: 12px; line-height: 30px; color: #bbb; margin-right: 10px } .tips button { margin-left: 10px } .tips button.accept-btn { width: 80px; height: 30px; font-size: 12px; color: #fff; background-color: #24b37a; text-align: center; cursor: pointer } .tips button.decline-btn { width: 80px; height: 30px; font-size: 12px; color: #fff; background-color: #ea4344; text-align: center; cursor: pointer } .tips button.accept-btn:hover { background-color: #1f9a6e } .tips button.decline-btn:hover { background-color: #d42d3d } .main-area .sub-panel.chatroom { position: absolute; display: inline-block; width: 300px; height: 100%; top: 0; right: 0; padding: 0 10px; background-color: #282828 } .chatting-area { position: absolute; top: 0; bottom: 40px; width: 280px; padding: 10px; overflow-y: auto; box-sizing: border-box } .chatting-area li { font-size: 0; width: 100%; float: left; margin: 10px 0 } .chatting-area li:last-child { margin-bottom: 0 } .chatting-area .msg-wrap { position: relative; max-width: 200px } .chatting-area li.sender-msg .msg-wrap { display: table; float: right } .chatting-area li.receiver-msg .msg-wrap { display: table; float: left } .chatting-area li.sender-msg .msg-wrap p { font-size: 12px; color: #24b37a } .chatting-area li.receiver-msg .msg-wrap p { font-size: 12px; color: #bbb } .chatting-area .msg-wrap p.from { display: table-cell; min-width: 20px; font-weight: 700; text-align: right } .chatting-area .sender-msg .msg-wrap p.msg { display: table-cell; text-align: right; margin-right: 3px } .chatting-area .receiver-msg .msg-wrap p.msg { margin-left: 5px } .typing-area { position: absolute; display: table; width: 100%; height: 50px; left: 0; bottom: 0; padding: 10px } .typing-area input { display: table-cell; font-size: 14px; color: #999; width: 100%; height: 30px; padding: 0 10px; border: 0; vertical-align: middle; box-sizing: border-box } .typing-area span { display: table-cell; width: 80px; font-size: 14px; color: #fff; background-color: #24b37a; text-align: center; vertical-align: middle; cursor: pointer } .main-area .sub-panel.chatroom.fold { width: 0; padding: 0 } .main-area .sub-panel.chatroom.fold .chatroom-btn { right: 0; /* background: url(../../image/fold-left.png) center no-repeat */ } .main-area .sub-panel.chatroom.fold .chatroom-btn:hover { /* background: url(../../image/fold-left-hover.png) center no-repeat */ } .rooms-wrap { padding: 0 0 0 20px } .rooms-wrap .rooms-title { font-size: 16px; color: #888; margin: 20px 20px 0 0 } .rooms-wrap .rooms-title a.create-room { float: right; font-size: 12px; line-height: 22px; color: #24b37a; cursor: pointer } .rooms-wrap .rooms-title a.create-room:hover { text-decoration: underline } .rooms-wrap .rooms-list { font-size: 0; margin-right: -20px } .rooms-list .room-item { display: inline-block; width: 220px; font-size: 14px; padding: 14px 20px; margin: 20px 20px 0 0; background-color: #282828; border: 1px solid #282828; cursor: pointer } .rooms-list .room-item.selected,.rooms-list .room-item:hover { background-color: #181818; border: 1px solid #24b37a } .room-item .room-id,.room-item .user-name { line-height: 25px } #MAXIM { content: "man20170815155357" }
src/views/video/css/room.css
@charset "utf-8"; html { font-family: PingFangSC-Light,HelveticaNeue-Light,"Helvetica Neue Light","Helvetica Neue",Helvetica,STHeiTi,sans-serif } body,dd,dl,h1,h2,h3,input[type=radio],input[type=checkbox],ol,p,ul { margin: 0 } ol,ul { padding: 0 } body { -webkit-tap-highlight-color: transparent; outline: 0 } h1,h2,h3,h4 { font-size: 100%; font-weight: 400 } table { border-collapse: collapse; border-spacing: 0 } img { border: 0 } li { list-style-type: none } button,input,option,select,textarea { font: inherit; outline: 0; -webkit-appearance: none } button { padding: 0; margin: 0; border: 0 } button::-moz-focus-inner { border: 0; padding: 0 } a { -webkit-touch-callout: none; text-decoration: none } em,i { font-style: normal } *,:after,:before { box-sizing: border-box } .container.login { position: absolute; width: 100%; height: 100%; top: 0; left: 0; background-color: #222 } .login-wrap { position: absolute; max-width: 340px; max-height: 320px; top: 50%; left: 50%; margin-top: -160px; margin-left: -170px } .logo { width: 185px; height: 35px; /* background: url(img/logo.png) center no-repeat; */ margin: 0 auto 45px; text-align: center } .login-typing input.mobile { font-size: 18px; color: #555; width: 100%; height: 40px; border: 0; border-bottom: 1px solid #333; padding: 0; margin-bottom: 5px; vertical-align: middle; box-sizing: border-box; background-color: #222 } .login-typing input:last-child { margin-bottom: 0 } input.mobile::-webkit-input-placeholder { color: #555 } input.mobile::-moz-placeholder { color: #555 } input.mobile:-ms-input-placeholder { color: #555 } input.mobile:-moz-placeholder { color: #555 } input.mobile:-webkit-autofill { -webkit-box-shadow: 0 0 0 1000px #192029 inset; -webkit-text-fill-color: #555 } .btns-wrap { margin-top: 50px } .btns-wrap p { font-size: 18px; color: #fff; width: 100%; height: 45px; line-height: 45px; text-align: center; cursor: pointer } .btns-wrap .btn-login { background-color: #24b37a; margin-bottom: 15px } .btns-wrap .btn-register { background-color: #282828 } .btns-wrap .btn-login:hover { background-color: #1f9a6e } .btns-wrap .btn-register:hover { background-color: #181818 } .gvc-dialog { width: 400px; height: 200px; padding: 25px; background-color: #181818; box-sizing: border-box; box-shadow: 1px 1.73px 20px 0 rgba(8,1,2 ,.4) } .gvc-dialog-hd { position: relative; font-size: 16px; color: #888; min-height: 23px; margin-bottom: 23px } .gvc-dialog-hd strong { display: inline-block; float: left; line-height: 23px } .gvc-dialog-hd .gvc-btn-close { position: absolute; width: 23px; height: 23px; top: 0; right: -4px; background-color: #181818; overflow: hidden; cursor: pointer } .gvc-dialog-hd .gvc-btn-close:before { position: relative; display: block; content: ''; width: 15px; height: 15px; top: 4px; left: 4px; /* background: url(img/icon-close.png) center no-repeat */ } .gvc-dialog-hd .gvc-btn-close:hover:before { /* background: url(img/icon-close-hover.png) center no-repeat */ } .gvc-dialog-bd { margin-bottom: 46px } .gvc-dialog-bd .creating-wrap { font-size: 0 } .creating-wrap span { display: inline-block; font-size: 12px; color: #888; line-height: 30px; margin-right: 20px } .creating-wrap input.gvc-input-text { font-size: 12px; color: #888; width: 281px; height: 30px; padding: 0 10px; background-color: #282828; border: 1px solid #444 } .creating-wrap input.gvc-input-text:focus { background-color: #282828; border: 1px solid #24b37a } .gvc-dialog-ft-btn-wrap { font-size: 0; text-align: center } .gvc-dialog-ft-btn-wrap button.gvc-btn { display: inline-block; font-size: 12px; width: 80px; height: 30px; line-height: 28px; background: #282828; color: #888; border: 1px solid #444; margin: 0 5px; text-align: center; cursor: pointer; outline: 0; box-sizing: border-box } .gvc-dialog-ft-btn-wrap button.gvc-btn.confirm { color: #fff; background: #24b37a; border: 1px solid #24b37a } body,html { position: relative; min-width: 1220px; height: 100%; overflow-x: auto } .connected { color: #24b37a } .label-txt { color: #6c6c6c } .value-txt { color: #999 } ::-webkit-input-placeholder { color: #999 } ::-moz-placeholder { color: #999 } :-ms-input-placeholder { color: #999 } :-moz-placeholder { color: #999 } .sidebar-btn { position: absolute; width: 12px; height: 80px; top: 50%; left: 220px; margin-top: -40px; /* background: url(../../image/fold-left.png) center no-repeat; */ z-index: 99 } .sidebar-btn:hover { /* background: url(../../image/fold-left-hover.png) center no-repeat */ } .chatroom-btn { position: absolute; width: 12px; height: 80px; top: 50%; right: 300px; margin-top: -40px; /* background: url(../../image/fold-right.png) center no-repeat; */ z-index: 99 } .chatroom-btn:hover { /* background: url(../../image/fold-right-hover.png) center no-repeat */ } .main-area { position: absolute; top: 0; right: 0; bottom: 0; left: 220px; overflow-y: hidden; overflow-x: hidden } .container { position: absolute; left: 180px; top: 60px; right: 0; bottom: 0; background-color: #222 } .header { background-color: #181818; height: 60px; padding: 0 20px } .product-wrap { float: left; height: 60px; line-height: 60px } .product-wrap .product-name { color: #24b37a; font-size: 20px; font-weight: 700 } .user-wrap { float: right; height: 60px; line-height: 60px } .nav-user { font-size: 0 } .nav-user li { display: inline-block; font-size: 12px; color: rgba(255,255,255,.5) } .nav-user li a { padding: 0 10px; color: #888 } .nav-user li:first-child a { border-right: 1px solid #444 } .nav-user li:last-child a { border-right: 0 } .nav-user li a:hover { color: #fff } .nav-user li a.text-only:hover { color: #888 } .sidebar { position: relative; display: inline-block; width: 220px; height: 100%; background-color: #282828 } .sidebar h2 { font-size: 16px; color: #888; padding: 0 20px; line-height: 45px } .sidebar-list-wrap { position: absolute; width: 100%; top: 45px; bottom: 0; overflow: auto } .sidebar-list { display: table; width: 100% } .sidebar-list li { position: relative; display: table-row; font-size: 14px; cursor: pointer } .sidebar-list li div { display: table-cell; border-bottom: 1px solid #191919 } .sidebar-list li:last-child div { border-bottom: 0 } li .item-info { padding: 12px 10px 12px 20px } .item-info .room-id { margin-bottom: 5px } .item-info .room-id .value-txt { max-width: 125px } .item-info .user-name .value-txt { max-width: 70px } .item-info .label-txt { display: inline-block; line-height: 20px } .item-info .value-txt { display: inline-block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; vertical-align: top; line-height: 20px } li .item-status { width: 70px; padding: 12px 20px 0 0; text-align: right; vertical-align: top } .sidebar.fold { width: 0 } .sidebar.fold h2 { font-size: 0; padding: 0 } .sidebar.fold .sidebar-btn { left: 0; /* background: url(../../image/fold-right.png) center no-repeat */ } .sidebar.fold .sidebar-btn:hover { /* background: url(../../image/fold-right-hover.png) center no-repeat */ } .main-area .panel { position: relative; display: inline-block; width: 100%; height: 100%; padding-right: 300px } .video-panel { position: relative; width: 100%; height: 100% } .action-panel { display: table; width: 100%; padding: 10px 30px; table-layout: fixed; box-sizing: border-box } .action-panel .left-panel { display: table-cell; font-size: 0; text-align: left } .action-panel .left-panel i { position: relative; display: inline-block; width: 10px; height: 16px; top: 2px; margin-right: 10px; /* background: url(img/icon-back.png) center no-repeat */ } .action-panel .left-panel span { font-size: 16px; color: #888 } .action-panel .right-panel { display: table-cell; text-align: right } .action-panel .right-panel .fluid-layout { display: inline-block; width: 24px; height: 24px; /* background: url(img/mode1.png) center no-repeat; */ vertical-align: text-top; margin-right: 10px; cursor: pointer } .action-panel .right-panel .fixed-layout { display: inline-block; width: 24px; height: 24px; /* background: url(img/mode2.png) center no-repeat; */ vertical-align: text-top; margin-right: 10px; cursor: pointer } .action-panel .right-panel .calling-btn { font-size: 12px; width: 80px; height: 30px; line-height: 30px; color: #fff; background-color: #24b37a; cursor: pointer } .action-panel .right-panel .calling-btn.disabled { color: #888; background-color: #444 } .action-panel .right-panel .calling-btn.decline { color: #fff; background-color: #ea4344 } .action-panel .right-panel .fluid-layout.current,.action-panel .right-panel .fluid-layout:hover { /* background: url(img/mode1-hover.png) center no-repeat */ } .action-panel .right-panel .fixed-layout.current,.action-panel .right-panel .fixed-layout:hover { /* background: url(img/mode2-hover.png) center no-repeat */ } .action-panel .right-panel .calling-btn:hover { background-color: #1f9a6e } .action-panel .right-panel .calling-btn.disabled:hover { background-color: #444; cursor: not-allowed } .action-panel .right-panel .calling-btn.decline:hover { background-color: #d42d3d } .tips { display: inline-block; max-width: 850px; padding: 10px 20px; margin: 0 auto; font-size: 0; background-color: rgba(0,0,0,.7); border-radius: 10px } .tips span { display: inline-block; font-size: 12px; line-height: 30px; color: #bbb; margin-right: 10px } .tips button { margin-left: 10px } .tips button.accept-btn { width: 80px; height: 30px; font-size: 12px; color: #fff; background-color: #24b37a; text-align: center; cursor: pointer } .tips button.decline-btn { width: 80px; height: 30px; font-size: 12px; color: #fff; background-color: #ea4344; text-align: center; cursor: pointer } .tips button.accept-btn:hover { background-color: #1f9a6e } .tips button.decline-btn:hover { background-color: #d42d3d } .main-area .sub-panel.chatroom { position: absolute; display: inline-block; width: 300px; height: 100%; top: 0; right: 0; padding: 0 10px; background-color: #282828 } .chatting-area { position: absolute; top: 0; bottom: 40px; width: 280px; padding: 10px; overflow-y: auto; box-sizing: border-box } .chatting-area li { font-size: 0; width: 100%; float: left; margin: 10px 0 } .chatting-area li:last-child { margin-bottom: 0 } .chatting-area .msg-wrap { position: relative; max-width: 200px } .chatting-area li.sender-msg .msg-wrap { display: table; float: right } .chatting-area li.receiver-msg .msg-wrap { display: table; float: left } .chatting-area li.sender-msg .msg-wrap p { font-size: 12px; color: #24b37a } .chatting-area li.receiver-msg .msg-wrap p { font-size: 12px; color: #bbb } .chatting-area .msg-wrap p.from { display: table-cell; min-width: 20px; font-weight: 700; text-align: right } .chatting-area .sender-msg .msg-wrap p.msg { display: table-cell; text-align: right; margin-right: 3px } .chatting-area .receiver-msg .msg-wrap p.msg { margin-left: 5px } .typing-area { position: absolute; display: table; width: 100%; height: 50px; left: 0; bottom: 0; padding: 10px } .typing-area input { display: table-cell; font-size: 14px; color: #999; width: 100%; height: 30px; padding: 0 10px; border: 0; vertical-align: middle; box-sizing: border-box } .typing-area span { display: table-cell; width: 80px; font-size: 14px; color: #fff; background-color: #24b37a; text-align: center; vertical-align: middle; cursor: pointer } .main-area .sub-panel.chatroom.fold { width: 0; padding: 0 } .main-area .sub-panel.chatroom.fold .chatroom-btn { right: 0; /* background: url(../../image/fold-left.png) center no-repeat */ } .main-area .sub-panel.chatroom.fold .chatroom-btn:hover { /* background: url(../../image/fold-left-hover.png) center no-repeat */ } .rooms-wrap { padding: 0 0 0 20px } .rooms-wrap .rooms-title { font-size: 16px; color: #888; margin: 20px 20px 0 0 } .rooms-wrap .rooms-title a.create-room { float: right; font-size: 12px; line-height: 22px; color: #24b37a; cursor: pointer } .rooms-wrap .rooms-title a.create-room:hover { text-decoration: underline } .rooms-wrap .rooms-list { font-size: 0; margin-right: -20px } .rooms-list .room-item { display: inline-block; width: 220px; font-size: 14px; padding: 14px 20px; margin: 20px 20px 0 0; background-color: #282828; border: 1px solid #282828; cursor: pointer } .rooms-list .room-item.selected,.rooms-list .room-item:hover { background-color: #181818; border: 1px solid #24b37a } .room-item .room-id,.room-item .user-name { line-height: 25px } #MAXIM { content: "man20170815155357" }
0.329284
0.060197
@media only screen and (min-device-width: 320px) and (max-device-width: 480px), only screen and (min-width: 320px) and (max-width: 767px) { footer, header, video, #home, #portfolio, .portfolio-item, #about, #contact, #impressum, #impressum2 { } footer { display: block; float: left; position: relative; } footer ul { left: 0px; } footer hr { left: 0px; width: 100%; width: calc(100% - 20px); } html { height: auto; min-height: 100%; } body { width: 100%; padding: 0px; margin: 0px; height: auto; min-height: 100%; } header { position: fixed; top: 0px; left: 0px; width: 100%; height: 80px; float: left; z-index: 100; } header img { display: block; position: absolute; top: 10px; left: 10px; width: 150px; height: auto; } header nav { display: none; position: absolute; top: 10px; left: 10px; background-color: white; width: 100%; z-index: 1; padding-bottom: 10px; } header nav a { cursor: pointer; font-size: 1.2em; } #nav-icon { display: block; position: absolute; top: 10px; right: 10px; font-size: 60px; line-height: 60px; text-decoration: none; cursor: pointer; z-index: 200; } dl { display: block; float: none; } section { display: block; clear: left; position: relative; width: 100%; margin: 0px 0px 100px 0px; padding: 0px 0px 0px 0px; top: auto; } header hr { position: absolute; top: 80px; left: 10px; width: 100%; width: calc(100% - 20px); } #container { padding: 0 10px 0 10px; } #home { margin-top: 100px; height: auto; } #home, #about, #skills, #portfolio, #portfolio-item, #clients, #contact, #impressum, #impressum2 { width: 100%; } #about h1 { display: block; } #about article { width: 100%; float: none; margin-bottom: 30px; } #about article img { width: 100%; height: auto; margin-bottom: 10px; } #home img { width: 100%; height: auto; margin: 0 0 20px 0; padding: 0; } #portfolio { margin: 0 0 0 0; } #portfolio ul { display: none; } .portfolio-item { display: block; width: 100%; height: auto; margin-bottom: 60px; } .portfolio-container { width: 100%; height: auto; margin-bottom: 15px; } .portfolio-container iframe { } .portfolio-image { width: 100%; height: auto; margin-bottom: 0px; } .portfolio-info { } .video-container { display: none; position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; height: auto; } .video-container iframe, .video-container object, .video-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .video-poster { left: 0; width: 100%; height: auto; position: relative; } .video-link { left: 0; width: 100%; position: absolute; background: url('../images/allgemeines/icon_play.png') no-repeat top left; background-size: 100% auto; z-index: 2; opacity: 0.7; display: block; } #contact { padding-bottom: 100px; } }
css/mobile-portrait.css
@media only screen and (min-device-width: 320px) and (max-device-width: 480px), only screen and (min-width: 320px) and (max-width: 767px) { footer, header, video, #home, #portfolio, .portfolio-item, #about, #contact, #impressum, #impressum2 { } footer { display: block; float: left; position: relative; } footer ul { left: 0px; } footer hr { left: 0px; width: 100%; width: calc(100% - 20px); } html { height: auto; min-height: 100%; } body { width: 100%; padding: 0px; margin: 0px; height: auto; min-height: 100%; } header { position: fixed; top: 0px; left: 0px; width: 100%; height: 80px; float: left; z-index: 100; } header img { display: block; position: absolute; top: 10px; left: 10px; width: 150px; height: auto; } header nav { display: none; position: absolute; top: 10px; left: 10px; background-color: white; width: 100%; z-index: 1; padding-bottom: 10px; } header nav a { cursor: pointer; font-size: 1.2em; } #nav-icon { display: block; position: absolute; top: 10px; right: 10px; font-size: 60px; line-height: 60px; text-decoration: none; cursor: pointer; z-index: 200; } dl { display: block; float: none; } section { display: block; clear: left; position: relative; width: 100%; margin: 0px 0px 100px 0px; padding: 0px 0px 0px 0px; top: auto; } header hr { position: absolute; top: 80px; left: 10px; width: 100%; width: calc(100% - 20px); } #container { padding: 0 10px 0 10px; } #home { margin-top: 100px; height: auto; } #home, #about, #skills, #portfolio, #portfolio-item, #clients, #contact, #impressum, #impressum2 { width: 100%; } #about h1 { display: block; } #about article { width: 100%; float: none; margin-bottom: 30px; } #about article img { width: 100%; height: auto; margin-bottom: 10px; } #home img { width: 100%; height: auto; margin: 0 0 20px 0; padding: 0; } #portfolio { margin: 0 0 0 0; } #portfolio ul { display: none; } .portfolio-item { display: block; width: 100%; height: auto; margin-bottom: 60px; } .portfolio-container { width: 100%; height: auto; margin-bottom: 15px; } .portfolio-container iframe { } .portfolio-image { width: 100%; height: auto; margin-bottom: 0px; } .portfolio-info { } .video-container { display: none; position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; height: auto; } .video-container iframe, .video-container object, .video-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .video-poster { left: 0; width: 100%; height: auto; position: relative; } .video-link { left: 0; width: 100%; position: absolute; background: url('../images/allgemeines/icon_play.png') no-repeat top left; background-size: 100% auto; z-index: 2; opacity: 0.7; display: block; } #contact { padding-bottom: 100px; } }
0.223292
0.127979
.sideBox div, .sideBox a:hover { color: #1396b0; font-weight: normal; background-color: #e3ebe7; } .sideBox a, .sideBox span, { background-color: #fcfcff; } /* For IE & Mozilla-based browsers: */ .LHS { margin-left: 2.5mm; float: left; clear: left; width: 14em; /* this is width of sidebox */ } .RHS { margin-right: 2.5mm; float: right; clear: right; width: 14em; font-size: small; } .sideBox a { font-weight: normal; font-size: 18px; } /* For Mozilla-based (CSS2-fully complaint) browsers only: */ [class~="LHS"] { margin-left: 5mm; } [class~="RHS"] { margin-right: 5mm; } /* ###### Body Text ###### */ #bodyText { line-height: 1.5em; margin: 5mm 2em 0 12em; padding: 0 1em 1ex 5em; /* 5em is space between sideBox and text */ text-decoration: none; } #bodyText p { padding-bottom: 1ex; } #bodyText ul { padding-bottom: 1ex; } a { text-decoration: none; color: #1396b0; font-weight: bold; font-size: 20px; line-height: 20px; } a:hover { color: #12d8ff; } body { background-color: white; color: black; font-family: "arial"; /* verdana, tahoma, helvetica, arial, sans-serif;*/ font-size: 100%; margin: 0; } h1, h2, h3 { font-weight: bold; font-family: "arial"; color: #6572a2; padding-bottom: 0.5ex; } h1 { font-size: 200%; line-height: 48px; border-bottom: 1px solid; } h2 { font-size: 160%; } h3 { font-size: 125%; } code { font-family: "lucida console", monospace; font-size: 90%; } img { border: 0; } /* ###### Side Box ###### */ .sideBox { border-top: 2px solid; border-bottom: 2px solid; margin-top: 5mm; } .sideBox div { font-weight: bold; border-bottom: 1px dashed; padding: 0.5ex 0.5em 0.5ex 0.75em; } .sideBox a, .sideBox a:hover, .sideBox span { color: black; text-decoration: none; line-height: 1.25em; display: block; padding: 0.2ex 0.5em 0.2ex 0.75em; /* This is padding around text */ } .disclaimer { margin-top: 15mm; } /* ###### Tree Control ###### */ .trigger{ cursor: pointer; /* one for IE, one for Mozilla */ cursor: hand; } .branch{ display: none; /* completely closed tree when start, otherwise "block" */ margin-left: 16px; }
src/iface/http/static/style.css
.sideBox div, .sideBox a:hover { color: #1396b0; font-weight: normal; background-color: #e3ebe7; } .sideBox a, .sideBox span, { background-color: #fcfcff; } /* For IE & Mozilla-based browsers: */ .LHS { margin-left: 2.5mm; float: left; clear: left; width: 14em; /* this is width of sidebox */ } .RHS { margin-right: 2.5mm; float: right; clear: right; width: 14em; font-size: small; } .sideBox a { font-weight: normal; font-size: 18px; } /* For Mozilla-based (CSS2-fully complaint) browsers only: */ [class~="LHS"] { margin-left: 5mm; } [class~="RHS"] { margin-right: 5mm; } /* ###### Body Text ###### */ #bodyText { line-height: 1.5em; margin: 5mm 2em 0 12em; padding: 0 1em 1ex 5em; /* 5em is space between sideBox and text */ text-decoration: none; } #bodyText p { padding-bottom: 1ex; } #bodyText ul { padding-bottom: 1ex; } a { text-decoration: none; color: #1396b0; font-weight: bold; font-size: 20px; line-height: 20px; } a:hover { color: #12d8ff; } body { background-color: white; color: black; font-family: "arial"; /* verdana, tahoma, helvetica, arial, sans-serif;*/ font-size: 100%; margin: 0; } h1, h2, h3 { font-weight: bold; font-family: "arial"; color: #6572a2; padding-bottom: 0.5ex; } h1 { font-size: 200%; line-height: 48px; border-bottom: 1px solid; } h2 { font-size: 160%; } h3 { font-size: 125%; } code { font-family: "lucida console", monospace; font-size: 90%; } img { border: 0; } /* ###### Side Box ###### */ .sideBox { border-top: 2px solid; border-bottom: 2px solid; margin-top: 5mm; } .sideBox div { font-weight: bold; border-bottom: 1px dashed; padding: 0.5ex 0.5em 0.5ex 0.75em; } .sideBox a, .sideBox a:hover, .sideBox span { color: black; text-decoration: none; line-height: 1.25em; display: block; padding: 0.2ex 0.5em 0.2ex 0.75em; /* This is padding around text */ } .disclaimer { margin-top: 15mm; } /* ###### Tree Control ###### */ .trigger{ cursor: pointer; /* one for IE, one for Mozilla */ cursor: hand; } .branch{ display: none; /* completely closed tree when start, otherwise "block" */ margin-left: 16px; }
0.362631
0.13852
body { /* font: normal 100.01% verdana,arial,helvetica,sans-serif; */ color: black; background: white; margin: 0; padding: 0; min-width: 40em; /* Mindestbreite verhindert Anzeigefehler in modernen Browsern */ } /* Kopfzeile */ #hab_logo img { border: 0; } #headline { font-size: 0.83em; margin: 0; padding: 0; width: inherit; } #head { color: #555; background:inherit; position: absolute; font-size: 1.7em; margin: -85px 0 0 0; } #highlights { text-align:center; padding:15px; width:99%; } #highlights td { width:200px; } #highlights h3 { text-align:center; } #projektname { margin-left: 120px; } /* Ende Kopfzeile */ /* Inhaltsbereich */ /* Anfang ID's */ #Scrollbereich { font-family:verdana,arial,helvetica,sans-serif; font-size:0.8em; text-align:justify; position: absolute; z-index: 1; margin: 20px 30px; width:95%; } #Scrollbereich a:link, #Scrollbereich a:visited { color: #900129; font-weight: bold; text-decoration: none; } #Scrollbereich a:focus { color: red; font-weight: bold; text-decoration: underline; } #Scrollbereich a:hover, #Scrollbereich a:active { color: red; font-weight: bold; text-decoration: underline; } #quicksearch { margin: -45px 10px 0 0; z-index:101; } #quicksearch input { font-size:8pt; color: #666666; background: #F6F6F6; z-index:101; } #search-pagination { display: block; float: left; text-align: center; width: 100%; margin: 0 5px 20px 0; padding: 0; overflow: hidden; } #search-pagination li { display: inline-block; float: left; width:auto; list-style: none; padding: 4px; text-align: center; background: #f6f6fa; border: 1px solid #dddde8; color: #181a31; } #title { font-size: 1.2em; text-align: center; width: 90%; } /* Ende ID's */ /* Anfang Klassen */ .searchInp{ position: relative; float: left; clear: both; width: 150px; height: 13px; margin-left: 10px; font-size: 11px; } .searchIcon{ position: relative; display: block; float: left; width: 19px; height: 19px; background-image: url('http://www.hab.de/images/search_red.gif'); z-index: 101; } .abstand { border-top: 1px solid #333; } .author, .msItemAuthor { font-variant: small-caps; } .msItemTitle { font-variant: small-caps; } .availability { font-size: small; } .bold { font-weight: bold; } .cb { color: #a00; font-weight: bold; } .content { font-size: 0.8em; margin:25px 35px 0 35px; width: 55%; } .contenthead { margin:25px 0 0 0; } .head { font-weight: bold; white-space: nowrap; list-style-type: none; } .label { font-weight: bold; white-space: nowrap; list-style-type: none; } .lang { font-size: 10pt; margin: -85px 10px 0 0; width: 10%; z-index:101; } .citeAs { font-size: 10pt; margin: -65px 10px 0 0; width: 10%; z-index:101; } .italic, .incipit, .explicit, .quote {font-style:italic; } .lb { color: #aaa; } .left { text-align: left; } .main { width:100%; } .msIdentifier { font-size: 1.3em; font-weight: bold; margin: 10pt 0 10pt 0; } .msPart { font-size: 1.2em; font-weight: bold; margin: 10px 0 15px 0; } .mssdoku { padding: 0 0 5px 0; } .mssDoku { margin: 10px 0 15px 0; } .normal { font-style:normal !important; } .nowrap { white-space: nowrap; } .pb { color: #f00; font-weight: bold; } .source { font-size: smaller; background-color: #DDD; padding: 3pt; margin-bottom: 20px; width: auto; } .ref { color: #aaa; } .respStmt { font-size: xx-small; } .right { font-size: 0.8em; float: right; text-align: right; width: auto; } .rights { font-size: smaller; margin-top: 30px; text-align: center; } .views { font-size: smaller; margin: 10px 0 15px 0; text-align: right; } /* Ende Klassen */ /* Anfang Elemente */ /*a { text-decoration: none; color: #900129; }*/ /*h1 { font-family: verdana,arial,helvetica,sans-serif; font-size: 12pt; color: #900129; font-weight: 600; text-align: left; }*/ /*h2 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; color: #900129; font-weight: 600; text-align: left; }*/ /*h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: 600; color: #4A494A; text-align: left; }*/ form h2 { text-align: center; } iframe { margin: 0 -25px 0 25px; } p { text-align: justify; } td { vertical-align: top; } td ul { margin: 2pt; } #desc { margin-top: 30pt; } /* Ende Elemente */ /* Formatierung der Suchergebnisse */ div.result { font-size: x-small; margin-top: 1em; margin-bottom: 1em; border-top: 1px solid #dddde8; border-bottom: 1px solid #dddde8; background: #f6f6f8; } span.hi { font-weight: bold; } span.title { font-size: medium; padding-bottom: 10px; } span.url { color: green; } span.codedirection { unicode-bidi: bidi-override; direction: rtl; }
resources/css/mss.css
body { /* font: normal 100.01% verdana,arial,helvetica,sans-serif; */ color: black; background: white; margin: 0; padding: 0; min-width: 40em; /* Mindestbreite verhindert Anzeigefehler in modernen Browsern */ } /* Kopfzeile */ #hab_logo img { border: 0; } #headline { font-size: 0.83em; margin: 0; padding: 0; width: inherit; } #head { color: #555; background:inherit; position: absolute; font-size: 1.7em; margin: -85px 0 0 0; } #highlights { text-align:center; padding:15px; width:99%; } #highlights td { width:200px; } #highlights h3 { text-align:center; } #projektname { margin-left: 120px; } /* Ende Kopfzeile */ /* Inhaltsbereich */ /* Anfang ID's */ #Scrollbereich { font-family:verdana,arial,helvetica,sans-serif; font-size:0.8em; text-align:justify; position: absolute; z-index: 1; margin: 20px 30px; width:95%; } #Scrollbereich a:link, #Scrollbereich a:visited { color: #900129; font-weight: bold; text-decoration: none; } #Scrollbereich a:focus { color: red; font-weight: bold; text-decoration: underline; } #Scrollbereich a:hover, #Scrollbereich a:active { color: red; font-weight: bold; text-decoration: underline; } #quicksearch { margin: -45px 10px 0 0; z-index:101; } #quicksearch input { font-size:8pt; color: #666666; background: #F6F6F6; z-index:101; } #search-pagination { display: block; float: left; text-align: center; width: 100%; margin: 0 5px 20px 0; padding: 0; overflow: hidden; } #search-pagination li { display: inline-block; float: left; width:auto; list-style: none; padding: 4px; text-align: center; background: #f6f6fa; border: 1px solid #dddde8; color: #181a31; } #title { font-size: 1.2em; text-align: center; width: 90%; } /* Ende ID's */ /* Anfang Klassen */ .searchInp{ position: relative; float: left; clear: both; width: 150px; height: 13px; margin-left: 10px; font-size: 11px; } .searchIcon{ position: relative; display: block; float: left; width: 19px; height: 19px; background-image: url('http://www.hab.de/images/search_red.gif'); z-index: 101; } .abstand { border-top: 1px solid #333; } .author, .msItemAuthor { font-variant: small-caps; } .msItemTitle { font-variant: small-caps; } .availability { font-size: small; } .bold { font-weight: bold; } .cb { color: #a00; font-weight: bold; } .content { font-size: 0.8em; margin:25px 35px 0 35px; width: 55%; } .contenthead { margin:25px 0 0 0; } .head { font-weight: bold; white-space: nowrap; list-style-type: none; } .label { font-weight: bold; white-space: nowrap; list-style-type: none; } .lang { font-size: 10pt; margin: -85px 10px 0 0; width: 10%; z-index:101; } .citeAs { font-size: 10pt; margin: -65px 10px 0 0; width: 10%; z-index:101; } .italic, .incipit, .explicit, .quote {font-style:italic; } .lb { color: #aaa; } .left { text-align: left; } .main { width:100%; } .msIdentifier { font-size: 1.3em; font-weight: bold; margin: 10pt 0 10pt 0; } .msPart { font-size: 1.2em; font-weight: bold; margin: 10px 0 15px 0; } .mssdoku { padding: 0 0 5px 0; } .mssDoku { margin: 10px 0 15px 0; } .normal { font-style:normal !important; } .nowrap { white-space: nowrap; } .pb { color: #f00; font-weight: bold; } .source { font-size: smaller; background-color: #DDD; padding: 3pt; margin-bottom: 20px; width: auto; } .ref { color: #aaa; } .respStmt { font-size: xx-small; } .right { font-size: 0.8em; float: right; text-align: right; width: auto; } .rights { font-size: smaller; margin-top: 30px; text-align: center; } .views { font-size: smaller; margin: 10px 0 15px 0; text-align: right; } /* Ende Klassen */ /* Anfang Elemente */ /*a { text-decoration: none; color: #900129; }*/ /*h1 { font-family: verdana,arial,helvetica,sans-serif; font-size: 12pt; color: #900129; font-weight: 600; text-align: left; }*/ /*h2 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; color: #900129; font-weight: 600; text-align: left; }*/ /*h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: 600; color: #4A494A; text-align: left; }*/ form h2 { text-align: center; } iframe { margin: 0 -25px 0 25px; } p { text-align: justify; } td { vertical-align: top; } td ul { margin: 2pt; } #desc { margin-top: 30pt; } /* Ende Elemente */ /* Formatierung der Suchergebnisse */ div.result { font-size: x-small; margin-top: 1em; margin-bottom: 1em; border-top: 1px solid #dddde8; border-bottom: 1px solid #dddde8; background: #f6f6f8; } span.hi { font-weight: bold; } span.title { font-size: medium; padding-bottom: 10px; } span.url { color: green; } span.codedirection { unicode-bidi: bidi-override; direction: rtl; }
0.369998
0.107625
@font-face { font-family: "Source Sans Pro"; font-style: normal; font-weight: 300; src: url(https://fonts.gstatic.com/s/sourcesanspro/v14/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdu3cOWxw.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } @font-face { font-family: "Source Sans Pro"; font-style: normal; font-weight: 400; src: url(https://fonts.gstatic.com/s/sourcesanspro/v14/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7lujVj9w.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } @font-face { font-family: "Source Sans Pro"; font-style: normal; font-weight: 600; src: url(https://fonts.gstatic.com/s/sourcesanspro/v14/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdu3cOWxw.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } @font-face { font-family: "Source Sans Pro"; font-style: italic; font-weight: 300; src: url(https://fonts.gstatic.com/s/sourcesanspro/v14/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18S0xR41.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /** Globals */ html { scroll-behavior: smooth; } body { font-family: "Source Sans Pro" !important; } pre { font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace; padding: 16px; overflow: auto; font-size: 85%; line-height: 1.45; color: #d0d0d0; background-color: #222629; border-radius: 3px; word-wrap: normal; border-radius: 0.5em; } header { margin: 0 2em 0 0; } .img-circle { border-radius: 50%; } .pull-left { float: left; } .pull-right { float: right; } .try-50 { width: 50%; } @media screen and (max-width: 640px) { .try-50 { width: 100%; } } /** Card */ .cards { max-width: 100%; grid-template-columns: repeat(1, 1fr); display: grid; grid-auto-rows: auto; grid-gap: 1rem; } @media (min-width: 600px) { .cards { grid-template-columns: repeat(2, 1fr); } } .card { /* Add shadows to create the "card" effect */ box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); transition: 0.3s; padding: 5% 10% 5% 10%; max-width: 90vw; min-width: 50%; background-color: white; } /* On mouse-over, add a deeper shadow */ .card:hover { box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2); } .card h1 { font-size: 2em; font-weight: 300; } .card h2 { font-size: 1.4em; color: #666; font-weight: 300; } .card h3 { font-size: 1.1em; color: #404040; font-weight: 300; } .card .preview { width: 100%; height: auto; } .card h1 a { text-decoration: none; color: inherit; transition: 0.5s; } .card h1 a:hover { color: purple; } .card p { font-weight: 300; text-align: justify; font-size: 1.2em; } /** Read more */ .read-more { text-align: center; padding-top: 0.5em; } .read-more a { text-decoration: none; color: #1145ac; transition: 0.5s; } .read-more a:hover { color: purple; } /** Headers */ h1, h2, h3, h4, h5 { font-family: "Source Sans Pro"; font-weight: 300; } /** Parallax */ .parallax { overflow: hidden; background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; } .home-parallax { font-family: "Source Sans Pro" !important; background-image: url("../assets/images/hero-bg.webp"); width: 100%; height: 100vh; display: flex; justify-content: center; align-items: center; } .parallax-card { background-color: rgba(255, 255, 255, 0.8); border-radius: 10%; color: black; text-align: center; position: relative; margin: auto; width: 50%; min-height: 25%; height: fit-content; padding: 5%; overflow-y: hidden; } .parallax-card a { color: dodgerblue; text-decoration: none; } .parallax-card a:hover { color: purple; } .parallax-card h1, h2, p { font-family: "Source Sans Pro" !important; font-weight: 300; } .parallax-card p { font-size: 1.2em; text-align: center; } .parallax-card .pronunciation { font-size: 1em; line-height: 0.5em; font-weight: 300; } .avatar { width: 20%; height: auto; border: 0; border-radius: 50%; } /** Pages */ section.page { width: 100%; height: auto; border-top: 1px solid #aaa; display: inline-block; padding-bottom: 2em; } section.page hr { margin: 1em 0 1em 0; } .container { width: 90%; height: auto; margin-left: auto; margin-right: auto; overflow: auto; } .container header a { color: inherit; text-decoration: none; border-bottom: dotted 1px #80808080; cursor: text; } .container header a i { color: #606060; } #projects { background-color: #f8f8f8; } #work-experience { background-color: #eee; } #contacts { background-color: #303030; color: white; } #contacts i { color: white; } #about-me-page { background-color: #fff; } #about-me-page h2 { font-weight: 700; text-align: center; font-size: 2em; text-transform: capitalize; } #about-me-page h3 { font-weight: 500; font-size: 1.5em; text-align: center; } #about-me-page .brief { font-size: 1.5em; text-align: justify; } #about-me-page .hobbies ul { text-align: center; list-style: none; cursor: default; margin-block-start: 0; padding-inline-start: 0; } #about-me-page .hobbies li { display: inline-block; margin: 0 2em 0 2em; } #about-me-page .hobbies ul li .icon { color: #404040; } /** Skill blocks */ #about-me-page .skills ul { list-style: none; text-align: center; } #about-me-page .skills i { padding-right: 1ch; } #about-me-page .skills h3 { font-size: 1.5 em; color: #202020; font-weight: 300; } #about-me-page .skills h4 { font-size: 1.25em; color: #202020; font-weight: 300; } #about-me-page .skill-block { height: 0.6em; width: 3em; background-color: #404040; display: inline-block; margin-right: 4px; } #about-me-page .skill-block-empty { height: 0.6em; width: 3em; background-color: #a0a0a0; display: inline-block; } /** Project */ .project { overflow: hidden; margin-bottom: 2em; } .project .preview { z-index: 100; border-radius: 50%; vertical-align: middle; max-width: 20%; width: auto; height: auto; } /** Image full size on small screens */ @media (max-width: 600px) { .project .preview { max-width: 100%; border-radius: 0 !important; } } .project .heading { line-height: 1; } .project img.pull-right { margin-left: 40px; } .project img.pull-left { margin-right: 40px; } .project h1 { font-size: 2em; font-weight: 300; } .project h2 { font-size: 1.4em; color: #666; font-weight: 300; } .project h3 { font-size: 1.1em; color: #404040; font-weight: 300; } .project h1 a { text-decoration: none; color: inherit; transition: 0.5s; } .project h1 a:hover { color: purple; } .project p { font-weight: 300; text-align: justify; font-size: 1.2em; } /** Footer */ footer { text-align: center; } footer .contacts { list-style: none; cursor: default; margin-block-start: 0; padding-inline-start: 0; padding: 1em 0 1em 0; } footer .contacts li { display: inline-block; } footer .contacts a { font-size: 3em; color: #fff; display: inline-block; width: 2em; height: 2em; line-height: 2em; text-align: center; border: 0; text-decoration: none; } footer .contacts a i { transition: all 0.3s ease-in; } footer .contacts li:nth-child(1) a:hover i { color: #dd3838 !important; } footer .contacts li:nth-child(2) a:hover i { color: #f0cf14 !important; } footer .contacts li:nth-child(3) a:hover i { color: #3ddd38 !important; } footer .contacts li:nth-child(4) a:hover i { color: #9b38dd !important; } footer p.copyright { text-align: center; font-weight: 300; color: #ccc; } /* ko-fi */ .floatingchat-container-wrap { left: auto !important; right: 16px !important; } .floating-chat-kofi-popup-iframe { left: auto !important; right: 16px !important; }
css/main.css
@font-face { font-family: "Source Sans Pro"; font-style: normal; font-weight: 300; src: url(https://fonts.gstatic.com/s/sourcesanspro/v14/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdu3cOWxw.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } @font-face { font-family: "Source Sans Pro"; font-style: normal; font-weight: 400; src: url(https://fonts.gstatic.com/s/sourcesanspro/v14/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7lujVj9w.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } @font-face { font-family: "Source Sans Pro"; font-style: normal; font-weight: 600; src: url(https://fonts.gstatic.com/s/sourcesanspro/v14/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdu3cOWxw.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } @font-face { font-family: "Source Sans Pro"; font-style: italic; font-weight: 300; src: url(https://fonts.gstatic.com/s/sourcesanspro/v14/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18S0xR41.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /** Globals */ html { scroll-behavior: smooth; } body { font-family: "Source Sans Pro" !important; } pre { font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace; padding: 16px; overflow: auto; font-size: 85%; line-height: 1.45; color: #d0d0d0; background-color: #222629; border-radius: 3px; word-wrap: normal; border-radius: 0.5em; } header { margin: 0 2em 0 0; } .img-circle { border-radius: 50%; } .pull-left { float: left; } .pull-right { float: right; } .try-50 { width: 50%; } @media screen and (max-width: 640px) { .try-50 { width: 100%; } } /** Card */ .cards { max-width: 100%; grid-template-columns: repeat(1, 1fr); display: grid; grid-auto-rows: auto; grid-gap: 1rem; } @media (min-width: 600px) { .cards { grid-template-columns: repeat(2, 1fr); } } .card { /* Add shadows to create the "card" effect */ box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); transition: 0.3s; padding: 5% 10% 5% 10%; max-width: 90vw; min-width: 50%; background-color: white; } /* On mouse-over, add a deeper shadow */ .card:hover { box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2); } .card h1 { font-size: 2em; font-weight: 300; } .card h2 { font-size: 1.4em; color: #666; font-weight: 300; } .card h3 { font-size: 1.1em; color: #404040; font-weight: 300; } .card .preview { width: 100%; height: auto; } .card h1 a { text-decoration: none; color: inherit; transition: 0.5s; } .card h1 a:hover { color: purple; } .card p { font-weight: 300; text-align: justify; font-size: 1.2em; } /** Read more */ .read-more { text-align: center; padding-top: 0.5em; } .read-more a { text-decoration: none; color: #1145ac; transition: 0.5s; } .read-more a:hover { color: purple; } /** Headers */ h1, h2, h3, h4, h5 { font-family: "Source Sans Pro"; font-weight: 300; } /** Parallax */ .parallax { overflow: hidden; background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; } .home-parallax { font-family: "Source Sans Pro" !important; background-image: url("../assets/images/hero-bg.webp"); width: 100%; height: 100vh; display: flex; justify-content: center; align-items: center; } .parallax-card { background-color: rgba(255, 255, 255, 0.8); border-radius: 10%; color: black; text-align: center; position: relative; margin: auto; width: 50%; min-height: 25%; height: fit-content; padding: 5%; overflow-y: hidden; } .parallax-card a { color: dodgerblue; text-decoration: none; } .parallax-card a:hover { color: purple; } .parallax-card h1, h2, p { font-family: "Source Sans Pro" !important; font-weight: 300; } .parallax-card p { font-size: 1.2em; text-align: center; } .parallax-card .pronunciation { font-size: 1em; line-height: 0.5em; font-weight: 300; } .avatar { width: 20%; height: auto; border: 0; border-radius: 50%; } /** Pages */ section.page { width: 100%; height: auto; border-top: 1px solid #aaa; display: inline-block; padding-bottom: 2em; } section.page hr { margin: 1em 0 1em 0; } .container { width: 90%; height: auto; margin-left: auto; margin-right: auto; overflow: auto; } .container header a { color: inherit; text-decoration: none; border-bottom: dotted 1px #80808080; cursor: text; } .container header a i { color: #606060; } #projects { background-color: #f8f8f8; } #work-experience { background-color: #eee; } #contacts { background-color: #303030; color: white; } #contacts i { color: white; } #about-me-page { background-color: #fff; } #about-me-page h2 { font-weight: 700; text-align: center; font-size: 2em; text-transform: capitalize; } #about-me-page h3 { font-weight: 500; font-size: 1.5em; text-align: center; } #about-me-page .brief { font-size: 1.5em; text-align: justify; } #about-me-page .hobbies ul { text-align: center; list-style: none; cursor: default; margin-block-start: 0; padding-inline-start: 0; } #about-me-page .hobbies li { display: inline-block; margin: 0 2em 0 2em; } #about-me-page .hobbies ul li .icon { color: #404040; } /** Skill blocks */ #about-me-page .skills ul { list-style: none; text-align: center; } #about-me-page .skills i { padding-right: 1ch; } #about-me-page .skills h3 { font-size: 1.5 em; color: #202020; font-weight: 300; } #about-me-page .skills h4 { font-size: 1.25em; color: #202020; font-weight: 300; } #about-me-page .skill-block { height: 0.6em; width: 3em; background-color: #404040; display: inline-block; margin-right: 4px; } #about-me-page .skill-block-empty { height: 0.6em; width: 3em; background-color: #a0a0a0; display: inline-block; } /** Project */ .project { overflow: hidden; margin-bottom: 2em; } .project .preview { z-index: 100; border-radius: 50%; vertical-align: middle; max-width: 20%; width: auto; height: auto; } /** Image full size on small screens */ @media (max-width: 600px) { .project .preview { max-width: 100%; border-radius: 0 !important; } } .project .heading { line-height: 1; } .project img.pull-right { margin-left: 40px; } .project img.pull-left { margin-right: 40px; } .project h1 { font-size: 2em; font-weight: 300; } .project h2 { font-size: 1.4em; color: #666; font-weight: 300; } .project h3 { font-size: 1.1em; color: #404040; font-weight: 300; } .project h1 a { text-decoration: none; color: inherit; transition: 0.5s; } .project h1 a:hover { color: purple; } .project p { font-weight: 300; text-align: justify; font-size: 1.2em; } /** Footer */ footer { text-align: center; } footer .contacts { list-style: none; cursor: default; margin-block-start: 0; padding-inline-start: 0; padding: 1em 0 1em 0; } footer .contacts li { display: inline-block; } footer .contacts a { font-size: 3em; color: #fff; display: inline-block; width: 2em; height: 2em; line-height: 2em; text-align: center; border: 0; text-decoration: none; } footer .contacts a i { transition: all 0.3s ease-in; } footer .contacts li:nth-child(1) a:hover i { color: #dd3838 !important; } footer .contacts li:nth-child(2) a:hover i { color: #f0cf14 !important; } footer .contacts li:nth-child(3) a:hover i { color: #3ddd38 !important; } footer .contacts li:nth-child(4) a:hover i { color: #9b38dd !important; } footer p.copyright { text-align: center; font-weight: 300; color: #ccc; } /* ko-fi */ .floatingchat-container-wrap { left: auto !important; right: 16px !important; } .floating-chat-kofi-popup-iframe { left: auto !important; right: 16px !important; }
0.476336
0.116312
@charset "utf-8"; * { margin: 0; padding: 0; list-style-type: none; } a, img { border: 0; } /*body{background:#f7f7f7 url(../images/pinstripe.gif) repeat top left;color:#000;font-family: Georgia, "Times New Roman",sans-serif;font-size:12px;}*/ a { color: #000; text-decoration: none; } /* iw_wrapper */ .iw_wrapper { width: 100%; position: relative; margin-top: 30px; margin-right: auto; margin-bottom: 60px; margin-left: auto; } ul.iw_thumbs li { float: left; margin: 5px; } ul.iw_thumbs li div { position: absolute; top: 5px; width: 180px; padding: 0px 10px; display: none; color: #fff; z-index: 100; } ul.iw_thumbs li div h2 { font-family: 'Wire One', arial, serif; font-size: 38px; text-transform: uppercase; text-shadow: 0px 0px 1px #fff; } ul.iw_thumbs li div p { font-size: 12px; line-height: 22px; font-style: normal; font-family: "宋体"; } ul.iw_thumbs li:nth-child(1) { margin-left: 50px; } ul.iw_thumbs li:nth-child(even) { margin-top: 30px; } ul.iw_thumbs li:nth-child(3n) { margin-left: 20px; } ul.iw_thumbs li img { border: 7px solid #fff; cursor: pointer; position: relative; -moz-box-shadow: 1px 1px 1px #aaa; -webkit-box-shadow: 1px 1px 1px #aaa; box-shadow: 1px 1px 1px #aaa; } ul.iw_thumbs li img:hover { -moz-box-shadow: 1px 1px 7px #777; -webkit-box-shadow: 1px 1px 7px #777; box-shadow: 1px 1px 7px #777; } ul.iw_thumbs li:nth-child(odd) img { height: 50px; } ul.iw_thumbs li:nth-child(5n) img { height: 70px; } ul.iw_thumbs li:nth-child(6n) img { height: 110px; } ul.iw_thumbs li:nth-child(7n) img { height: 40px; } .iw_ribbon { position: fixed; height: 126px; /*first 126 then 0 to close and 100% to open (while top goes to 0) */ width: 0px; /*first 0 then animate to 100%*/ left: 0px; /*or right 0*/ top: 0px; /*First, top of thumb, then animate to 0*/ background: #000; opacity: 0.8; z-index: 10; overflow: hidden; display: none; } .iw_close { position: absolute; top: 10px; right: 10px; background: #f0f0f0 url(../images/close.gif) no-repeat center center; width: 18px; height: 18px; display: none; cursor: pointer; } .iw_zoom { color: white; font-size: 8px; font-family: Arial, sans-serif; text-transform: uppercase; padding: 14px; display: none; float: right; margin-right: 30px; } .iw_ribbon img { position: absolute; top: 50%; left: 50%; border: 7px solid #fff; } .iw_loading { background: #fff url(../images/loader.gif) no-repeat center center; width: 28px; height: 28px; position: absolute; top: 50%; left: 50%; z-index: 10000; margin: -14px 0px 0px -14px; opacity: 0.8; }
src/main/resources/static/css/media-style.css
@charset "utf-8"; * { margin: 0; padding: 0; list-style-type: none; } a, img { border: 0; } /*body{background:#f7f7f7 url(../images/pinstripe.gif) repeat top left;color:#000;font-family: Georgia, "Times New Roman",sans-serif;font-size:12px;}*/ a { color: #000; text-decoration: none; } /* iw_wrapper */ .iw_wrapper { width: 100%; position: relative; margin-top: 30px; margin-right: auto; margin-bottom: 60px; margin-left: auto; } ul.iw_thumbs li { float: left; margin: 5px; } ul.iw_thumbs li div { position: absolute; top: 5px; width: 180px; padding: 0px 10px; display: none; color: #fff; z-index: 100; } ul.iw_thumbs li div h2 { font-family: 'Wire One', arial, serif; font-size: 38px; text-transform: uppercase; text-shadow: 0px 0px 1px #fff; } ul.iw_thumbs li div p { font-size: 12px; line-height: 22px; font-style: normal; font-family: "宋体"; } ul.iw_thumbs li:nth-child(1) { margin-left: 50px; } ul.iw_thumbs li:nth-child(even) { margin-top: 30px; } ul.iw_thumbs li:nth-child(3n) { margin-left: 20px; } ul.iw_thumbs li img { border: 7px solid #fff; cursor: pointer; position: relative; -moz-box-shadow: 1px 1px 1px #aaa; -webkit-box-shadow: 1px 1px 1px #aaa; box-shadow: 1px 1px 1px #aaa; } ul.iw_thumbs li img:hover { -moz-box-shadow: 1px 1px 7px #777; -webkit-box-shadow: 1px 1px 7px #777; box-shadow: 1px 1px 7px #777; } ul.iw_thumbs li:nth-child(odd) img { height: 50px; } ul.iw_thumbs li:nth-child(5n) img { height: 70px; } ul.iw_thumbs li:nth-child(6n) img { height: 110px; } ul.iw_thumbs li:nth-child(7n) img { height: 40px; } .iw_ribbon { position: fixed; height: 126px; /*first 126 then 0 to close and 100% to open (while top goes to 0) */ width: 0px; /*first 0 then animate to 100%*/ left: 0px; /*or right 0*/ top: 0px; /*First, top of thumb, then animate to 0*/ background: #000; opacity: 0.8; z-index: 10; overflow: hidden; display: none; } .iw_close { position: absolute; top: 10px; right: 10px; background: #f0f0f0 url(../images/close.gif) no-repeat center center; width: 18px; height: 18px; display: none; cursor: pointer; } .iw_zoom { color: white; font-size: 8px; font-family: Arial, sans-serif; text-transform: uppercase; padding: 14px; display: none; float: right; margin-right: 30px; } .iw_ribbon img { position: absolute; top: 50%; left: 50%; border: 7px solid #fff; } .iw_loading { background: #fff url(../images/loader.gif) no-repeat center center; width: 28px; height: 28px; position: absolute; top: 50%; left: 50%; z-index: 10000; margin: -14px 0px 0px -14px; opacity: 0.8; }
0.343672
0.06989
.mainContent { width: auto; } .bodyContent { margin-left: 35px; margin-right: 35px; } <!-- Custom CSS --> #custom-search-input{ padding: 3px; border: solid 1px #E4E4E4; border-radius: 6px; background-color: #fff; } #custom-search-input input{ border: 0; box-shadow: none; } #custom-search-input button{ margin: 2px 0 0 0; background: none; box-shadow: none; border: 0; color: #666666; padding: 0 8px 0 10px; border-left: solid 1px #ccc; } #custom-search-input button:hover{ border: 0; box-shadow: none; border-left: solid 1px #ccc; } #custom-search-input .glyphicon-search{ font-size: 23px; } .contact-details li a:before { color: rgba(255,255,255,.2); } .contact-details li a { color: #FFFF; } .contact-details li { display: inline-block; } .contact-details li a:before { position: relative; content: "|"; font-size: 13px; margin: 0 3px; top: -1px; color: #36C4F3; } .contact-details li a:before { color: #FFFF; } .contact-details li:first-child a:before { display: none; } .contact-details li a { font-size: 12px; display: block; line-height: 32px; } .social-list { margin-right: 10px !important; } ul.social-list { float: right; } ul.social-list li { float: left; } ul.social-list li a { display: inline-block; transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; color: #FFFF; } ul.social-list li a:hover { color: #fff; } ul.social-list li a.facebook:hover { background-color: #507CBE; } ul.social-list li a.twitter:hover { background-color: #63CDF1; } ul.social-list li a.google:hover { background-color: #F16261; } ul.social-list li a.dribbble:hover { background-color: #E46387; } ul.social-list li a.linkdin:hover { background-color: #90CADD; } ul.social-list li a.tumblr:hover { background-color: #4D7EA3; } ul.social-list li a.flickr:hover { background-color: #E474AF; } ul.social-list li a.instgram:hover { background-color: #4D4F54; } ul.social-list li a.vimeo:hover { background-color: #87D3E0; } ul.social-list li a.skype:hover { background-color: #36C4F3 } ul.social-list li a i { font-size: 1em; display: block; width: 34px; height: 30px; line-height: 33px; text-align: center; border-left: 1px solid #403737; } ul.social-list li:last-child a i { border-right: 1px solid #403737; } #bottom { background: #222; border-bottom: 2px solid #c52d2f; font-size: 14px; width: auto !important; } .footerarea { color: #ffff; } .uldecoration { list-style-type: none; } .uldecoration li a { color: #FFFF; } .topMenu { margin-right: 10px !important; margin-left: 10px !important; }
css/style.css
.mainContent { width: auto; } .bodyContent { margin-left: 35px; margin-right: 35px; } <!-- Custom CSS --> #custom-search-input{ padding: 3px; border: solid 1px #E4E4E4; border-radius: 6px; background-color: #fff; } #custom-search-input input{ border: 0; box-shadow: none; } #custom-search-input button{ margin: 2px 0 0 0; background: none; box-shadow: none; border: 0; color: #666666; padding: 0 8px 0 10px; border-left: solid 1px #ccc; } #custom-search-input button:hover{ border: 0; box-shadow: none; border-left: solid 1px #ccc; } #custom-search-input .glyphicon-search{ font-size: 23px; } .contact-details li a:before { color: rgba(255,255,255,.2); } .contact-details li a { color: #FFFF; } .contact-details li { display: inline-block; } .contact-details li a:before { position: relative; content: "|"; font-size: 13px; margin: 0 3px; top: -1px; color: #36C4F3; } .contact-details li a:before { color: #FFFF; } .contact-details li:first-child a:before { display: none; } .contact-details li a { font-size: 12px; display: block; line-height: 32px; } .social-list { margin-right: 10px !important; } ul.social-list { float: right; } ul.social-list li { float: left; } ul.social-list li a { display: inline-block; transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; color: #FFFF; } ul.social-list li a:hover { color: #fff; } ul.social-list li a.facebook:hover { background-color: #507CBE; } ul.social-list li a.twitter:hover { background-color: #63CDF1; } ul.social-list li a.google:hover { background-color: #F16261; } ul.social-list li a.dribbble:hover { background-color: #E46387; } ul.social-list li a.linkdin:hover { background-color: #90CADD; } ul.social-list li a.tumblr:hover { background-color: #4D7EA3; } ul.social-list li a.flickr:hover { background-color: #E474AF; } ul.social-list li a.instgram:hover { background-color: #4D4F54; } ul.social-list li a.vimeo:hover { background-color: #87D3E0; } ul.social-list li a.skype:hover { background-color: #36C4F3 } ul.social-list li a i { font-size: 1em; display: block; width: 34px; height: 30px; line-height: 33px; text-align: center; border-left: 1px solid #403737; } ul.social-list li:last-child a i { border-right: 1px solid #403737; } #bottom { background: #222; border-bottom: 2px solid #c52d2f; font-size: 14px; width: auto !important; } .footerarea { color: #ffff; } .uldecoration { list-style-type: none; } .uldecoration li a { color: #FFFF; } .topMenu { margin-right: 10px !important; margin-left: 10px !important; }
0.335024
0.074804
body{ font-family: 'Lato', sans-serif; } .row{ max-width: 110rem; margin: 0px auto; } a{ color: #FFF; text-decoration: none; } a:hover{ color: #FFF; text-decoration: none; } div{ font-size: 100%; } .header{ /*padding-top: 45px;*/ position: relative; height: 0; } .header .logo{ position: relative; top: 50% transform: translateY(-50%); height: 40px; width: 40px; background-image: url("logo.svg"); background-size: cover; float: left; } .header .email a{ position: relative; top: 50% transform: translateY(-50%); float: right; width:50px; font-size:13px; } .header .email span{ font-size: 0.875rem; line-height: 1.1875rem; letter-spacing: 0.03125rem; } .header .col-sm-12{ height: 2.75rem; top: 50px; } .hero { padding: 9.375rem 0px; padding-top:200px; height:700px; color:#FFF; background-image: url('nicage.jpg'); background-size: cover; background-position: center center; background-repeat: no-repeat; } @media (max-width: 768px) {.hero{ height: 675px; }} .hero h1{ font-size: 50px; text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5); } @media (max-width: 768px) {.hero h1 { text-align: center; margin-top: -40px; margin-left: auto; margin-right: auto; }} .hero h3{ text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5); } @media (max-width: 768px) {.hero h3 { text-align: center; margin-bottom: 30px; }} .button{ width: 300px; height: 55px; border-radius:6px; display: inline-block; } @media (max-width: 768px) {.button{ width: 100%; }} .hero .button.instagram:hover{ background-image: linear-gradient(-180deg, #326083 0%, #326083 100%); } .hero .button.instagram{ background-image: linear-gradient(-180deg, #537FA3 0%, #326083 100%); } .button.instagram .instagram-logo{ height: 35px; width: 120px; background: url("instagram-logo.svg") center center no-repeat transparent; background-size: cover; vertical-align: middle; margin-top: 20px; display: inline-block; } .setup{ color: #505050; padding: 75px; margin-top: 55px; margin-bottom: 125px; } @media (max-width: 768px) { .setup { padding: 5rem 0; margin: 0; height: 886px; }} .setup h1{ font-size: 50px; } @media (max-width: 768px) {.setup h1 { text-align: center; }} .setup h2{ font-size: 35px; text-align: center; } @media (max-width: 768px) {.setup h2 { text-align: center; }} .setup h5{ font-size: 17px; margin-bottom: 50px; text-align: center; } @media (max-width: 768px) {.setup h5 { text-align: center; margin-bottom: 0; }} .setup h4{ font-size: 20px; } @media (max-width: 768px) {.setup h4 { text-align: center; margin: 0; }} .setup p{ font-size: 17px; } @media (max-width: 768px) {.setup p { text-align: center; margin: 0; font-size: 15px; }} .setup .step{ display: flex; padding: 0 2.5rem; } @media (max-width: 768px) {.setup .step { padding: 0; margin-top: 1.875rem; display: inline-block; }} .setup .step .step-number{ margin:0 0.625rem 0 0; display:table; font-size:3.125rem; } @media (max-width: 768px) {.setup .step .step-number { text-align: center; margin: 0px; display: block; }} .setup .step .step-content{ display:table-cell; } @media (max-width: 768px) {.setup .step .step-content { text-align: center; display: inline-block; }} .setup .step .step-content h4{ font-weight: 700; margin-bottom:0.125rem; } .pay { color: #FFF; padding: 75px; background-image: radial-gradient(at left top , #3A8FDC 0%, #87D7CD 100%); height: 800px } @media (max-width: 768px) {.pay { height: 1186px; padding: 80px 0; }} .pay h1{ font-size: 40px; padding-bottom: 15px; } @media (max-width: 768px) {.pay h1 { text-align: center; font-size: 45px; }} .pay h5{ font-size: 17px; } @media (max-width: 768px) {.pay h5 { text-align: center; }} @media (max-width: 768px) {.pay h2 { text-align: center; margin-top: 30px; }} @media (max-width: 768px) {.pay p { text-align: center; font-size: 17px; }} .pay .card{ width: 300px; } .pay .button.instagram{ background-image: linear-gradient(-180deg, #F48E33 0%, #E66F2C 100%); } .pay .button.instagram:hover{ background-image: linear-gradient(-180deg, #E66F2C 0%, #E66F2C 100%); } .pay .cards-mobile-container{ display: none; } .pay .cards-mobile-container .pic{ margin-top: 50px; } @media(max-width:786px) {.pay .cards-mobile-container{ display: inline-block; transform: rotate(188deg); }} @media (max-width: 768px) {.pay .pay-card { display: none; }} @media (max-width: 768px) {.pay .card{ margin: 0.625rem auto 0 auto; width: calc(100%); }} .stripe{ height: 25px; width: 60px; background: url("stripe-logo.svg") center center no-repeat transparent; background-size: contain; display: inline-block; vertical-align: top; } @media (max-width: 768px) {.stripe{ margin-left: 110px; }} .pay .card{ height: 40px; background: url("card-icons.png") no-repeat scroll center center / contain transparent; } .pay .pay-card{ padding-top: 75px; transform: rotate(8deg); } .table{ padding: 5rem 0; color: #505050; } .table .pic{ width: 270px; height: 255px; max-width: 100%; } @media (max-width: 786px) {.table .pic{ width: 100px; height: 100px; margin-top: 30px; }} .table .row{ padding: 10px; } .table h5{ font-size: large; } @media (max-width: 768px) {.table h2{ font-size: 37px; }} .end { color: #FFF; padding: 9.375rem 0px; background: url("http://repostage.com/static/train-tracks.jpg") no-repeat scroll center center / cover transparent; height: 463px; } .end .button.instagram{ background-image: linear-gradient(-180deg, #537FA3 0%, #326083 100%); } .end .button.instagram:hover{ background-image: linear-gradient(-180deg, #326083 0%, #326083 100%); } .end h1{ margin-top: 50px; font-size: 45px; line-height: 3.125rem; } @media (max-width: 768px) {.end h1 { line-height: 120%; margin-top: 0px; }} .end h5{ font-size: 17px; margin-bottom: 50px; } #log-in-btn{ position:relative; top:25px; right:-50px; } .footer{ color: #FFF; background-image: radial-gradient(at top left, #3A8FDC 0%, #87D7CD 100%); background-size: cover; padding: 2.8125rem 0; height: 120px; } @media(max-width:768px){.footer { height: 188px; }} @media(max-width:768px){.footer .cali .legal .social{ text-align: center; margin-top: 20px; margin-bottom: 20px; }} .footer .instagram{ height: 21px; width: 21px; background-image: url("instagram-icon.svg"); background-size: cover; display:inline-block; vertical-align: middle; margin: 0 0.625rem; } .footer .facebook{ height: 21px; width: 10px; background-image: url("facebook-icon.svg"); background-size: cover; display:inline-block; vertical-align: middle; margin: 0 0.625rem; } .footer .twitter{ height: 17px; width: 21px; background-image: url("twitter-icon.svg"); background-size: cover; display:inline-block; vertical-align: middle; margin: 0 0.625rem; } .footer .california{ height: 30px; width: 60px; background-image: url("california-icon.svg"); background-size: cover; display:inline-block; vertical-align: middle; margin: 0 0 0 0.625rem; } .footer .span{ font-size: 0.75rem; line-height: 0.875rem; font-weight: 400; } .footer li{ display: inline; margin: 0 0.9375rem; } @media (max-width: 768px) {.footer .social { margin: 20px 0px; }} @media (max-width: 768px) {.footer .legal ul { padding-left: 0px; font-size: 10px; text-align: center; }} @media (max-width: 768px) {.footer .cali{ text-align: center; }
public/css/style.css
body{ font-family: 'Lato', sans-serif; } .row{ max-width: 110rem; margin: 0px auto; } a{ color: #FFF; text-decoration: none; } a:hover{ color: #FFF; text-decoration: none; } div{ font-size: 100%; } .header{ /*padding-top: 45px;*/ position: relative; height: 0; } .header .logo{ position: relative; top: 50% transform: translateY(-50%); height: 40px; width: 40px; background-image: url("logo.svg"); background-size: cover; float: left; } .header .email a{ position: relative; top: 50% transform: translateY(-50%); float: right; width:50px; font-size:13px; } .header .email span{ font-size: 0.875rem; line-height: 1.1875rem; letter-spacing: 0.03125rem; } .header .col-sm-12{ height: 2.75rem; top: 50px; } .hero { padding: 9.375rem 0px; padding-top:200px; height:700px; color:#FFF; background-image: url('nicage.jpg'); background-size: cover; background-position: center center; background-repeat: no-repeat; } @media (max-width: 768px) {.hero{ height: 675px; }} .hero h1{ font-size: 50px; text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5); } @media (max-width: 768px) {.hero h1 { text-align: center; margin-top: -40px; margin-left: auto; margin-right: auto; }} .hero h3{ text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5); } @media (max-width: 768px) {.hero h3 { text-align: center; margin-bottom: 30px; }} .button{ width: 300px; height: 55px; border-radius:6px; display: inline-block; } @media (max-width: 768px) {.button{ width: 100%; }} .hero .button.instagram:hover{ background-image: linear-gradient(-180deg, #326083 0%, #326083 100%); } .hero .button.instagram{ background-image: linear-gradient(-180deg, #537FA3 0%, #326083 100%); } .button.instagram .instagram-logo{ height: 35px; width: 120px; background: url("instagram-logo.svg") center center no-repeat transparent; background-size: cover; vertical-align: middle; margin-top: 20px; display: inline-block; } .setup{ color: #505050; padding: 75px; margin-top: 55px; margin-bottom: 125px; } @media (max-width: 768px) { .setup { padding: 5rem 0; margin: 0; height: 886px; }} .setup h1{ font-size: 50px; } @media (max-width: 768px) {.setup h1 { text-align: center; }} .setup h2{ font-size: 35px; text-align: center; } @media (max-width: 768px) {.setup h2 { text-align: center; }} .setup h5{ font-size: 17px; margin-bottom: 50px; text-align: center; } @media (max-width: 768px) {.setup h5 { text-align: center; margin-bottom: 0; }} .setup h4{ font-size: 20px; } @media (max-width: 768px) {.setup h4 { text-align: center; margin: 0; }} .setup p{ font-size: 17px; } @media (max-width: 768px) {.setup p { text-align: center; margin: 0; font-size: 15px; }} .setup .step{ display: flex; padding: 0 2.5rem; } @media (max-width: 768px) {.setup .step { padding: 0; margin-top: 1.875rem; display: inline-block; }} .setup .step .step-number{ margin:0 0.625rem 0 0; display:table; font-size:3.125rem; } @media (max-width: 768px) {.setup .step .step-number { text-align: center; margin: 0px; display: block; }} .setup .step .step-content{ display:table-cell; } @media (max-width: 768px) {.setup .step .step-content { text-align: center; display: inline-block; }} .setup .step .step-content h4{ font-weight: 700; margin-bottom:0.125rem; } .pay { color: #FFF; padding: 75px; background-image: radial-gradient(at left top , #3A8FDC 0%, #87D7CD 100%); height: 800px } @media (max-width: 768px) {.pay { height: 1186px; padding: 80px 0; }} .pay h1{ font-size: 40px; padding-bottom: 15px; } @media (max-width: 768px) {.pay h1 { text-align: center; font-size: 45px; }} .pay h5{ font-size: 17px; } @media (max-width: 768px) {.pay h5 { text-align: center; }} @media (max-width: 768px) {.pay h2 { text-align: center; margin-top: 30px; }} @media (max-width: 768px) {.pay p { text-align: center; font-size: 17px; }} .pay .card{ width: 300px; } .pay .button.instagram{ background-image: linear-gradient(-180deg, #F48E33 0%, #E66F2C 100%); } .pay .button.instagram:hover{ background-image: linear-gradient(-180deg, #E66F2C 0%, #E66F2C 100%); } .pay .cards-mobile-container{ display: none; } .pay .cards-mobile-container .pic{ margin-top: 50px; } @media(max-width:786px) {.pay .cards-mobile-container{ display: inline-block; transform: rotate(188deg); }} @media (max-width: 768px) {.pay .pay-card { display: none; }} @media (max-width: 768px) {.pay .card{ margin: 0.625rem auto 0 auto; width: calc(100%); }} .stripe{ height: 25px; width: 60px; background: url("stripe-logo.svg") center center no-repeat transparent; background-size: contain; display: inline-block; vertical-align: top; } @media (max-width: 768px) {.stripe{ margin-left: 110px; }} .pay .card{ height: 40px; background: url("card-icons.png") no-repeat scroll center center / contain transparent; } .pay .pay-card{ padding-top: 75px; transform: rotate(8deg); } .table{ padding: 5rem 0; color: #505050; } .table .pic{ width: 270px; height: 255px; max-width: 100%; } @media (max-width: 786px) {.table .pic{ width: 100px; height: 100px; margin-top: 30px; }} .table .row{ padding: 10px; } .table h5{ font-size: large; } @media (max-width: 768px) {.table h2{ font-size: 37px; }} .end { color: #FFF; padding: 9.375rem 0px; background: url("http://repostage.com/static/train-tracks.jpg") no-repeat scroll center center / cover transparent; height: 463px; } .end .button.instagram{ background-image: linear-gradient(-180deg, #537FA3 0%, #326083 100%); } .end .button.instagram:hover{ background-image: linear-gradient(-180deg, #326083 0%, #326083 100%); } .end h1{ margin-top: 50px; font-size: 45px; line-height: 3.125rem; } @media (max-width: 768px) {.end h1 { line-height: 120%; margin-top: 0px; }} .end h5{ font-size: 17px; margin-bottom: 50px; } #log-in-btn{ position:relative; top:25px; right:-50px; } .footer{ color: #FFF; background-image: radial-gradient(at top left, #3A8FDC 0%, #87D7CD 100%); background-size: cover; padding: 2.8125rem 0; height: 120px; } @media(max-width:768px){.footer { height: 188px; }} @media(max-width:768px){.footer .cali .legal .social{ text-align: center; margin-top: 20px; margin-bottom: 20px; }} .footer .instagram{ height: 21px; width: 21px; background-image: url("instagram-icon.svg"); background-size: cover; display:inline-block; vertical-align: middle; margin: 0 0.625rem; } .footer .facebook{ height: 21px; width: 10px; background-image: url("facebook-icon.svg"); background-size: cover; display:inline-block; vertical-align: middle; margin: 0 0.625rem; } .footer .twitter{ height: 17px; width: 21px; background-image: url("twitter-icon.svg"); background-size: cover; display:inline-block; vertical-align: middle; margin: 0 0.625rem; } .footer .california{ height: 30px; width: 60px; background-image: url("california-icon.svg"); background-size: cover; display:inline-block; vertical-align: middle; margin: 0 0 0 0.625rem; } .footer .span{ font-size: 0.75rem; line-height: 0.875rem; font-weight: 400; } .footer li{ display: inline; margin: 0 0.9375rem; } @media (max-width: 768px) {.footer .social { margin: 20px 0px; }} @media (max-width: 768px) {.footer .legal ul { padding-left: 0px; font-size: 10px; text-align: center; }} @media (max-width: 768px) {.footer .cali{ text-align: center; }
0.414662
0.056548
@media (max-width: 1366px) { .city_top_wrap .slick-slider { overflow: hidden !important; height: 28px; /* width: 70%; */ width: 67%; } .city_top_social ul li { margin-right: 7px; } .navigation ul li { margin-right: 20px; } .banner_text { right: 100px; } .city_banner_services { padding: 35px 30px; } .city_service_text { padding: 0px 22px; } .city_service_text span { margin-right: 10px; } .city_jobs_item.pull-right .ciy_jobs_caption { width: 78%; } .city_jobs_item { padding: 45px 14px; } .city_jobs_item.pull-right span { float: right; } .city_project_text h3 { font-size: 24px; } .city_top_search { width: 88%; } /*business page start*/ .city_visit_text { padding: 29px 0px 30px 50px; } .city_visit_text.text2 { padding: 29px 50px 30px 0px; } } /* ================================================= FROM 992PX TO 1199PX ================================================= */ @media (min-width: 992px) and (max-width: 1199px) { .city_top_wrap { padding: 25px 10px; } .city_top_wrap .slick-slider { width: 62%; } .city_top_news span { margin-right: 24px; } .city_top_logo { width: 20%; margin-right: 30px; } .city_top_news { float: left; width: 58%; } .city_top_social ul li { margin-right: 5px; } .city_top_social ul li:nth-child(4) { margin-right: 0px; } .city_top_social ul li:last-child { display: none; } .city_top_navigation.sticky, .city_top_navigation { padding: 15px 10px 15px; } .navigation ul li { margin-right: 17px; } .city_top_navigation:before { width: 26%; } .city_top_search { width: 84%; } .medium_text { display: none; } .banner_btn { margin-bottom: 20px; } .banner_text { padding: 32px 30px 40px; margin-top: -170px; } .city_service_text { text-align: center; } .city_service_text span { float: none; } .city_about_text p { display: none; } .bg_white { width: 100%; padding: 103px 15px 65px; /* padding: 50px 35px 20px; */ } .width_control { width: 50%; } .city_office_list { padding: 45px 40px; } .city_office_logo a { left: -145px; width: 243px; top: 67px; } .city_triagle span { width: 91px; } .city_triagle { width: 154px; top: 4px; } .city_service_text h5 { float: none; font-size: 15px; } .center_text { padding: 30px 0px; } .city_office_text.pull_right { position: relative; z-index: 2; } .city_date_text a, .city_blog_fig.position .social_icon { display: none; } .city_blog_text p { display: none; height: 68px; overflow: hidden; } .city_blog_fig.position { margin-top: -415px; } .border:after, .border:before { width: 210px; } .city_jobs_item.pull-right .ciy_jobs_caption { padding: 0px 20px 0px 0px; width: 69%; } .ciy_jobs_caption h2 { font-size: 24px; } .city_job_text { left: 50px; } .city_project_text { margin-top: -70px; } .city_project_fig:hover .city_project_text { margin-top: -70px; } .city_project_text h3 { font-size: 24px; overflow: hidden; height: 31px; } .city_project_wrap { padding: 100px 20px 84px; } .bg_white.width { width: 100%; } .custom_size { font-size: 18px; padding: 7px 0px; margin: 0px; } .city_event_history { margin-bottom: 6px; } .city_event_text>p { margin: 0px 0px 0px 0px; } .city_client_row .bx-wrapper .bx-prev { right: -80px; } .city_client_row .bx-wrapper .bx-next { right: -195px; } .city_news_list_text { padding: 14px 0px 10px 20px; } .city_news_list_text h5 { line-height: 22px; font-size: 16px; } .city_news_meta li { padding: 0px 6px; } .city_document_list ul li a, .city_news_meta li a { font-size: 12px; } .city_document_list ul li a i { margin-right: 9px; } .city_news_text h2 { font-size: 35px; } .city_news_row>ul>li { margin-bottom: 35px; } .widget_title { font-size: 23px; } .city_department_fig { overflow: hidden; } .city_department_text { padding: 28px 0px 27px 20px; } /*service page start*/ .city_service2_caption h4 { font-size: 20px; } .city_service2_caption { padding: 6px 0px 0px 16px; } .city_award_text h3 { font-size: 24px; } .sab_banner { padding: 90px 0px 115px; } .social_icon li { margin-right: 12px; } /*service 02 page start*/ .city_health_list h5 { font-size: 19px; } .special_service_text { width: 100%; left: 0px; } /* service detail page start*/ .city_health_fig:after { border: none; } .city_health_fig { margin-top: 40px; } .city_service_tabs ul li a { padding: 15px 12px; font-size: 13px; } .city_health_wrap { padding: 90px 0px; } .city_department2_text { padding: 0px 0px 18px 30px; } .city_department2_text.text2 { padding: 0px 30px 18px 0px; } .city_notice h4, .city_side_info h4 { font-size: 24px; } .sab_banner_text h2 { font-size: 56px; } /*service detail 02 page start*/ .city_emergency_slide_text h5 { font-size: 17px; } /*blog page start*/ .city_blog2_list .city_meta_list li { padding: 0px 12px; } /*blog detail page start*/ .city_blog2_fig.fig2 .city_blog2_text h4 { font-size: 20px; } .detail_process_list { display: none; } .blog_post_slide_text { padding: 26px 5px; } .event_categories_text a { font-size: 12px; } /*business page start*/ .city_business_fig .city_service2_caption { padding: 10px 0px 10px 10px; } .city_busine_detail { padding: 30px 10px; } .city_business_list .see_more_btn { padding: 20px 10px; } .city_visit_text { padding: 41px 0px 40px 40px; } .city_visit_text p:nth-child(4) { display: none; } .city_visit_text h3:nth-child(2) { margin-bottom: 10px; } .city_visit_text { padding: 55px 0px 55px 40px; height: 319px; } .city_visit_text.text2 { padding: 55px 40px 55px 0px; height: 319px; } .city_visit_fig figure img { height: 319px; } /*business detail page start*/ .side_notice_text h6, .side_contact_text h6 { font-size: 16px; } .side_notice_list .sidebar_title { font-size: 20px; } .accordion-section-title, .city_local_link li a { font-size: 13px; } .acoordian_text p { font-size: 12px; } /*event page start*/ .city_event2_text h4 { font-size: 20px; } /*EVENT FULL PAGE START*/ .city_full_event_list { padding: 30px 20px 26px; } .city_event2_calender { margin: 12px 20px 12px 0px; } .city_event2_meeting { padding-left: 20px; } .city_event2_meeting p { font-size: 13px; } .city_event2_meeting .city_meta_list li { margin-right: 16px; } /*event detail page start*/ .sidebar_heading { padding-left: 20px; font-size: 20px; } .city_sponsor ul li { width: 45%; } .event_grid_list .event_categories_text h4 span { display: inline; } .event_grid_list .event_categories_text h4 { font-size: 18px; } /*event list page start*/ .city_event2_year .sidebar_search input { width: 182px; } .city_blog_text.event2 { width: 100%; } .city_blog_text.event2 { width: auto; padding: 35px 20px 33px 30px; float: none; } .city_blog_text.event2 .city_meta_list li { margin-right: 10px; } .city_blog_text.event2 .city_meta_list li a { font-size: 12px; } .city_event2_list2_fig { position: static; } .city_event2_list2_fig figure { width: auto; } .city_blog_text.event2>p { display: none; } /*foum detail page start*/ .forum_card h3 { font-size: 24px; } .forum_img { width: 46.3%; } .sidebar_search_login .theam_btn { padding: 10px 15px; } /*health page start*/ .city_department_text h5 { font-size: 14px; } .city_department_text p { font-size: 14px; line-height: 18px; } /*health grid page start*/ .city_blog_grid_text h5 { font-size: 16px; } /*health department page start*/ .city_health2_text.text2 .city_project_text { left: 0px; right: 0px; padding: 0px 10px; } .city_health2_text.text2 .city_project_text h3 { display: none; } .city_health2_text.text2 .city_project_text span { display: block; font-size: 40px; line-height: 20px; color: #fff; margin-bottom: 15px; } .city_health2_text.text2 .city_project_text { margin-top: -30px; } /*health department 02 page start*/ .section_heading h2 { font-size: 30px; } .city_treatment_list a { margin-right: 24px; } .city_project_wrap { padding: 100px 20px 174px; } /*mayor page start*/ .city_mayor_list li { font-size: 18px; } /*news post list page start */ .city_news2_post.post2 .city_meta_list li { margin-right: 12px; } .city_news2_post.post2 .city_news2_detail h4 { font-size: 18px; } /*project page start*/ .city_project_fig .city_project_text h4, .city_project_fig.fig2 .city_project_text h4 { font-size: 18px; } .city_project_fig .city_project_text span, .city_project_fig.fig2 .city_project_text span { margin-bottom: 4px; font-size: 50px; line-height: 40px; } .city_project_fig.fig2 .city_project_text { margin-top: -70px; } .city_project_fig.fig2:hover .city_project_text { margin-top: -80px; } /*project detail page strat*/ .project_title { font-size: 20px; } .city_project_wrap.detail .city_project_text { margin-top: -75px; } /*login page start*/ .city_register_list h6 { font-size: 15px; } } /* ================================================= FROM 0PX TO 979PX ================================================= */ @media (max-width: 991px) { .city_top_wrap { padding: 25px 0px; } .city_department_fig { overflow: hidden; } .city_top_logo { float: left; width: 25%; margin-right: 20px; } .city_top_news span { padding: 4px 30px 3px 20px; margin-right: 14px; } .city_top_wrap .slick-slider { width: 50%; } .city_top_news { width: 46%; } .city_top_social ul li:last-child { display: none; } .city_top_social { width: 24%; } .navigation { display: none; } .city_top_search { width: 92%; } .top_user { padding: 0px 0px 0px 15px; } .city_top_form { width: 90%; padding: 7px 0px } .city_top_navigation.sticky, .city_top_navigation { padding: 15px 30px 15px; } .dl-menuwrapper { display: block; } .dl-menuwrapper .dl-menu { right: 100%; } .small_text, .large_text { display: none; } .banner_btn { margin-bottom: 20px; } .medium_text { font-size: 40px; margin-bottom: 14px; } .banner_text { right: 45px; width: 420px; padding: 22px 30px 30px; margin-top: -125px; } .city_service_text { text-align: center; padding: 0px 10px; } .city_service_text span { float: none; margin-bottom: 10px; } .city_service_text h5 { float: none; font-size: 17px; } .bg_white { width: 100%; padding: 103px 0px 0px; } .width_control { width: 50%; } .city_department_text h5 { font-size: 17px; } .city_project_wrap .slick-dots { display: none !important; } .copyright_text, .city_project_text h3, .city_job_text, .city_blog_fig.position, .city_office_wrap, .city_triagle { display: none; } .city_jobs_wrap, .city_department_wrap { background-image: none; padding-bottom: 0px; } .city_blog_text h4 { font-size: 20px; } .city_event_fig figure, .bg_white.width, .city_jobs_list { width: 100%; } .city_project_text span { font-size: 50px; line-height: 40px; } .city_project_text { margin-top: -40px; } .city_project_fig:hover .city_project_text { margin-top: -50px; } .city_project_wrap { padding: 100px 20px 70px; } .custom_size { font-size: 18px; } .city_client_link { padding: 45px 0px 0px; } .city_client_row .bx-wrapper .bx-prev { bottom: 40px; right: -60px; } .city_client_row .bx-wrapper .bx-next { right: -163px; top: 90px; } .city_client_wrap { padding: 60px 0px 90px; } .city_news_meta li { padding: 0px 12px; } .city_news_row>ul>li { margin-bottom: 35px; } .city_news_form { margin: 40px 0px 0px; } .city_request_list { padding: 30px 15px 26px; } .city_request_link ul li a { font-size: 12px; } .widget_list { margin-bottom: 40px; } .city_about_wrap { padding: 100px 0px 120px; } .city_department_wrap .slick-list.draggable { height: auto; } .city_event_text { padding: 25px 15px 20px 25px; } /*service page start*/ .sab_banner { padding: 90px 0px 100px; } .city_service2_caption h4 { font-size: 24px; } .city_award_text h3 { line-height: 17px; font-size: 16px; } .city_award_text { padding: 8px 0px 0px 20px; } .city_news2_fig { margin-bottom: 30px; } .sab_banner_text h2 { font-size: 56px; } /*service detail page start*/ .city_health_fig:after, .city_health_fig:before { border: none; } .city_health_text { margin-bottom: 30px; text-align: center; } .city_health_text h2 span { display: inline; } .city_notice { margin-bottom: 40px; } .city_department2_text { padding: 0px 0px 18px 30px; } .city_department2_text.text2 { padding: 0px 30px 18px 0px; } .city_health_wrap { padding: 80px 0px 100px; } /*service detail 02 page start*/ .emergency_service_item h4 { font-size: 22px; } /*blog detail page start*/ .detail_process_list li a { font-size: 14px; } /*blog list page start*/ .event_sidebar { margin-top: 30px; } /*business page start*/ .city_busine_detail { padding: 30px 20px; } .city_visit_text { padding: 41px 0px 40px 40px; } .city_visit_text p:nth-child(4) { display: none; } .city_visit_text h3:nth-child(2) { margin-bottom: 10px; } .city_visit_text { padding: 55px 0px 55px 40px; height: 319px; } .city_visit_text.text2 { padding: 55px 40px 55px 0px; height: 319px; } .city_visit_fig figure img { height: 319px; } .city_visit_text h3 { font-size: 24px; } /*business detail page start*/ .side_notice_list { margin-bottom: 40px; } .city_health2_service { margin-bottom: 30px; } .city_local_link li a { font-size: 13px; } .acoordian_text { padding: 35px 0px 19px 20px; } /*coming soon page start*/ .city_coming_text .countdown li h3, .city_coming_text>h3 { font-size: 40px; } .city_coming_text .countdown li { padding: 0px 45px; } /*contact us page start*/ .city_contact_text h3 { font-size: 24px; } /*404 page start*/ .city_404_wrap { padding: 230px 0px 330px; } /*event page start*/ .city_event2_text h4 { font-size: 24px; } /*event full page start*/ .city_event2_calender, .city_full_event_list { text-align: center; } .city_event2_calender ul li { float: none; display: inline-block; } .city_event2_calender { margin: 12px 0px 30px 0px; width: 100%; } .city_event2_calender ul { width: 100%; } .city_event2_meeting { padding-left: 0px; border-left: none; width: 100%; } .city_event2_meeting .city_meta_list li { float: none; display: inline-block; } .city_full_event_list .theam_btn.btn2 { float: none; } /*event 02 page start*/ .event_grid_list .event_categories_list { padding: 30px 20px; } .event_grid_list .event_categories_text h4 { font-size: 20px; line-height: 25px; } /*event detail page start*/ .event_booking_field, .event_booking_form, .sidebar_widget.widget2 { position: relative; z-index: 1; } .city_sponsor ul li a img { width: 100%; } .city_sponsor ul li { float: left; width: 48.8%; } /*event list page start*/ .event_video { float: left; width: 48%; margin-right: 27px; } .event_video:last-child { margin-right: 0px; } .city_event2_row { padding-top: 40px; } .city_event2_year .sidebar_search input { width: 194px; } .city_blog_text.event2 { width: auto; padding: 55px 20px 50px 30px; float: none; } .city_blog_text.event2 .city_meta_list li { margin-right: 10px; } .city_blog_text.event2 .city_meta_list li a { font-size: 12px; } .city_event2_list2_fig { position: static; } .city_event2_list2_fig figure { width: auto; } .city_blog_text.event2>p { display: none; } /*forum page start*/ .forum_title { padding: 42px 8px; } .forum_topic { padding: 60px 0px; } .forum_month { padding: 46px 0px; } /*forum 02 page start*/ .forum_fig.forum2 .forum_text p { display: none; } .forum_fig { padding: 28px 30px; } /*forum detail page start*/ .forum_detail_deta { text-align: center; margin-top: 5px; } /*health grid page start*/ .city_blog_grid_text h5 { font-size: 16px; } /*health department page start*/ .city_health2_text.text2 .city_project_text { margin-top: -20px; } /*health department 02 page start*/ .city_about_fig.fig2 { padding: 0px 0px 0px 0px; margin-bottom: 30px; } .city_treatment_list a { margin-right: 19px; } .city_treatment_text h4 { font-size: 15px; } .city_treatment_text .paly_btn { margin-bottom: 15px; } .city_treatment_text { margin-top: -30px; } .city_treatment_list a { margin-right: 12px; } .city_health2_text.wrap .slick-prev, .city_health2_text.wrap .slick-next { display: none !important; } .city_special2_text h2 { line-height: 30px; font-size: 24px; } /*mayor page start*/ .city_mayor_text h2 { font-size: 30px; } .city_mayor_list li { font-size: 15px; } .city_mayor_contact .theam_btn { margin-right: 15px; font-size: 12px; padding: 10px 11px; } .city_mayor_text { padding: 0px 0px 0px 20px; } .city_event_detail.question { padding: 72px 60px 80px; } /*news page start*/ .city_news2_detail h3 { font-size: 24px; } .city_news2_detail p { font-size: 14px; } /*news post page start*/ .city_news2_post.post2 .city_news2_detail { padding: 22px 20px 23px 30px; } /*project page start*/ .city_project_fig.fig2 .city_project_text { margin-top: -70px; } /*project 02 page start*/ .city_project02_text h5 { padding-left: 14px; font-size: 15px; } /*project detail page start*/ /*project detail page strat*/ .project_title { font-size: 20px; } .city_project_wrap.detail .city_project_text { margin-top: -65px; } .city_project_wrap.detail .city_project_fig { margin-bottom: 30px; float: left; width: 100%; } /*login page start*/ .city_login { width: 100%; } .city_or { display: none; } } /* ================================================= FROM 768PX TO 979PX ================================================= */ @media (min-width: 768px) and (max-width: 979px) {} /* ================================================= FROM 0PX TO 767PX ================================================= */ @media (max-width: 767px) { .city_top_news { display: none; } .city_banner_services { padding: 35px 3px; } .city_top_logo { width: 50%; } .city_top_social { width: 45%; } .city_top_search { width: 88%; } .city_main_banner .slick-slide { width: 100%; } .city_top_form { width: 86%; } .city_top_search { width: 88%; } .banner_text { display: none; } .city_main_banner .slick-next { left: 60px; } .city_main_banner .slick-prev { left: 15px; } .city_project_mansory ul li:last-child, .city_service_list ul li:last-child { display: none; } .city_service_list ul li:nth-child(3):before { border-right: none; } .city_service_list ul li { width: 33%; } .city_service_text h5 { font-size: 14px; line-height: 20px; } .border:after, .border:before { width: 210px; } .city_about_list { margin-top: 30px; } .city_client_link, .city_client_row, .city_department_fig figure { width: 100%; } .city_department_text { overflow: hidden; padding: 15px 0px 15px 1px; text-align: center; } .city_request_list, .city_news_fig, .city_blog_fig { margin-bottom: 30px; } .city_jobs_item.pull-right .ciy_jobs_caption { width: 71%; } .ciy_jobs_caption h2 { font-size: 26px; } .section_heading h2 { font-size: 28px; } .city_project_mansory ul li { margin-right: 10px; } .city_project_text span { font-size: 30px; line-height: 26px; } .city_project_text { left: 10px; } .city_project_text { margin-top: -30px; } .city_client_text { padding: 85px 0px 0px 14px; } .city_client_fig figure { width: 40%; position: relative; top: 10px; } .client_arrow { float: none; width: auto; display: inline-block; margin: 0px 5px; } .city_client_text p::before { left: -5px; } .widget_logo { float: left; width: auto; } .widget_copyright .city_top_social { float: right; width: auto; } .city_about_wrap { padding: 80px 0px 160px; } .bg_white { padding: 83px 0px 60px; } .city_blog_wrap { padding: 100px 0px 60px; } .bg_white.width { padding: 92px 15px 60px; } /*service page start*/ .sab_banner_text h2 { font-size: 46px; } .sab_banner { padding: 60px 0px 70px; } .sab_banner_text { text-align: center; } .special_service_text { width: 100%; left: 0px; padding: 65px 0px 70px; } .city_award_list { float: left; width: 33.3%; text-align: center; } .city_award_list span { font-size: 30px; float: none; margin-bottom: 5px; display: block; } .city_award_text { padding: 0px 0px 0px 0px; } /*service 02 page start*/ .city_health_list { text-align: center; } /*service detail page start*/ .city_service_tabs_text, .city_health_text { text-align: center; } .city_health_text h2 { font-size: 30px; } .city_health_text h2 span { display: inline; } .city_health_wrap { padding: 80px 0px; } .city_department2_fig figure { width: 100%; } .city_department2_text { width: 100%; padding: 30px 0px 18px 1px } .city_department2_text.text2 { padding: 0px 0px 30px 0px } .city_emergency_call h5 { font-size: 17px; } .city_emergency_call ul li:nth-child(2n+1) { width: 60%; } .city_emergency_call ul li { width: 40%; } .city_emergency_call ul li a { display: block; padding: 14px 20px; font-size: 14px; } /*service detail page start*/ .service_title { font-size: 24px; } .city_emergency_slide_text h5 { font-size: 16px; } .emergency_service.margin-0 { margin-bottom: 30px; } /*team page start*/ .city_team_fig { margin-bottom: 30px; } /*blog detail page start*/ .city_top_navigation.sticky, .city_top_navigation { padding: 15px 10px 15px; } .blog_process_detail figure { width: 100%; } .blog_detail_process_text { padding: 30px 0px 0px 5px; } .city_event_tags span, .city_event_tags span a { margin-right: 4px; } .city_event_meta .city_top_social span, .city_top_social ul li:nth-child(3) { display: none; } .blog_post_slide_text { padding: 26px 4px; } .forum_replie_list li .chlid { padding-left: 0px; } .forum_user_meta h5 { margin: 0px 25px 5px 0px; } .event_booking_field { position: relative; z-index: 1; } /*blog list page start*/ .city_blog2_fig.fig2 .theam_btn { padding: 10px 11px; } /*business detail page start*/ .acoordian_text { padding: 12px 0px 12px 20px; } .city_health2_text .city_project_text { margin-top: -20px; } .city_coming_text .countdown li h3, .city_coming_text>h3 { font-size: 24px; } .city_coming_text .countdown li { padding: 0px 25px; } .city_coming_text .countdown li h3 { margin-bottom: 0px; } .city_coming_text .countdown li { padding: 0px 12px; } .city_coming_search { padding: 0px 30px; } .city_coming_feild { width: 100%; } .city_coming_text>h3 { margin-bottom: 20px; } .city_404_wrap.coming { padding: 140px 0px; } /*contact us page start*/ .city_contact_text { padding: 33px 25px; margin-bottom: 30px; } /*404 page start*/ .city_404_text h3 { font-size: 48px; line-height: 40px; } .city_404_text h2 { margin-bottom: 30px; } /*event full page start*/ .city_event2_meeting .city_meta_list li { margin-right: 10px; } .city_meta_list li a { font-size: 13px; } /*event detail page start*/ .city_sponsor ul li { float: left; width: 48%; } .event_heading { line-height: 35px; } .event_counter_list .countdown li { margin-right: 10px; } .event_counter_list .countdown li::before { background: none; } .event_grid_list.responsive { margin-bottom: 30px; } /*event list page start*/ .event_video { width: 46%; } .city_event2_row>ul>li:nth-child(2) { display: none; } .city_event2_row>ul>li:last-child, .city_event2_row>ul>li { width: 50%; padding: 38px 15px; } .city_event2_row>ul>li:last-child { padding: 31px 15px; } .city_event2_year .sidebar_search input { width: 123px; } .city_event2_year .sidebar_search { margin-right: 5px; } .city_event2_list2_fig figure { width: 100%; } .city_blog_text.event2>p { display: block; } .city_blog_text.event2 { padding: 45px 20px 50px 30px; } /*forum page start*/ .forum_text { display: none; } .forum_list ul li { width: 30%; } .forum_list ul li:nth-child(3), .forum_list ul li:nth-child(2) { width: 18%; } .forum_topic { padding: 49px 0px; } .forum_list ul li:last-child { width: 34%; } .forum_month { padding: 35px 6px; } .forum_month a { font-size: 14px; } .forum_title h6 { font-size: 15px; } /*forum detail page start*/ .forum_card h3 { font-size: 24px; } .forum_img { width: 46%; } /*mayor page start*/ .city_mayor_fig figure { width: 100%; } .city_mayor_text { padding: 30px 0px 0px 1px; } .city_mayor_caption p { text-align: center; } /*news page start*/ .city_news2_detail { padding: 50px 10px; } /*news post page start*/ .city_news2_post.post2 figure { width: 100%; } .city_news2_post.post2 .city_news2_detail { padding: 22px 10px 23px 20px; } .city_health2_text.text2 .row.program-slider { margin: auto; } /*login page start*/ .city_register_list h6 { font-size: 14px; } } /* ================================================= FROM 0PX TO 0PX ================================================= */ @media (min-width: 360px) and (max-width: 640px) {} /* ================================================= FROM 0PX TO 0PX ================================================= */ @media (max-width: 481px) {} /* ================================================= FROM 0PX TO 0PX ================================================= */ @media (max-width: 480px) { .city_top_logo { width: 60%; margin: 0px 0px 0px; } .city_top_social ul li:nth-child(2), .city_top_social ul li:nth-child(3) { display: none; } .city_top_social ul li:nth-child(4) { margin-right: 0px; } .city_top_social { width: auto; } .city_top_navigation.sticky, .city_top_navigation { padding: 15px 0px 15px; } .city_top_form { width: 83%; } .city_top_search {} .city_top_navigation:before { background: none; } .city_banner_services { padding: 35px 0px; } .city_service_list ul li { width: 50%; margin-bottom: 35px; } .city_service_list ul li:last-child { display: block; } .city_service_list ul li::before { border: none; } .city_service_text span { display: inline-block; } .city_service_text h5 { line-height: 22px; } .city_about_fig { padding: 0px 0px 0px 0px; } .city_about_fig figure { margin-bottom: 40px; } .city_about_video { position: static; } .border:after, .border:before { width: 110px; } .city_about_link li a { font-size: 13px; } .width_control { width: 100%; padding: 0px 0px; } .section_heading h2 { font-size: 20px; line-height: normal; } .city_department_wrap .slick-prev, .city_department_wrap .slick-next { display: none !important; } .city_blog_text span { margin-bottom: 10px; } .city_jobs_item { text-align: center; } .city_jobs_item span { float: none; margin-bottom: 20px; } .ciy_jobs_caption { padding: 0px 0px 0px 0px; } .city_jobs_item.pull-right .ciy_jobs_caption { width: 100%; text-align: center; padding-right: 0px; margin-bottom: 30px; } .city_jobs_item.pull-right span { float: none; } .city_project_wrap .slick-slide { padding: 0px 0px; } .event_date { width: 100%; margin-bottom: 15px; } .city_request_link ul li, .city_news_list figure, .city_client_fig figure { width: 100%; } .city_date_text { padding: 4px 0px 7px 1px; } .city_client_row .bx-wrapper .bx-viewport { height: 100% !important; } .city_news_text h2 { font-size: 30px; } .city_news_list_text { padding: 18px 0px 15px 7px; } .city_request_link ul li:nth-child(8) { display: none; } .city_request_text h4 { font-size: 24px; } .city_banner_services { padding: 35px 0px 0px; } .top_user { padding: 0px 0px 0px 9px; } .city_document_list ul li a i { margin-right: 10px; } .city_document_list ul li a { font-size: 11px; } .city_request_text h4 { font-size: 22px; } .city_request_link ul li a { font-size: 14px; } .city_request_link ul li a:before { top: -1px; } /* service page start*/ .city_service2_caption h4 { font-size: 18px; } .city_service2_caption { padding: 8px 0px 0px 15px; } .custom_size2 { font-size: 30px; margin-bottom: 8px; } .special_service_text h3 { font-size: 24px; } .special_service_text p span { display: inline; } .special_service_text { padding: 65px 14px 70px; } .city_award_list { float: left; width: 100%; margin-bottom: 40px; } .city_award_list span { font-size: 36px; margin-bottom: 11px; } .city_news2_text p { display: none; } .city_news2_text { bottom: 20px; } .social_icon li { margin-right: 12px; } /*service 02 page start*/ .pagination ul li a { height: 40px; width: 40px; line-height: 40px; font-size: 14px; } .pagination ul li { margin-right: 6px; } .pagination { margin: 20px 0px 0px 0px; } /*service detail page start*/ .city_health_text h2 { font-size: 21px; } .city_service_tabs_text h3 { font-size: 22px; } .city_service_tabs_text h5 { line-height: normal; } .city_department2_text { text-align: center; } .city_emergency_call ul li, .city_emergency_call ul li:nth-child(2n+1) { width: 100%; } .breadcrumb>li { padding: 0px 12px; } /*service detail 03 page start*/ .emergency_service, .emergency_service_item, .city_notice { text-align: center; } .city_emergency_slider .slick-prev, .city_emergency_slider .slick-next { display: none !important; } .service_title { font-size: 20px; } .emergency_service_item h4, .emergency_service_item span { float: none; } .emergency_service_item h4 { padding-left: 0px; } .emergency_service { padding: 23px 18px; } .city_emergency_call h5 { padding: 15px 17px 18px; } .widget_list { position: relative; z-index: 1; } /*team page start*/ .sab_banner_text h2 { font-size: 34px; } .widget_copyright { margin-top: 0px; } .city_blog2_wrap { padding: 100px 0px 50px; } /*blog page start*/ .city_blog2_list .city_meta_list li { padding: 0px 12px; } /*blog detail page start*/ .blog_detail_row { padding: 0px 20px; } .city_blog2_fig.fig2 .city_meta_list li { padding: 0px 10px; } .city_blog2_fig.fig2 .city_meta_list li a { font-size: 13px; } .city_blog2_fig.fig2 .city_blog2_text h4 { font-size: 20px; } .forum_quote { padding: 27px 20px 25px; } .blog_detail_process_text h4 { font-size: 20px; } .city_event_tags span { font-size: 13px; } .city_top_social ul li:nth-child(2), .city_top_social ul li:nth-child(3) { display: inline-block; } .city_blog2_fig.fig2 .city_meta_list, .forum_user_meta .city_meta_list, .city_event_tags, .city_event_meta, .city_top_social ul, .city_event_meta .city_top_social { float: left; width: 100%; } .city_blog2_fig.fig2 .city_meta_list, .forum_user_meta .city_meta_list, .blog_post_slide_text, .blog_detail_process>p, .blog_detail_process_text, .city_blog2_list>p, .city_blog2_text, .city_event_tags, .city_event_meta, .city_top_social ul { text-align: center; } .city_blog2_fig.fig2 .city_meta_list li, .forum_user_meta .city_meta_list li, .city_top_social ul li { float: none; display: inline-block; } .city_event_tags { margin-bottom: 20px; } .event_sidebar .city_top_social { float: left; width: auto; } .city_top_social ul li:nth-child(4) { margin-right: 5px; } .forum_user_replay figure, .blog_post_author figure { width: 100%; margin: 10px 0px 20px; } .blog_post_author_text { padding-left: 1px; text-align: center; } .blog_post_slide .slick-prev, .blog_post_slide .slick-next { display: none !important; } .blog_user_comment .sidebar_heading { font-size: 20px; } .forum_user_detail { overflow: hidden; padding: 0px 0px 0px 1px; text-align: center; } .forum_user_meta h5 { margin: 0px 0px 5px 0px; float: none; } .city_meta_list li { margin-right: 6px; } .blog_author_date li { padding: 0px 5px; } .event_categories_text a { font-size: 13px; } .blog_author_date li:before { width: 0px; } .city_top_wrap .city_top_social ul li:nth-child(2), .city_top_wrap .city_top_social ul li:nth-child(3), .widget_copyright .city_top_social ul li:nth-child(2), .widget_copyright .city_top_social ul li:nth-child(3) { display: none; } .sidebar_heading { padding-left: 15px; font-size: 16px; } .city_meta_list li a { font-size: 14px; } .widget_logo { float: left; width: 62%; } .detail_process_list li a:before { background: none; } .detail_process_list li a { padding-left: 0px; } /*blog list page start*/ .city_blog2_fig.fig2.responsive .city_meta_list { margin-bottom: 10px; } .city_blog2_fig.fig2.responsive .city_meta_list li a { font-size: 12px; } .city_blog2_fig.fig2.responsive .theam_btn { padding: 10px 11px; display: block; width: 100%; text-align: center; } .city_blog2_fig.fig2.responsive .city_blog2_text p { margin-bottom: 10px; } /*business page start*/ .city_busine_detail li a { font-size: 13px; } .city_business_fig .city_service2_caption { padding: 10px 0px 10px 10px; } .city_business_fig .city_service2_caption h5 { font-size: 16px; } .city_visit_fig figure img { height: auto; } .city_visit_text { padding: 44px 0px 55px 20px; height: auto; } .city_visit_text h3 { font-size: 21px; } .city_visit_text.text2 { padding: 44px 20px 55px 0px; height: auto; } /*business detail page start*/ .section_heading h3 { line-height: 25px; font-size: 20px; } .accordion-section-content figure, .city_local_link li { float: left; width: 100%; margin-bottom: 15px; } .city_local_link li.margin0 { margin-bottom: 15px !important; } .accordion-section-title { font-size: 13px; } .city_health2_text .slick-prev, .city_health2_text .slick-next { display: none !important; } .row.program-slider { margin: auto; } /*coming soon page start*/ .city_404_wrap.coming:after { border: none; } .city_coming_text .countdown li h3, .city_coming_text>h3 { font-size: 20px; } .city_coming_text p { font-size: 16px; } .city_coming_text .countdown li p { font-size: 14px; } .city_coming_text .countdown li { padding: 0px 10px; } .city_coming_feild button { padding: 10px 10px; font-size: 11px; } .city_404_wrap.coming { padding: 100px 0px; } /*contact us page start*/ .city_contact_text { text-align: center; } .city_contact_text h3 { font-size: 18px; margin-bottom: 20px; width: 100%; } .city_contact_text span { font-size: 50px; line-height: 50px; float: none; display: block; } .city_top_social ul li { margin-right: 6px; } /*contact us page start*/ .city_404_text h2 { font-size: 120px; line-height: 100px; } .city_404_text h3 { font-size: 32px; line-height: 33px; } .city_404_wrap { padding: 180px 0px 330px; } /*event page start*/ .city_event2_text h4 { font-size: 20px; } /*event full page start*/ .city_event2_calender ul li { width: 67px; } .city_event2_meeting h4 { font-size: 18px; } .city_event2_meeting .city_meta_list li:last-child { display: none; } .city_event2_meeting .city_meta_list li { margin-right: 6px; } .city_meta_list li a { font-size: 13px; } .city_event2_meeting p span { display: inline; } .city_event2_calender { margin: 12px 0px 20px 0px; } /*event 02 page start*/ .event_categories_date { width: 100%; margin-bottom: 15px; } .event_categories_text { text-align: center; padding-left: 1px; } /*event detail page start*/ .city_sponsor ul li { float: left; width: 47%; } .event_heading { line-height: 27px; font-size: 20px; } .event_detail_text p { margin-bottom: 25px; text-align: center; } .event_counter_list .countdown li { width: 100%; margin-bottom: 10px; } .event_counter_list .countdown li:last-child { margin-bottom: 0px; } .event_counter_list .countdown { padding: 0px 20px; } .event_counter_list .countdown li:before { content: ""; } /*event list page start*/ .event_video { width: 100%; margin: 0px 0px 20px; } .city_event2_row>ul>li:last-child, .city_event2_row>ul>li { width: 100%; padding: 38px 15px; } .city_event2_row>ul>li { border-bottom: 1px solid #ccc; } .city_event2_year .sidebar_search input { width: 100%; } .city_event2_year .sidebar_search { margin-right: 5px; width: 80%; } .city_blog_text.event2 .social_icon, .city_blog_text.event2 .city_meta_list li:last-child { display: none; } .city_blog_text.event2 .city_meta_list li a { font-size: 13px; } /*forum page start*/ .forum_list ul li:last-child { display: none; } .forum_list ul li { width: 50%; } .forum_list ul li:nth-child(3), .forum_list ul li:nth-child(2) { width: 25%; } /*forum detail page start*/ .forum_card { padding: 38px 20px 40px; text-align: center; } .forum_card h3 { font-size: 22px; } .forum_img { margin-right: 18px; width: 100%; } .event_categories_list.post .event_categories_text, .forum_quote { text-align: left; } .city_event_meta .city_meta_list { width: 100%; text-align: center; margin-bottom: 8px; } .city_event_meta .city_meta_list li { float: none; display: inline-block; } /*health department 02 page start*/ .border:after, .border:before { border: none; } .city_about_list.list2 { margin-top: 0px; } .city_about_fig.fig2 { margin-bottom: 0px; } .city_treatment_text h4 { display: none; } .city_treatment_text .paly_btn { margin-bottom: 8px; } .city_treatment_text { margin-top: -15px; } .city_treatment_list a { float: left; width: 100%; margin-right: 0px; margin-bottom: 10px; } .city_special2_text h3:nth-child(3) { margin-bottom: 25px; font-size: 20px; } .city_health2_service.list { padding: 0px 0px 35px 0px; } /*mayor page start*/ .city_mayor_text h2 { font-size: 20px; } .city_mayor_contact .theam_btn, .city_mayor_list li span { display: none; } .city_mayor_row { padding: 40px 20px; } .city_event_detail.question { padding: 72px 20px 80px; } .city_event_detail.question>h3 { font-size: 22px; } /*news page start*/ .city_news2_detail h3 { font-size: 18px; } .city_news2_post.post2 .city_news2_detail h4 { font-size: 16px; } /*project page start*/ .city_project_fig.fig2 .city_project_text h4 { font-size: 20px; } .city_project_fig.fig2:hover .city_project_text { margin-top: -80px; } /*project 02 page start*/ .city_project02_text span { float: none; width: 100%; font-size: 30px; } .city_project02_text h5 { padding-left: 0px; font-size: 12px; } .city_project02_text { text-align: center; } /*project detail page start*/ .project_title { font-size: 18px; } .city_project_detail { padding: 0px 20px; } .city_local_link li a { font-size: 12px; } .information_list li a { font-size: 14px; } .city_project_wrap.detail .city_project_text h4 { display: none; } .city_project_wrap.detail .city_project_text { margin-top: -15px; } .city_health_department { padding: 60px 0px; } .city_blog_wrap { padding: 60px 0px 60px; } .bg_white { /* padding: 83px 0px 30px; */ padding: 60px 0px 95px; } /*;ogin page start*/ .city_login { padding: 45px 20px 50px; } .city_login h4 { font-size: 16px; } .city_comment_form_login .city_commet_field label { font-size: 15px; } .checkbox_radio { width: 100%; text-align: center; margin-bottom: 12px; } .city_forget { float: none; text-align: center; width: 100%; } .city_checked { text-align: center; } .city_comment_form_login .theam_btn { text-align: center; width: 100%; } } @media (max-width: 320px) {}
assets/css/responsive.css
@media (max-width: 1366px) { .city_top_wrap .slick-slider { overflow: hidden !important; height: 28px; /* width: 70%; */ width: 67%; } .city_top_social ul li { margin-right: 7px; } .navigation ul li { margin-right: 20px; } .banner_text { right: 100px; } .city_banner_services { padding: 35px 30px; } .city_service_text { padding: 0px 22px; } .city_service_text span { margin-right: 10px; } .city_jobs_item.pull-right .ciy_jobs_caption { width: 78%; } .city_jobs_item { padding: 45px 14px; } .city_jobs_item.pull-right span { float: right; } .city_project_text h3 { font-size: 24px; } .city_top_search { width: 88%; } /*business page start*/ .city_visit_text { padding: 29px 0px 30px 50px; } .city_visit_text.text2 { padding: 29px 50px 30px 0px; } } /* ================================================= FROM 992PX TO 1199PX ================================================= */ @media (min-width: 992px) and (max-width: 1199px) { .city_top_wrap { padding: 25px 10px; } .city_top_wrap .slick-slider { width: 62%; } .city_top_news span { margin-right: 24px; } .city_top_logo { width: 20%; margin-right: 30px; } .city_top_news { float: left; width: 58%; } .city_top_social ul li { margin-right: 5px; } .city_top_social ul li:nth-child(4) { margin-right: 0px; } .city_top_social ul li:last-child { display: none; } .city_top_navigation.sticky, .city_top_navigation { padding: 15px 10px 15px; } .navigation ul li { margin-right: 17px; } .city_top_navigation:before { width: 26%; } .city_top_search { width: 84%; } .medium_text { display: none; } .banner_btn { margin-bottom: 20px; } .banner_text { padding: 32px 30px 40px; margin-top: -170px; } .city_service_text { text-align: center; } .city_service_text span { float: none; } .city_about_text p { display: none; } .bg_white { width: 100%; padding: 103px 15px 65px; /* padding: 50px 35px 20px; */ } .width_control { width: 50%; } .city_office_list { padding: 45px 40px; } .city_office_logo a { left: -145px; width: 243px; top: 67px; } .city_triagle span { width: 91px; } .city_triagle { width: 154px; top: 4px; } .city_service_text h5 { float: none; font-size: 15px; } .center_text { padding: 30px 0px; } .city_office_text.pull_right { position: relative; z-index: 2; } .city_date_text a, .city_blog_fig.position .social_icon { display: none; } .city_blog_text p { display: none; height: 68px; overflow: hidden; } .city_blog_fig.position { margin-top: -415px; } .border:after, .border:before { width: 210px; } .city_jobs_item.pull-right .ciy_jobs_caption { padding: 0px 20px 0px 0px; width: 69%; } .ciy_jobs_caption h2 { font-size: 24px; } .city_job_text { left: 50px; } .city_project_text { margin-top: -70px; } .city_project_fig:hover .city_project_text { margin-top: -70px; } .city_project_text h3 { font-size: 24px; overflow: hidden; height: 31px; } .city_project_wrap { padding: 100px 20px 84px; } .bg_white.width { width: 100%; } .custom_size { font-size: 18px; padding: 7px 0px; margin: 0px; } .city_event_history { margin-bottom: 6px; } .city_event_text>p { margin: 0px 0px 0px 0px; } .city_client_row .bx-wrapper .bx-prev { right: -80px; } .city_client_row .bx-wrapper .bx-next { right: -195px; } .city_news_list_text { padding: 14px 0px 10px 20px; } .city_news_list_text h5 { line-height: 22px; font-size: 16px; } .city_news_meta li { padding: 0px 6px; } .city_document_list ul li a, .city_news_meta li a { font-size: 12px; } .city_document_list ul li a i { margin-right: 9px; } .city_news_text h2 { font-size: 35px; } .city_news_row>ul>li { margin-bottom: 35px; } .widget_title { font-size: 23px; } .city_department_fig { overflow: hidden; } .city_department_text { padding: 28px 0px 27px 20px; } /*service page start*/ .city_service2_caption h4 { font-size: 20px; } .city_service2_caption { padding: 6px 0px 0px 16px; } .city_award_text h3 { font-size: 24px; } .sab_banner { padding: 90px 0px 115px; } .social_icon li { margin-right: 12px; } /*service 02 page start*/ .city_health_list h5 { font-size: 19px; } .special_service_text { width: 100%; left: 0px; } /* service detail page start*/ .city_health_fig:after { border: none; } .city_health_fig { margin-top: 40px; } .city_service_tabs ul li a { padding: 15px 12px; font-size: 13px; } .city_health_wrap { padding: 90px 0px; } .city_department2_text { padding: 0px 0px 18px 30px; } .city_department2_text.text2 { padding: 0px 30px 18px 0px; } .city_notice h4, .city_side_info h4 { font-size: 24px; } .sab_banner_text h2 { font-size: 56px; } /*service detail 02 page start*/ .city_emergency_slide_text h5 { font-size: 17px; } /*blog page start*/ .city_blog2_list .city_meta_list li { padding: 0px 12px; } /*blog detail page start*/ .city_blog2_fig.fig2 .city_blog2_text h4 { font-size: 20px; } .detail_process_list { display: none; } .blog_post_slide_text { padding: 26px 5px; } .event_categories_text a { font-size: 12px; } /*business page start*/ .city_business_fig .city_service2_caption { padding: 10px 0px 10px 10px; } .city_busine_detail { padding: 30px 10px; } .city_business_list .see_more_btn { padding: 20px 10px; } .city_visit_text { padding: 41px 0px 40px 40px; } .city_visit_text p:nth-child(4) { display: none; } .city_visit_text h3:nth-child(2) { margin-bottom: 10px; } .city_visit_text { padding: 55px 0px 55px 40px; height: 319px; } .city_visit_text.text2 { padding: 55px 40px 55px 0px; height: 319px; } .city_visit_fig figure img { height: 319px; } /*business detail page start*/ .side_notice_text h6, .side_contact_text h6 { font-size: 16px; } .side_notice_list .sidebar_title { font-size: 20px; } .accordion-section-title, .city_local_link li a { font-size: 13px; } .acoordian_text p { font-size: 12px; } /*event page start*/ .city_event2_text h4 { font-size: 20px; } /*EVENT FULL PAGE START*/ .city_full_event_list { padding: 30px 20px 26px; } .city_event2_calender { margin: 12px 20px 12px 0px; } .city_event2_meeting { padding-left: 20px; } .city_event2_meeting p { font-size: 13px; } .city_event2_meeting .city_meta_list li { margin-right: 16px; } /*event detail page start*/ .sidebar_heading { padding-left: 20px; font-size: 20px; } .city_sponsor ul li { width: 45%; } .event_grid_list .event_categories_text h4 span { display: inline; } .event_grid_list .event_categories_text h4 { font-size: 18px; } /*event list page start*/ .city_event2_year .sidebar_search input { width: 182px; } .city_blog_text.event2 { width: 100%; } .city_blog_text.event2 { width: auto; padding: 35px 20px 33px 30px; float: none; } .city_blog_text.event2 .city_meta_list li { margin-right: 10px; } .city_blog_text.event2 .city_meta_list li a { font-size: 12px; } .city_event2_list2_fig { position: static; } .city_event2_list2_fig figure { width: auto; } .city_blog_text.event2>p { display: none; } /*foum detail page start*/ .forum_card h3 { font-size: 24px; } .forum_img { width: 46.3%; } .sidebar_search_login .theam_btn { padding: 10px 15px; } /*health page start*/ .city_department_text h5 { font-size: 14px; } .city_department_text p { font-size: 14px; line-height: 18px; } /*health grid page start*/ .city_blog_grid_text h5 { font-size: 16px; } /*health department page start*/ .city_health2_text.text2 .city_project_text { left: 0px; right: 0px; padding: 0px 10px; } .city_health2_text.text2 .city_project_text h3 { display: none; } .city_health2_text.text2 .city_project_text span { display: block; font-size: 40px; line-height: 20px; color: #fff; margin-bottom: 15px; } .city_health2_text.text2 .city_project_text { margin-top: -30px; } /*health department 02 page start*/ .section_heading h2 { font-size: 30px; } .city_treatment_list a { margin-right: 24px; } .city_project_wrap { padding: 100px 20px 174px; } /*mayor page start*/ .city_mayor_list li { font-size: 18px; } /*news post list page start */ .city_news2_post.post2 .city_meta_list li { margin-right: 12px; } .city_news2_post.post2 .city_news2_detail h4 { font-size: 18px; } /*project page start*/ .city_project_fig .city_project_text h4, .city_project_fig.fig2 .city_project_text h4 { font-size: 18px; } .city_project_fig .city_project_text span, .city_project_fig.fig2 .city_project_text span { margin-bottom: 4px; font-size: 50px; line-height: 40px; } .city_project_fig.fig2 .city_project_text { margin-top: -70px; } .city_project_fig.fig2:hover .city_project_text { margin-top: -80px; } /*project detail page strat*/ .project_title { font-size: 20px; } .city_project_wrap.detail .city_project_text { margin-top: -75px; } /*login page start*/ .city_register_list h6 { font-size: 15px; } } /* ================================================= FROM 0PX TO 979PX ================================================= */ @media (max-width: 991px) { .city_top_wrap { padding: 25px 0px; } .city_department_fig { overflow: hidden; } .city_top_logo { float: left; width: 25%; margin-right: 20px; } .city_top_news span { padding: 4px 30px 3px 20px; margin-right: 14px; } .city_top_wrap .slick-slider { width: 50%; } .city_top_news { width: 46%; } .city_top_social ul li:last-child { display: none; } .city_top_social { width: 24%; } .navigation { display: none; } .city_top_search { width: 92%; } .top_user { padding: 0px 0px 0px 15px; } .city_top_form { width: 90%; padding: 7px 0px } .city_top_navigation.sticky, .city_top_navigation { padding: 15px 30px 15px; } .dl-menuwrapper { display: block; } .dl-menuwrapper .dl-menu { right: 100%; } .small_text, .large_text { display: none; } .banner_btn { margin-bottom: 20px; } .medium_text { font-size: 40px; margin-bottom: 14px; } .banner_text { right: 45px; width: 420px; padding: 22px 30px 30px; margin-top: -125px; } .city_service_text { text-align: center; padding: 0px 10px; } .city_service_text span { float: none; margin-bottom: 10px; } .city_service_text h5 { float: none; font-size: 17px; } .bg_white { width: 100%; padding: 103px 0px 0px; } .width_control { width: 50%; } .city_department_text h5 { font-size: 17px; } .city_project_wrap .slick-dots { display: none !important; } .copyright_text, .city_project_text h3, .city_job_text, .city_blog_fig.position, .city_office_wrap, .city_triagle { display: none; } .city_jobs_wrap, .city_department_wrap { background-image: none; padding-bottom: 0px; } .city_blog_text h4 { font-size: 20px; } .city_event_fig figure, .bg_white.width, .city_jobs_list { width: 100%; } .city_project_text span { font-size: 50px; line-height: 40px; } .city_project_text { margin-top: -40px; } .city_project_fig:hover .city_project_text { margin-top: -50px; } .city_project_wrap { padding: 100px 20px 70px; } .custom_size { font-size: 18px; } .city_client_link { padding: 45px 0px 0px; } .city_client_row .bx-wrapper .bx-prev { bottom: 40px; right: -60px; } .city_client_row .bx-wrapper .bx-next { right: -163px; top: 90px; } .city_client_wrap { padding: 60px 0px 90px; } .city_news_meta li { padding: 0px 12px; } .city_news_row>ul>li { margin-bottom: 35px; } .city_news_form { margin: 40px 0px 0px; } .city_request_list { padding: 30px 15px 26px; } .city_request_link ul li a { font-size: 12px; } .widget_list { margin-bottom: 40px; } .city_about_wrap { padding: 100px 0px 120px; } .city_department_wrap .slick-list.draggable { height: auto; } .city_event_text { padding: 25px 15px 20px 25px; } /*service page start*/ .sab_banner { padding: 90px 0px 100px; } .city_service2_caption h4 { font-size: 24px; } .city_award_text h3 { line-height: 17px; font-size: 16px; } .city_award_text { padding: 8px 0px 0px 20px; } .city_news2_fig { margin-bottom: 30px; } .sab_banner_text h2 { font-size: 56px; } /*service detail page start*/ .city_health_fig:after, .city_health_fig:before { border: none; } .city_health_text { margin-bottom: 30px; text-align: center; } .city_health_text h2 span { display: inline; } .city_notice { margin-bottom: 40px; } .city_department2_text { padding: 0px 0px 18px 30px; } .city_department2_text.text2 { padding: 0px 30px 18px 0px; } .city_health_wrap { padding: 80px 0px 100px; } /*service detail 02 page start*/ .emergency_service_item h4 { font-size: 22px; } /*blog detail page start*/ .detail_process_list li a { font-size: 14px; } /*blog list page start*/ .event_sidebar { margin-top: 30px; } /*business page start*/ .city_busine_detail { padding: 30px 20px; } .city_visit_text { padding: 41px 0px 40px 40px; } .city_visit_text p:nth-child(4) { display: none; } .city_visit_text h3:nth-child(2) { margin-bottom: 10px; } .city_visit_text { padding: 55px 0px 55px 40px; height: 319px; } .city_visit_text.text2 { padding: 55px 40px 55px 0px; height: 319px; } .city_visit_fig figure img { height: 319px; } .city_visit_text h3 { font-size: 24px; } /*business detail page start*/ .side_notice_list { margin-bottom: 40px; } .city_health2_service { margin-bottom: 30px; } .city_local_link li a { font-size: 13px; } .acoordian_text { padding: 35px 0px 19px 20px; } /*coming soon page start*/ .city_coming_text .countdown li h3, .city_coming_text>h3 { font-size: 40px; } .city_coming_text .countdown li { padding: 0px 45px; } /*contact us page start*/ .city_contact_text h3 { font-size: 24px; } /*404 page start*/ .city_404_wrap { padding: 230px 0px 330px; } /*event page start*/ .city_event2_text h4 { font-size: 24px; } /*event full page start*/ .city_event2_calender, .city_full_event_list { text-align: center; } .city_event2_calender ul li { float: none; display: inline-block; } .city_event2_calender { margin: 12px 0px 30px 0px; width: 100%; } .city_event2_calender ul { width: 100%; } .city_event2_meeting { padding-left: 0px; border-left: none; width: 100%; } .city_event2_meeting .city_meta_list li { float: none; display: inline-block; } .city_full_event_list .theam_btn.btn2 { float: none; } /*event 02 page start*/ .event_grid_list .event_categories_list { padding: 30px 20px; } .event_grid_list .event_categories_text h4 { font-size: 20px; line-height: 25px; } /*event detail page start*/ .event_booking_field, .event_booking_form, .sidebar_widget.widget2 { position: relative; z-index: 1; } .city_sponsor ul li a img { width: 100%; } .city_sponsor ul li { float: left; width: 48.8%; } /*event list page start*/ .event_video { float: left; width: 48%; margin-right: 27px; } .event_video:last-child { margin-right: 0px; } .city_event2_row { padding-top: 40px; } .city_event2_year .sidebar_search input { width: 194px; } .city_blog_text.event2 { width: auto; padding: 55px 20px 50px 30px; float: none; } .city_blog_text.event2 .city_meta_list li { margin-right: 10px; } .city_blog_text.event2 .city_meta_list li a { font-size: 12px; } .city_event2_list2_fig { position: static; } .city_event2_list2_fig figure { width: auto; } .city_blog_text.event2>p { display: none; } /*forum page start*/ .forum_title { padding: 42px 8px; } .forum_topic { padding: 60px 0px; } .forum_month { padding: 46px 0px; } /*forum 02 page start*/ .forum_fig.forum2 .forum_text p { display: none; } .forum_fig { padding: 28px 30px; } /*forum detail page start*/ .forum_detail_deta { text-align: center; margin-top: 5px; } /*health grid page start*/ .city_blog_grid_text h5 { font-size: 16px; } /*health department page start*/ .city_health2_text.text2 .city_project_text { margin-top: -20px; } /*health department 02 page start*/ .city_about_fig.fig2 { padding: 0px 0px 0px 0px; margin-bottom: 30px; } .city_treatment_list a { margin-right: 19px; } .city_treatment_text h4 { font-size: 15px; } .city_treatment_text .paly_btn { margin-bottom: 15px; } .city_treatment_text { margin-top: -30px; } .city_treatment_list a { margin-right: 12px; } .city_health2_text.wrap .slick-prev, .city_health2_text.wrap .slick-next { display: none !important; } .city_special2_text h2 { line-height: 30px; font-size: 24px; } /*mayor page start*/ .city_mayor_text h2 { font-size: 30px; } .city_mayor_list li { font-size: 15px; } .city_mayor_contact .theam_btn { margin-right: 15px; font-size: 12px; padding: 10px 11px; } .city_mayor_text { padding: 0px 0px 0px 20px; } .city_event_detail.question { padding: 72px 60px 80px; } /*news page start*/ .city_news2_detail h3 { font-size: 24px; } .city_news2_detail p { font-size: 14px; } /*news post page start*/ .city_news2_post.post2 .city_news2_detail { padding: 22px 20px 23px 30px; } /*project page start*/ .city_project_fig.fig2 .city_project_text { margin-top: -70px; } /*project 02 page start*/ .city_project02_text h5 { padding-left: 14px; font-size: 15px; } /*project detail page start*/ /*project detail page strat*/ .project_title { font-size: 20px; } .city_project_wrap.detail .city_project_text { margin-top: -65px; } .city_project_wrap.detail .city_project_fig { margin-bottom: 30px; float: left; width: 100%; } /*login page start*/ .city_login { width: 100%; } .city_or { display: none; } } /* ================================================= FROM 768PX TO 979PX ================================================= */ @media (min-width: 768px) and (max-width: 979px) {} /* ================================================= FROM 0PX TO 767PX ================================================= */ @media (max-width: 767px) { .city_top_news { display: none; } .city_banner_services { padding: 35px 3px; } .city_top_logo { width: 50%; } .city_top_social { width: 45%; } .city_top_search { width: 88%; } .city_main_banner .slick-slide { width: 100%; } .city_top_form { width: 86%; } .city_top_search { width: 88%; } .banner_text { display: none; } .city_main_banner .slick-next { left: 60px; } .city_main_banner .slick-prev { left: 15px; } .city_project_mansory ul li:last-child, .city_service_list ul li:last-child { display: none; } .city_service_list ul li:nth-child(3):before { border-right: none; } .city_service_list ul li { width: 33%; } .city_service_text h5 { font-size: 14px; line-height: 20px; } .border:after, .border:before { width: 210px; } .city_about_list { margin-top: 30px; } .city_client_link, .city_client_row, .city_department_fig figure { width: 100%; } .city_department_text { overflow: hidden; padding: 15px 0px 15px 1px; text-align: center; } .city_request_list, .city_news_fig, .city_blog_fig { margin-bottom: 30px; } .city_jobs_item.pull-right .ciy_jobs_caption { width: 71%; } .ciy_jobs_caption h2 { font-size: 26px; } .section_heading h2 { font-size: 28px; } .city_project_mansory ul li { margin-right: 10px; } .city_project_text span { font-size: 30px; line-height: 26px; } .city_project_text { left: 10px; } .city_project_text { margin-top: -30px; } .city_client_text { padding: 85px 0px 0px 14px; } .city_client_fig figure { width: 40%; position: relative; top: 10px; } .client_arrow { float: none; width: auto; display: inline-block; margin: 0px 5px; } .city_client_text p::before { left: -5px; } .widget_logo { float: left; width: auto; } .widget_copyright .city_top_social { float: right; width: auto; } .city_about_wrap { padding: 80px 0px 160px; } .bg_white { padding: 83px 0px 60px; } .city_blog_wrap { padding: 100px 0px 60px; } .bg_white.width { padding: 92px 15px 60px; } /*service page start*/ .sab_banner_text h2 { font-size: 46px; } .sab_banner { padding: 60px 0px 70px; } .sab_banner_text { text-align: center; } .special_service_text { width: 100%; left: 0px; padding: 65px 0px 70px; } .city_award_list { float: left; width: 33.3%; text-align: center; } .city_award_list span { font-size: 30px; float: none; margin-bottom: 5px; display: block; } .city_award_text { padding: 0px 0px 0px 0px; } /*service 02 page start*/ .city_health_list { text-align: center; } /*service detail page start*/ .city_service_tabs_text, .city_health_text { text-align: center; } .city_health_text h2 { font-size: 30px; } .city_health_text h2 span { display: inline; } .city_health_wrap { padding: 80px 0px; } .city_department2_fig figure { width: 100%; } .city_department2_text { width: 100%; padding: 30px 0px 18px 1px } .city_department2_text.text2 { padding: 0px 0px 30px 0px } .city_emergency_call h5 { font-size: 17px; } .city_emergency_call ul li:nth-child(2n+1) { width: 60%; } .city_emergency_call ul li { width: 40%; } .city_emergency_call ul li a { display: block; padding: 14px 20px; font-size: 14px; } /*service detail page start*/ .service_title { font-size: 24px; } .city_emergency_slide_text h5 { font-size: 16px; } .emergency_service.margin-0 { margin-bottom: 30px; } /*team page start*/ .city_team_fig { margin-bottom: 30px; } /*blog detail page start*/ .city_top_navigation.sticky, .city_top_navigation { padding: 15px 10px 15px; } .blog_process_detail figure { width: 100%; } .blog_detail_process_text { padding: 30px 0px 0px 5px; } .city_event_tags span, .city_event_tags span a { margin-right: 4px; } .city_event_meta .city_top_social span, .city_top_social ul li:nth-child(3) { display: none; } .blog_post_slide_text { padding: 26px 4px; } .forum_replie_list li .chlid { padding-left: 0px; } .forum_user_meta h5 { margin: 0px 25px 5px 0px; } .event_booking_field { position: relative; z-index: 1; } /*blog list page start*/ .city_blog2_fig.fig2 .theam_btn { padding: 10px 11px; } /*business detail page start*/ .acoordian_text { padding: 12px 0px 12px 20px; } .city_health2_text .city_project_text { margin-top: -20px; } .city_coming_text .countdown li h3, .city_coming_text>h3 { font-size: 24px; } .city_coming_text .countdown li { padding: 0px 25px; } .city_coming_text .countdown li h3 { margin-bottom: 0px; } .city_coming_text .countdown li { padding: 0px 12px; } .city_coming_search { padding: 0px 30px; } .city_coming_feild { width: 100%; } .city_coming_text>h3 { margin-bottom: 20px; } .city_404_wrap.coming { padding: 140px 0px; } /*contact us page start*/ .city_contact_text { padding: 33px 25px; margin-bottom: 30px; } /*404 page start*/ .city_404_text h3 { font-size: 48px; line-height: 40px; } .city_404_text h2 { margin-bottom: 30px; } /*event full page start*/ .city_event2_meeting .city_meta_list li { margin-right: 10px; } .city_meta_list li a { font-size: 13px; } /*event detail page start*/ .city_sponsor ul li { float: left; width: 48%; } .event_heading { line-height: 35px; } .event_counter_list .countdown li { margin-right: 10px; } .event_counter_list .countdown li::before { background: none; } .event_grid_list.responsive { margin-bottom: 30px; } /*event list page start*/ .event_video { width: 46%; } .city_event2_row>ul>li:nth-child(2) { display: none; } .city_event2_row>ul>li:last-child, .city_event2_row>ul>li { width: 50%; padding: 38px 15px; } .city_event2_row>ul>li:last-child { padding: 31px 15px; } .city_event2_year .sidebar_search input { width: 123px; } .city_event2_year .sidebar_search { margin-right: 5px; } .city_event2_list2_fig figure { width: 100%; } .city_blog_text.event2>p { display: block; } .city_blog_text.event2 { padding: 45px 20px 50px 30px; } /*forum page start*/ .forum_text { display: none; } .forum_list ul li { width: 30%; } .forum_list ul li:nth-child(3), .forum_list ul li:nth-child(2) { width: 18%; } .forum_topic { padding: 49px 0px; } .forum_list ul li:last-child { width: 34%; } .forum_month { padding: 35px 6px; } .forum_month a { font-size: 14px; } .forum_title h6 { font-size: 15px; } /*forum detail page start*/ .forum_card h3 { font-size: 24px; } .forum_img { width: 46%; } /*mayor page start*/ .city_mayor_fig figure { width: 100%; } .city_mayor_text { padding: 30px 0px 0px 1px; } .city_mayor_caption p { text-align: center; } /*news page start*/ .city_news2_detail { padding: 50px 10px; } /*news post page start*/ .city_news2_post.post2 figure { width: 100%; } .city_news2_post.post2 .city_news2_detail { padding: 22px 10px 23px 20px; } .city_health2_text.text2 .row.program-slider { margin: auto; } /*login page start*/ .city_register_list h6 { font-size: 14px; } } /* ================================================= FROM 0PX TO 0PX ================================================= */ @media (min-width: 360px) and (max-width: 640px) {} /* ================================================= FROM 0PX TO 0PX ================================================= */ @media (max-width: 481px) {} /* ================================================= FROM 0PX TO 0PX ================================================= */ @media (max-width: 480px) { .city_top_logo { width: 60%; margin: 0px 0px 0px; } .city_top_social ul li:nth-child(2), .city_top_social ul li:nth-child(3) { display: none; } .city_top_social ul li:nth-child(4) { margin-right: 0px; } .city_top_social { width: auto; } .city_top_navigation.sticky, .city_top_navigation { padding: 15px 0px 15px; } .city_top_form { width: 83%; } .city_top_search {} .city_top_navigation:before { background: none; } .city_banner_services { padding: 35px 0px; } .city_service_list ul li { width: 50%; margin-bottom: 35px; } .city_service_list ul li:last-child { display: block; } .city_service_list ul li::before { border: none; } .city_service_text span { display: inline-block; } .city_service_text h5 { line-height: 22px; } .city_about_fig { padding: 0px 0px 0px 0px; } .city_about_fig figure { margin-bottom: 40px; } .city_about_video { position: static; } .border:after, .border:before { width: 110px; } .city_about_link li a { font-size: 13px; } .width_control { width: 100%; padding: 0px 0px; } .section_heading h2 { font-size: 20px; line-height: normal; } .city_department_wrap .slick-prev, .city_department_wrap .slick-next { display: none !important; } .city_blog_text span { margin-bottom: 10px; } .city_jobs_item { text-align: center; } .city_jobs_item span { float: none; margin-bottom: 20px; } .ciy_jobs_caption { padding: 0px 0px 0px 0px; } .city_jobs_item.pull-right .ciy_jobs_caption { width: 100%; text-align: center; padding-right: 0px; margin-bottom: 30px; } .city_jobs_item.pull-right span { float: none; } .city_project_wrap .slick-slide { padding: 0px 0px; } .event_date { width: 100%; margin-bottom: 15px; } .city_request_link ul li, .city_news_list figure, .city_client_fig figure { width: 100%; } .city_date_text { padding: 4px 0px 7px 1px; } .city_client_row .bx-wrapper .bx-viewport { height: 100% !important; } .city_news_text h2 { font-size: 30px; } .city_news_list_text { padding: 18px 0px 15px 7px; } .city_request_link ul li:nth-child(8) { display: none; } .city_request_text h4 { font-size: 24px; } .city_banner_services { padding: 35px 0px 0px; } .top_user { padding: 0px 0px 0px 9px; } .city_document_list ul li a i { margin-right: 10px; } .city_document_list ul li a { font-size: 11px; } .city_request_text h4 { font-size: 22px; } .city_request_link ul li a { font-size: 14px; } .city_request_link ul li a:before { top: -1px; } /* service page start*/ .city_service2_caption h4 { font-size: 18px; } .city_service2_caption { padding: 8px 0px 0px 15px; } .custom_size2 { font-size: 30px; margin-bottom: 8px; } .special_service_text h3 { font-size: 24px; } .special_service_text p span { display: inline; } .special_service_text { padding: 65px 14px 70px; } .city_award_list { float: left; width: 100%; margin-bottom: 40px; } .city_award_list span { font-size: 36px; margin-bottom: 11px; } .city_news2_text p { display: none; } .city_news2_text { bottom: 20px; } .social_icon li { margin-right: 12px; } /*service 02 page start*/ .pagination ul li a { height: 40px; width: 40px; line-height: 40px; font-size: 14px; } .pagination ul li { margin-right: 6px; } .pagination { margin: 20px 0px 0px 0px; } /*service detail page start*/ .city_health_text h2 { font-size: 21px; } .city_service_tabs_text h3 { font-size: 22px; } .city_service_tabs_text h5 { line-height: normal; } .city_department2_text { text-align: center; } .city_emergency_call ul li, .city_emergency_call ul li:nth-child(2n+1) { width: 100%; } .breadcrumb>li { padding: 0px 12px; } /*service detail 03 page start*/ .emergency_service, .emergency_service_item, .city_notice { text-align: center; } .city_emergency_slider .slick-prev, .city_emergency_slider .slick-next { display: none !important; } .service_title { font-size: 20px; } .emergency_service_item h4, .emergency_service_item span { float: none; } .emergency_service_item h4 { padding-left: 0px; } .emergency_service { padding: 23px 18px; } .city_emergency_call h5 { padding: 15px 17px 18px; } .widget_list { position: relative; z-index: 1; } /*team page start*/ .sab_banner_text h2 { font-size: 34px; } .widget_copyright { margin-top: 0px; } .city_blog2_wrap { padding: 100px 0px 50px; } /*blog page start*/ .city_blog2_list .city_meta_list li { padding: 0px 12px; } /*blog detail page start*/ .blog_detail_row { padding: 0px 20px; } .city_blog2_fig.fig2 .city_meta_list li { padding: 0px 10px; } .city_blog2_fig.fig2 .city_meta_list li a { font-size: 13px; } .city_blog2_fig.fig2 .city_blog2_text h4 { font-size: 20px; } .forum_quote { padding: 27px 20px 25px; } .blog_detail_process_text h4 { font-size: 20px; } .city_event_tags span { font-size: 13px; } .city_top_social ul li:nth-child(2), .city_top_social ul li:nth-child(3) { display: inline-block; } .city_blog2_fig.fig2 .city_meta_list, .forum_user_meta .city_meta_list, .city_event_tags, .city_event_meta, .city_top_social ul, .city_event_meta .city_top_social { float: left; width: 100%; } .city_blog2_fig.fig2 .city_meta_list, .forum_user_meta .city_meta_list, .blog_post_slide_text, .blog_detail_process>p, .blog_detail_process_text, .city_blog2_list>p, .city_blog2_text, .city_event_tags, .city_event_meta, .city_top_social ul { text-align: center; } .city_blog2_fig.fig2 .city_meta_list li, .forum_user_meta .city_meta_list li, .city_top_social ul li { float: none; display: inline-block; } .city_event_tags { margin-bottom: 20px; } .event_sidebar .city_top_social { float: left; width: auto; } .city_top_social ul li:nth-child(4) { margin-right: 5px; } .forum_user_replay figure, .blog_post_author figure { width: 100%; margin: 10px 0px 20px; } .blog_post_author_text { padding-left: 1px; text-align: center; } .blog_post_slide .slick-prev, .blog_post_slide .slick-next { display: none !important; } .blog_user_comment .sidebar_heading { font-size: 20px; } .forum_user_detail { overflow: hidden; padding: 0px 0px 0px 1px; text-align: center; } .forum_user_meta h5 { margin: 0px 0px 5px 0px; float: none; } .city_meta_list li { margin-right: 6px; } .blog_author_date li { padding: 0px 5px; } .event_categories_text a { font-size: 13px; } .blog_author_date li:before { width: 0px; } .city_top_wrap .city_top_social ul li:nth-child(2), .city_top_wrap .city_top_social ul li:nth-child(3), .widget_copyright .city_top_social ul li:nth-child(2), .widget_copyright .city_top_social ul li:nth-child(3) { display: none; } .sidebar_heading { padding-left: 15px; font-size: 16px; } .city_meta_list li a { font-size: 14px; } .widget_logo { float: left; width: 62%; } .detail_process_list li a:before { background: none; } .detail_process_list li a { padding-left: 0px; } /*blog list page start*/ .city_blog2_fig.fig2.responsive .city_meta_list { margin-bottom: 10px; } .city_blog2_fig.fig2.responsive .city_meta_list li a { font-size: 12px; } .city_blog2_fig.fig2.responsive .theam_btn { padding: 10px 11px; display: block; width: 100%; text-align: center; } .city_blog2_fig.fig2.responsive .city_blog2_text p { margin-bottom: 10px; } /*business page start*/ .city_busine_detail li a { font-size: 13px; } .city_business_fig .city_service2_caption { padding: 10px 0px 10px 10px; } .city_business_fig .city_service2_caption h5 { font-size: 16px; } .city_visit_fig figure img { height: auto; } .city_visit_text { padding: 44px 0px 55px 20px; height: auto; } .city_visit_text h3 { font-size: 21px; } .city_visit_text.text2 { padding: 44px 20px 55px 0px; height: auto; } /*business detail page start*/ .section_heading h3 { line-height: 25px; font-size: 20px; } .accordion-section-content figure, .city_local_link li { float: left; width: 100%; margin-bottom: 15px; } .city_local_link li.margin0 { margin-bottom: 15px !important; } .accordion-section-title { font-size: 13px; } .city_health2_text .slick-prev, .city_health2_text .slick-next { display: none !important; } .row.program-slider { margin: auto; } /*coming soon page start*/ .city_404_wrap.coming:after { border: none; } .city_coming_text .countdown li h3, .city_coming_text>h3 { font-size: 20px; } .city_coming_text p { font-size: 16px; } .city_coming_text .countdown li p { font-size: 14px; } .city_coming_text .countdown li { padding: 0px 10px; } .city_coming_feild button { padding: 10px 10px; font-size: 11px; } .city_404_wrap.coming { padding: 100px 0px; } /*contact us page start*/ .city_contact_text { text-align: center; } .city_contact_text h3 { font-size: 18px; margin-bottom: 20px; width: 100%; } .city_contact_text span { font-size: 50px; line-height: 50px; float: none; display: block; } .city_top_social ul li { margin-right: 6px; } /*contact us page start*/ .city_404_text h2 { font-size: 120px; line-height: 100px; } .city_404_text h3 { font-size: 32px; line-height: 33px; } .city_404_wrap { padding: 180px 0px 330px; } /*event page start*/ .city_event2_text h4 { font-size: 20px; } /*event full page start*/ .city_event2_calender ul li { width: 67px; } .city_event2_meeting h4 { font-size: 18px; } .city_event2_meeting .city_meta_list li:last-child { display: none; } .city_event2_meeting .city_meta_list li { margin-right: 6px; } .city_meta_list li a { font-size: 13px; } .city_event2_meeting p span { display: inline; } .city_event2_calender { margin: 12px 0px 20px 0px; } /*event 02 page start*/ .event_categories_date { width: 100%; margin-bottom: 15px; } .event_categories_text { text-align: center; padding-left: 1px; } /*event detail page start*/ .city_sponsor ul li { float: left; width: 47%; } .event_heading { line-height: 27px; font-size: 20px; } .event_detail_text p { margin-bottom: 25px; text-align: center; } .event_counter_list .countdown li { width: 100%; margin-bottom: 10px; } .event_counter_list .countdown li:last-child { margin-bottom: 0px; } .event_counter_list .countdown { padding: 0px 20px; } .event_counter_list .countdown li:before { content: ""; } /*event list page start*/ .event_video { width: 100%; margin: 0px 0px 20px; } .city_event2_row>ul>li:last-child, .city_event2_row>ul>li { width: 100%; padding: 38px 15px; } .city_event2_row>ul>li { border-bottom: 1px solid #ccc; } .city_event2_year .sidebar_search input { width: 100%; } .city_event2_year .sidebar_search { margin-right: 5px; width: 80%; } .city_blog_text.event2 .social_icon, .city_blog_text.event2 .city_meta_list li:last-child { display: none; } .city_blog_text.event2 .city_meta_list li a { font-size: 13px; } /*forum page start*/ .forum_list ul li:last-child { display: none; } .forum_list ul li { width: 50%; } .forum_list ul li:nth-child(3), .forum_list ul li:nth-child(2) { width: 25%; } /*forum detail page start*/ .forum_card { padding: 38px 20px 40px; text-align: center; } .forum_card h3 { font-size: 22px; } .forum_img { margin-right: 18px; width: 100%; } .event_categories_list.post .event_categories_text, .forum_quote { text-align: left; } .city_event_meta .city_meta_list { width: 100%; text-align: center; margin-bottom: 8px; } .city_event_meta .city_meta_list li { float: none; display: inline-block; } /*health department 02 page start*/ .border:after, .border:before { border: none; } .city_about_list.list2 { margin-top: 0px; } .city_about_fig.fig2 { margin-bottom: 0px; } .city_treatment_text h4 { display: none; } .city_treatment_text .paly_btn { margin-bottom: 8px; } .city_treatment_text { margin-top: -15px; } .city_treatment_list a { float: left; width: 100%; margin-right: 0px; margin-bottom: 10px; } .city_special2_text h3:nth-child(3) { margin-bottom: 25px; font-size: 20px; } .city_health2_service.list { padding: 0px 0px 35px 0px; } /*mayor page start*/ .city_mayor_text h2 { font-size: 20px; } .city_mayor_contact .theam_btn, .city_mayor_list li span { display: none; } .city_mayor_row { padding: 40px 20px; } .city_event_detail.question { padding: 72px 20px 80px; } .city_event_detail.question>h3 { font-size: 22px; } /*news page start*/ .city_news2_detail h3 { font-size: 18px; } .city_news2_post.post2 .city_news2_detail h4 { font-size: 16px; } /*project page start*/ .city_project_fig.fig2 .city_project_text h4 { font-size: 20px; } .city_project_fig.fig2:hover .city_project_text { margin-top: -80px; } /*project 02 page start*/ .city_project02_text span { float: none; width: 100%; font-size: 30px; } .city_project02_text h5 { padding-left: 0px; font-size: 12px; } .city_project02_text { text-align: center; } /*project detail page start*/ .project_title { font-size: 18px; } .city_project_detail { padding: 0px 20px; } .city_local_link li a { font-size: 12px; } .information_list li a { font-size: 14px; } .city_project_wrap.detail .city_project_text h4 { display: none; } .city_project_wrap.detail .city_project_text { margin-top: -15px; } .city_health_department { padding: 60px 0px; } .city_blog_wrap { padding: 60px 0px 60px; } .bg_white { /* padding: 83px 0px 30px; */ padding: 60px 0px 95px; } /*;ogin page start*/ .city_login { padding: 45px 20px 50px; } .city_login h4 { font-size: 16px; } .city_comment_form_login .city_commet_field label { font-size: 15px; } .checkbox_radio { width: 100%; text-align: center; margin-bottom: 12px; } .city_forget { float: none; text-align: center; width: 100%; } .city_checked { text-align: center; } .city_comment_form_login .theam_btn { text-align: center; width: 100%; } } @media (max-width: 320px) {}
0.513425
0.09611
body { background-color: #2D2D2D; color: #F6F8F7; font-family: 'Source Code Pro', serif; font-size: 16px; font-weight: 400; line-height: 25px; margin: 64px; margin-top: 42px; width: 480px } h1 { font-size: 17px; line-height: 24px; margin: 0; font-weight: 600; margin-bottom: 24px } p { margin: 0 } a, a:visited { -webkit-transition-property: color, border-color; -moz-transition-property: color, border-color; -o-transition-property: color, border-color; transition-property: color, border-color; -webkit-transition-duration: 0.1s; -moz-transition-duration: 0.1s; -o-transition-duration: 0.1s; transition-duration: 0.1s; -webkit-transition-timing-function: ease-in; -moz-transition-timing-function: ease-in; -o-transition-timing-function: ease-in; transition-timing-function: ease-in; color: #F6F8F7; border-bottom: 1px solid #A2EAF8; text-decoration: none; } a:hover, a:visited:hover { -webkit-transition-property: color, border-color; -moz-transition-property: color, border-color; -o-transition-property: color, border-color; transition-property: color, border-color; -webkit-transition-duration: 0.2s; -moz-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s; -webkit-transition-timing-function: ease-in; -moz-transition-timing-function: ease-in; -o-transition-timing-function: ease-in; transition-timing-function: ease-in; color: #A2EAF8; border-bottom: none; text-decoration: none; } .infotext { margin-bottom: 24px } .contact { margin-bottom: 24px } @media screen and (max-width: 608px) { body { font-size: 14px; line-height: 22px; margin: 35px auto 15px auto; width: 300px } h1 { font-size: 16px; line-height: 22.5px; margin-bottom: 12px; } .infotext { margin-bottom: 22.5px } .contact { margin-bottom: 22.5px } hr { margin-top: 22.5px; margin-bottom: 22.5px; } } keyword { color: #CEF777; } highlight { color: #A2EAF8; } string { color: #EFDC73; }
src/css/base.css
body { background-color: #2D2D2D; color: #F6F8F7; font-family: 'Source Code Pro', serif; font-size: 16px; font-weight: 400; line-height: 25px; margin: 64px; margin-top: 42px; width: 480px } h1 { font-size: 17px; line-height: 24px; margin: 0; font-weight: 600; margin-bottom: 24px } p { margin: 0 } a, a:visited { -webkit-transition-property: color, border-color; -moz-transition-property: color, border-color; -o-transition-property: color, border-color; transition-property: color, border-color; -webkit-transition-duration: 0.1s; -moz-transition-duration: 0.1s; -o-transition-duration: 0.1s; transition-duration: 0.1s; -webkit-transition-timing-function: ease-in; -moz-transition-timing-function: ease-in; -o-transition-timing-function: ease-in; transition-timing-function: ease-in; color: #F6F8F7; border-bottom: 1px solid #A2EAF8; text-decoration: none; } a:hover, a:visited:hover { -webkit-transition-property: color, border-color; -moz-transition-property: color, border-color; -o-transition-property: color, border-color; transition-property: color, border-color; -webkit-transition-duration: 0.2s; -moz-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s; -webkit-transition-timing-function: ease-in; -moz-transition-timing-function: ease-in; -o-transition-timing-function: ease-in; transition-timing-function: ease-in; color: #A2EAF8; border-bottom: none; text-decoration: none; } .infotext { margin-bottom: 24px } .contact { margin-bottom: 24px } @media screen and (max-width: 608px) { body { font-size: 14px; line-height: 22px; margin: 35px auto 15px auto; width: 300px } h1 { font-size: 16px; line-height: 22.5px; margin-bottom: 12px; } .infotext { margin-bottom: 22.5px } .contact { margin-bottom: 22.5px } hr { margin-top: 22.5px; margin-bottom: 22.5px; } } keyword { color: #CEF777; } highlight { color: #A2EAF8; } string { color: #EFDC73; }
0.359589
0.07836
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Mukta:wght@200;400;700&display=swap"); * { margin: 0px; padding: 0px; -webkit-box-sizing: border-box; box-sizing: border-box; font-family: "DM Sans", sans-serif; } body { background-color: #efefef; } input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; } .header__container { display: -webkit-box; display: -ms-flexbox; display: flex; background-color: #0a1931; color: #ffffff; width: 100%; height: 125px; } .header__container h1 { text-transform: uppercase; font-weight: 700; font-size: 3rem; padding: 10px; margin: auto; text-align: center; line-height: 3rem; } .container { 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; max-width: 90%; margin: 0 auto; } .item__container { display: -webkit-box; display: -ms-flexbox; display: flex; max-width: 750px; margin: 1.5rem auto; padding: 1rem; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; border: 5px solid #0a1931; background-color: #ffffff; border-radius: 25px; } .item__container form { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; width: 100%; } .item__container form input { height: 50px; outline: none; padding-left: 20px; font-size: 20px; margin-bottom: 1rem; text-align: center; border: none; border-bottom: 3px solid #ffc947; } .item__container .item__title { margin: 0 auto 1rem; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .item__container .item__title i { font-size: 4.5rem; } .item__container .item__title h2 { text-align: center; text-transform: uppercase; line-height: 1.5rem; margin: auto 1rem; font-size: 2rem; } .item__container .item__title p { margin-top: 0.5rem; line-height: 15px; } .item__container .item__button { padding: 1rem; margin-bottom: 0.5rem; border-radius: 25px; border: none; font-size: 20px; font-weight: bold; background-color: #ffc947; } .item__container .item__button:hover { cursor: pointer; background-color: #185adb; color: #ffffff; } ::-webkit-input-placeholder { outline: none; text-align: center; opacity: 50%; } :-ms-input-placeholder { outline: none; text-align: center; opacity: 50%; } ::-ms-input-placeholder { outline: none; text-align: center; opacity: 50%; } ::placeholder { outline: none; text-align: center; opacity: 50%; } .resultado__contenedor { display: -webkit-box; display: -ms-flexbox; display: flex; width: 20%; min-width: 300px; margin: 1.5rem auto; padding: 1rem; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; border: 5px solid #ffc947; background-color: #0a1931; color: #ffffff; border-radius: 25px; } .resultado__contenedor h2 { text-align: center; text-transform: uppercase; line-height: 1.5rem; margin: 2rem 1rem 4rem; font-size: 2rem; } .resultado__contenedor h3 { font-size: 25px; font-weight: bold; color: #ffc947; } .resultado__contenedor p { font-size: 25px; color: #ffffff; } /*# sourceMappingURL=moda.css.map */
css/moda.css
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Mukta:wght@200;400;700&display=swap"); * { margin: 0px; padding: 0px; -webkit-box-sizing: border-box; box-sizing: border-box; font-family: "DM Sans", sans-serif; } body { background-color: #efefef; } input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; } .header__container { display: -webkit-box; display: -ms-flexbox; display: flex; background-color: #0a1931; color: #ffffff; width: 100%; height: 125px; } .header__container h1 { text-transform: uppercase; font-weight: 700; font-size: 3rem; padding: 10px; margin: auto; text-align: center; line-height: 3rem; } .container { 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; max-width: 90%; margin: 0 auto; } .item__container { display: -webkit-box; display: -ms-flexbox; display: flex; max-width: 750px; margin: 1.5rem auto; padding: 1rem; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; border: 5px solid #0a1931; background-color: #ffffff; border-radius: 25px; } .item__container form { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; width: 100%; } .item__container form input { height: 50px; outline: none; padding-left: 20px; font-size: 20px; margin-bottom: 1rem; text-align: center; border: none; border-bottom: 3px solid #ffc947; } .item__container .item__title { margin: 0 auto 1rem; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .item__container .item__title i { font-size: 4.5rem; } .item__container .item__title h2 { text-align: center; text-transform: uppercase; line-height: 1.5rem; margin: auto 1rem; font-size: 2rem; } .item__container .item__title p { margin-top: 0.5rem; line-height: 15px; } .item__container .item__button { padding: 1rem; margin-bottom: 0.5rem; border-radius: 25px; border: none; font-size: 20px; font-weight: bold; background-color: #ffc947; } .item__container .item__button:hover { cursor: pointer; background-color: #185adb; color: #ffffff; } ::-webkit-input-placeholder { outline: none; text-align: center; opacity: 50%; } :-ms-input-placeholder { outline: none; text-align: center; opacity: 50%; } ::-ms-input-placeholder { outline: none; text-align: center; opacity: 50%; } ::placeholder { outline: none; text-align: center; opacity: 50%; } .resultado__contenedor { display: -webkit-box; display: -ms-flexbox; display: flex; width: 20%; min-width: 300px; margin: 1.5rem auto; padding: 1rem; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; border: 5px solid #ffc947; background-color: #0a1931; color: #ffffff; border-radius: 25px; } .resultado__contenedor h2 { text-align: center; text-transform: uppercase; line-height: 1.5rem; margin: 2rem 1rem 4rem; font-size: 2rem; } .resultado__contenedor h3 { font-size: 25px; font-weight: bold; color: #ffc947; } .resultado__contenedor p { font-size: 25px; color: #ffffff; } /*# sourceMappingURL=moda.css.map */
0.280715
0.045268
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; vertical-align: baseline; } /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } /*it will removes all the defaults styles applied by the browser by using upper code*/ body{background: #FFFFFF; } .main_wrapper{ width: 1020px; overflow-y: hidden; margin: auto; } .header_wrapper{ border-left: 2px solid black; border-right: 2px solid black; width: 1000px; height: 160px; margin: auto; } #header_logo{float: left; height: 150px; width: 150px;} #header_banner{float: right; height: 150px; width:850px; } #shopping_cart{ width: 1000px; height: 40px; background: #F88A00; color: white; margin: auto; } /*Menu Style starts*/ .menubar{ height: 50px; width: 1000px; background: #3E3E3E; color: white; margin: auto; } #menu{ margin: 0; padding: 0; line-height: 45px; float: right; } #menu li{ list-style: none; /*bullets will be removed*/ display: inline; } #menu a{ text-decoration: none; /*underline will be removed*/ color: white; padding: 5px; margin: 5px; font-size: 17px; font-family: sans-serif; font-style: oblique; } #menu a:hover{Color: #0CA4EC; } /*Menu Style Ends*/ #form{ float: right; padding-right: 5px; line-height: 45px; } .slide_wrapper{ width: 1000px; height: 310px; border: 2px outset black; margin: auto; background: #FFFFFF; } #slide_area{ width: 800px; height: 290px; float: left; background: orange; } #Adsbar{ width: 195px; overflow-y: hidden; border-left: 1px groove white; border-top: 6px solid orange; background-color: #000; float: right; } #stitle{ text-decoration: none; /*underline will be removed*/ color: white; padding: 5px; margin: 5px; font-size: 20px; font-family: sans-serif; } #brnds{ line-height: 10px; } #brnds li{ list-style: none; /*bullets will be removed*/ } #brnds a{ font-style: oblique; text-decoration: none; /*underline will be removed*/ color: #ffa500; padding: 8px; margin: 5px; font-size: 15px; font-family: sans-serif; } #brnds a:hover{Color: white; } #content_area{ border-top: 5px solid orange; border-left: 2px solid black; border-right: 2px solid black; border-bottom: 5px solid orange; width: 1000px; overflow-y: hidden; margin: auto; background:#fff; } #products_box{ width: 1000px; overflow-y: auto; margin-top: 10px; margin-bottom: auto; margin-right: auto; margin-left: auto; text-align: center; } #single_product_homepage{ float: left; margin-left: 30px; margin-bottom: 30px; padding: 5px; background: white; border-radius: 5px; border: 2px outset black; } #single_product_homepage img{ border: 2px solid black; } #single_product{ background: #C4C4C4; float: left; margin-left: 15px; padding: 10px; } #single_product img{ border: 2px solid black; } /*View page Design Start*/ #postTitle{ padding: 2px; text-align: left; margin-top: 10px; margin-bottom: 10px; border: 2px inset; background: #202327; color:white; font-family: Verdana; font-weight: bolder; } #homePageTitle{ color:white; height: 20px; width: 200px; border: 1px inset; background: #202327; margin-bottom: 2px; } #postImage{ background: #C4C4C4; float: left; margin-right:30px; margin-top: 10px; margin-bottom: 10px; width: 300px; height: 400px; border: 2px solid black; } #detailsBox{ margin-left:120px; border-bottom: 5px solid green; background-color: lightgrey; width: 480px; height: auto; float: right; } #detailsBox h1{ color: #fff; border-bottom: 5px solid red; background-color: black; } #description{ border: 2px solid; font-family: Verdana; font-weight: bolder; } #price{ background: #000; color: #fff; height: 20px; width: 200px; border: 1px ridge; font-family: Geneva; } /*View Page Design End*/ #feature_area{ width: 1000px; margin: auto; } #banner_area{ border-top: 6px solid orange; border-right:2px solid black; border-left: 2px solid black; width: 1000px; background: white; height: 200px; margin: auto; } #suggestions{ width: 996px; background-color:#ffffff; height: 300px; margin: auto; border: 2px solid black; } #youMayAlsoLike{ margin-top: 10px; margin-right: 10px; margin-bottom: 10px; margin-left: 30px; border-bottom: 6px solid black; background-color: lightgreen; font-family: Verdana, Arial, Geneva, Arial Black; font-weight: bolder; } #slide_product{ float: left; margin-left: 20px; padding: 10px; } #slide_product img{ border: 2px groove black; background-color: grey; } .footer_wrapper{ width: 1000px; height: 100px; background: #000000; margin: auto; clear: both; } h3{ line-height: 100px; color: white; font-family: sans-serif; } .button { background-color: #4CAF50; /* Green */ border: none; color: white; padding: 5px 10px; text-align: center; text-decoration: none; display: inline-block; font-size: 10px; margin: 4px 2px; cursor: pointer; } .button2 {background-color: #008CBA;border-radius: 4px;} /* Blue */ /*Support starts*/ #column { float: left; width: 300px; padding: 10px; height: 300px; } #column a{ text-align: left; font-style: oblique; text-decoration: underline; /*underline will be removed*/ color: white; padding: 15px; margin: 10px; font-size: 16px; font-family: sans-serif; } #column li{ list-style: none; /*bullets will be removed*/ } #column a:hover{ color: #ffa500; } .suppoer_box{ background-color: grey; } /*supports ends*/ #news { float: left; height: 310px; width: 300px; padding: 10px; overflow: auto; } #contact_us{ text-decoration: none; font-size: 16px; font-family: sans-serif; color: white; font-style: oblique; } #contact_us:hover{ color: green; } /*Hello*/ /* Style the tab */ .tab { overflow: hidden; border: 1px solid #ccc; background-color: #f1f1f1; } /* Style the buttons inside the tab */ .tab button { background-color: #000; color:#fff; float: left; border: 1px solid #fff; outline: none; cursor: pointer; padding: 5px 14px; transition: 0.3s; font-size: 17px; } /* Change background color of buttons on hover */ .tab button:hover { background-color: #orange; } /* Create an active/current tablink class */ .tab button.active { background-color: #000000; } /* Style the tab content */ .tabcontent { display: none; padding: 5px 5px; border: 1px groove #ccc; border-top: none; }
styles/style.css
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; vertical-align: baseline; } /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } /*it will removes all the defaults styles applied by the browser by using upper code*/ body{background: #FFFFFF; } .main_wrapper{ width: 1020px; overflow-y: hidden; margin: auto; } .header_wrapper{ border-left: 2px solid black; border-right: 2px solid black; width: 1000px; height: 160px; margin: auto; } #header_logo{float: left; height: 150px; width: 150px;} #header_banner{float: right; height: 150px; width:850px; } #shopping_cart{ width: 1000px; height: 40px; background: #F88A00; color: white; margin: auto; } /*Menu Style starts*/ .menubar{ height: 50px; width: 1000px; background: #3E3E3E; color: white; margin: auto; } #menu{ margin: 0; padding: 0; line-height: 45px; float: right; } #menu li{ list-style: none; /*bullets will be removed*/ display: inline; } #menu a{ text-decoration: none; /*underline will be removed*/ color: white; padding: 5px; margin: 5px; font-size: 17px; font-family: sans-serif; font-style: oblique; } #menu a:hover{Color: #0CA4EC; } /*Menu Style Ends*/ #form{ float: right; padding-right: 5px; line-height: 45px; } .slide_wrapper{ width: 1000px; height: 310px; border: 2px outset black; margin: auto; background: #FFFFFF; } #slide_area{ width: 800px; height: 290px; float: left; background: orange; } #Adsbar{ width: 195px; overflow-y: hidden; border-left: 1px groove white; border-top: 6px solid orange; background-color: #000; float: right; } #stitle{ text-decoration: none; /*underline will be removed*/ color: white; padding: 5px; margin: 5px; font-size: 20px; font-family: sans-serif; } #brnds{ line-height: 10px; } #brnds li{ list-style: none; /*bullets will be removed*/ } #brnds a{ font-style: oblique; text-decoration: none; /*underline will be removed*/ color: #ffa500; padding: 8px; margin: 5px; font-size: 15px; font-family: sans-serif; } #brnds a:hover{Color: white; } #content_area{ border-top: 5px solid orange; border-left: 2px solid black; border-right: 2px solid black; border-bottom: 5px solid orange; width: 1000px; overflow-y: hidden; margin: auto; background:#fff; } #products_box{ width: 1000px; overflow-y: auto; margin-top: 10px; margin-bottom: auto; margin-right: auto; margin-left: auto; text-align: center; } #single_product_homepage{ float: left; margin-left: 30px; margin-bottom: 30px; padding: 5px; background: white; border-radius: 5px; border: 2px outset black; } #single_product_homepage img{ border: 2px solid black; } #single_product{ background: #C4C4C4; float: left; margin-left: 15px; padding: 10px; } #single_product img{ border: 2px solid black; } /*View page Design Start*/ #postTitle{ padding: 2px; text-align: left; margin-top: 10px; margin-bottom: 10px; border: 2px inset; background: #202327; color:white; font-family: Verdana; font-weight: bolder; } #homePageTitle{ color:white; height: 20px; width: 200px; border: 1px inset; background: #202327; margin-bottom: 2px; } #postImage{ background: #C4C4C4; float: left; margin-right:30px; margin-top: 10px; margin-bottom: 10px; width: 300px; height: 400px; border: 2px solid black; } #detailsBox{ margin-left:120px; border-bottom: 5px solid green; background-color: lightgrey; width: 480px; height: auto; float: right; } #detailsBox h1{ color: #fff; border-bottom: 5px solid red; background-color: black; } #description{ border: 2px solid; font-family: Verdana; font-weight: bolder; } #price{ background: #000; color: #fff; height: 20px; width: 200px; border: 1px ridge; font-family: Geneva; } /*View Page Design End*/ #feature_area{ width: 1000px; margin: auto; } #banner_area{ border-top: 6px solid orange; border-right:2px solid black; border-left: 2px solid black; width: 1000px; background: white; height: 200px; margin: auto; } #suggestions{ width: 996px; background-color:#ffffff; height: 300px; margin: auto; border: 2px solid black; } #youMayAlsoLike{ margin-top: 10px; margin-right: 10px; margin-bottom: 10px; margin-left: 30px; border-bottom: 6px solid black; background-color: lightgreen; font-family: Verdana, Arial, Geneva, Arial Black; font-weight: bolder; } #slide_product{ float: left; margin-left: 20px; padding: 10px; } #slide_product img{ border: 2px groove black; background-color: grey; } .footer_wrapper{ width: 1000px; height: 100px; background: #000000; margin: auto; clear: both; } h3{ line-height: 100px; color: white; font-family: sans-serif; } .button { background-color: #4CAF50; /* Green */ border: none; color: white; padding: 5px 10px; text-align: center; text-decoration: none; display: inline-block; font-size: 10px; margin: 4px 2px; cursor: pointer; } .button2 {background-color: #008CBA;border-radius: 4px;} /* Blue */ /*Support starts*/ #column { float: left; width: 300px; padding: 10px; height: 300px; } #column a{ text-align: left; font-style: oblique; text-decoration: underline; /*underline will be removed*/ color: white; padding: 15px; margin: 10px; font-size: 16px; font-family: sans-serif; } #column li{ list-style: none; /*bullets will be removed*/ } #column a:hover{ color: #ffa500; } .suppoer_box{ background-color: grey; } /*supports ends*/ #news { float: left; height: 310px; width: 300px; padding: 10px; overflow: auto; } #contact_us{ text-decoration: none; font-size: 16px; font-family: sans-serif; color: white; font-style: oblique; } #contact_us:hover{ color: green; } /*Hello*/ /* Style the tab */ .tab { overflow: hidden; border: 1px solid #ccc; background-color: #f1f1f1; } /* Style the buttons inside the tab */ .tab button { background-color: #000; color:#fff; float: left; border: 1px solid #fff; outline: none; cursor: pointer; padding: 5px 14px; transition: 0.3s; font-size: 17px; } /* Change background color of buttons on hover */ .tab button:hover { background-color: #orange; } /* Create an active/current tablink class */ .tab button.active { background-color: #000000; } /* Style the tab content */ .tabcontent { display: none; padding: 5px 5px; border: 1px groove #ccc; border-top: none; }
0.232136
0.06885
.show-grid { background-image: -webkit-linear-gradient(top, cyan 0, rgba(255, 255, 255, 0) 1px); background-image: -moz-linear-gradient(top, cyan 0, rgba(255, 255, 255, 0) 1px); background-image: -o-linear-gradient(top, cyan 0, rgba(255, 255, 255, 0) 1px); background-image: linear-gradient(to bottom, cyan 0, rgba(255, 255, 255, 0) 1px); background-repeat: repeat-y; background-size: 100% 1rem; } html { font-size: 62.5%; } @media screen and (min-width: 40em) { html { font-size: 75%; } } body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; color: #231f20; font-family: Frutiger, Helvetica, sans-serif; font-style: normal; font-weight: normal; line-height: 2rem; font-size: 1.5rem; } @media screen and (min-width: 40em) { body { font-size: 1.5rem; } } .text { max-width: 33em; } .text-secondary { color: #6f777b; } h1, h2, h3, h4, h5, h6 { -webkit-font-feature-settings: 'dlig' 1, 'liga' 1, 'lnum' 1, 'kern' 1; -moz-font-feature-settings: 'dlig' 1, 'liga' 1, 'lnum' 1, 'kern' 1; -ms-font-feature-settings: 'dlig' 1, 'liga' 1, 'lnum' 1, 'kern' 1; -o-font-feature-settings: 'dlig' 1, 'liga' 1, 'lnum' 1, 'kern' 1; font-feature-settings: 'dlig' 1, 'liga' 1, 'lnum' 1, 'kern' 1; font-family: Frutiger, Helvetica, sans-serif; font-style: normal; font-weight: 800; } .heading-xxlarge, .heading-xlarge .heading-large, .heading-medium, .heading-small { display: block; font-weight: 800; } /*.heading-xxlarge { @include sassline($fontsize: xx-large, $font: $headingtype, $lineheight: 6, $below: 4, $breakpoint: all); }*/ .heading-xlarge { font-size: 2.7581rem; line-height: 3rem; margin-bottom: 2.2584675rem; padding-top: 0.7415325rem; } @media screen and (min-width: 40em) { .heading-xlarge { font-size: 4.24075rem; line-height: 5rem; margin-bottom: 2.66619625rem; padding-top: 1.33380375rem; } } .heading-large { font-size: 2.121rem; line-height: 3rem; margin-bottom: 1.083265rem; padding-top: 0.916735rem; } @media screen and (min-width: 40em) { .heading-large { font-size: 2.9990833333rem; line-height: 4rem; margin-bottom: 0.8247379167rem; padding-top: 1.1752620833rem; } } .heading-medium { font-size: 1.9506rem; line-height: 3rem; margin-bottom: 1.036405rem; padding-top: 0.963595rem; } @media screen and (min-width: 40em) { .heading-medium { font-size: 2.121rem; line-height: 3rem; margin-bottom: 1.083265rem; padding-top: 0.916735rem; } } .heading-small { font-size: 1.5rem; line-height: 2rem; margin-bottom: 0.41249rem; padding-top: 0.58751rem; } @media screen and (min-width: 40em) { .heading-small { font-size: 1.5rem; line-height: 2rem; margin-bottom: 0.41249rem; padding-top: 0.58751rem; } } p { -webkit-font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; -moz-font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; -ms-font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; -o-font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; line-height: 2rem; font-size: 1.5rem; margin-bottom: 1.37499rem; padding-top: 0.62501rem; } @media screen and (min-width: 40em) { p { font-size: 1.5rem; margin-bottom: 1.37499rem; padding-top: 0.62501rem; } } .lede { font-size: 1.9506rem; line-height: 3rem; margin-bottom: 0.98764rem; padding-top: 1.01236rem; } @media screen and (min-width: 40em) { .lede { font-size: 2.121rem; line-height: 3rem; margin-bottom: 1.03024rem; padding-top: 0.96976rem; } } .bold-large { line-height: 3rem; font-size: 2.121rem; margin-bottom: 0.03024rem; padding-top: 0.96976rem; font-weight: bold; } @media screen and (min-width: 40em) { .bold-large { font-size: 2.9990833333rem; margin-bottom: 0.2497608333rem; padding-top: 0.7502391667rem; } } .font-xsmall { font-size: 1.5rem; } @media screen and (min-width: 40em) { .font-xsmall { font-size: 1.25rem; } } ul, ol { list-style-type: none; line-height: 2rem; margin-bottom: 1.37499rem; padding-top: 0.62501rem; } @media screen and (min-width: 40em) { ul, ol { margin-bottom: 1.37499rem; padding-top: 0.62501rem; } } ul li, ol li { -webkit-font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; -moz-font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; -ms-font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; -o-font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; margin-left: 0; margin-bottom: 0.75rem; } ul li ol, ul li ul, ol li ol, ol li ul { padding-top: 1rem; margin-bottom: 1rem; } .list-number { list-style-type: decimal; margin-left: 1.5rem; } .list-number li { margin-bottom: 1rem; } .list-bullet { list-style-type: disc; margin-left: 1.5rem; } .list-bullet li { margin-bottom: 1rem; } .inline li { display: inline-block; margin-right: 2rem; } dl { line-height: 2rem; margin-bottom: 1.37499rem; padding-top: 0.62501rem; } @media screen and (min-width: 40em) { dl { margin-bottom: 1.37499rem; padding-top: 0.62501rem; } } dl dt, dl dd { -webkit-font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; -moz-font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; -ms-font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; -o-font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; margin-left: 2rem; } @media screen and (min-width: 40em) { dl dt, dl dd { margin-left: 0; } } dl dt { font-weight: bold; } dl dd + dt { padding-top: 1rem; } table { -webkit-font-feature-settings: 'liga' 1, 'lnum' 1, 'tnum' 1, 'kern' 1; -moz-font-feature-settings: 'liga' 1, 'lnum' 1, 'tnum' 1, 'kern' 1; -ms-font-feature-settings: 'liga' 1, 'lnum' 1, 'tnum' 1, 'kern' 1; -o-font-feature-settings: 'liga' 1, 'lnum' 1, 'tnum' 1, 'kern' 1; font-feature-settings: 'liga' 1, 'lnum' 1, 'tnum' 1, 'kern' 1; font-family: Frutiger, Helvetica, sans-serif; font-style: normal; width: 100%; font-size: 1.5rem; } @media screen and (min-width: 40em) { table { font-size: 1.25rem; } } table th { font-weight: bold; } a { -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3); } a:focus { background-color: #FFED00; outline: 3px solid #FFED00; } a:link, .link { color: #0072C6; text-decoration: underline; cursor: pointer; } a:visited, .link:visited { color: #0072C6; } a:hover, .link:hover { color: #2e8aca; } a:active, .link:active { color: #0072C6; } a.danger:link { color: #8F1336; } a.danger:visited { color: #8F1336; } a.danger:hover { color: #8F1336; } a.danger:active { color: #0072C6; } b, strong { font-weight: bold; } em, i { font-style: italic; } small { font-family: Frutiger, Helvetica, sans-serif; font-style: normal; font-weight: normal; font-size: 1.0608rem; } @media screen and (min-width: 40em) { small { font-size: 1.0608333333rem; } } small { line-height: 1rem; } summary { line-height: 2rem; font-size: 1.5rem; margin-bottom: 0.37499rem; padding-top: 0.62501rem; } @media screen and (min-width: 40em) { summary { font-size: 1.5rem; margin-bottom: 0.37499rem; padding-top: 0.62501rem; } } hr { background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#667078)); background-image: -webkit-linear-gradient(top, transparent 50%, #667078 50%); background-image: linear-gradient(to bottom, transparent 50%, #667078 50%); background-position: 0 50%; background-repeat: repeat-x; background-size: 100% 0.15rem; border: 0; margin: 0; padding-bottom: 3rem; padding-top: 3rem; } label, .form-label, .form-label-bold { color: #231f20; } /*label,*/ .form-label-bold { line-height: 3rem; font-size: 1.9506rem; margin-bottom: -0.01236rem; padding-top: 1.01236rem; font-weight: bold; } @media screen and (min-width: 40em) { .form-label-bold { font-size: 2.121rem; margin-bottom: 0.03024rem; padding-top: 0.96976rem; } } .form-label { line-height: 2rem; font-size: 1.5rem; margin-bottom: 0.37499rem; padding-top: 0.62501rem; } @media screen and (min-width: 40em) { .form-label { font-size: 1.5rem; margin-bottom: 0.37499rem; padding-top: 0.62501rem; } } .form-hint { line-height: 2rem; font-size: 1.5rem; margin-bottom: 0.37499rem; padding-top: 0.62501rem; } @media screen and (min-width: 40em) { .form-hint { font-size: 1.5rem; margin-bottom: 0.37499rem; padding-top: 0.62501rem; } } .form-control-checkbox, .form-control-radio { font-size: 1.5rem; } @media screen and (min-width: 40em) { .form-control-checkbox, .form-control-radio { font-size: 1.5rem; } } .button { font-size: 1.5rem; } @media screen and (min-width: 40em) { .button { font-size: 1.5rem; } } .appointment-section-heading { font-size: 2.3rem; font-weight: normal; margin: 2rem 0; } @media screen and (min-width: 40em) { .appointment-section-heading { font-size: 1.9166666667rem; } } .appointment-section-heading.more { margin-top: 2rem; margin-bottom: 0; padding: 2rem 0 1rem; border-top: 4px solid #bfdcf1; } .appointment-section-heading.all { margin-top: 5rem; padding: 2rem 0 1rem; border-top: 2px solid #bfdcf1; } /* Homepage styles - sketched in */ .generic-wrapper { max-width: 960px; margin: 0 auto; padding: 0 15px; } @media screen and (min-width: 40em) { .generic-wrapper { top: 0; padding: 0 30px; } } .copy-small { font-size: 16px; } .button, .button:link, .button:hover, .button:focus, .button:visited { background-color: #77BC1F; border-color: #77BC1F; } /* header area */ #global-header { border-bottom: 0; } #global-header .header-container { position: relative; } @media screen and (min-width: 40em) { #global-header .header-container { padding-top: 15px; height: 80px; } } .blurb { clear: both; padding: 0 0 12px 0; color: #ffffff; font-size: 16px; line-height: 16px; } @media screen and (min-width: 40em) { .blurb { float: left; clear: none; padding: 19px 0 0 12px; } } .sign-in { position: absolute; right: 0; top: 15px; background-color: #FFED00; } @media screen and (min-width: 40em) { .sign-in { top: 0; right: 30px; padding: 30px; } } .sign-in .button { background-color: #231f20; border-color: #231f20; } /* search area */ .search-area .generic-wrapper { position: relative; } .search-area { background-color: #cce3f4; padding-top: 15px; padding-bottom: 15px; } @media screen and (min-width: 40em) { .search-area { padding-top: 60px; padding-bottom: 60px; } } .search-area input[type="text"] { box-sizing: border-box; width: 100%; font-size: 21px; line-height: 45px; padding: 0 10px; background-color: #ffffff; border: 3px solid #231f20; } @media screen and (min-width: 40em) { .search-area input[type="text"] { font-size: 26px; padding: 0 15px; } } .search-area button { position: absolute; right: 15px; top: 0; text-indent: -999em; background: url(/public/images/icon-search.svg) center no-repeat; float: left; width: 51px; height: 51px; background-color: #231f20; border: 3px solid #231f20; } @media screen and (min-width: 40em) { .search-area button { right: 30px; } } /* symptoms and conditions area */ .content-area { color: #fff; background-color: #0072C6; padding-top: 15px; padding-bottom: 15px; } @media screen and (min-width: 40em) { .content-area { padding-top: 30px; padding-bottom: 30px; } } .content-area a { color: #ffffff; } /* Services area */ .services-area { background-color: #ffffff; padding-top: 15px; padding-bottom: 30px; } @media screen and (min-width: 40em) { .services-area { padding-top: 30px; padding-bottom: 60px; } } @media screen and (min-width: 40em) { .service-unit { height: 160px; } } .new-service-flag { display: inline-block; padding-left: 15px; padding-right: 15px; margin-top: 30px; background-color: #FFED00; } @media screen and (min-width: 40em) { .new-service-flag { margin-top: 0; } } /* Footer area */ html { background-color: #e9e9e9; } #footer { color: #231f20; border-top: 0; background-color: #e9e9e9; } #footer a { color: #231f20; } .copyright { font-size: 14px; line-height: 16px; }
public/stylesheets/homepage_ipmb.css
.show-grid { background-image: -webkit-linear-gradient(top, cyan 0, rgba(255, 255, 255, 0) 1px); background-image: -moz-linear-gradient(top, cyan 0, rgba(255, 255, 255, 0) 1px); background-image: -o-linear-gradient(top, cyan 0, rgba(255, 255, 255, 0) 1px); background-image: linear-gradient(to bottom, cyan 0, rgba(255, 255, 255, 0) 1px); background-repeat: repeat-y; background-size: 100% 1rem; } html { font-size: 62.5%; } @media screen and (min-width: 40em) { html { font-size: 75%; } } body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; color: #231f20; font-family: Frutiger, Helvetica, sans-serif; font-style: normal; font-weight: normal; line-height: 2rem; font-size: 1.5rem; } @media screen and (min-width: 40em) { body { font-size: 1.5rem; } } .text { max-width: 33em; } .text-secondary { color: #6f777b; } h1, h2, h3, h4, h5, h6 { -webkit-font-feature-settings: 'dlig' 1, 'liga' 1, 'lnum' 1, 'kern' 1; -moz-font-feature-settings: 'dlig' 1, 'liga' 1, 'lnum' 1, 'kern' 1; -ms-font-feature-settings: 'dlig' 1, 'liga' 1, 'lnum' 1, 'kern' 1; -o-font-feature-settings: 'dlig' 1, 'liga' 1, 'lnum' 1, 'kern' 1; font-feature-settings: 'dlig' 1, 'liga' 1, 'lnum' 1, 'kern' 1; font-family: Frutiger, Helvetica, sans-serif; font-style: normal; font-weight: 800; } .heading-xxlarge, .heading-xlarge .heading-large, .heading-medium, .heading-small { display: block; font-weight: 800; } /*.heading-xxlarge { @include sassline($fontsize: xx-large, $font: $headingtype, $lineheight: 6, $below: 4, $breakpoint: all); }*/ .heading-xlarge { font-size: 2.7581rem; line-height: 3rem; margin-bottom: 2.2584675rem; padding-top: 0.7415325rem; } @media screen and (min-width: 40em) { .heading-xlarge { font-size: 4.24075rem; line-height: 5rem; margin-bottom: 2.66619625rem; padding-top: 1.33380375rem; } } .heading-large { font-size: 2.121rem; line-height: 3rem; margin-bottom: 1.083265rem; padding-top: 0.916735rem; } @media screen and (min-width: 40em) { .heading-large { font-size: 2.9990833333rem; line-height: 4rem; margin-bottom: 0.8247379167rem; padding-top: 1.1752620833rem; } } .heading-medium { font-size: 1.9506rem; line-height: 3rem; margin-bottom: 1.036405rem; padding-top: 0.963595rem; } @media screen and (min-width: 40em) { .heading-medium { font-size: 2.121rem; line-height: 3rem; margin-bottom: 1.083265rem; padding-top: 0.916735rem; } } .heading-small { font-size: 1.5rem; line-height: 2rem; margin-bottom: 0.41249rem; padding-top: 0.58751rem; } @media screen and (min-width: 40em) { .heading-small { font-size: 1.5rem; line-height: 2rem; margin-bottom: 0.41249rem; padding-top: 0.58751rem; } } p { -webkit-font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; -moz-font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; -ms-font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; -o-font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; line-height: 2rem; font-size: 1.5rem; margin-bottom: 1.37499rem; padding-top: 0.62501rem; } @media screen and (min-width: 40em) { p { font-size: 1.5rem; margin-bottom: 1.37499rem; padding-top: 0.62501rem; } } .lede { font-size: 1.9506rem; line-height: 3rem; margin-bottom: 0.98764rem; padding-top: 1.01236rem; } @media screen and (min-width: 40em) { .lede { font-size: 2.121rem; line-height: 3rem; margin-bottom: 1.03024rem; padding-top: 0.96976rem; } } .bold-large { line-height: 3rem; font-size: 2.121rem; margin-bottom: 0.03024rem; padding-top: 0.96976rem; font-weight: bold; } @media screen and (min-width: 40em) { .bold-large { font-size: 2.9990833333rem; margin-bottom: 0.2497608333rem; padding-top: 0.7502391667rem; } } .font-xsmall { font-size: 1.5rem; } @media screen and (min-width: 40em) { .font-xsmall { font-size: 1.25rem; } } ul, ol { list-style-type: none; line-height: 2rem; margin-bottom: 1.37499rem; padding-top: 0.62501rem; } @media screen and (min-width: 40em) { ul, ol { margin-bottom: 1.37499rem; padding-top: 0.62501rem; } } ul li, ol li { -webkit-font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; -moz-font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; -ms-font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; -o-font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; margin-left: 0; margin-bottom: 0.75rem; } ul li ol, ul li ul, ol li ol, ol li ul { padding-top: 1rem; margin-bottom: 1rem; } .list-number { list-style-type: decimal; margin-left: 1.5rem; } .list-number li { margin-bottom: 1rem; } .list-bullet { list-style-type: disc; margin-left: 1.5rem; } .list-bullet li { margin-bottom: 1rem; } .inline li { display: inline-block; margin-right: 2rem; } dl { line-height: 2rem; margin-bottom: 1.37499rem; padding-top: 0.62501rem; } @media screen and (min-width: 40em) { dl { margin-bottom: 1.37499rem; padding-top: 0.62501rem; } } dl dt, dl dd { -webkit-font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; -moz-font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; -ms-font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; -o-font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1; margin-left: 2rem; } @media screen and (min-width: 40em) { dl dt, dl dd { margin-left: 0; } } dl dt { font-weight: bold; } dl dd + dt { padding-top: 1rem; } table { -webkit-font-feature-settings: 'liga' 1, 'lnum' 1, 'tnum' 1, 'kern' 1; -moz-font-feature-settings: 'liga' 1, 'lnum' 1, 'tnum' 1, 'kern' 1; -ms-font-feature-settings: 'liga' 1, 'lnum' 1, 'tnum' 1, 'kern' 1; -o-font-feature-settings: 'liga' 1, 'lnum' 1, 'tnum' 1, 'kern' 1; font-feature-settings: 'liga' 1, 'lnum' 1, 'tnum' 1, 'kern' 1; font-family: Frutiger, Helvetica, sans-serif; font-style: normal; width: 100%; font-size: 1.5rem; } @media screen and (min-width: 40em) { table { font-size: 1.25rem; } } table th { font-weight: bold; } a { -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3); } a:focus { background-color: #FFED00; outline: 3px solid #FFED00; } a:link, .link { color: #0072C6; text-decoration: underline; cursor: pointer; } a:visited, .link:visited { color: #0072C6; } a:hover, .link:hover { color: #2e8aca; } a:active, .link:active { color: #0072C6; } a.danger:link { color: #8F1336; } a.danger:visited { color: #8F1336; } a.danger:hover { color: #8F1336; } a.danger:active { color: #0072C6; } b, strong { font-weight: bold; } em, i { font-style: italic; } small { font-family: Frutiger, Helvetica, sans-serif; font-style: normal; font-weight: normal; font-size: 1.0608rem; } @media screen and (min-width: 40em) { small { font-size: 1.0608333333rem; } } small { line-height: 1rem; } summary { line-height: 2rem; font-size: 1.5rem; margin-bottom: 0.37499rem; padding-top: 0.62501rem; } @media screen and (min-width: 40em) { summary { font-size: 1.5rem; margin-bottom: 0.37499rem; padding-top: 0.62501rem; } } hr { background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#667078)); background-image: -webkit-linear-gradient(top, transparent 50%, #667078 50%); background-image: linear-gradient(to bottom, transparent 50%, #667078 50%); background-position: 0 50%; background-repeat: repeat-x; background-size: 100% 0.15rem; border: 0; margin: 0; padding-bottom: 3rem; padding-top: 3rem; } label, .form-label, .form-label-bold { color: #231f20; } /*label,*/ .form-label-bold { line-height: 3rem; font-size: 1.9506rem; margin-bottom: -0.01236rem; padding-top: 1.01236rem; font-weight: bold; } @media screen and (min-width: 40em) { .form-label-bold { font-size: 2.121rem; margin-bottom: 0.03024rem; padding-top: 0.96976rem; } } .form-label { line-height: 2rem; font-size: 1.5rem; margin-bottom: 0.37499rem; padding-top: 0.62501rem; } @media screen and (min-width: 40em) { .form-label { font-size: 1.5rem; margin-bottom: 0.37499rem; padding-top: 0.62501rem; } } .form-hint { line-height: 2rem; font-size: 1.5rem; margin-bottom: 0.37499rem; padding-top: 0.62501rem; } @media screen and (min-width: 40em) { .form-hint { font-size: 1.5rem; margin-bottom: 0.37499rem; padding-top: 0.62501rem; } } .form-control-checkbox, .form-control-radio { font-size: 1.5rem; } @media screen and (min-width: 40em) { .form-control-checkbox, .form-control-radio { font-size: 1.5rem; } } .button { font-size: 1.5rem; } @media screen and (min-width: 40em) { .button { font-size: 1.5rem; } } .appointment-section-heading { font-size: 2.3rem; font-weight: normal; margin: 2rem 0; } @media screen and (min-width: 40em) { .appointment-section-heading { font-size: 1.9166666667rem; } } .appointment-section-heading.more { margin-top: 2rem; margin-bottom: 0; padding: 2rem 0 1rem; border-top: 4px solid #bfdcf1; } .appointment-section-heading.all { margin-top: 5rem; padding: 2rem 0 1rem; border-top: 2px solid #bfdcf1; } /* Homepage styles - sketched in */ .generic-wrapper { max-width: 960px; margin: 0 auto; padding: 0 15px; } @media screen and (min-width: 40em) { .generic-wrapper { top: 0; padding: 0 30px; } } .copy-small { font-size: 16px; } .button, .button:link, .button:hover, .button:focus, .button:visited { background-color: #77BC1F; border-color: #77BC1F; } /* header area */ #global-header { border-bottom: 0; } #global-header .header-container { position: relative; } @media screen and (min-width: 40em) { #global-header .header-container { padding-top: 15px; height: 80px; } } .blurb { clear: both; padding: 0 0 12px 0; color: #ffffff; font-size: 16px; line-height: 16px; } @media screen and (min-width: 40em) { .blurb { float: left; clear: none; padding: 19px 0 0 12px; } } .sign-in { position: absolute; right: 0; top: 15px; background-color: #FFED00; } @media screen and (min-width: 40em) { .sign-in { top: 0; right: 30px; padding: 30px; } } .sign-in .button { background-color: #231f20; border-color: #231f20; } /* search area */ .search-area .generic-wrapper { position: relative; } .search-area { background-color: #cce3f4; padding-top: 15px; padding-bottom: 15px; } @media screen and (min-width: 40em) { .search-area { padding-top: 60px; padding-bottom: 60px; } } .search-area input[type="text"] { box-sizing: border-box; width: 100%; font-size: 21px; line-height: 45px; padding: 0 10px; background-color: #ffffff; border: 3px solid #231f20; } @media screen and (min-width: 40em) { .search-area input[type="text"] { font-size: 26px; padding: 0 15px; } } .search-area button { position: absolute; right: 15px; top: 0; text-indent: -999em; background: url(/public/images/icon-search.svg) center no-repeat; float: left; width: 51px; height: 51px; background-color: #231f20; border: 3px solid #231f20; } @media screen and (min-width: 40em) { .search-area button { right: 30px; } } /* symptoms and conditions area */ .content-area { color: #fff; background-color: #0072C6; padding-top: 15px; padding-bottom: 15px; } @media screen and (min-width: 40em) { .content-area { padding-top: 30px; padding-bottom: 30px; } } .content-area a { color: #ffffff; } /* Services area */ .services-area { background-color: #ffffff; padding-top: 15px; padding-bottom: 30px; } @media screen and (min-width: 40em) { .services-area { padding-top: 30px; padding-bottom: 60px; } } @media screen and (min-width: 40em) { .service-unit { height: 160px; } } .new-service-flag { display: inline-block; padding-left: 15px; padding-right: 15px; margin-top: 30px; background-color: #FFED00; } @media screen and (min-width: 40em) { .new-service-flag { margin-top: 0; } } /* Footer area */ html { background-color: #e9e9e9; } #footer { color: #231f20; border-top: 0; background-color: #e9e9e9; } #footer a { color: #231f20; } .copyright { font-size: 14px; line-height: 16px; }
0.373762
0.140248
nav.menu { position: absolute; top: 0; bottom: 0; left: 0; width: 300px; } nav.menu ul { list-style-type: none; margin: 0; padding: 0; padding-top: 56px; padding-bottom: 80; } nav.menu li { display: block; text-align: center; border-bottom: solid 1px #2b2b2b; } nav.menu li:first-child { border-top: none; } nav.menu li:last-child { border-bottom: none; } nav.menu i { width: 56px; margin-right: 10px; } nav.menu a img { height: 23px; width: 56px; margin-right: 10px; vertical-align: middle; } nav.menu a { display: block; padding: 15px; padding-left: 0; font-size: 18px; text-align: left; text-decoration: none; color: #eee; cursor: pointer; } nav.menu a:hover { background-color: #3b3b3b; color: #fff; } nav.menu div.about { position: absolute; bottom: 60; left: 0; right: 0; display: block; -moz-transition: 500ms ease all; -o-transition: 500ms ease all; -webkit-transition: 500ms ease all; transition: 500ms ease all; -webkit-transform: translateZ(0); -moz-transform: translateZ(0); -ms-transform: translateZ(0); -o-transform: translateZ(0); transform: translateZ(0); -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; -ms-backface-visibility: hidden; backface-visibility: hidden; -webkit-perspective: 1000; -moz-perspective: 1000; -ms-perspective: 1000; perspective: 1000; } nav.menu > div.about { position: absolute; bottom: 60px; left: 0; right: 0; display: block; -moz-transition: 500ms ease all; -o-transition: 500ms ease all; -webkit-transition: 500ms ease all; transition: 500ms ease all; -webkit-transform: translateZ(0); -moz-transform: translateZ(0); -ms-transform: translateZ(0); -o-transform: translateZ(0); transform: translateZ(0); -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; -ms-backface-visibility: hidden; backface-visibility: hidden; -webkit-perspective: 1000; -moz-perspective: 1000; -ms-perspective: 1000; perspective: 1000; }
src/app/shared/menu/menu.component.css
nav.menu { position: absolute; top: 0; bottom: 0; left: 0; width: 300px; } nav.menu ul { list-style-type: none; margin: 0; padding: 0; padding-top: 56px; padding-bottom: 80; } nav.menu li { display: block; text-align: center; border-bottom: solid 1px #2b2b2b; } nav.menu li:first-child { border-top: none; } nav.menu li:last-child { border-bottom: none; } nav.menu i { width: 56px; margin-right: 10px; } nav.menu a img { height: 23px; width: 56px; margin-right: 10px; vertical-align: middle; } nav.menu a { display: block; padding: 15px; padding-left: 0; font-size: 18px; text-align: left; text-decoration: none; color: #eee; cursor: pointer; } nav.menu a:hover { background-color: #3b3b3b; color: #fff; } nav.menu div.about { position: absolute; bottom: 60; left: 0; right: 0; display: block; -moz-transition: 500ms ease all; -o-transition: 500ms ease all; -webkit-transition: 500ms ease all; transition: 500ms ease all; -webkit-transform: translateZ(0); -moz-transform: translateZ(0); -ms-transform: translateZ(0); -o-transform: translateZ(0); transform: translateZ(0); -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; -ms-backface-visibility: hidden; backface-visibility: hidden; -webkit-perspective: 1000; -moz-perspective: 1000; -ms-perspective: 1000; perspective: 1000; } nav.menu > div.about { position: absolute; bottom: 60px; left: 0; right: 0; display: block; -moz-transition: 500ms ease all; -o-transition: 500ms ease all; -webkit-transition: 500ms ease all; transition: 500ms ease all; -webkit-transform: translateZ(0); -moz-transform: translateZ(0); -ms-transform: translateZ(0); -o-transform: translateZ(0); transform: translateZ(0); -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; -ms-backface-visibility: hidden; backface-visibility: hidden; -webkit-perspective: 1000; -moz-perspective: 1000; -ms-perspective: 1000; perspective: 1000; }
0.488527
0.065575
.nav { display: flex; text-transform: uppercase; font-weight: 700; font-size: 18px; padding-top: 40px; margin-bottom: 40px; } .nav-menu__item { text-decoration: none; transition: all 0.1s linear; } .nav-menu__item.cart { position: relative; } .nav-menu__cart-count { position: absolute; width: 20px; height: 20px; top: -20px; right: 1px; font-size: 10px; font-weight: 600; color: #000000; padding: 0 5px; border: 2px solid #eaac00; background-color: #eaac00; border-radius: 50%; display: flex; justify-content: center; align-items: center; } .nav-menu__item.active { color: #eaac00; } .nav-menu__item:hover { color: #eaac00; } @media (max-width: 756px) { #menuToggle { display: inline-block; position: fixed; z-index: 1; right: 10%; -webkit-user-select: none; user-select: none; margin-left: auto; } .nav-menu { width: 300px; } #menuToggle input { display: block; width: 40px; height: 32px; position: absolute; top: -7px; left: -5px; cursor: pointer; opacity: 0; z-index: 2; -webkit-touch-callout: none; } #menuToggle span { display: block; width: 33px; height: 4px; margin-bottom: 5px; position: relative; background: #000000; border-radius: 3px; z-index: 1; transform-origin: 4px 0px; transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease; } #menuToggle span:first-child { transform-origin: 0% 0%; } #menuToggle span:nth-last-child(2) { transform-origin: 0% 100%; } #menuToggle input:checked ~ span { opacity: 1; transform: rotate(45deg) translate(-2px, -1px); background: #232323; } #menuToggle input:checked ~ span:nth-last-child(3) { opacity: 0; transform: rotate(0deg) scale(0.2, 0.2); } #menuToggle input:checked ~ span:nth-last-child(2) { transform: rotate(-45deg) translate(0, -1px); } #menu { position: absolute; padding: 50px; background: #ededed; list-style-type: none; -webkit-font-smoothing: antialiased; transform-origin: 0% 0%; transform: translate(100%, 0); transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1); } #menu li { padding: 10px 0; font-size: 22px; } #menuToggle input:checked ~ ul { transform: translate(-80%, 0); } } @media (min-width: 756px) { .nav { display: flex; justify-content: space-between; align-items: center; } .nav-menu, .nav-btn { display: flex; justify-content: space-between; } .nav-menu__list:not(:last-child) { margin-right: 10px; } #menuToggle input { display: none; } } @media (min-width: 1024px) { .nav-menu__list:not(:last-child) { margin-right: 20px; } }
src/Components/Menu/Menu.css
.nav { display: flex; text-transform: uppercase; font-weight: 700; font-size: 18px; padding-top: 40px; margin-bottom: 40px; } .nav-menu__item { text-decoration: none; transition: all 0.1s linear; } .nav-menu__item.cart { position: relative; } .nav-menu__cart-count { position: absolute; width: 20px; height: 20px; top: -20px; right: 1px; font-size: 10px; font-weight: 600; color: #000000; padding: 0 5px; border: 2px solid #eaac00; background-color: #eaac00; border-radius: 50%; display: flex; justify-content: center; align-items: center; } .nav-menu__item.active { color: #eaac00; } .nav-menu__item:hover { color: #eaac00; } @media (max-width: 756px) { #menuToggle { display: inline-block; position: fixed; z-index: 1; right: 10%; -webkit-user-select: none; user-select: none; margin-left: auto; } .nav-menu { width: 300px; } #menuToggle input { display: block; width: 40px; height: 32px; position: absolute; top: -7px; left: -5px; cursor: pointer; opacity: 0; z-index: 2; -webkit-touch-callout: none; } #menuToggle span { display: block; width: 33px; height: 4px; margin-bottom: 5px; position: relative; background: #000000; border-radius: 3px; z-index: 1; transform-origin: 4px 0px; transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease; } #menuToggle span:first-child { transform-origin: 0% 0%; } #menuToggle span:nth-last-child(2) { transform-origin: 0% 100%; } #menuToggle input:checked ~ span { opacity: 1; transform: rotate(45deg) translate(-2px, -1px); background: #232323; } #menuToggle input:checked ~ span:nth-last-child(3) { opacity: 0; transform: rotate(0deg) scale(0.2, 0.2); } #menuToggle input:checked ~ span:nth-last-child(2) { transform: rotate(-45deg) translate(0, -1px); } #menu { position: absolute; padding: 50px; background: #ededed; list-style-type: none; -webkit-font-smoothing: antialiased; transform-origin: 0% 0%; transform: translate(100%, 0); transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1); } #menu li { padding: 10px 0; font-size: 22px; } #menuToggle input:checked ~ ul { transform: translate(-80%, 0); } } @media (min-width: 756px) { .nav { display: flex; justify-content: space-between; align-items: center; } .nav-menu, .nav-btn { display: flex; justify-content: space-between; } .nav-menu__list:not(:last-child) { margin-right: 10px; } #menuToggle input { display: none; } } @media (min-width: 1024px) { .nav-menu__list:not(:last-child) { margin-right: 20px; } }
0.328529
0.079639
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,700;1,400;1,700&display=swap'); /* COLOR */ :root{ --background-color: #edf2f5; --dark-one: #333; --dark-two: #7a7a7a; --main-color: #24afda; --light-color: #fff; --light-two: #f9fafb; --hover-color: #0077ff; } /* GENERAL STYLING */ *, *::before, *::after{ margin: 0; padding: 0; box-sizing: border-box; } /* Dark Mode Modifications */ /* body{ background-color: #333; } */ body, button, input, textarea{ font-family: "Poppins", sans-serif; } a{ text-decoration: none; } ul{ list-style: none; } img{ width: 100%; } .container{ position: relative; z-index: 5; max-width: 92rem; padding: 0 4rem; margin: 0 auto; /* background-color: red; */ } .grid-2{ display: grid; grid-template-columns: repeat(2, 1fr); align-items: center; justify-content: center; } .text{ font-size: 1.25rem; color: var(--dark-one); line-height: 1.6; } .header-content .text { margin: 2.15rem 0; } .section { padding: 7rem 0; overflow: hidden; } .title { position: relative; display: inline-block; padding-bottom: 1rem; line-height: 1; font-size: 2.8rem; margin-bottom: 0.6rem; } .title:before { content: attr(data-title); display: block; margin-bottom: 0.4rem; color: var(--main-color); font-size: 1.15rem; font-weight: 500; text-transform: uppercase; letter-spacing: 3px; } .title:after { content: ""; position: absolute; width: 90px; height: 5px; border-radius: 3px; background-color: var(--main-color); bottom: 0; left: 50%; transform: translateX(-50%); } .section-header .text { max-width: 600px; margin: 0 auto; } .title-sm { color: var(--dark-one); font-weight: 600; font-size: 1.6rem; } .section-header { text-align: center; margin-bottom: 1.5rem; } /* SPECIFIC STYLING */ /* HEADER */ header{ width: 100%; background-color: var(--background-color); overflow: hidden; } nav{ width: 100%; position: relative; z-index: 50; } nav .container{ display: flex; justify-content: space-between; height: 6rem; align-items: center; } .logo{ width: 80px; display: flex; align-items: center; } .link ul{ display: flex; } .link a{ display: inline-block; padding: 0.9rem 1.2rem; color: var(--dark-one); font-size: 1.05rem; text-transform: uppercase; font-weight: 500; line-height: 1; transition: 0.3s; } .link a.active{ background-color: var(--main-color); color: var(--light-color); border-radius: 2rem; font-size: 1rem; padding: 0.9rem 2.1rem; margin-left: 1rem; } .link a:hover{ color: var(--main-color); } .link a.active:hover{ color: var(--light-color); background-color: var(--hover-color); } .header-content .container.grid-2{ grid-template-columns: 2.5fr 3.5fr; min-height: calc(100vh - 6rem); padding-bottom: 2.6rem; text-align: left; } .column-1{ margin-right: 1.5rem; } .column-2{ margin-left: 1.5rem; } .header-title{ font-size: 3.8rem; line-height: 0.8; color: var(--dark-one); } .header-content .text{ margin: 2.15rem 0; } .btn{ display: inline-block; padding: .85rem 2rem; background-color: var(--main-color); color: var(--light-color); border-radius: 2rem; font-size: 1rem; text-transform: uppercase; font-weight: 600; transition: 0.3s; } .btn:hover{ background-color: var(--hover-color); } .image-element{ border-radius: 40px; } .resume_li{ padding-left: 2rem; display: block; list-style-type: disc; line-height: 150%; font-size: 1.25rem; } /* Header Ending */ /* SkillSet */ .card{ position: relative; width: 100%; max-width: 390px; min-height: 520px; background-color: var(--background-color); display: flex; align-items: center; justify-content: center; text-align: center; padding: 3rem 2rem; overflow: hidden; border-radius: 25px; transition: 0.3s; } .cards{ display: flex; justify-content: space-around; flex-wrap: wrap; width: 100%; } .card-wrap{ margin: 1.7rem 0.8rem; } .icon{ width: 90px; margin-bottom: 1.7rem; } .card .title-sm{ line-height: 0.8; } .card .text{ font-size: 1.2rem; margin: 1.8rem 0; } .btn.small{ padding: 0.7rem 1.8rem; font-size: 1rem; } .card:before{ content: attr(data-card); position: absolute; top: 0; right: 0; font-size: 6rem; font-weight: 800; line-height: 1; color: var(--main-color); opacity: 0.1; } .card:after{ content: ""; position: absolute; width: 100%; height: 0px; bottom: 0; left: 0; background-color: var(--main-color); transition: 0.3s; } .card:hover{ transform: translateY(-15px); } .card:hover:after{ height: 8px; } .icon_python{ width: 150px; } .icon_auto{ width: 150px; } /* Skillset Ending */
css/style.css
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,700;1,400;1,700&display=swap'); /* COLOR */ :root{ --background-color: #edf2f5; --dark-one: #333; --dark-two: #7a7a7a; --main-color: #24afda; --light-color: #fff; --light-two: #f9fafb; --hover-color: #0077ff; } /* GENERAL STYLING */ *, *::before, *::after{ margin: 0; padding: 0; box-sizing: border-box; } /* Dark Mode Modifications */ /* body{ background-color: #333; } */ body, button, input, textarea{ font-family: "Poppins", sans-serif; } a{ text-decoration: none; } ul{ list-style: none; } img{ width: 100%; } .container{ position: relative; z-index: 5; max-width: 92rem; padding: 0 4rem; margin: 0 auto; /* background-color: red; */ } .grid-2{ display: grid; grid-template-columns: repeat(2, 1fr); align-items: center; justify-content: center; } .text{ font-size: 1.25rem; color: var(--dark-one); line-height: 1.6; } .header-content .text { margin: 2.15rem 0; } .section { padding: 7rem 0; overflow: hidden; } .title { position: relative; display: inline-block; padding-bottom: 1rem; line-height: 1; font-size: 2.8rem; margin-bottom: 0.6rem; } .title:before { content: attr(data-title); display: block; margin-bottom: 0.4rem; color: var(--main-color); font-size: 1.15rem; font-weight: 500; text-transform: uppercase; letter-spacing: 3px; } .title:after { content: ""; position: absolute; width: 90px; height: 5px; border-radius: 3px; background-color: var(--main-color); bottom: 0; left: 50%; transform: translateX(-50%); } .section-header .text { max-width: 600px; margin: 0 auto; } .title-sm { color: var(--dark-one); font-weight: 600; font-size: 1.6rem; } .section-header { text-align: center; margin-bottom: 1.5rem; } /* SPECIFIC STYLING */ /* HEADER */ header{ width: 100%; background-color: var(--background-color); overflow: hidden; } nav{ width: 100%; position: relative; z-index: 50; } nav .container{ display: flex; justify-content: space-between; height: 6rem; align-items: center; } .logo{ width: 80px; display: flex; align-items: center; } .link ul{ display: flex; } .link a{ display: inline-block; padding: 0.9rem 1.2rem; color: var(--dark-one); font-size: 1.05rem; text-transform: uppercase; font-weight: 500; line-height: 1; transition: 0.3s; } .link a.active{ background-color: var(--main-color); color: var(--light-color); border-radius: 2rem; font-size: 1rem; padding: 0.9rem 2.1rem; margin-left: 1rem; } .link a:hover{ color: var(--main-color); } .link a.active:hover{ color: var(--light-color); background-color: var(--hover-color); } .header-content .container.grid-2{ grid-template-columns: 2.5fr 3.5fr; min-height: calc(100vh - 6rem); padding-bottom: 2.6rem; text-align: left; } .column-1{ margin-right: 1.5rem; } .column-2{ margin-left: 1.5rem; } .header-title{ font-size: 3.8rem; line-height: 0.8; color: var(--dark-one); } .header-content .text{ margin: 2.15rem 0; } .btn{ display: inline-block; padding: .85rem 2rem; background-color: var(--main-color); color: var(--light-color); border-radius: 2rem; font-size: 1rem; text-transform: uppercase; font-weight: 600; transition: 0.3s; } .btn:hover{ background-color: var(--hover-color); } .image-element{ border-radius: 40px; } .resume_li{ padding-left: 2rem; display: block; list-style-type: disc; line-height: 150%; font-size: 1.25rem; } /* Header Ending */ /* SkillSet */ .card{ position: relative; width: 100%; max-width: 390px; min-height: 520px; background-color: var(--background-color); display: flex; align-items: center; justify-content: center; text-align: center; padding: 3rem 2rem; overflow: hidden; border-radius: 25px; transition: 0.3s; } .cards{ display: flex; justify-content: space-around; flex-wrap: wrap; width: 100%; } .card-wrap{ margin: 1.7rem 0.8rem; } .icon{ width: 90px; margin-bottom: 1.7rem; } .card .title-sm{ line-height: 0.8; } .card .text{ font-size: 1.2rem; margin: 1.8rem 0; } .btn.small{ padding: 0.7rem 1.8rem; font-size: 1rem; } .card:before{ content: attr(data-card); position: absolute; top: 0; right: 0; font-size: 6rem; font-weight: 800; line-height: 1; color: var(--main-color); opacity: 0.1; } .card:after{ content: ""; position: absolute; width: 100%; height: 0px; bottom: 0; left: 0; background-color: var(--main-color); transition: 0.3s; } .card:hover{ transform: translateY(-15px); } .card:hover:after{ height: 8px; } .icon_python{ width: 150px; } .icon_auto{ width: 150px; } /* Skillset Ending */
0.353986
0.076236
.content_wrap .separator .separator-view-title .breadcrumb, .right_wrap .separator .separator-view-title .breadcrumb{ text-align: left; padding: 0 0 0 170px; } /* task list */ .task_list_container{ margin: 0; } .task_list_container, .task_list, .task_list_closed, .tasks_content .task, #task_lists.kanban .textilized, #task_lists.kanban .new_task .new_comment_wrap{ max-width: 100%; } #task_lists.kanban .new_task .new_comment_wrap{ width: 100%; } .tasks_content .buttons{ margin: 8px 10px; } #task_lists.kanban{ padding: 0 0 0 10px; } div.tasks{ padding: 4px 0 0; } #task_lists.kanban .task_list, #task_lists.kanban .task_list_closed{ background: rgba(255, 255, 255, 0.3); border: none; box-shadow: 0px 0px 5px 0px #666; -moz-box-shadow: 0px 0px 5px 0px #666; -webkit-box-shadow: 0px 0px 5px 0px #666; } #task_lists.kanban .button-icon{ margin: 4px 4px 0 0; } #task_lists.kanban .task_list, #task_lists.kanban .task_list_closed{ min-width: 500px; } .resolved_switch{ top: 7px; } /* nav */ .nav_links .el.selected, .nav_links .el.selected:hover{ background-color: #999; } .nav_links .el.selected a, .nav_links .el.selected:hover a{ text-shadow: none; } /* nav of note list */ .three_pane_item.active{ background-color: #aaa; color: #fff; box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3); -moz-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3); -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3); } .page_list .three_pane_item.active h3 a{ color: #fff; } /* background and wallpaper */ .content_scroll{ background: none #6bb !important; background-size: cover !important; } /* scrollbar */ ::-webkit-scrollbar{ width: 10px; } ::-webkit-scrollbar:horizontal{ height: 10px; } ::-webkit-scrollbar-track{ border-radius: 10px; -moz-border-radius: 10px; -webkit-border-radius: 10px; box-shadow: inset 0 0 8px rgba(0, 0, 0, .6); -moz-box-shadow: inset 0 0 8px rgba(0, 0, 0, .6); -webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, .6); } ::-webkit-scrollbar-thumb{ border-radius: 10px; -moz-border-radius: 10px; -webkit-border-radius: 10px; box-shadow: inset 0 0 8px rgba(66, 66, 66, .4); -moz-box-shadow: inset 0 0 8px rgba(0, 0, 0, .4); -webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, .4); }
data/usercss/87291.user.css
.content_wrap .separator .separator-view-title .breadcrumb, .right_wrap .separator .separator-view-title .breadcrumb{ text-align: left; padding: 0 0 0 170px; } /* task list */ .task_list_container{ margin: 0; } .task_list_container, .task_list, .task_list_closed, .tasks_content .task, #task_lists.kanban .textilized, #task_lists.kanban .new_task .new_comment_wrap{ max-width: 100%; } #task_lists.kanban .new_task .new_comment_wrap{ width: 100%; } .tasks_content .buttons{ margin: 8px 10px; } #task_lists.kanban{ padding: 0 0 0 10px; } div.tasks{ padding: 4px 0 0; } #task_lists.kanban .task_list, #task_lists.kanban .task_list_closed{ background: rgba(255, 255, 255, 0.3); border: none; box-shadow: 0px 0px 5px 0px #666; -moz-box-shadow: 0px 0px 5px 0px #666; -webkit-box-shadow: 0px 0px 5px 0px #666; } #task_lists.kanban .button-icon{ margin: 4px 4px 0 0; } #task_lists.kanban .task_list, #task_lists.kanban .task_list_closed{ min-width: 500px; } .resolved_switch{ top: 7px; } /* nav */ .nav_links .el.selected, .nav_links .el.selected:hover{ background-color: #999; } .nav_links .el.selected a, .nav_links .el.selected:hover a{ text-shadow: none; } /* nav of note list */ .three_pane_item.active{ background-color: #aaa; color: #fff; box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3); -moz-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3); -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3); } .page_list .three_pane_item.active h3 a{ color: #fff; } /* background and wallpaper */ .content_scroll{ background: none #6bb !important; background-size: cover !important; } /* scrollbar */ ::-webkit-scrollbar{ width: 10px; } ::-webkit-scrollbar:horizontal{ height: 10px; } ::-webkit-scrollbar-track{ border-radius: 10px; -moz-border-radius: 10px; -webkit-border-radius: 10px; box-shadow: inset 0 0 8px rgba(0, 0, 0, .6); -moz-box-shadow: inset 0 0 8px rgba(0, 0, 0, .6); -webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, .6); } ::-webkit-scrollbar-thumb{ border-radius: 10px; -moz-border-radius: 10px; -webkit-border-radius: 10px; box-shadow: inset 0 0 8px rgba(66, 66, 66, .4); -moz-box-shadow: inset 0 0 8px rgba(0, 0, 0, .4); -webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, .4); }
0.220007
0.044452
body { color: #333333; } .ns-supply-index { background-color: #FFFFFF; } .ns-goods-store { padding: 20px; } .ns-goods-store .ns-store-info { width: 100%; height: 115px; margin-top: 10px; margin-bottom: 20px; padding: 20px; background-color: #f8f8f8; display: flex; box-sizing: border-box; position: relative; } .ns-goods-store .ns-store-info .store-img { flex-shrink: 0; width: 75px; height: 75px; margin-right: 10px; } .ns-goods-store .ns-store-info .store-img img { width: 100%; height: 100%; object-fit: cover; } .ns-goods-store .ns-store-info .store-info { flex: 1; } .ns-goods-store .ns-store-info .store-name-wrap { display: flex; justify-content: space-between; align-items: center; } .ns-goods-store .ns-store-info .store-btn .layui-btn { height: 24px; line-height: 22px; padding: 0 10px; } .ns-goods-store .ns-store-info .store-intro { font-size: 12px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; margin: 7px 0 8px; color: #646566; } .ns-goods-store .ns-store-info .store-goods span { color: #969799; font-size: 12px; margin-right: 20px; } .ns-goods-store .ns-store-score { position: absolute; width: 200px; height: 115px; top: 0; right: 0; padding: 20px 30px; box-sizing: border-box; line-height: 25px; font-size: 12px; font-weight: 600; color: red; text-align: right; } .ns-goods-store .ns-store-score span { font-weight: 500; color: #646566; } .ns-goods-list { width: 100%; padding: 0 10px; box-sizing: border-box; display: flex; flex-wrap: wrap; } .ns-goods-li { width: 170px; overflow: hidden; margin-right: 32.5px; margin-bottom: 30px; } .ns-goods-li:nth-child(5n) { margin-right: 0; } .ns-goods-li .ns-goods-img { width: 100%; height: 170px; box-sizing: border-box; overflow: hidden; position: relative; } .ns-goods-li .ns-goods-img img { width: 100%; height: 100%; object-fit: cover; transition: all 1s ease-out; } .ns-goods-li .ns-goods-img .ns-goods-sale { font-size: 12px; position: absolute; bottom: 0; padding-left: 10px; width: 100%; height: 30px; line-height: 30px; background-color: rgba(0, 0, 0, 0.6); color: #c8c9cc; box-sizing: border-box; } .ns-goods-li .ns-goods-img .ns-goods-sale .sale-label { opacity: .66; } .ns-goods-li .ns-goods-img .ns-goods-sale .sale-num { display: inline-block; margin-left: 10px; color: #fff; } .ns-goods-li .ns-goods-img .hover-content { display: none; font-size: 12px; position: absolute; bottom: 0; width: 100%; height: 30px; line-height: 30px; text-align: center; background-color: #ff8143; color: #fff; font-weight: bolder; } .ns-goods-li .ns-goods-img:hover { border: 2px solid #ff8143; } .ns-goods-li .ns-goods-img:hover img { transform: scale(1.2); } .ns-goods-li .ns-goods-img:hover .hover-content { display: block; } .ns-goods-li .ns-goods-name { font-size: 12px; color: #323233; margin: 5px 0; height: 42px; } .ns-goods-li .ns-goods-name:hover { color: #ff8143; } .ns-goods-li .ns-goods-info { position: relative; } .ns-goods-li .ns-goods-info p { font-size: 12px; } .ns-goods-li .ns-goods-info p span:first-child { color: #969799; display: inline-block; } .ns-goods-li .ns-goods-info .ns-goods-profit { font-size: 15px; } .ns-goods-li .ns-goods-info p:nth-child(2) { margin-top: 5px; } .ns-goods-li .ns-goods-info p:nth-child(3) { position: absolute; right: 0; bottom: 0; cursor: pointer; }
addon/supply/shop/view/public/css/supply.css
body { color: #333333; } .ns-supply-index { background-color: #FFFFFF; } .ns-goods-store { padding: 20px; } .ns-goods-store .ns-store-info { width: 100%; height: 115px; margin-top: 10px; margin-bottom: 20px; padding: 20px; background-color: #f8f8f8; display: flex; box-sizing: border-box; position: relative; } .ns-goods-store .ns-store-info .store-img { flex-shrink: 0; width: 75px; height: 75px; margin-right: 10px; } .ns-goods-store .ns-store-info .store-img img { width: 100%; height: 100%; object-fit: cover; } .ns-goods-store .ns-store-info .store-info { flex: 1; } .ns-goods-store .ns-store-info .store-name-wrap { display: flex; justify-content: space-between; align-items: center; } .ns-goods-store .ns-store-info .store-btn .layui-btn { height: 24px; line-height: 22px; padding: 0 10px; } .ns-goods-store .ns-store-info .store-intro { font-size: 12px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; margin: 7px 0 8px; color: #646566; } .ns-goods-store .ns-store-info .store-goods span { color: #969799; font-size: 12px; margin-right: 20px; } .ns-goods-store .ns-store-score { position: absolute; width: 200px; height: 115px; top: 0; right: 0; padding: 20px 30px; box-sizing: border-box; line-height: 25px; font-size: 12px; font-weight: 600; color: red; text-align: right; } .ns-goods-store .ns-store-score span { font-weight: 500; color: #646566; } .ns-goods-list { width: 100%; padding: 0 10px; box-sizing: border-box; display: flex; flex-wrap: wrap; } .ns-goods-li { width: 170px; overflow: hidden; margin-right: 32.5px; margin-bottom: 30px; } .ns-goods-li:nth-child(5n) { margin-right: 0; } .ns-goods-li .ns-goods-img { width: 100%; height: 170px; box-sizing: border-box; overflow: hidden; position: relative; } .ns-goods-li .ns-goods-img img { width: 100%; height: 100%; object-fit: cover; transition: all 1s ease-out; } .ns-goods-li .ns-goods-img .ns-goods-sale { font-size: 12px; position: absolute; bottom: 0; padding-left: 10px; width: 100%; height: 30px; line-height: 30px; background-color: rgba(0, 0, 0, 0.6); color: #c8c9cc; box-sizing: border-box; } .ns-goods-li .ns-goods-img .ns-goods-sale .sale-label { opacity: .66; } .ns-goods-li .ns-goods-img .ns-goods-sale .sale-num { display: inline-block; margin-left: 10px; color: #fff; } .ns-goods-li .ns-goods-img .hover-content { display: none; font-size: 12px; position: absolute; bottom: 0; width: 100%; height: 30px; line-height: 30px; text-align: center; background-color: #ff8143; color: #fff; font-weight: bolder; } .ns-goods-li .ns-goods-img:hover { border: 2px solid #ff8143; } .ns-goods-li .ns-goods-img:hover img { transform: scale(1.2); } .ns-goods-li .ns-goods-img:hover .hover-content { display: block; } .ns-goods-li .ns-goods-name { font-size: 12px; color: #323233; margin: 5px 0; height: 42px; } .ns-goods-li .ns-goods-name:hover { color: #ff8143; } .ns-goods-li .ns-goods-info { position: relative; } .ns-goods-li .ns-goods-info p { font-size: 12px; } .ns-goods-li .ns-goods-info p span:first-child { color: #969799; display: inline-block; } .ns-goods-li .ns-goods-info .ns-goods-profit { font-size: 15px; } .ns-goods-li .ns-goods-info p:nth-child(2) { margin-top: 5px; } .ns-goods-li .ns-goods-info p:nth-child(3) { position: absolute; right: 0; bottom: 0; cursor: pointer; }
0.49585
0.046141
header, hgroup, nav, footer, figure, figcaption, aside, section, article { display: block; } /* Body with linear gradient background and margins */ body{ background-image: linear-gradient(#FFFFFF, #00569f); font-size: 18px; margin-left: 90px; margin-right: 90px; margin-top: 30px; margin-bottom: 150px; } /* Content with side nav left margin and text+background color */ #content { margin-left: 230px; padding-left: 50px; padding-top: 20px; background-color: white; color: #666666; font-family: Arial, Helvetica, sans-serif; } /* List with points as marker img provided */ #content > ul { list-style: inside url('marker.gif'); } /* Navigation bar with font size, padding, margin, float to left so text on right and list style none plus reduced line height */ nav ul { font-size: 1.2em; margin: 0; padding: 18px; float: left; list-style: none; line-height: 22px; } /* Nav bar with requested color for text and bold with no underlining etc */ nav a { color: rgb(0, 0, 94); text-decoration: none; font-weight: bold; } /* Header with sunset image */ header { background-image: url('sunset.jpg'); background-position: center; background-repeat: no-repeat; background-size: cover; background-size: 100%; color: white; padding-left: 10px; padding-bottom: 1px; padding-top: 1px; background-size: 100% 100% } h2 { font-family: Georgia, "Times New Roman", serif; color: #3399CC; } #contact { font-size: 90%; } dt { color: #000033; } .resort{ color: #3399CC; font-weight: bold; } /*Footer with left side nav margin and padding plus italic font */ footer { margin-left: 230px; font-family: Georgia, "Times New Roman", serif; background-color: white; padding: 20px; font-style: italic; font-size: 70%; } /* Wrapper with min height 600px and width is 70% plus background color */ #wrapper { min-width: 600px; width: 70%; background-color: #90c8e3; margin: 0 auto; } /* Image floating to left so text can be on right with margin */ img { float: left; margin-right: 30px; } p{ padding: 1px; } li{ padding-right: 10px; }
pacific.css
header, hgroup, nav, footer, figure, figcaption, aside, section, article { display: block; } /* Body with linear gradient background and margins */ body{ background-image: linear-gradient(#FFFFFF, #00569f); font-size: 18px; margin-left: 90px; margin-right: 90px; margin-top: 30px; margin-bottom: 150px; } /* Content with side nav left margin and text+background color */ #content { margin-left: 230px; padding-left: 50px; padding-top: 20px; background-color: white; color: #666666; font-family: Arial, Helvetica, sans-serif; } /* List with points as marker img provided */ #content > ul { list-style: inside url('marker.gif'); } /* Navigation bar with font size, padding, margin, float to left so text on right and list style none plus reduced line height */ nav ul { font-size: 1.2em; margin: 0; padding: 18px; float: left; list-style: none; line-height: 22px; } /* Nav bar with requested color for text and bold with no underlining etc */ nav a { color: rgb(0, 0, 94); text-decoration: none; font-weight: bold; } /* Header with sunset image */ header { background-image: url('sunset.jpg'); background-position: center; background-repeat: no-repeat; background-size: cover; background-size: 100%; color: white; padding-left: 10px; padding-bottom: 1px; padding-top: 1px; background-size: 100% 100% } h2 { font-family: Georgia, "Times New Roman", serif; color: #3399CC; } #contact { font-size: 90%; } dt { color: #000033; } .resort{ color: #3399CC; font-weight: bold; } /*Footer with left side nav margin and padding plus italic font */ footer { margin-left: 230px; font-family: Georgia, "Times New Roman", serif; background-color: white; padding: 20px; font-style: italic; font-size: 70%; } /* Wrapper with min height 600px and width is 70% plus background color */ #wrapper { min-width: 600px; width: 70%; background-color: #90c8e3; margin: 0 auto; } /* Image floating to left so text can be on right with margin */ img { float: left; margin-right: 30px; } p{ padding: 1px; } li{ padding-right: 10px; }
0.327238
0.079032
*[noclass] * { outline: 0; -webkit-tap-highlight-color: transparent; } /* HTML */ html[noclass] { position: relative; height: auto; width: auto; overflow-x: hidden; overflow-y: auto; } /* Border Box Defaults */ *[noclass] blockquote, *[noclass] footer, *[noclass] header, *[noclass] div, *[noclass] nav, *[noclass] iframe, *[noclass] section { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; -o-box-sizing: border-box; box-sizing: border-box; } *[noclass] a, *[noclass] label { cursor: pointer; } *[noclass] i, *[noclass] address, *[noclass] dfn { font-style: inherit; } /* Body */ *[noclass] body { margin: 0; position: relative; width: 100%; height: 100%; background-size: cover; background-position: center center; background-repeat: no-repeat; background-attachment: fixed; } /* Main & Main Sections */ *[noclass] main { position: relative; display: -webkit-flex; display: -ms-flexbox; display: flex; align-items: flex-start; flex-flow: column; width: 100%; } *[noclass] main > section { display: block; position: relative; width: 100%; } /* Fieldsets & Legends */ *[noclass] fieldset { border: none; padding: 0; margin-top: 0; margin-bottom: 32px; margin-bottom: calc(var(--gutter, 16px) * 2); margin-left: 0; margin-right: 0; } *[noclass] legend { margin-bottom: 32px; margin-bottom: calc(var(--gutter, 16px) * 2); } /* Iframes */ *[noclass] iframe { padding: 0; margin: 0; display: block; border: none; box-shadow: none; max-width: 100%; position: relative; } /* Figures & Figure Captions */ *[noclass] figure { margin: 0; } /* Horizontal Rules */ *[noclass] hr { background-color: rgba(0, 0, 0, 0.1); border: none; height: 2px; margin-top: 32px; margin-top: calc(var(--gutter, 16px) * 2); margin-bottom: 32px; margin-bottom: calc(var(--gutter, 16px) * 2); margin-left: auto; margin-right: auto; max-width: 100%; display: block; } /* Hidden */ *[noclass] *[hidden] { display: none !important; } /* Disabled */ *[noclass] *[disabled] { cursor: default !important; }
components/layout/layout.css
*[noclass] * { outline: 0; -webkit-tap-highlight-color: transparent; } /* HTML */ html[noclass] { position: relative; height: auto; width: auto; overflow-x: hidden; overflow-y: auto; } /* Border Box Defaults */ *[noclass] blockquote, *[noclass] footer, *[noclass] header, *[noclass] div, *[noclass] nav, *[noclass] iframe, *[noclass] section { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; -o-box-sizing: border-box; box-sizing: border-box; } *[noclass] a, *[noclass] label { cursor: pointer; } *[noclass] i, *[noclass] address, *[noclass] dfn { font-style: inherit; } /* Body */ *[noclass] body { margin: 0; position: relative; width: 100%; height: 100%; background-size: cover; background-position: center center; background-repeat: no-repeat; background-attachment: fixed; } /* Main & Main Sections */ *[noclass] main { position: relative; display: -webkit-flex; display: -ms-flexbox; display: flex; align-items: flex-start; flex-flow: column; width: 100%; } *[noclass] main > section { display: block; position: relative; width: 100%; } /* Fieldsets & Legends */ *[noclass] fieldset { border: none; padding: 0; margin-top: 0; margin-bottom: 32px; margin-bottom: calc(var(--gutter, 16px) * 2); margin-left: 0; margin-right: 0; } *[noclass] legend { margin-bottom: 32px; margin-bottom: calc(var(--gutter, 16px) * 2); } /* Iframes */ *[noclass] iframe { padding: 0; margin: 0; display: block; border: none; box-shadow: none; max-width: 100%; position: relative; } /* Figures & Figure Captions */ *[noclass] figure { margin: 0; } /* Horizontal Rules */ *[noclass] hr { background-color: rgba(0, 0, 0, 0.1); border: none; height: 2px; margin-top: 32px; margin-top: calc(var(--gutter, 16px) * 2); margin-bottom: 32px; margin-bottom: calc(var(--gutter, 16px) * 2); margin-left: auto; margin-right: auto; max-width: 100%; display: block; } /* Hidden */ *[noclass] *[hidden] { display: none !important; } /* Disabled */ *[noclass] *[disabled] { cursor: default !important; }
0.187728
0.074198
body#products { /* entire container, keeps perspective */ /* flip the pane when hovered */ /* flip speed goes here */ /* hide back of pane during swap */ /* front pane, placed above back */ /* back, initially hidden pane */ } body#products header.producthead h1 { font-size: 2rem; } body#products header.producthead .btn-request-quote, body#products header.producthead .btn-list-of-products { width: 100%; margin-bottom: 25px; } body#products .content-img { text-align: center; } body#products .content-img img { box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.3); border-radius: .25rem; width: auto; } body#products .content-img p { text-align: justify; } body#products .content-img img, body#products .content-img p, body#products .content-img form { margin-top: 15px; margin-bottom: 15px; } body#products #product-list a { width: 100%; font-size: 1rem; margin-bottom: 50px; } body#products #product-list a br { display: block; } body#products .card-container { -webkit-perspective: 800px; -moz-perspective: 800px; -o-perspective: 800px; perspective: 800px; } body#products .card-container:not(.manual-flip):hover .card, body#products .card-container.hover.manual-flip .card { -webkit-transform: rotateY(180deg); -moz-transform: rotateY(180deg); -o-transform: rotateY(180deg); transform: rotateY(180deg); } body#products .card-container.fixed:not(.manual-flip):hover .card, body#products .card-container.fixed.hover.manual-flip .card { -webkit-transform: none; -moz-transform: none; -o-transform: none; transform: none; } body#products .card-container.static:hover .card, body#products .card-container.static.hover .card { -webkit-transform: none; -moz-transform: none; -o-transform: none; transform: none; } body#products .card { -webkit-transition: -webkit-transform .5s; -moz-transition: -moz-transform .5s; -o-transition: -o-transform .5s; transition: transform .5s; -webkit-transform-style: preserve-3d; -moz-transform-style: preserve-3d; -o-transform-style: preserve-3d; transform-style: preserve-3d; position: relative; } body#products .front, body#products .back { -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; -o-backface-visibility: hidden; backface-visibility: hidden; position: absolute; top: 0; left: 0; background-color: #FFF; box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.14); } body#products .front { z-index: 2; } body#products .back { -webkit-transform: rotateY(180deg); -moz-transform: rotateY(180deg); -o-transform: rotateY(180deg); transform: rotateY(180deg); z-index: 3; } body#products .card { border-radius: 4px; color: #444444; } body#products .front[data-background="image"], body#products .back[data-background="image"] { background-size: cover; text-align: center; } body#products .front[data-background="image"] .card-body, body#products .back[data-background="image"] .card-body { position: relative; z-index: 2; min-height: 180px; padding-top: 40px; padding-bottom: 40px; max-width: 440px; margin: 0 auto; text-align: center; } body#products .card-container, body#products .front, body#products .back { width: 100%; height: 420px; border-radius: 4px; } body#products .card .content .main { min-height: 160px; } body#products #request-quote { margin-top: -40px; padding: 0; background-color: #EEE; } /* Fix bug for IE */ @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .front, .back { -ms-backface-visibility: visible; backface-visibility: visible; } .back { visibility: hidden; -ms-transition: all 0.2s cubic-bezier(0.92, 0.01, 0.83, 0.67); } .front { z-index: 4; } .card-container:not(.manual-flip):hover .back { z-index: 5; visibility: visible; } } @media (min-width: 768px) { body#products h2 { font-size: 1.4rem; } body#products .content-img img { width: 100%; } } @media (min-width: 992px) { body#products h2 { font-size: 2.25rem; } body#products header.producthead h1 { font-size: 3rem; } body#products header.producthead .btn-request-quote, body#products header.producthead .btn-list-of-products { width: 25%; display: inline-block; } body#products #product-list a { margin-bottom: 70px; } body#products #product-list a br { display: none; } body#products #request-quote { margin-top: -60px; padding-top: 40px; padding-bottom: 50px; } body#products .content-img img, body#products .content-img p, body#products .content-img form { margin-top: 25px; margin-bottom: 25px; } }
css/products.css
body#products { /* entire container, keeps perspective */ /* flip the pane when hovered */ /* flip speed goes here */ /* hide back of pane during swap */ /* front pane, placed above back */ /* back, initially hidden pane */ } body#products header.producthead h1 { font-size: 2rem; } body#products header.producthead .btn-request-quote, body#products header.producthead .btn-list-of-products { width: 100%; margin-bottom: 25px; } body#products .content-img { text-align: center; } body#products .content-img img { box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.3); border-radius: .25rem; width: auto; } body#products .content-img p { text-align: justify; } body#products .content-img img, body#products .content-img p, body#products .content-img form { margin-top: 15px; margin-bottom: 15px; } body#products #product-list a { width: 100%; font-size: 1rem; margin-bottom: 50px; } body#products #product-list a br { display: block; } body#products .card-container { -webkit-perspective: 800px; -moz-perspective: 800px; -o-perspective: 800px; perspective: 800px; } body#products .card-container:not(.manual-flip):hover .card, body#products .card-container.hover.manual-flip .card { -webkit-transform: rotateY(180deg); -moz-transform: rotateY(180deg); -o-transform: rotateY(180deg); transform: rotateY(180deg); } body#products .card-container.fixed:not(.manual-flip):hover .card, body#products .card-container.fixed.hover.manual-flip .card { -webkit-transform: none; -moz-transform: none; -o-transform: none; transform: none; } body#products .card-container.static:hover .card, body#products .card-container.static.hover .card { -webkit-transform: none; -moz-transform: none; -o-transform: none; transform: none; } body#products .card { -webkit-transition: -webkit-transform .5s; -moz-transition: -moz-transform .5s; -o-transition: -o-transform .5s; transition: transform .5s; -webkit-transform-style: preserve-3d; -moz-transform-style: preserve-3d; -o-transform-style: preserve-3d; transform-style: preserve-3d; position: relative; } body#products .front, body#products .back { -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; -o-backface-visibility: hidden; backface-visibility: hidden; position: absolute; top: 0; left: 0; background-color: #FFF; box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.14); } body#products .front { z-index: 2; } body#products .back { -webkit-transform: rotateY(180deg); -moz-transform: rotateY(180deg); -o-transform: rotateY(180deg); transform: rotateY(180deg); z-index: 3; } body#products .card { border-radius: 4px; color: #444444; } body#products .front[data-background="image"], body#products .back[data-background="image"] { background-size: cover; text-align: center; } body#products .front[data-background="image"] .card-body, body#products .back[data-background="image"] .card-body { position: relative; z-index: 2; min-height: 180px; padding-top: 40px; padding-bottom: 40px; max-width: 440px; margin: 0 auto; text-align: center; } body#products .card-container, body#products .front, body#products .back { width: 100%; height: 420px; border-radius: 4px; } body#products .card .content .main { min-height: 160px; } body#products #request-quote { margin-top: -40px; padding: 0; background-color: #EEE; } /* Fix bug for IE */ @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .front, .back { -ms-backface-visibility: visible; backface-visibility: visible; } .back { visibility: hidden; -ms-transition: all 0.2s cubic-bezier(0.92, 0.01, 0.83, 0.67); } .front { z-index: 4; } .card-container:not(.manual-flip):hover .back { z-index: 5; visibility: visible; } } @media (min-width: 768px) { body#products h2 { font-size: 1.4rem; } body#products .content-img img { width: 100%; } } @media (min-width: 992px) { body#products h2 { font-size: 2.25rem; } body#products header.producthead h1 { font-size: 3rem; } body#products header.producthead .btn-request-quote, body#products header.producthead .btn-list-of-products { width: 25%; display: inline-block; } body#products #product-list a { margin-bottom: 70px; } body#products #product-list a br { display: none; } body#products #request-quote { margin-top: -60px; padding-top: 40px; padding-bottom: 50px; } body#products .content-img img, body#products .content-img p, body#products .content-img form { margin-top: 25px; margin-bottom: 25px; } }
0.304145
0.039527
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;700&family=Merriweather:wght@300;400;700;900&display=swap"); 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, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, input, select, textarea, button, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } 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; } a { text-decoration: none; } a img, :link img, :visited img { border: 0; } :focus { outline: 0; } .clear { clear: both; } *, *::before, *::after { padding: 0; margin: 0; box-sizing: border-box; } body { background-color: gray; display: flex; } .container { width: 880px; height: 735px; background-color: white; padding: 90px 80px; font-family: "IBM Plex Sans", sans-serif; color: #1f223d; border-radius: 20px; } h1 { font-family: "Merriweather", serif; font-size: 32px; font-weight: 900; } h2 { margin-top: 40px; color: #cccccc; font-size: 16px; } .one { display: flex; margin: 20px auto; } input { width: 26px; height: 26px; border: 3px solid black; } h4 { font-weight: 500; margin-top: 3px; margin-left: 8px; } .resources { display: flex; justify-content: space-between; } .resource { margin-bottom: 20px; } .first { padding-right: 40px; } .br { width: 700px; height: 2px; background-color: #e0eaf7; } button { margin: 40px auto; width: 336px; height: 81px; color: #1f223d; font-size: 18px; font-weight: 800; } .button2 { background-color: #e0d6ff; color: black; } #cb1 { accent-color: #536784; }
day-4/main.css
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;700&family=Merriweather:wght@300;400;700;900&display=swap"); 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, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, input, select, textarea, button, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } 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; } a { text-decoration: none; } a img, :link img, :visited img { border: 0; } :focus { outline: 0; } .clear { clear: both; } *, *::before, *::after { padding: 0; margin: 0; box-sizing: border-box; } body { background-color: gray; display: flex; } .container { width: 880px; height: 735px; background-color: white; padding: 90px 80px; font-family: "IBM Plex Sans", sans-serif; color: #1f223d; border-radius: 20px; } h1 { font-family: "Merriweather", serif; font-size: 32px; font-weight: 900; } h2 { margin-top: 40px; color: #cccccc; font-size: 16px; } .one { display: flex; margin: 20px auto; } input { width: 26px; height: 26px; border: 3px solid black; } h4 { font-weight: 500; margin-top: 3px; margin-left: 8px; } .resources { display: flex; justify-content: space-between; } .resource { margin-bottom: 20px; } .first { padding-right: 40px; } .br { width: 700px; height: 2px; background-color: #e0eaf7; } button { margin: 40px auto; width: 336px; height: 81px; color: #1f223d; font-size: 18px; font-weight: 800; } .button2 { background-color: #e0d6ff; color: black; } #cb1 { accent-color: #536784; }
0.352982
0.095181
.section1 { max-height: 1002px; display: grid; background-color: #BDB6AD; } .top_pic { right: 0; position: relative; border: none; background-size: contain; max-height: 1000px; } .top_picsmall { display: none; } .tittle { padding: 25px; } .introduction h1 { margin: 40px; } .button1, .button2 { font-size: 120%; top: 100px; margin: 40px 40px; padding: 10px 20px; background-size: 200px; background-color: rgba(254, 229, 222); font-family: 'Lato', sans-serif; text-decoration: inherit; text-align: center; color: black; } .button2 { display: none; } .button1, .button2:hover { background-color: rgba(250, 203, 190); } .introduction { text-align: center; position: absolute; width: 500px; height: 200px; right: 0; top: 250px; z-index: 3; margin: 0 30px 0 auto; } /* New letter area */ .textbox { font-family: Arial, Helvetica, sans-serif; font-weight: 400; font-size: 130%; } .section3 { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 250px; } .letter { margin: 40px 20px; padding: 40px 20px; } #subscribeForm { margin: 60px 20px; padding: 40px 20px; display: grid; grid-template-columns: auto; grid-row: auto; grid-gap: 20px; } #email-subscribe { margin: 10px; background-color: white; text-align: left; padding: 8px 0px 5px; font-size: 16px; border-width: 1px; border-color: rgb(226, 226, 226); } #subscribe { margin: 10px 30px; background-color: rgba(254, 229, 222); border-radius: 5px; width: auto; font-size: 16px; padding: 8px 15px 7px 15px; } .dotLine { margin: 40px auto; } #subscribe:hover { background-color: rgba(250, 203, 190); } /* Slide show */ .slideshow { margin: 20px 0 10px 0; display: grid; grid-template-columns: minmax(60px, 1fr) 8fr minmax(60px, 1fr); grid-template-rows: 600px; } .dot { cursor: pointer; height: 12px; width: 12px; margin: 0 2px; background-color: #bbb; border-radius: 50%; display: inline-block; transition: background-color 0.6s ease; } .active, .dot:hover { background-color: #717171; } .slideshow-container { width: 100%; position: relative; margin: auto; } .mySlides { display: none; width: 100%; margin: 0; padding: 0; } .img { box-sizing: inherit; display: block; max-height: 600px; margin: auto; padding: 0; } .prev, .next { cursor: pointer; position: relative; width: 60px; color: white; font-weight: bold; transition: 0.6s ease; border-radius: 0 0 0 0; user-select: none; top: 50%; margin: auto; } .next { right: 0; } .numbertext { display: none; } .fade { -webkit-animation-name: fade; -webkit-animation-duration: 1.5s; animation-name: fade; animation-duration: 1.5s; } @-webkit-keyframes fade { from { opacity: .4 } to { opacity: 1 } } @keyframes fade { from { opacity: .4 } to { opacity: 1 } } @media screen and (max-width: 1200px) { .top_pic { width: 100%; } .img { box-sizing: inherit; width: 80%; display: block; max-height: 600px; margin: auto; padding: 0; } .section3 { grid-template-columns: 1fr 1fr; } } @media screen and (max-width: 800px) { .introduction { display: none; } .button2 { margin: 30px auto 30px; width: 50%; display: block; } .slideshow { grid-template-rows: 400px; } .letter { font-size: 80%; } #email-subscribe { padding: 8px 30px 7px 5px; } .email_input { width: 100%; margin: 50px 0; padding: 40px 0; } .dotLine { margin: 10px; } } @media screen and (max-width: 500px) { .page { padding: 0; } .top_pic { display: none; } body { width: 100%; margin: 0; min-width: 320px; } .top_picsmall { display: block; width: 100%; border: none; background-size: contain; } .slideshow { grid-template-rows: 250px; } .img { width: 100%; } .slideshow-container { width: 100%; position: relative; margin: auto; } .dotline { margin: 40px; } .letter { margin: 0; } .section3 { text-align: center; grid-template-columns: 1fr; grid-template-rows: 90px auto; } .dot { cursor: pointer; height: 10px; width: 10px; margin: 0 1.5px; } #email-subscribe { margin: 10px 20px; padding: 8px 10px 7px 5px; } #subscribeForm { margin-bottom: 30px; } }
css/home.css
.section1 { max-height: 1002px; display: grid; background-color: #BDB6AD; } .top_pic { right: 0; position: relative; border: none; background-size: contain; max-height: 1000px; } .top_picsmall { display: none; } .tittle { padding: 25px; } .introduction h1 { margin: 40px; } .button1, .button2 { font-size: 120%; top: 100px; margin: 40px 40px; padding: 10px 20px; background-size: 200px; background-color: rgba(254, 229, 222); font-family: 'Lato', sans-serif; text-decoration: inherit; text-align: center; color: black; } .button2 { display: none; } .button1, .button2:hover { background-color: rgba(250, 203, 190); } .introduction { text-align: center; position: absolute; width: 500px; height: 200px; right: 0; top: 250px; z-index: 3; margin: 0 30px 0 auto; } /* New letter area */ .textbox { font-family: Arial, Helvetica, sans-serif; font-weight: 400; font-size: 130%; } .section3 { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 250px; } .letter { margin: 40px 20px; padding: 40px 20px; } #subscribeForm { margin: 60px 20px; padding: 40px 20px; display: grid; grid-template-columns: auto; grid-row: auto; grid-gap: 20px; } #email-subscribe { margin: 10px; background-color: white; text-align: left; padding: 8px 0px 5px; font-size: 16px; border-width: 1px; border-color: rgb(226, 226, 226); } #subscribe { margin: 10px 30px; background-color: rgba(254, 229, 222); border-radius: 5px; width: auto; font-size: 16px; padding: 8px 15px 7px 15px; } .dotLine { margin: 40px auto; } #subscribe:hover { background-color: rgba(250, 203, 190); } /* Slide show */ .slideshow { margin: 20px 0 10px 0; display: grid; grid-template-columns: minmax(60px, 1fr) 8fr minmax(60px, 1fr); grid-template-rows: 600px; } .dot { cursor: pointer; height: 12px; width: 12px; margin: 0 2px; background-color: #bbb; border-radius: 50%; display: inline-block; transition: background-color 0.6s ease; } .active, .dot:hover { background-color: #717171; } .slideshow-container { width: 100%; position: relative; margin: auto; } .mySlides { display: none; width: 100%; margin: 0; padding: 0; } .img { box-sizing: inherit; display: block; max-height: 600px; margin: auto; padding: 0; } .prev, .next { cursor: pointer; position: relative; width: 60px; color: white; font-weight: bold; transition: 0.6s ease; border-radius: 0 0 0 0; user-select: none; top: 50%; margin: auto; } .next { right: 0; } .numbertext { display: none; } .fade { -webkit-animation-name: fade; -webkit-animation-duration: 1.5s; animation-name: fade; animation-duration: 1.5s; } @-webkit-keyframes fade { from { opacity: .4 } to { opacity: 1 } } @keyframes fade { from { opacity: .4 } to { opacity: 1 } } @media screen and (max-width: 1200px) { .top_pic { width: 100%; } .img { box-sizing: inherit; width: 80%; display: block; max-height: 600px; margin: auto; padding: 0; } .section3 { grid-template-columns: 1fr 1fr; } } @media screen and (max-width: 800px) { .introduction { display: none; } .button2 { margin: 30px auto 30px; width: 50%; display: block; } .slideshow { grid-template-rows: 400px; } .letter { font-size: 80%; } #email-subscribe { padding: 8px 30px 7px 5px; } .email_input { width: 100%; margin: 50px 0; padding: 40px 0; } .dotLine { margin: 10px; } } @media screen and (max-width: 500px) { .page { padding: 0; } .top_pic { display: none; } body { width: 100%; margin: 0; min-width: 320px; } .top_picsmall { display: block; width: 100%; border: none; background-size: contain; } .slideshow { grid-template-rows: 250px; } .img { width: 100%; } .slideshow-container { width: 100%; position: relative; margin: auto; } .dotline { margin: 40px; } .letter { margin: 0; } .section3 { text-align: center; grid-template-columns: 1fr; grid-template-rows: 90px auto; } .dot { cursor: pointer; height: 10px; width: 10px; margin: 0 1.5px; } #email-subscribe { margin: 10px 20px; padding: 8px 10px 7px 5px; } #subscribeForm { margin-bottom: 30px; } }
0.400984
0.140013
@import '../../styles/variables.css'; .recommend { position: relative; padding-top: 0; padding-bottom: 30px; &__wrapper { height: 200px; display: flex; @media (--mobile-viewport) { flex-direction: column; margin-bottom: 40px; } @media (--tablet-viewport) { height: 160px; } @media (--laptop-viewport) { height: 200px; } } &__left { width: 63%; height: 100%; background-color: var(--color-secondary); display: flex; flex-wrap: wrap; align-items: center; padding-left: var(--margin-container-side); @media (--mobile-viewport) { width: 100%; flex-direction: column; padding: 30px 0; } @media (--desktop-viewport) { padding-left: calc((100% - 1320px) / 2); } &__title { @media (--mobile-viewport) { font-size: 16px; line-height: 21px; font-weight: 700; text-align: center; } @media (--tablet-viewport) { font-size: 16px; line-height: 21px; font-weight: 700; } @media (--tablet-landscape-viewport) { font-size: 20px; line-height: 26px; font-weight: 700; } @media (--laptop-viewport) { font-size: 24px; line-height: 31px; font-weight: 700; } } &__img { @media (--mobile-viewport) { height: 24px; width: auto; } @media (--tablet-viewport) { margin-left: 25px; height: 24px; width: auto; } @media (--tablet-landscape-viewport) { margin-left: 45px; height: 40px; width: auto; } @media (--laptop-viewport) { margin-left: 55px; height: 40px; width: auto; } } &__award { @media (--mobile-viewport) { margin-top: 10px; font-size: 30px; line-height: 49px; font-weight: 500; & span { margin-left: 14px; } } @media (--tablet-viewport) { font-size: 30px; line-height: 49px; font-weight: 500; & span { margin-left: 14px; } } @media (--tablet-landscape-viewport) { margin-left: 24px; font-size: 40px; line-height: 65px; font-weight: 500; display: flex; align-items: center; & span { margin-left: 14px; } } @media (--laptop-viewport) { margin-left: 24px; font-size: 60px; line-height: 97px; font-weight: 500; display: flex; align-items: center; & span { padding-top: 10px; margin-left: 14px; } } } } &__right { width: 37%; height: 100%; background-color: var(--color-primary); display: flex; flex-wrap: wrap; align-items: center; padding: 0 15px; @media (--mobile-viewport) { width: 100%; flex-direction: column; } &__action { font-weight: 500; @media (--mobile-viewport) { font-size: 16px; line-height: 21px; font-weight: 700; margin: 25px 0 33px 0; text-align: center; } @media (--tablet-viewport) { font-size: 20px; line-height: 26px; margin-left: 100px; text-align: left; } @media (--laptop-viewport) { font-size: 24px; line-height: 31px; margin-left: 100px; text-align: left; } a { text-decoration: none; border-bottom: 2px solid var(--color-secondary); } } } }
src/components/RecommendEmployee/RecommendEmployee.css
@import '../../styles/variables.css'; .recommend { position: relative; padding-top: 0; padding-bottom: 30px; &__wrapper { height: 200px; display: flex; @media (--mobile-viewport) { flex-direction: column; margin-bottom: 40px; } @media (--tablet-viewport) { height: 160px; } @media (--laptop-viewport) { height: 200px; } } &__left { width: 63%; height: 100%; background-color: var(--color-secondary); display: flex; flex-wrap: wrap; align-items: center; padding-left: var(--margin-container-side); @media (--mobile-viewport) { width: 100%; flex-direction: column; padding: 30px 0; } @media (--desktop-viewport) { padding-left: calc((100% - 1320px) / 2); } &__title { @media (--mobile-viewport) { font-size: 16px; line-height: 21px; font-weight: 700; text-align: center; } @media (--tablet-viewport) { font-size: 16px; line-height: 21px; font-weight: 700; } @media (--tablet-landscape-viewport) { font-size: 20px; line-height: 26px; font-weight: 700; } @media (--laptop-viewport) { font-size: 24px; line-height: 31px; font-weight: 700; } } &__img { @media (--mobile-viewport) { height: 24px; width: auto; } @media (--tablet-viewport) { margin-left: 25px; height: 24px; width: auto; } @media (--tablet-landscape-viewport) { margin-left: 45px; height: 40px; width: auto; } @media (--laptop-viewport) { margin-left: 55px; height: 40px; width: auto; } } &__award { @media (--mobile-viewport) { margin-top: 10px; font-size: 30px; line-height: 49px; font-weight: 500; & span { margin-left: 14px; } } @media (--tablet-viewport) { font-size: 30px; line-height: 49px; font-weight: 500; & span { margin-left: 14px; } } @media (--tablet-landscape-viewport) { margin-left: 24px; font-size: 40px; line-height: 65px; font-weight: 500; display: flex; align-items: center; & span { margin-left: 14px; } } @media (--laptop-viewport) { margin-left: 24px; font-size: 60px; line-height: 97px; font-weight: 500; display: flex; align-items: center; & span { padding-top: 10px; margin-left: 14px; } } } } &__right { width: 37%; height: 100%; background-color: var(--color-primary); display: flex; flex-wrap: wrap; align-items: center; padding: 0 15px; @media (--mobile-viewport) { width: 100%; flex-direction: column; } &__action { font-weight: 500; @media (--mobile-viewport) { font-size: 16px; line-height: 21px; font-weight: 700; margin: 25px 0 33px 0; text-align: center; } @media (--tablet-viewport) { font-size: 20px; line-height: 26px; margin-left: 100px; text-align: left; } @media (--laptop-viewport) { font-size: 24px; line-height: 31px; margin-left: 100px; text-align: left; } a { text-decoration: none; border-bottom: 2px solid var(--color-secondary); } } } }
0.532668
0.08196
#content { background-color: #E5F6FF; text-align: center; font-family: Verdana, Geneva, Tahoma, sans-serif; height: 100hv; } #header { padding: 5px; height: 100px; background-color: #4545F7; text-align: center; font-family: Verdana, Geneva, Tahoma, sans-serif; } #navbar { height: 50px; } /* Estilização da DIV Footer */ #footer { position: relative; bottom: 0; width: 100%; height: 30px; } #footer p { font-family: Verdana, Geneva, Tahoma, sans-serif; color: #3D443A; font-size: 10px; } /* Estilização da tela login */ #login{ width: 40%; height: 100vh; padding: 18px 6% 60px 6%; margin: 5% 10% 60px 10%; border: 1px solid rgba(147, 184, 189, 0.8); border-radius: 5px; box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.5); display: inline; } #textForm h3 { color: #3D443A; font-weight: bold; font-family: Verdana, Geneva, Tahoma, sans-serif; } #btnFinalizar { width: 35%!important; margin-top: 30px; } #img-layout { background-image: url(.public/assets/Imagens/LogoSistema.png); background-repeat: no-repeat; opacity: 0.09; width: 600px; height: 100vh; background-position: center; } /* Estilização dos demais componentes */ h1 { font-size: 60px; color: #3D443A; font-weight: bold; font-family: Verdana, Geneva, Tahoma, sans-serif; } h4 { font-size: 20px; color: #3D443A; font-weight: bold; font-family: Verdana, Geneva, Tahoma, sans-serif; } a:link { text-decoration: none; display: block; position: relative; color: #3D443A; cursor: pointer; } a:hover { text-decoration: none; text-transform: none; text-decoration-color: none; opacity: 0.8; } a:click { text-decoration: none; text-transform: none; text-decoration-color: none; } input[type="submit"] { width: 100%!important; padding: 8px 5px; color: #fff; font-size: 20px; border: 1px solid #fff; margin-bottom: 10px; border-radius: 10px; background-color: rgb(45, 77, 75); } input[type="submit"]:hover { background-color: rgb(51, 87, 84); } select, textarea, input:not([type="checkbox"]) { margin-top: 10px; padding: 10px; border: 1px solid #b2b2b2; -webkit-border-radius: 3px; border-radius: 3px; } input:-moz-placeholder, select:-moz-placeholder, textarea:-moz-placeholder { color: #3D443A; font-style: italic; } input, select, textarea { text-decoration: none; color: #3D443A; } label, input, select, textarea { color: #3D443A; position: relative; }
public/css/style.css
#content { background-color: #E5F6FF; text-align: center; font-family: Verdana, Geneva, Tahoma, sans-serif; height: 100hv; } #header { padding: 5px; height: 100px; background-color: #4545F7; text-align: center; font-family: Verdana, Geneva, Tahoma, sans-serif; } #navbar { height: 50px; } /* Estilização da DIV Footer */ #footer { position: relative; bottom: 0; width: 100%; height: 30px; } #footer p { font-family: Verdana, Geneva, Tahoma, sans-serif; color: #3D443A; font-size: 10px; } /* Estilização da tela login */ #login{ width: 40%; height: 100vh; padding: 18px 6% 60px 6%; margin: 5% 10% 60px 10%; border: 1px solid rgba(147, 184, 189, 0.8); border-radius: 5px; box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.5); display: inline; } #textForm h3 { color: #3D443A; font-weight: bold; font-family: Verdana, Geneva, Tahoma, sans-serif; } #btnFinalizar { width: 35%!important; margin-top: 30px; } #img-layout { background-image: url(.public/assets/Imagens/LogoSistema.png); background-repeat: no-repeat; opacity: 0.09; width: 600px; height: 100vh; background-position: center; } /* Estilização dos demais componentes */ h1 { font-size: 60px; color: #3D443A; font-weight: bold; font-family: Verdana, Geneva, Tahoma, sans-serif; } h4 { font-size: 20px; color: #3D443A; font-weight: bold; font-family: Verdana, Geneva, Tahoma, sans-serif; } a:link { text-decoration: none; display: block; position: relative; color: #3D443A; cursor: pointer; } a:hover { text-decoration: none; text-transform: none; text-decoration-color: none; opacity: 0.8; } a:click { text-decoration: none; text-transform: none; text-decoration-color: none; } input[type="submit"] { width: 100%!important; padding: 8px 5px; color: #fff; font-size: 20px; border: 1px solid #fff; margin-bottom: 10px; border-radius: 10px; background-color: rgb(45, 77, 75); } input[type="submit"]:hover { background-color: rgb(51, 87, 84); } select, textarea, input:not([type="checkbox"]) { margin-top: 10px; padding: 10px; border: 1px solid #b2b2b2; -webkit-border-radius: 3px; border-radius: 3px; } input:-moz-placeholder, select:-moz-placeholder, textarea:-moz-placeholder { color: #3D443A; font-style: italic; } input, select, textarea { text-decoration: none; color: #3D443A; } label, input, select, textarea { color: #3D443A; position: relative; }
0.263126
0.109658
@import url('https://fonts.googleapis.com/css?family=Cinzel'); #fbGalleryContainer{ width: 100%; height: 100%; overflow-x: hidden; background: url("bg-low.jpg"); background-attachment: fixed; background-size: cover; background-repeat: no-repeat; z-index: 1; } #fbGalleryLoader{ position: relative; width: 100%; height: inherit; min-height: 100vh; background: url("bg-low.jpg"); background-attachment: fixed; background-size: cover; background-repeat: no-repeat; z-index:50; } #fbGalleryLoader .container{ position: absolute; width:100%; height: 100%; } #fbGalleryLoader .contentWrap{ position: relative; width: 100%; height: 100%; } #fbGalleryLoader .loaderContent{ height: 75px; width: 100px; position: absolute; top: 0; bottom: 0; left: 0; right: 0; margin: auto; text-align: center; font-size: 30px; color: #FFF; } #fbGalleryLoader .loaderContent i{ font-size: 40px; } #fbGalleryContainer .albumHeader{ width: 90%; border-bottom: 2px solid rgba(255,255,255,0.8); text-align: center; margin: 10px auto; left: 0; right: 0; font-size: 30px; font-family: 'Cinzel', serif; color:rgba(255,255,255,0.9); } #fbGalleryContainer .albumHeader span.albumSubHeader{ font-size:14px; font-style: italic; margin-top:0px; display: block; } #fbGalleryContainer .albumHeader a{ font:inherit; color:inherit; text-decoration: none; } #fbGalleryContainer .row{ position: relative; z-index: 2; } #fbGalleryContainer .photosContainer{ background: transparent; width: 100%; text-align: center; box-sizing: border-box; margin:10px auto; padding:10px; } #fbGalleryContainer .photosContainer .grid-sizer{ width:calc(100%/5); } #fbGalleryContainer .photosContainer .imageBox{ box-sizing:border-box; text-align: center; width: calc(95%/5); height: auto; margin-bottom:6px; border-radius:3px; box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.5); } @media all and (max-width:768px){ #fbGalleryContainer .photosContainer .grid-sizer{ width: calc(100%/3); } #fbGalleryContainer .photosContainer .imageBox{ width: calc(93%/3); } #fbGalleryContainer .albumHeader{ font-size: 25px; } #fbGalleryContainer .albumHeader span.albumSubHeader{ font-size: 8px; } } @media all and (max-width:400px){ #fbGalleryContainer .photosContainer .grid-sizer{ width: calc(100%/2); } #fbGalleryContainer .photosContainer .imageBox{ width: calc(92%/2); } #fbGalleryContainer .albumHeader{ font-size: 20px; } } #fbGalleryContainer .photosContainer .imageBox a>img{ vertical-align: middle; width: 100%; height: auto; display: none; transition: all 0.5s; background-repeat: no-repeat; } #fbGalleryContainer .photosContainer .imageBox:hover a>img, #fbGalleryContainer .photosContainer .imageBox:active a>img, #fbGalleryContainer .photosContainer .imageBox:focus a>img{ transform: scale(1.02); box-shadow: 0px 0px 10px 1px #000; } #lightbox{ position: fixed; width: 100%; height: 100%; top:0;left: 0; text-align: center; z-index:9999; background: rgba(0,0,0,0.5); } #lightbox .wrapper{ position: relative; width: 100%; height: 100%; } #lightbox .content{ max-width: 90%; max-height: 90%; position: absolute; margin: auto; top: 0; bottom: 0; left: 0; right: 0; text-align: center; } #lightbox .content .topbar{ position: absolute; top:7px;right:7px; width:40px; color: rgba(0,0,0,0.5); background: rgba(255,255,255,0.2); } #lightbox .content .topbar i.fa{ font-size:40px; cursor: pointer; } #lightbox .content .topbar i.fa:hover, #lightbox .content .topbar i.fa:active, #lightbox .content .topbar i.fa:focus{ color:rgba(0,0,0,0.9); } #lightbox .content .imageContainer{ width: 100%; height: 100%; } #lightbox .content .imageContainer img{ position: absolute; max-width: 98%; max-height: 98%; margin:auto; left: 0; right: 0; bottom: 0; top:0; box-sizing: border-box; box-shadow: 0 0 12px 3px #FFF; } #lightbox .content .link{ color: #FFF; text-decoration: none; font-size: 15px; display: block; background: #000; padding: 5px; font-family: 'Cinzel', serif; } #lightbox .content a{ text-decoration: none; } #lightbox .content .link:hover, #lightbox .content .link:focus, #lightbox .content .link:active{ background: rgba(0,0,0,0.8); }
css/fbgallery.css
@import url('https://fonts.googleapis.com/css?family=Cinzel'); #fbGalleryContainer{ width: 100%; height: 100%; overflow-x: hidden; background: url("bg-low.jpg"); background-attachment: fixed; background-size: cover; background-repeat: no-repeat; z-index: 1; } #fbGalleryLoader{ position: relative; width: 100%; height: inherit; min-height: 100vh; background: url("bg-low.jpg"); background-attachment: fixed; background-size: cover; background-repeat: no-repeat; z-index:50; } #fbGalleryLoader .container{ position: absolute; width:100%; height: 100%; } #fbGalleryLoader .contentWrap{ position: relative; width: 100%; height: 100%; } #fbGalleryLoader .loaderContent{ height: 75px; width: 100px; position: absolute; top: 0; bottom: 0; left: 0; right: 0; margin: auto; text-align: center; font-size: 30px; color: #FFF; } #fbGalleryLoader .loaderContent i{ font-size: 40px; } #fbGalleryContainer .albumHeader{ width: 90%; border-bottom: 2px solid rgba(255,255,255,0.8); text-align: center; margin: 10px auto; left: 0; right: 0; font-size: 30px; font-family: 'Cinzel', serif; color:rgba(255,255,255,0.9); } #fbGalleryContainer .albumHeader span.albumSubHeader{ font-size:14px; font-style: italic; margin-top:0px; display: block; } #fbGalleryContainer .albumHeader a{ font:inherit; color:inherit; text-decoration: none; } #fbGalleryContainer .row{ position: relative; z-index: 2; } #fbGalleryContainer .photosContainer{ background: transparent; width: 100%; text-align: center; box-sizing: border-box; margin:10px auto; padding:10px; } #fbGalleryContainer .photosContainer .grid-sizer{ width:calc(100%/5); } #fbGalleryContainer .photosContainer .imageBox{ box-sizing:border-box; text-align: center; width: calc(95%/5); height: auto; margin-bottom:6px; border-radius:3px; box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.5); } @media all and (max-width:768px){ #fbGalleryContainer .photosContainer .grid-sizer{ width: calc(100%/3); } #fbGalleryContainer .photosContainer .imageBox{ width: calc(93%/3); } #fbGalleryContainer .albumHeader{ font-size: 25px; } #fbGalleryContainer .albumHeader span.albumSubHeader{ font-size: 8px; } } @media all and (max-width:400px){ #fbGalleryContainer .photosContainer .grid-sizer{ width: calc(100%/2); } #fbGalleryContainer .photosContainer .imageBox{ width: calc(92%/2); } #fbGalleryContainer .albumHeader{ font-size: 20px; } } #fbGalleryContainer .photosContainer .imageBox a>img{ vertical-align: middle; width: 100%; height: auto; display: none; transition: all 0.5s; background-repeat: no-repeat; } #fbGalleryContainer .photosContainer .imageBox:hover a>img, #fbGalleryContainer .photosContainer .imageBox:active a>img, #fbGalleryContainer .photosContainer .imageBox:focus a>img{ transform: scale(1.02); box-shadow: 0px 0px 10px 1px #000; } #lightbox{ position: fixed; width: 100%; height: 100%; top:0;left: 0; text-align: center; z-index:9999; background: rgba(0,0,0,0.5); } #lightbox .wrapper{ position: relative; width: 100%; height: 100%; } #lightbox .content{ max-width: 90%; max-height: 90%; position: absolute; margin: auto; top: 0; bottom: 0; left: 0; right: 0; text-align: center; } #lightbox .content .topbar{ position: absolute; top:7px;right:7px; width:40px; color: rgba(0,0,0,0.5); background: rgba(255,255,255,0.2); } #lightbox .content .topbar i.fa{ font-size:40px; cursor: pointer; } #lightbox .content .topbar i.fa:hover, #lightbox .content .topbar i.fa:active, #lightbox .content .topbar i.fa:focus{ color:rgba(0,0,0,0.9); } #lightbox .content .imageContainer{ width: 100%; height: 100%; } #lightbox .content .imageContainer img{ position: absolute; max-width: 98%; max-height: 98%; margin:auto; left: 0; right: 0; bottom: 0; top:0; box-sizing: border-box; box-shadow: 0 0 12px 3px #FFF; } #lightbox .content .link{ color: #FFF; text-decoration: none; font-size: 15px; display: block; background: #000; padding: 5px; font-family: 'Cinzel', serif; } #lightbox .content a{ text-decoration: none; } #lightbox .content .link:hover, #lightbox .content .link:focus, #lightbox .content .link:active{ background: rgba(0,0,0,0.8); }
0.380644
0.061003
@tailwind base; /* Write your own custom base styles here */ /* Start purging... */ @tailwind components; /* Stop purging. */ html, body { @apply bg-gray-50 dark:bg-gray-900; } /* Write your own custom component styles here */ .btn-blue { @apply px-4 py-2 font-bold text-white bg-blue-500 rounded; } /* Start purging... */ @tailwind utilities; /* Stop purging. */ /* Your own custom utilities */ .nav-bar { background-color: #468189; width: 200px; } .main-container { margin-left: 200px; } .text-footer { color: rgb(213 213 213); } .bg-black { background-color: rgb(27,27,26) !important; } .footer-link { transition: color 0.4s ease 0s; } .footer-link:hover { color: rgb(87,86,86) !important; } .mobile-menu { position: fixed; top: 10px; right: 10px; z-index: 200; } .toggle { outline: 0; border: 0; display: inline-block; background-color: transparent; background-image: none; vertical-align: middle; text-align: center; white-space: nowrap; cursor: pointer; touch-action: manipulation; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; padding: 30px; margin-left: auto; } .toggle:focus { outline: none; } .toggle .icon:before { top: -8px; } .toggle.active .icon:before { transform: translateY(8px) rotate(45deg); } .toggle .icon:after { top: 8px; } .toggle.active .icon:after { transform: translateY(-8px) rotate(-45deg); } .toggle .icon:after, .toggle .icon:before { position: absolute; content: ''; } .toggle .icon, .toggle .icon:after, .toggle .icon:before { display: block; width: 24px; height: 3px; transition: background-color .3s linear,transform .3s linear; background-color: white; } .toggle .icon { position: relative; margin-top: 8px; margin-bottom: 8px; } .toggle.active .icon { background-color: transparent; } .mobile-nav-menu { display: none; z-index: 50; } .mobile-nav-menu.open { display: block; } @media (max-width: 767px) { .main-container { margin-left: 0; } }
styles/index.css
@tailwind base; /* Write your own custom base styles here */ /* Start purging... */ @tailwind components; /* Stop purging. */ html, body { @apply bg-gray-50 dark:bg-gray-900; } /* Write your own custom component styles here */ .btn-blue { @apply px-4 py-2 font-bold text-white bg-blue-500 rounded; } /* Start purging... */ @tailwind utilities; /* Stop purging. */ /* Your own custom utilities */ .nav-bar { background-color: #468189; width: 200px; } .main-container { margin-left: 200px; } .text-footer { color: rgb(213 213 213); } .bg-black { background-color: rgb(27,27,26) !important; } .footer-link { transition: color 0.4s ease 0s; } .footer-link:hover { color: rgb(87,86,86) !important; } .mobile-menu { position: fixed; top: 10px; right: 10px; z-index: 200; } .toggle { outline: 0; border: 0; display: inline-block; background-color: transparent; background-image: none; vertical-align: middle; text-align: center; white-space: nowrap; cursor: pointer; touch-action: manipulation; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; padding: 30px; margin-left: auto; } .toggle:focus { outline: none; } .toggle .icon:before { top: -8px; } .toggle.active .icon:before { transform: translateY(8px) rotate(45deg); } .toggle .icon:after { top: 8px; } .toggle.active .icon:after { transform: translateY(-8px) rotate(-45deg); } .toggle .icon:after, .toggle .icon:before { position: absolute; content: ''; } .toggle .icon, .toggle .icon:after, .toggle .icon:before { display: block; width: 24px; height: 3px; transition: background-color .3s linear,transform .3s linear; background-color: white; } .toggle .icon { position: relative; margin-top: 8px; margin-bottom: 8px; } .toggle.active .icon { background-color: transparent; } .mobile-nav-menu { display: none; z-index: 50; } .mobile-nav-menu.open { display: block; } @media (max-width: 767px) { .main-container { margin-left: 0; } }
0.349644
0.045713
body{ background-color: rgb(245, 243, 243); } img{ width: 100%; } .logo{ width: 20%; } .navbar.navbar-light .breadcrumb .nav-item .nav-link, .navbar.navbar-light .navbar-nav .nav-item .nav-link{ color: rgb(240, 77, 1); font-weight: bolder; background-color: rgb(17, 6, 63); margin: 3px; padding-top: 2px; padding-bottom: 2px; border-radius: 10px; transition: 0.5s; } .navbar.navbar-light .navbar-nav .nav-item .nav-link:hover{ color: aliceblue; transform:translateY(10px); } .col-md-3{ margin-bottom: 10; height: 10%; } .container .row{ width: 90%; height: 20%; } .container_article{ margin: 10%; height : 20%; } .row{ height: 20%; margin: 2%; } .hovereffect { width: 100%; height: 100%; float: left; overflow: hidden; position: relative; text-align: center; cursor: default; } .hovereffect .overlay { position: absolute; overflow: hidden; width: 80%; height: 80%; left: 10%; top: 10%; border-bottom: 1px solid #FFF; border-top: 1px solid #FFF; -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; -webkit-transform: scale(0,1); -ms-transform: scale(0,1); transform: scale(0,1); } .hovereffect:hover .overlay { opacity: 1; filter: alpha(opacity=100); -webkit-transform: scale(1); -ms-transform: scale(1); transform: scale(1); } .hovereffect img { width: 100%; height: 100%; border-radius: 2%; -webkit-transition: all 0.35s; transition: all 0.35s; } .hovereffect:hover img { filter: brightness(0.6); -webkit-filter: brightness(0.6); } .hovereffect h2 { text-transform: uppercase; text-align: center; position: relative; font-size: 17px; background-color: transparent; color: #FFF; padding: 1em 0; opacity: 0; filter: alpha(opacity=0); -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; -webkit-transform: translate3d(0,-100%,0); transform: translate3d(0,-100%,0); } .hovereffect p, .hovereffect p { color: #FFF; padding: 1em 0; opacity: 0; filter: alpha(opacity=0); -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; /* -webkit-transform: translate3d(0,100%,0); */ /* transform: translate3d(0,100%,0); */ } .hovereffect:hover p, .hovereffect:hover p, .hovereffect:hover h2 { opacity: 1; filter: alpha(opacity=100); -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); } #my_nav{ background: rgba(0,0,0, 0.2); padding: 3px; z-index: 3; } #carouselExampleInterval{ margin-top: -38px; } #header_1{ margin: 10px; } #lien_header_1{ color: rgb(17, 6, 63); font-weight: bolder; background-color:rgb(214, 70, 3); margin: 3px; margin-right: -20px; padding: 6px; padding-bottom: 2px; border-radius: 10px; transition: 0.5s; } #lien_header_2{ color: rgb(17, 6, 63); font-weight: bolder; background-color:rgb(214, 70, 3); margin: 3x; padding: 5px; padding-bottom: 2px; padding-right: 6px; border-radius: 10px; transition: 0.5s; } #lien_header_3{ color: rgb(214, 70, 3); font-weight: bolder; background-color:rgb(17, 6, 63); margin: 3x; padding: 5px; padding-bottom: 2px; padding-left: 8px; border-radius: 10px; transition: 0.5s; } #sama_footer{ padding: 20px; padding-bottom: 20px; color: rgb(214, 70, 3); } hr{ background: rgb(214, 70, 3); } .thead-dark{ background-color: rgb(17, 6, 63); color: rgb(214, 70, 3); } #header_1b{ margin: 10px; background-color: rgba(0, 0, 0,0.2); } #logo_a{ z-index: 10; } #clo_ora{ color:rgb(17, 6, 63); } #login{ color: rgb(240, 77, 1); font-weight: bolder; background-color: rgb(17, 6, 63); margin: 3px; padding-top: 2px; padding-bottom: 2px; border-radius: 10px; transition: 0.5s; }
style/style.css
body{ background-color: rgb(245, 243, 243); } img{ width: 100%; } .logo{ width: 20%; } .navbar.navbar-light .breadcrumb .nav-item .nav-link, .navbar.navbar-light .navbar-nav .nav-item .nav-link{ color: rgb(240, 77, 1); font-weight: bolder; background-color: rgb(17, 6, 63); margin: 3px; padding-top: 2px; padding-bottom: 2px; border-radius: 10px; transition: 0.5s; } .navbar.navbar-light .navbar-nav .nav-item .nav-link:hover{ color: aliceblue; transform:translateY(10px); } .col-md-3{ margin-bottom: 10; height: 10%; } .container .row{ width: 90%; height: 20%; } .container_article{ margin: 10%; height : 20%; } .row{ height: 20%; margin: 2%; } .hovereffect { width: 100%; height: 100%; float: left; overflow: hidden; position: relative; text-align: center; cursor: default; } .hovereffect .overlay { position: absolute; overflow: hidden; width: 80%; height: 80%; left: 10%; top: 10%; border-bottom: 1px solid #FFF; border-top: 1px solid #FFF; -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; -webkit-transform: scale(0,1); -ms-transform: scale(0,1); transform: scale(0,1); } .hovereffect:hover .overlay { opacity: 1; filter: alpha(opacity=100); -webkit-transform: scale(1); -ms-transform: scale(1); transform: scale(1); } .hovereffect img { width: 100%; height: 100%; border-radius: 2%; -webkit-transition: all 0.35s; transition: all 0.35s; } .hovereffect:hover img { filter: brightness(0.6); -webkit-filter: brightness(0.6); } .hovereffect h2 { text-transform: uppercase; text-align: center; position: relative; font-size: 17px; background-color: transparent; color: #FFF; padding: 1em 0; opacity: 0; filter: alpha(opacity=0); -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; -webkit-transform: translate3d(0,-100%,0); transform: translate3d(0,-100%,0); } .hovereffect p, .hovereffect p { color: #FFF; padding: 1em 0; opacity: 0; filter: alpha(opacity=0); -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; /* -webkit-transform: translate3d(0,100%,0); */ /* transform: translate3d(0,100%,0); */ } .hovereffect:hover p, .hovereffect:hover p, .hovereffect:hover h2 { opacity: 1; filter: alpha(opacity=100); -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); } #my_nav{ background: rgba(0,0,0, 0.2); padding: 3px; z-index: 3; } #carouselExampleInterval{ margin-top: -38px; } #header_1{ margin: 10px; } #lien_header_1{ color: rgb(17, 6, 63); font-weight: bolder; background-color:rgb(214, 70, 3); margin: 3px; margin-right: -20px; padding: 6px; padding-bottom: 2px; border-radius: 10px; transition: 0.5s; } #lien_header_2{ color: rgb(17, 6, 63); font-weight: bolder; background-color:rgb(214, 70, 3); margin: 3x; padding: 5px; padding-bottom: 2px; padding-right: 6px; border-radius: 10px; transition: 0.5s; } #lien_header_3{ color: rgb(214, 70, 3); font-weight: bolder; background-color:rgb(17, 6, 63); margin: 3x; padding: 5px; padding-bottom: 2px; padding-left: 8px; border-radius: 10px; transition: 0.5s; } #sama_footer{ padding: 20px; padding-bottom: 20px; color: rgb(214, 70, 3); } hr{ background: rgb(214, 70, 3); } .thead-dark{ background-color: rgb(17, 6, 63); color: rgb(214, 70, 3); } #header_1b{ margin: 10px; background-color: rgba(0, 0, 0,0.2); } #logo_a{ z-index: 10; } #clo_ora{ color:rgb(17, 6, 63); } #login{ color: rgb(240, 77, 1); font-weight: bolder; background-color: rgb(17, 6, 63); margin: 3px; padding-top: 2px; padding-bottom: 2px; border-radius: 10px; transition: 0.5s; }
0.354321
0.074534
@CHARSET "ISO-8859-1"; @import url(https://fonts.googleapis.com/css?family=Merriweather:400,300,400italic,700,700italic); @font-face { font-family:'AkkuratPro-Light'; src: url('fonts/AkkuratPro-Light/AkkuratPro-Light_gdi_eot'); src: url('fonts/AkkuratPro-Light/AkkuratPro-Light_gdi_eot?#iefix') format('embedded-opentype'), url('fonts/AkkuratPro-Light/AkkuratPro-Light_gdi_woff') format('woff'), url('fonts/AkkuratPro-Light/AkkuratPro-Light_gdi_ttf') format('truetype'), url('fonts/AkkuratPro-Light/AkkuratPro-Light_gdi.otf') format('opentype'), url('fonts/AkkuratPro-Light/AkkuratPro-Light_gdi_svg') format('svg'); font-weight: 300; font-style: normal; font-stretch: normal; unicode-range: U+0020-25CA; } @font-face { font-family:'AkkuratPro-LightItalic'; src: url('fonts/AkkuratPro-LightItalic/AkkuratPro-LightItalic_gdi_eot'); src: url('fonts/AkkuratPro-LightItalic/AkkuratPro-LightItalic_gdi_eot?#iefix') format('embedded-opentype'), url('fonts/AkkuratPro-LightItalic/AkkuratPro-LightItalic_gdi_woff') format('woff'), url('fonts/AkkuratPro-LightItalic/AkkuratPro-LightItalic_gdi_ttf') format('truetype'), url('fonts/AkkuratPro-LightItalic/AkkuratPro-LightItalic_gdi.otf') format('opentype'), url('fonts/AkkuratPro-LightItalic/AkkuratPro-LightItalic_gdi_svg') format('svg'); font-weight: 300; font-style: italic; font-stretch: normal; unicode-range: U+0020-25CA; } @font-face { font-family:'Akkurat-Bold'; src: url('fonts/AkkuratPro-Bold/Akkurat-Bold_gdi_eot'); src: url('fonts/AkkuratPro-Bold/Akkurat-Bold_gdi_eot?#iefix') format('embedded-opentype'), url('fonts/AkkuratPro-Bold/Akkurat-Bold_gdi_woff') format('woff'), url('fonts/AkkuratPro-Bold/Akkurat-Bold_gdi_ttf') format('truetype'), url('fonts/AkkuratPro-Bold/Akkurat-Bold_gdi.otf') format('opentype'), url('fonts/AkkuratPro-Bold/Akkurat-Bold_gdi_svg') format('svg'); font-weight: 700; font-style: normal; font-stretch: normal; unicode-range: U+0020-25CA; } @font-face { font-family:'AkkuratPro-BoldItalic'; src: url('fonts/AkkuratPro-BoldItalic/AkkuratPro-BoldItalic_gdi_eot'); src: url('fonts/AkkuratPro-BoldItalic/AkkuratPro-BoldItalic_gdi_eot?#iefix') format('embedded-opentype'), url('fonts/AkkuratPro-BoldItalic/AkkuratPro-BoldItalic_gdi_woff') format('woff'), url('fonts/AkkuratPro-BoldItalic/AkkuratPro-BoldItalic_gdi_ttf') format('truetype'), url('fonts/AkkuratPro-BoldItalic/AkkuratPro-BoldItalic_gdi.otf') format('opentype'), url('fonts/AkkuratPro-BoldItalic/AkkuratPro-BoldItalic_gdi_svg') format('svg'); font-weight: 700; font-style: italic; font-stretch: normal; unicode-range: U+0020-25CA; } @media only screen and (max-width : 1200px) { #section0-image { width: 55%; position: relative; top: 40vh; } } /* desktop */ @media only screen and (min-width : 979px) { #infoMenu{ height: 20px; color: #f2f2f2; position:fixed; z-index:100; top:0px; width:100%; text-align:right; font-size:0.9em; /*padding:8px 0 8px 0;*/ } .section h1 { font-size: 5em; } .section h2 { width: 50%; font-size: 15px; } #section0-image { width: 55%; position: relative; top: 40vh; } #section1-image { width: 25%; position: relative; top: 35vh; } #medickitbutton { font-size: 0.8em; } .navbar-default .navbar-nav>li>a { color: #ffffff !important; } } /* phone portrait or iPad */ @media only screen and (max-width : 768px) { #infoMenu{ height: 20px; color: #f2f2f2; position:fixed; z-index:100; top:0px; width:100%; text-align:right; } .section h1 { font-size: 3em; } .section h2 { width: 70%; font-size: 10px; } #section0-image { width: 55%; position: relative; top: 45vh; } #section1-image { width: 25%; position: relative; top: 35vh; } #medickitbutton { font-size: 0.7em; } .navbar-default .navbar-nav>li>a { color: #ffffff !important; } } @media only screen and (max-width : 480px) { .section h1 { font-size: 3em; } .section h2{ width: 70%; font-size: 7px; } .navbar-default .navbar-nav>li>a { text-align: center; padding: 10px 0px; } #section0-image { width: 85%; position: relative; top: 45vh; } #section1-image { width: 55%; position: relative; top: 35vh; } #medickitbutton { font-size: 0.5em; } .navbar-default .navbar-nav>li>a { color: #a8a8a8 !important; background-color: rgba(255,255,255,0.95) !important; } #infoMenu li a:hover:after { width: 100%; left: 0; background: #a8a8a8 !important; } #infoMenu li a:after { content: ''; height: 0.5px; bottom: -0.5px; position: absolute; left: 50%; width: 0; transition: 0.3s all ease-in-out; } } #fp-nav ul li a span, .fp-slidesNav ul li a span { background: #ffffff !important; } /* Top Nav Menu Hover */ #infoMenu li a:hover:after { width: 100%; left: 0; background: #ffffff; } #infoMenu li a:after { content: ''; height: 1px; bottom: -1px; position: absolute; left: 50%; width: 0; transition: 0.3s all ease-in-out; } .section-one { background: #6ed3c2; } .tocenter { margin:0 auto; display: inline; } #project-title { font-family:AkkuratPro-Light, 'Arial', sans-serif; font-weight:100; color: #000000; } #project-brief { font-family: Elena-Regular, 'Georgia', 'Times New Roman', serif; color: #000000; } /* Style for our header texts * --------------------------------------- */ .section h1{ font-family:Akkurat-Bold, 'Arial', sans-serif; font-weight:700; line-height:auto; color: #fff; margin:0; padding:0; position: relative; /*top: -35vh;*/ top: 25vh; } .section h2{ font-family: 'Merriweather', 'Georgia', 'Times New Roman', serif; /*font-family: Elena-Regular, 'Georgia', 'Times New Roman', serif;*/ font-weight: 300; line-height: 1.5; color: #ffffff; position: relative; top: 27vh; text-align: center; margin: auto; font-size: 18px; } /* Centered texts in each section * --------------------------------------- */ .section{ text-align:center; } /* Backgrounds will cover all the section * --------------------------------------- */ #section0, #section1, #section2, #section3{ background-size: cover; } /* Defining each sectino background and styles * --------------------------------------- */ #section0{ background: #a8a8a8; /*padding: 10% 0 0 0;*/ } #section1{ background: #cbe096; } #section2{ background: #d1814a; /*padding: 6% 0 0 0;*/ } #section3{ background: #141821; } /*#section3 h1{ color: #000; }*/ /* Bottom menu * --------------------------------------- */ #infoMenu li a { color: #fff; font-size: 1.5vh; font-family:AkkuratPro-Light, 'Arial', sans-serif; } /* BUTTON CSS ------------------------------------------- */ #medickitbutton { font-family:AkkuratPro-Light, 'Arial', sans-serif; position: relative; top: 30vh; display: inline-block; text-decoration: none; text-transform: uppercase; color: #ffffff; border: 2px solid white; padding: 8px 15px; background-size: 200% 100%; background-image: linear-gradient(to right, transparent 50%, #ffffff 50%); -webkit-transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .7s ease .1s; transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .7s ease .1s; } #medickitbutton:hover { color: #a8a8a8; } a.button:hover{ color:rgba(255, 255, 255, 1); background-position: -100% 100%; } b { font-family:Akkurat-Bold; } /* Toggle button color */ .navbar-default .navbar-toggle { border-color: transparent !important; } .navbar-default .navbar-toggle .icon-bar { background-color: #ffffff !important; } .navbar-default .navbar-collapse, .navbar-default .navbar-form { border: 0 !important; } .navbar-collapse { border: 0 !important; -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0) !important; box-shadow: inset 0 1px 0 rgba(255,255,255,0) !important; border-top: 0 !important; } /*.navbar-default .navbar-collapse { background: rgba(18,17,15,0.4); }*/ .navbar { border: none; margin-bottom: 0 !important; border-radius: 0 !important; } .navbar, .navbar-default { background-color: transparent !important; border: none !important; } .navbar-default .navbar-nav>li>a { -webkit-transition: color,0.6s,ease-in; -moz-transition: color,0.6s,ease-in; transition: color,0.6s,ease-in; } /* Reset CSS * --------------------------------------- */ body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre, form,fieldset,input,textarea,p,blockquote,th,td { padding: 0; margin: 0; } a{ text-decoration:none; } table { border-spacing: 0; } fieldset,img { border: 0; } address,caption,cite,code,dfn,em,strong,th,var { font-weight: normal; font-weight: normal; } strong{ font-weight: bold; } ol,ul { list-style: none; margin:0; padding:0; } caption,th { text-align: left; } h1,h2,h3,h4,h5,h6 { font-weight: normal; font-size: 100%; margin:0; padding:0; color:#444; } q:before,q:after { content:''; } abbr,acronym { border: 0; } /* Custom CSS * --------------------------------------- */ body{ font-family: arial,helvetica; color: #333; color: rgba(0,0,0,0.5); } .wrap{ margin-left: auto; margin-right: auto; width: 960px; position: relative; } h1{ font-size: 6em; } p{ font-size: 2em; } .intro p{ width: 50%; margin: 0 auto; font-size: 1.5em; } .section{ text-align:center; } #menu li { display:inline-block; margin: 10px; color: #000; background:#fff; background: rgba(255,255,255, 0.5); -webkit-border-radius: 10px; border-radius: 10px; } #menu li.active{ background:#666; background: rgba(0,0,0, 0.5); color: #fff; } #menu li a{ text-decoration:none; color: #000; } #menu li.active a:hover{ color: #000; } #menu li:hover{ background: rgba(255,255,255, 0.8); } #menu li a, #menu li.active a{ padding: 9px 18px; display:block; } #menu li.active a{ color: #fff; } #menu{ position:fixed; top:0; left:0; height: 40px; z-index: 70; width: 100%; padding: 0; margin:0; } .twitter-share-button{ position: fixed; z-index: 99; right: 149px; top: 9px; } #download{ margin: 10px 0 0 0; padding: 15px 10px; color: #fff; text-shadow: 0 -1px 0 rgba(0,0,0,0.25); background-color: #49afcd; background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4); background-image: -ms-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(top, #5bc0de, #2f96b4); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0); border-color: #2f96b4 #2f96b4 #1f6377; border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25); filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; vertical-align: middle; cursor: pointer; display: inline-block; -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); } #download a{ text-decoration:none; color:#fff; } #download:hover{ text-shadow: 0 -1px 0 rgba(0,0,0,.25); background-color: #2F96B4; background-position: 0 -15px; -webkit-transition: background-position .1s linear; -moz-transition: background-position .1s linear; -ms-transition: background-position .1s linear; -o-transition: background-position .1s linear; transition: background-position .1s linear; } /*#infoMenu ul{ padding: 0 40px; } #infoMenu li a{ display: block; margin: 0 22px 0 0; color: #333; } #infoMenu li a:hover{ text-decoration:underline; } #infoMenu li{ display:inline-block; position:relative; }*/ #examplesList{ display:none; background: #282828; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; padding: 20px; float: left; position: absolute; bottom: 29px; right: 0; width:638px; text-align:left; } #examplesList ul{ padding:0; } #examplesList ul li{ display:block; margin: 5px 0; } #examplesList ul li a{ color: #BDBDBD; margin:0; } #examplesList ul li a:hover{ color: #f2f2f2; } #examplesList .column{ float: left; margin: 0 20px 0 0; } #examplesList h3{ color: #f2f2f2; font-size: 1.2em; margin: 0 0 15px 0; border-bottom: 1px solid rgba(0, 0, 0, 0.4); -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1); -moz-box-shadow: 0 1px 0 rgba(255,255,255,0.1); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1); padding: 0 0 5px 0; } /* Demos Menu * --------------------------------------- */ #demosMenu{ position:fixed; bottom: 10px; right:10px; z-index: 999; }
css/style.css
@CHARSET "ISO-8859-1"; @import url(https://fonts.googleapis.com/css?family=Merriweather:400,300,400italic,700,700italic); @font-face { font-family:'AkkuratPro-Light'; src: url('fonts/AkkuratPro-Light/AkkuratPro-Light_gdi_eot'); src: url('fonts/AkkuratPro-Light/AkkuratPro-Light_gdi_eot?#iefix') format('embedded-opentype'), url('fonts/AkkuratPro-Light/AkkuratPro-Light_gdi_woff') format('woff'), url('fonts/AkkuratPro-Light/AkkuratPro-Light_gdi_ttf') format('truetype'), url('fonts/AkkuratPro-Light/AkkuratPro-Light_gdi.otf') format('opentype'), url('fonts/AkkuratPro-Light/AkkuratPro-Light_gdi_svg') format('svg'); font-weight: 300; font-style: normal; font-stretch: normal; unicode-range: U+0020-25CA; } @font-face { font-family:'AkkuratPro-LightItalic'; src: url('fonts/AkkuratPro-LightItalic/AkkuratPro-LightItalic_gdi_eot'); src: url('fonts/AkkuratPro-LightItalic/AkkuratPro-LightItalic_gdi_eot?#iefix') format('embedded-opentype'), url('fonts/AkkuratPro-LightItalic/AkkuratPro-LightItalic_gdi_woff') format('woff'), url('fonts/AkkuratPro-LightItalic/AkkuratPro-LightItalic_gdi_ttf') format('truetype'), url('fonts/AkkuratPro-LightItalic/AkkuratPro-LightItalic_gdi.otf') format('opentype'), url('fonts/AkkuratPro-LightItalic/AkkuratPro-LightItalic_gdi_svg') format('svg'); font-weight: 300; font-style: italic; font-stretch: normal; unicode-range: U+0020-25CA; } @font-face { font-family:'Akkurat-Bold'; src: url('fonts/AkkuratPro-Bold/Akkurat-Bold_gdi_eot'); src: url('fonts/AkkuratPro-Bold/Akkurat-Bold_gdi_eot?#iefix') format('embedded-opentype'), url('fonts/AkkuratPro-Bold/Akkurat-Bold_gdi_woff') format('woff'), url('fonts/AkkuratPro-Bold/Akkurat-Bold_gdi_ttf') format('truetype'), url('fonts/AkkuratPro-Bold/Akkurat-Bold_gdi.otf') format('opentype'), url('fonts/AkkuratPro-Bold/Akkurat-Bold_gdi_svg') format('svg'); font-weight: 700; font-style: normal; font-stretch: normal; unicode-range: U+0020-25CA; } @font-face { font-family:'AkkuratPro-BoldItalic'; src: url('fonts/AkkuratPro-BoldItalic/AkkuratPro-BoldItalic_gdi_eot'); src: url('fonts/AkkuratPro-BoldItalic/AkkuratPro-BoldItalic_gdi_eot?#iefix') format('embedded-opentype'), url('fonts/AkkuratPro-BoldItalic/AkkuratPro-BoldItalic_gdi_woff') format('woff'), url('fonts/AkkuratPro-BoldItalic/AkkuratPro-BoldItalic_gdi_ttf') format('truetype'), url('fonts/AkkuratPro-BoldItalic/AkkuratPro-BoldItalic_gdi.otf') format('opentype'), url('fonts/AkkuratPro-BoldItalic/AkkuratPro-BoldItalic_gdi_svg') format('svg'); font-weight: 700; font-style: italic; font-stretch: normal; unicode-range: U+0020-25CA; } @media only screen and (max-width : 1200px) { #section0-image { width: 55%; position: relative; top: 40vh; } } /* desktop */ @media only screen and (min-width : 979px) { #infoMenu{ height: 20px; color: #f2f2f2; position:fixed; z-index:100; top:0px; width:100%; text-align:right; font-size:0.9em; /*padding:8px 0 8px 0;*/ } .section h1 { font-size: 5em; } .section h2 { width: 50%; font-size: 15px; } #section0-image { width: 55%; position: relative; top: 40vh; } #section1-image { width: 25%; position: relative; top: 35vh; } #medickitbutton { font-size: 0.8em; } .navbar-default .navbar-nav>li>a { color: #ffffff !important; } } /* phone portrait or iPad */ @media only screen and (max-width : 768px) { #infoMenu{ height: 20px; color: #f2f2f2; position:fixed; z-index:100; top:0px; width:100%; text-align:right; } .section h1 { font-size: 3em; } .section h2 { width: 70%; font-size: 10px; } #section0-image { width: 55%; position: relative; top: 45vh; } #section1-image { width: 25%; position: relative; top: 35vh; } #medickitbutton { font-size: 0.7em; } .navbar-default .navbar-nav>li>a { color: #ffffff !important; } } @media only screen and (max-width : 480px) { .section h1 { font-size: 3em; } .section h2{ width: 70%; font-size: 7px; } .navbar-default .navbar-nav>li>a { text-align: center; padding: 10px 0px; } #section0-image { width: 85%; position: relative; top: 45vh; } #section1-image { width: 55%; position: relative; top: 35vh; } #medickitbutton { font-size: 0.5em; } .navbar-default .navbar-nav>li>a { color: #a8a8a8 !important; background-color: rgba(255,255,255,0.95) !important; } #infoMenu li a:hover:after { width: 100%; left: 0; background: #a8a8a8 !important; } #infoMenu li a:after { content: ''; height: 0.5px; bottom: -0.5px; position: absolute; left: 50%; width: 0; transition: 0.3s all ease-in-out; } } #fp-nav ul li a span, .fp-slidesNav ul li a span { background: #ffffff !important; } /* Top Nav Menu Hover */ #infoMenu li a:hover:after { width: 100%; left: 0; background: #ffffff; } #infoMenu li a:after { content: ''; height: 1px; bottom: -1px; position: absolute; left: 50%; width: 0; transition: 0.3s all ease-in-out; } .section-one { background: #6ed3c2; } .tocenter { margin:0 auto; display: inline; } #project-title { font-family:AkkuratPro-Light, 'Arial', sans-serif; font-weight:100; color: #000000; } #project-brief { font-family: Elena-Regular, 'Georgia', 'Times New Roman', serif; color: #000000; } /* Style for our header texts * --------------------------------------- */ .section h1{ font-family:Akkurat-Bold, 'Arial', sans-serif; font-weight:700; line-height:auto; color: #fff; margin:0; padding:0; position: relative; /*top: -35vh;*/ top: 25vh; } .section h2{ font-family: 'Merriweather', 'Georgia', 'Times New Roman', serif; /*font-family: Elena-Regular, 'Georgia', 'Times New Roman', serif;*/ font-weight: 300; line-height: 1.5; color: #ffffff; position: relative; top: 27vh; text-align: center; margin: auto; font-size: 18px; } /* Centered texts in each section * --------------------------------------- */ .section{ text-align:center; } /* Backgrounds will cover all the section * --------------------------------------- */ #section0, #section1, #section2, #section3{ background-size: cover; } /* Defining each sectino background and styles * --------------------------------------- */ #section0{ background: #a8a8a8; /*padding: 10% 0 0 0;*/ } #section1{ background: #cbe096; } #section2{ background: #d1814a; /*padding: 6% 0 0 0;*/ } #section3{ background: #141821; } /*#section3 h1{ color: #000; }*/ /* Bottom menu * --------------------------------------- */ #infoMenu li a { color: #fff; font-size: 1.5vh; font-family:AkkuratPro-Light, 'Arial', sans-serif; } /* BUTTON CSS ------------------------------------------- */ #medickitbutton { font-family:AkkuratPro-Light, 'Arial', sans-serif; position: relative; top: 30vh; display: inline-block; text-decoration: none; text-transform: uppercase; color: #ffffff; border: 2px solid white; padding: 8px 15px; background-size: 200% 100%; background-image: linear-gradient(to right, transparent 50%, #ffffff 50%); -webkit-transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .7s ease .1s; transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .7s ease .1s; } #medickitbutton:hover { color: #a8a8a8; } a.button:hover{ color:rgba(255, 255, 255, 1); background-position: -100% 100%; } b { font-family:Akkurat-Bold; } /* Toggle button color */ .navbar-default .navbar-toggle { border-color: transparent !important; } .navbar-default .navbar-toggle .icon-bar { background-color: #ffffff !important; } .navbar-default .navbar-collapse, .navbar-default .navbar-form { border: 0 !important; } .navbar-collapse { border: 0 !important; -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0) !important; box-shadow: inset 0 1px 0 rgba(255,255,255,0) !important; border-top: 0 !important; } /*.navbar-default .navbar-collapse { background: rgba(18,17,15,0.4); }*/ .navbar { border: none; margin-bottom: 0 !important; border-radius: 0 !important; } .navbar, .navbar-default { background-color: transparent !important; border: none !important; } .navbar-default .navbar-nav>li>a { -webkit-transition: color,0.6s,ease-in; -moz-transition: color,0.6s,ease-in; transition: color,0.6s,ease-in; } /* Reset CSS * --------------------------------------- */ body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre, form,fieldset,input,textarea,p,blockquote,th,td { padding: 0; margin: 0; } a{ text-decoration:none; } table { border-spacing: 0; } fieldset,img { border: 0; } address,caption,cite,code,dfn,em,strong,th,var { font-weight: normal; font-weight: normal; } strong{ font-weight: bold; } ol,ul { list-style: none; margin:0; padding:0; } caption,th { text-align: left; } h1,h2,h3,h4,h5,h6 { font-weight: normal; font-size: 100%; margin:0; padding:0; color:#444; } q:before,q:after { content:''; } abbr,acronym { border: 0; } /* Custom CSS * --------------------------------------- */ body{ font-family: arial,helvetica; color: #333; color: rgba(0,0,0,0.5); } .wrap{ margin-left: auto; margin-right: auto; width: 960px; position: relative; } h1{ font-size: 6em; } p{ font-size: 2em; } .intro p{ width: 50%; margin: 0 auto; font-size: 1.5em; } .section{ text-align:center; } #menu li { display:inline-block; margin: 10px; color: #000; background:#fff; background: rgba(255,255,255, 0.5); -webkit-border-radius: 10px; border-radius: 10px; } #menu li.active{ background:#666; background: rgba(0,0,0, 0.5); color: #fff; } #menu li a{ text-decoration:none; color: #000; } #menu li.active a:hover{ color: #000; } #menu li:hover{ background: rgba(255,255,255, 0.8); } #menu li a, #menu li.active a{ padding: 9px 18px; display:block; } #menu li.active a{ color: #fff; } #menu{ position:fixed; top:0; left:0; height: 40px; z-index: 70; width: 100%; padding: 0; margin:0; } .twitter-share-button{ position: fixed; z-index: 99; right: 149px; top: 9px; } #download{ margin: 10px 0 0 0; padding: 15px 10px; color: #fff; text-shadow: 0 -1px 0 rgba(0,0,0,0.25); background-color: #49afcd; background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4); background-image: -ms-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(top, #5bc0de, #2f96b4); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0); border-color: #2f96b4 #2f96b4 #1f6377; border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25); filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; vertical-align: middle; cursor: pointer; display: inline-block; -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); } #download a{ text-decoration:none; color:#fff; } #download:hover{ text-shadow: 0 -1px 0 rgba(0,0,0,.25); background-color: #2F96B4; background-position: 0 -15px; -webkit-transition: background-position .1s linear; -moz-transition: background-position .1s linear; -ms-transition: background-position .1s linear; -o-transition: background-position .1s linear; transition: background-position .1s linear; } /*#infoMenu ul{ padding: 0 40px; } #infoMenu li a{ display: block; margin: 0 22px 0 0; color: #333; } #infoMenu li a:hover{ text-decoration:underline; } #infoMenu li{ display:inline-block; position:relative; }*/ #examplesList{ display:none; background: #282828; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; padding: 20px; float: left; position: absolute; bottom: 29px; right: 0; width:638px; text-align:left; } #examplesList ul{ padding:0; } #examplesList ul li{ display:block; margin: 5px 0; } #examplesList ul li a{ color: #BDBDBD; margin:0; } #examplesList ul li a:hover{ color: #f2f2f2; } #examplesList .column{ float: left; margin: 0 20px 0 0; } #examplesList h3{ color: #f2f2f2; font-size: 1.2em; margin: 0 0 15px 0; border-bottom: 1px solid rgba(0, 0, 0, 0.4); -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1); -moz-box-shadow: 0 1px 0 rgba(255,255,255,0.1); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1); padding: 0 0 5px 0; } /* Demos Menu * --------------------------------------- */ #demosMenu{ position:fixed; bottom: 10px; right:10px; z-index: 999; }
0.137909
0.060391
@charset "UTF-8"; /*! Ionicons, v2.0.0 Created by <NAME> for the Ionic Framework, http://ionicons.com/ https://twitter.com/benjsperry https://twitter.com/ionicframework MIT License: https://github.com/driftyco/ionicons Android-style icons originally built by Google’s Material Design Icons: https://github.com/google/material-design-icons used under CC BY http://creativecommons.org/licenses/by/4.0/ Modified icons to fit ionicon’s grid from original. ---------------------------------------------------------------------- @about Modulr.css ----------------------------------------- @desc: Ionic Icon Set for modulr.css fw @author: <NAME> & <NAME> @git: https://www.github/com/uloga/icon @source: http://www.getmodulr.com/css/icon ------------------------------------------------ @uses: modulr/icon/* @docs: true \------------------------------------------------- */ @font-face { font-family: "Ionicons"; src: url("fonts/ionicons.eot?v=2.0.0"); src: url("fonts/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"), url("fonts/ionicons.ttf?v=2.0.0") format("truetype"), url("fonts/ionicons.woff?v=2.0.0") format("woff"), url("fonts/ionicons.svg?v=2.0.0#Ionicons") format("svg"); font-weight: normal; font-style: normal; } [mod-icon] { display: inline-block; font-family: "Ionicons", 'Raleway',Helvetica,Arial,sans-serif; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; text-rendering: auto; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } [mod-icon~="before"]:before{ padding-right: 8px; } [mod-icon~="after"]:after{ padding-left: 8px; } [mod-icon~="before"]:before, [mod-icon~="after"]:after{ position: relative; top: 1px; } /* --- increse icon size ---- */ [mod-icon~="lg"]:not([mod-button~="fab"]):before, [mod-icon~="lg"]:not([mod-button~="fab"]):after{ font-size: 1.33333333em; line-height: .75em; vertical-align: -15%; top: 0; } [mod-icon~="before"][mod-icon~="alert"]:before, [mod-icon~="after"][mod-icon~="alert"]:after{ content: "\f101"; } [mod-icon~="before"][mod-icon~="alert-circled"]:before, [mod-icon~="after"][mod-icon~="alert-circled"]:after{ content: "\f100"; } [mod-icon~="before"][mod-icon~="android-add"]:before, [mod-icon~="after"][mod-icon~="android-add"]:after{ content: "\f2c7"; } [mod-icon~="before"][mod-icon~="android-add-circle"]:before, [mod-icon~="after"][mod-icon~="android-add-circle"]:after{ content: "\f359"; } [mod-icon~="before"][mod-icon~="android-alarm-clock"]:before, [mod-icon~="after"][mod-icon~="android-alarm-clock"]:after{ content: "\f35a"; } [mod-icon~="before"][mod-icon~="android-alert"]:before, [mod-icon~="after"][mod-icon~="android-alert"]:after{ content: "\f35b"; } [mod-icon~="before"][mod-icon~="android-apps"]:before, [mod-icon~="after"][mod-icon~="android-apps"]:after{ content: "\f35c"; } [mod-icon~="before"][mod-icon~="android-archive"]:before, [mod-icon~="after"][mod-icon~="android-archive"]:after{ content: "\f2c9"; } [mod-icon~="before"][mod-icon~="android-arrow-back"]:before, [mod-icon~="after"][mod-icon~="android-arrow-back"]:after{ content: "\f2ca"; } [mod-icon~="before"][mod-icon~="android-arrow-down"]:before, [mod-icon~="after"][mod-icon~="android-arrow-down"]:after{ content: "\f35d"; } [mod-icon~="before"][mod-icon~="android-arrow-dropdown"]:before, [mod-icon~="after"][mod-icon~="android-arrow-dropdown"]:after{ content: "\f35f"; } [mod-icon~="before"][mod-icon~="android-arrow-dropdown-circle"]:before, [mod-icon~="after"][mod-icon~="android-arrow-dropdown-circle"]:after{ content: "\f35e"; } [mod-icon~="before"][mod-icon~="android-arrow-dropleft"]:before, [mod-icon~="after"][mod-icon~="android-arrow-dropleft"]:after{ content: "\f361"; } [mod-icon~="before"][mod-icon~="android-arrow-dropleft-circle"]:before, [mod-icon~="after"][mod-icon~="android-arrow-dropleft-circle"]:after{ content: "\f360"; } [mod-icon~="before"][mod-icon~="android-arrow-dropright"]:before, [mod-icon~="after"][mod-icon~="android-arrow-dropright"]:after{ content: "\f363"; } [mod-icon~="before"][mod-icon~="android-arrow-dropright-circle"]:before, [mod-icon~="after"][mod-icon~="android-arrow-dropright-circle"]:after{ content: "\f362"; } [mod-icon~="before"][mod-icon~="android-arrow-dropup"]:before, [mod-icon~="after"][mod-icon~="android-arrow-dropup"]:after{ content: "\f365"; } [mod-icon~="before"][mod-icon~="android-arrow-dropup-circle"]:before, [mod-icon~="after"][mod-icon~="android-arrow-dropup-circle"]:after{ content: "\f364"; } [mod-icon~="before"][mod-icon~="android-arrow-forward"]:before, [mod-icon~="after"][mod-icon~="android-arrow-forward"]:after{ content: "\f30f"; } [mod-icon~="before"][mod-icon~="android-arrow-up"]:before, [mod-icon~="after"][mod-icon~="android-arrow-up"]:after{ content: "\f366"; } [mod-icon~="before"][mod-icon~="android-attach"]:before, [mod-icon~="after"][mod-icon~="android-attach"]:after{ content: "\f367"; } [mod-icon~="before"][mod-icon~="android-bar"]:before, [mod-icon~="after"][mod-icon~="android-bar"]:after{ content: "\f368"; } [mod-icon~="before"][mod-icon~="android-bicycle"]:before, [mod-icon~="after"][mod-icon~="android-bicycle"]:after{ content: "\f369"; } [mod-icon~="before"][mod-icon~="android-boat"]:before, [mod-icon~="after"][mod-icon~="android-boat"]:after{ content: "\f36a"; } [mod-icon~="before"][mod-icon~="android-bookmark"]:before, [mod-icon~="after"][mod-icon~="android-bookmark"]:after{ content: "\f36b"; } [mod-icon~="before"][mod-icon~="android-bulb"]:before, [mod-icon~="after"][mod-icon~="android-bulb"]:after{ content: "\f36c"; } [mod-icon~="before"][mod-icon~="android-bus"]:before, [mod-icon~="after"][mod-icon~="android-bus"]:after{ content: "\f36d"; } [mod-icon~="before"][mod-icon~="android-calendar"]:before, [mod-icon~="after"][mod-icon~="android-calendar"]:after{ content: "\f2d1"; } [mod-icon~="before"][mod-icon~="android-call"]:before, [mod-icon~="after"][mod-icon~="android-call"]:after{ content: "\f2d2"; } [mod-icon~="before"][mod-icon~="android-camera"]:before, [mod-icon~="after"][mod-icon~="android-camera"]:after{ content: "\f2d3"; } [mod-icon~="before"][mod-icon~="android-cancel"]:before, [mod-icon~="after"][mod-icon~="android-cancel"]:after{ content: "\f36e"; } [mod-icon~="before"][mod-icon~="android-car"]:before, [mod-icon~="after"][mod-icon~="android-car"]:after{ content: "\f36f"; } [mod-icon~="before"][mod-icon~="android-cart"]:before, [mod-icon~="after"][mod-icon~="android-cart"]:after{ content: "\f370"; } [mod-icon~="before"][mod-icon~="android-chat"]:before, [mod-icon~="after"][mod-icon~="android-chat"]:after{ content: "\f2d4"; } [mod-icon~="before"][mod-icon~="android-checkbox"]:before, [mod-icon~="after"][mod-icon~="android-checkbox"]:after{ content: "\f374"; } [mod-icon~="before"][mod-icon~="android-checkbox-blank"]:before, [mod-icon~="after"][mod-icon~="android-checkbox-blank"]:after{ content: "\f371"; } [mod-icon~="before"][mod-icon~="android-checkbox-outline"]:before, [mod-icon~="after"][mod-icon~="android-checkbox-outline"]:after{ content: "\f373"; } [mod-icon~="before"][mod-icon~="android-checkbox-outline-blank"]:before, [mod-icon~="after"][mod-icon~="android-checkbox-outline-blank"]:after{ content: "\f372"; } [mod-icon~="before"][mod-icon~="android-checkmark-circle"]:before, [mod-icon~="after"][mod-icon~="android-checkmark-circle"]:after{ content: "\f375"; } [mod-icon~="before"][mod-icon~="android-clipboard"]:before, [mod-icon~="after"][mod-icon~="android-clipboard"]:after{ content: "\f376"; } [mod-icon~="before"][mod-icon~="android-close"]:before, [mod-icon~="after"][mod-icon~="android-close"]:after{ content: "\f2d7"; } [mod-icon~="before"][mod-icon~="android-cloud"]:before, [mod-icon~="after"][mod-icon~="android-cloud"]:after{ content: "\f37a"; } [mod-icon~="before"][mod-icon~="android-cloud-circle"]:before, [mod-icon~="after"][mod-icon~="android-cloud-circle"]:after{ content: "\f377"; } [mod-icon~="before"][mod-icon~="android-cloud-done"]:before, [mod-icon~="after"][mod-icon~="android-cloud-done"]:after{ content: "\f378"; } [mod-icon~="before"][mod-icon~="android-cloud-outline"]:before, [mod-icon~="after"][mod-icon~="android-cloud-outline"]:after{ content: "\f379"; } [mod-icon~="before"][mod-icon~="android-color-palette"]:before, [mod-icon~="after"][mod-icon~="android-color-palette"]:after{ content: "\f37b"; } [mod-icon~="before"][mod-icon~="android-compass"]:before, [mod-icon~="after"][mod-icon~="android-compass"]:after{ content: "\f37c"; } [mod-icon~="before"][mod-icon~="android-contact"]:before, [mod-icon~="after"][mod-icon~="android-contact"]:after{ content: "\f2d8"; } [mod-icon~="before"][mod-icon~="android-contacts"]:before, [mod-icon~="after"][mod-icon~="android-contacts"]:after{ content: "\f2d9"; } [mod-icon~="before"][mod-icon~="android-contract"]:before, [mod-icon~="after"][mod-icon~="android-contract"]:after{ content: "\f37d"; } [mod-icon~="before"][mod-icon~="android-create"]:before, [mod-icon~="after"][mod-icon~="android-create"]:after{ content: "\f37e"; } [mod-icon~="before"][mod-icon~="android-delete"]:before, [mod-icon~="after"][mod-icon~="android-delete"]:after{ content: "\f37f"; } [mod-icon~="before"][mod-icon~="android-desktop"]:before, [mod-icon~="after"][mod-icon~="android-desktop"]:after{ content: "\f380"; } [mod-icon~="before"][mod-icon~="android-document"]:before, [mod-icon~="after"][mod-icon~="android-document"]:after{ content: "\f381"; } [mod-icon~="before"][mod-icon~="android-done"]:before, [mod-icon~="after"][mod-icon~="android-done"]:after{ content: "\f383"; } [mod-icon~="before"][mod-icon~="android-done-all"]:before, [mod-icon~="after"][mod-icon~="android-done-all"]:after{ content: "\f382"; } [mod-icon~="before"][mod-icon~="android-download"]:before, [mod-icon~="after"][mod-icon~="android-download"]:after{ content: "\f2dd"; } [mod-icon~="before"][mod-icon~="android-drafts"]:before, [mod-icon~="after"][mod-icon~="android-drafts"]:after{ content: "\f384"; } [mod-icon~="before"][mod-icon~="android-exit"]:before, [mod-icon~="after"][mod-icon~="android-exit"]:after{ content: "\f385"; } [mod-icon~="before"][mod-icon~="android-expand"]:before, [mod-icon~="after"][mod-icon~="android-expand"]:after{ content: "\f386"; } [mod-icon~="before"][mod-icon~="android-favorite"]:before, [mod-icon~="after"][mod-icon~="android-favorite"]:after{ content: "\f388"; } [mod-icon~="before"][mod-icon~="android-favorite-outline"]:before, [mod-icon~="after"][mod-icon~="android-favorite-outline"]:after{ content: "\f387"; } [mod-icon~="before"][mod-icon~="android-film"]:before, [mod-icon~="after"][mod-icon~="android-film"]:after{ content: "\f389"; } [mod-icon~="before"][mod-icon~="android-folder"]:before, [mod-icon~="after"][mod-icon~="android-folder"]:after{ content: "\f2e0"; } [mod-icon~="before"][mod-icon~="android-folder-open"]:before, [mod-icon~="after"][mod-icon~="android-folder-open"]:after{ content: "\f38a"; } [mod-icon~="before"][mod-icon~="android-funnel"]:before, [mod-icon~="after"][mod-icon~="android-funnel"]:after{ content: "\f38b"; } [mod-icon~="before"][mod-icon~="android-globe"]:before, [mod-icon~="after"][mod-icon~="android-globe"]:after{ content: "\f38c"; } [mod-icon~="before"][mod-icon~="android-hand"]:before, [mod-icon~="after"][mod-icon~="android-hand"]:after{ content: "\f2e3"; } [mod-icon~="before"][mod-icon~="android-hangout"]:before, [mod-icon~="after"][mod-icon~="android-hangout"]:after{ content: "\f38d"; } [mod-icon~="before"][mod-icon~="android-happy"]:before, [mod-icon~="after"][mod-icon~="android-happy"]:after{ content: "\f38e"; } [mod-icon~="before"][mod-icon~="android-home"]:before, [mod-icon~="after"][mod-icon~="android-home"]:after{ content: "\f38f"; } [mod-icon~="before"][mod-icon~="android-image"]:before, [mod-icon~="after"][mod-icon~="android-image"]:after{ content: "\f2e4"; } [mod-icon~="before"][mod-icon~="android-laptop"]:before, [mod-icon~="after"][mod-icon~="android-laptop"]:after{ content: "\f390"; } [mod-icon~="before"][mod-icon~="android-list"]:before, [mod-icon~="after"][mod-icon~="android-list"]:after{ content: "\f391"; } [mod-icon~="before"][mod-icon~="android-locate"]:before, [mod-icon~="after"][mod-icon~="android-locate"]:after{ content: "\f2e9"; } [mod-icon~="before"][mod-icon~="android-lock"]:before, [mod-icon~="after"][mod-icon~="android-lock"]:after{ content: "\f392"; } [mod-icon~="before"][mod-icon~="android-mail"]:before, [mod-icon~="after"][mod-icon~="android-mail"]:after{ content: "\f2eb"; } [mod-icon~="before"][mod-icon~="android-map"]:before, [mod-icon~="after"][mod-icon~="android-map"]:after{ content: "\f393"; } [mod-icon~="before"][mod-icon~="android-menu"]:before, [mod-icon~="after"][mod-icon~="android-menu"]:after{ content: "\f394"; } [mod-icon~="before"][mod-icon~="android-microphone"]:before, [mod-icon~="after"][mod-icon~="android-microphone"]:after{ content: "\f2ec"; } [mod-icon~="before"][mod-icon~="android-microphone-off"]:before, [mod-icon~="after"][mod-icon~="android-microphone-off"]:after{ content: "\f395"; } [mod-icon~="before"][mod-icon~="android-more-horizontal"]:before, [mod-icon~="after"][mod-icon~="android-more-horizontal"]:after{ content: "\f396"; } [mod-icon~="before"][mod-icon~="android-more-vertical"]:before, [mod-icon~="after"][mod-icon~="android-more-vertical"]:after{ content: "\f397"; } [mod-icon~="before"][mod-icon~="android-navigate"]:before, [mod-icon~="after"][mod-icon~="android-navigate"]:after{ content: "\f398"; } [mod-icon~="before"][mod-icon~="android-notifications"]:before, [mod-icon~="after"][mod-icon~="android-notifications"]:after{ content: "\f39b"; } [mod-icon~="before"][mod-icon~="android-notifications-none"]:before, [mod-icon~="after"][mod-icon~="android-notifications-none"]:after{ content: "\f399"; } [mod-icon~="before"][mod-icon~="android-notifications-off"]:before, [mod-icon~="after"][mod-icon~="android-notifications-off"]:after{ content: "\f39a"; } [mod-icon~="before"][mod-icon~="android-open"]:before, [mod-icon~="after"][mod-icon~="android-open"]:after{ content: "\f39c"; } [mod-icon~="before"][mod-icon~="android-options"]:before, [mod-icon~="after"][mod-icon~="android-options"]:after{ content: "\f39d"; } [mod-icon~="before"][mod-icon~="android-people"]:before, [mod-icon~="after"][mod-icon~="android-people"]:after{ content: "\f39e"; } [mod-icon~="before"][mod-icon~="android-person"]:before, [mod-icon~="after"][mod-icon~="android-person"]:after{ content: "\f3a0"; } [mod-icon~="before"][mod-icon~="android-person-add"]:before, [mod-icon~="after"][mod-icon~="android-person-add"]:after{ content: "\f39f"; } [mod-icon~="before"][mod-icon~="android-phone-landscape"]:before, [mod-icon~="after"][mod-icon~="android-phone-landscape"]:after{ content: "\f3a1"; } [mod-icon~="before"][mod-icon~="android-phone-portrait"]:before, [mod-icon~="after"][mod-icon~="android-phone-portrait"]:after{ content: "\f3a2"; } [mod-icon~="before"][mod-icon~="android-pin"]:before, [mod-icon~="after"][mod-icon~="android-pin"]:after{ content: "\f3a3"; } [mod-icon~="before"][mod-icon~="android-plane"]:before, [mod-icon~="after"][mod-icon~="android-plane"]:after{ content: "\f3a4"; } [mod-icon~="before"][mod-icon~="android-playstore"]:before, [mod-icon~="after"][mod-icon~="android-playstore"]:after{ content: "\f2f0"; } [mod-icon~="before"][mod-icon~="android-print"]:before, [mod-icon~="after"][mod-icon~="android-print"]:after{ content: "\f3a5"; } [mod-icon~="before"][mod-icon~="android-radio-button-off"]:before, [mod-icon~="after"][mod-icon~="android-radio-button-off"]:after{ content: "\f3a6"; } [mod-icon~="before"][mod-icon~="android-radio-button-on"]:before, [mod-icon~="after"][mod-icon~="android-radio-button-on"]:after{ content: "\f3a7"; } [mod-icon~="before"][mod-icon~="android-refresh"]:before, [mod-icon~="after"][mod-icon~="android-refresh"]:after{ content: "\f3a8"; } [mod-icon~="before"][mod-icon~="android-remove"]:before, [mod-icon~="after"][mod-icon~="android-remove"]:after{ content: "\f2f4"; } [mod-icon~="before"][mod-icon~="android-remove-circle"]:before, [mod-icon~="after"][mod-icon~="android-remove-circle"]:after{ content: "\f3a9"; } [mod-icon~="before"][mod-icon~="android-restaurant"]:before, [mod-icon~="after"][mod-icon~="android-restaurant"]:after{ content: "\f3aa"; } [mod-icon~="before"][mod-icon~="android-sad"]:before, [mod-icon~="after"][mod-icon~="android-sad"]:after{ content: "\f3ab"; } [mod-icon~="before"][mod-icon~="android-search"]:before, [mod-icon~="after"][mod-icon~="android-search"]:after{ content: "\f2f5"; } [mod-icon~="before"][mod-icon~="android-send"]:before, [mod-icon~="after"][mod-icon~="android-send"]:after{ content: "\f2f6"; } [mod-icon~="before"][mod-icon~="android-settings"]:before, [mod-icon~="after"][mod-icon~="android-settings"]:after{ content: "\f2f7"; } [mod-icon~="before"][mod-icon~="android-share"]:before, [mod-icon~="after"][mod-icon~="android-share"]:after{ content: "\f2f8"; } [mod-icon~="before"][mod-icon~="android-share-alt"]:before, [mod-icon~="after"][mod-icon~="android-share-alt"]:after{ content: "\f3ac"; } [mod-icon~="before"][mod-icon~="android-star"]:before, [mod-icon~="after"][mod-icon~="android-star"]:after{ content: "\f2fc"; } [mod-icon~="before"][mod-icon~="android-star-half"]:before, [mod-icon~="after"][mod-icon~="android-star-half"]:after{ content: "\f3ad"; } [mod-icon~="before"][mod-icon~="android-star-outline"]:before, [mod-icon~="after"][mod-icon~="android-star-outline"]:after{ content: "\f3ae"; } [mod-icon~="before"][mod-icon~="android-stopwatch"]:before, [mod-icon~="after"][mod-icon~="android-stopwatch"]:after{ content: "\f2fd"; } [mod-icon~="before"][mod-icon~="android-subway"]:before, [mod-icon~="after"][mod-icon~="android-subway"]:after{ content: "\f3af"; } [mod-icon~="before"][mod-icon~="android-sunny"]:before, [mod-icon~="after"][mod-icon~="android-sunny"]:after{ content: "\f3b0"; } [mod-icon~="before"][mod-icon~="android-sync"]:before, [mod-icon~="after"][mod-icon~="android-sync"]:after{ content: "\f3b1"; } [mod-icon~="before"][mod-icon~="android-textsms"]:before, [mod-icon~="after"][mod-icon~="android-textsms"]:after{ content: "\f3b2"; } [mod-icon~="before"][mod-icon~="android-time"]:before, [mod-icon~="after"][mod-icon~="android-time"]:after{ content: "\f3b3"; } [mod-icon~="before"][mod-icon~="android-train"]:before, [mod-icon~="after"][mod-icon~="android-train"]:after{ content: "\f3b4"; } [mod-icon~="before"][mod-icon~="android-unlock"]:before, [mod-icon~="after"][mod-icon~="android-unlock"]:after{ content: "\f3b5"; } [mod-icon~="before"][mod-icon~="android-upload"]:before, [mod-icon~="after"][mod-icon~="android-upload"]:after{ content: "\f3b6"; } [mod-icon~="before"][mod-icon~="android-volume-down"]:before, [mod-icon~="after"][mod-icon~="android-volume-down"]:after{ content: "\f3b7"; } [mod-icon~="before"][mod-icon~="android-volume-mute"]:before, [mod-icon~="after"][mod-icon~="android-volume-mute"]:after{ content: "\f3b8"; } [mod-icon~="before"][mod-icon~="android-volume-off"]:before, [mod-icon~="after"][mod-icon~="android-volume-off"]:after{ content: "\f3b9"; } [mod-icon~="before"][mod-icon~="android-volume-up"]:before, [mod-icon~="after"][mod-icon~="android-volume-up"]:after{ content: "\f3ba"; } [mod-icon~="before"][mod-icon~="android-walk"]:before, [mod-icon~="after"][mod-icon~="android-walk"]:after{ content: "\f3bb"; } [mod-icon~="before"][mod-icon~="android-warning"]:before, [mod-icon~="after"][mod-icon~="android-warning"]:after{ content: "\f3bc"; } [mod-icon~="before"][mod-icon~="android-watch"]:before, [mod-icon~="after"][mod-icon~="android-watch"]:after{ content: "\f3bd"; } [mod-icon~="before"][mod-icon~="android-wifi"]:before, [mod-icon~="after"][mod-icon~="android-wifi"]:after{ content: "\f305"; } [mod-icon~="before"][mod-icon~="aperture"]:before, [mod-icon~="after"][mod-icon~="aperture"]:after{ content: "\f313"; } [mod-icon~="before"][mod-icon~="archive"]:before, [mod-icon~="after"][mod-icon~="archive"]:after{ content: "\f102"; } [mod-icon~="before"][mod-icon~="arrow-down-a"]:before, [mod-icon~="after"][mod-icon~="arrow-down-a"]:after{ content: "\f103"; } [mod-icon~="before"][mod-icon~="arrow-down-b"]:before, [mod-icon~="after"][mod-icon~="arrow-down-b"]:after{ content: "\f104"; } [mod-icon~="before"][mod-icon~="arrow-down-c"]:before, [mod-icon~="after"][mod-icon~="arrow-down-c"]:after{ content: "\f105"; } [mod-icon~="before"][mod-icon~="arrow-expand"]:before, [mod-icon~="after"][mod-icon~="arrow-expand"]:after{ content: "\f25e"; } [mod-icon~="before"][mod-icon~="arrow-graph-down-left"]:before, [mod-icon~="after"][mod-icon~="arrow-graph-down-left"]:after{ content: "\f25f"; } [mod-icon~="before"][mod-icon~="arrow-graph-down-right"]:before, [mod-icon~="after"][mod-icon~="arrow-graph-down-right"]:after{ content: "\f260"; } [mod-icon~="before"][mod-icon~="arrow-graph-up-left"]:before, [mod-icon~="after"][mod-icon~="arrow-graph-up-left"]:after{ content: "\f261"; } [mod-icon~="before"][mod-icon~="arrow-graph-up-right"]:before, [mod-icon~="after"][mod-icon~="arrow-graph-up-right"]:after{ content: "\f262"; } [mod-icon~="before"][mod-icon~="arrow-left-a"]:before, [mod-icon~="after"][mod-icon~="arrow-left-a"]:after{ content: "\f106"; } [mod-icon~="before"][mod-icon~="arrow-left-b"]:before, [mod-icon~="after"][mod-icon~="arrow-left-b"]:after{ content: "\f107"; } [mod-icon~="before"][mod-icon~="arrow-left-c"]:before, [mod-icon~="after"][mod-icon~="arrow-left-c"]:after{ content: "\f108"; } [mod-icon~="before"][mod-icon~="arrow-move"]:before, [mod-icon~="after"][mod-icon~="arrow-move"]:after{ content: "\f263"; } [mod-icon~="before"][mod-icon~="arrow-resize"]:before, [mod-icon~="after"][mod-icon~="arrow-resize"]:after{ content: "\f264"; } [mod-icon~="before"][mod-icon~="arrow-return-left"]:before, [mod-icon~="after"][mod-icon~="arrow-return-left"]:after{ content: "\f265"; } [mod-icon~="before"][mod-icon~="arrow-return-right"]:before, [mod-icon~="after"][mod-icon~="arrow-return-right"]:after{ content: "\f266"; } [mod-icon~="before"][mod-icon~="arrow-right-a"]:before, [mod-icon~="after"][mod-icon~="arrow-right-a"]:after{ content: "\f109"; } [mod-icon~="before"][mod-icon~="arrow-right-b"]:before, [mod-icon~="after"][mod-icon~="arrow-right-b"]:after{ content: "\f10a"; } [mod-icon~="before"][mod-icon~="arrow-right-c"]:before, [mod-icon~="after"][mod-icon~="arrow-right-c"]:after{ content: "\f10b"; } [mod-icon~="before"][mod-icon~="arrow-shrink"]:before, [mod-icon~="after"][mod-icon~="arrow-shrink"]:after{ content: "\f267"; } [mod-icon~="before"][mod-icon~="arrow-swap"]:before, [mod-icon~="after"][mod-icon~="arrow-swap"]:after{ content: "\f268"; } [mod-icon~="before"][mod-icon~="arrow-up-a"]:before, [mod-icon~="after"][mod-icon~="arrow-up-a"]:after{ content: "\f10c"; } [mod-icon~="before"][mod-icon~="arrow-up-b"]:before, [mod-icon~="after"][mod-icon~="arrow-up-b"]:after{ content: "\f10d"; } [mod-icon~="before"][mod-icon~="arrow-up-c"]:before, [mod-icon~="after"][mod-icon~="arrow-up-c"]:after{ content: "\f10e"; } [mod-icon~="before"][mod-icon~="asterisk"]:before, [mod-icon~="after"][mod-icon~="asterisk"]:after{ content: "\f314"; } [mod-icon~="before"][mod-icon~="at"]:before, [mod-icon~="after"][mod-icon~="at"]:after{ content: "\f10f"; } [mod-icon~="before"][mod-icon~="backspace"]:before, [mod-icon~="after"][mod-icon~="backspace"]:after{ content: "\f3bf"; } [mod-icon~="before"][mod-icon~="backspace-outline"]:before, [mod-icon~="after"][mod-icon~="backspace-outline"]:after{ content: "\f3be"; } [mod-icon~="before"][mod-icon~="bag"]:before, [mod-icon~="after"][mod-icon~="bag"]:after{ content: "\f110"; } [mod-icon~="before"][mod-icon~="battery-charging"]:before, [mod-icon~="after"][mod-icon~="battery-charging"]:after{ content: "\f111"; } [mod-icon~="before"][mod-icon~="battery-empty"]:before, [mod-icon~="after"][mod-icon~="battery-empty"]:after{ content: "\f112"; } [mod-icon~="before"][mod-icon~="battery-full"]:before, [mod-icon~="after"][mod-icon~="battery-full"]:after{ content: "\f113"; } [mod-icon~="before"][mod-icon~="battery-half"]:before, [mod-icon~="after"][mod-icon~="battery-half"]:after{ content: "\f114"; } [mod-icon~="before"][mod-icon~="battery-low"]:before, [mod-icon~="after"][mod-icon~="battery-low"]:after{ content: "\f115"; } [mod-icon~="before"][mod-icon~="beaker"]:before, [mod-icon~="after"][mod-icon~="beaker"]:after{ content: "\f269"; } [mod-icon~="before"][mod-icon~="beer"]:before, [mod-icon~="after"][mod-icon~="beer"]:after{ content: "\f26a"; } [mod-icon~="before"][mod-icon~="bluetooth"]:before, [mod-icon~="after"][mod-icon~="bluetooth"]:after{ content: "\f116"; } [mod-icon~="before"][mod-icon~="bonfire"]:before, [mod-icon~="after"][mod-icon~="bonfire"]:after{ content: "\f315"; } [mod-icon~="before"][mod-icon~="bookmark"]:before, [mod-icon~="after"][mod-icon~="bookmark"]:after{ content: "\f26b"; } [mod-icon~="before"][mod-icon~="bowtie"]:before, [mod-icon~="after"][mod-icon~="bowtie"]:after{ content: "\f3c0"; } [mod-icon~="before"][mod-icon~="briefcase"]:before, [mod-icon~="after"][mod-icon~="briefcase"]:after{ content: "\f26c"; } [mod-icon~="before"][mod-icon~="bug"]:before, [mod-icon~="after"][mod-icon~="bug"]:after{ content: "\f2be"; } [mod-icon~="before"][mod-icon~="calculator"]:before, [mod-icon~="after"][mod-icon~="calculator"]:after{ content: "\f26d"; } [mod-icon~="before"][mod-icon~="calendar"]:before, [mod-icon~="after"][mod-icon~="calendar"]:after{ content: "\f117"; } [mod-icon~="before"][mod-icon~="camera"]:before, [mod-icon~="after"][mod-icon~="camera"]:after{ content: "\f118"; } [mod-icon~="before"][mod-icon~="card"]:before, [mod-icon~="after"][mod-icon~="card"]:after{ content: "\f119"; } [mod-icon~="before"][mod-icon~="cash"]:before, [mod-icon~="after"][mod-icon~="cash"]:after{ content: "\f316"; } [mod-icon~="before"][mod-icon~="chatbox"]:before, [mod-icon~="after"][mod-icon~="chatbox"]:after{ content: "\f11b"; } [mod-icon~="before"][mod-icon~="chatbox-working"]:before, [mod-icon~="after"][mod-icon~="chatbox-working"]:after{ content: "\f11a"; } [mod-icon~="before"][mod-icon~="chatboxes"]:before, [mod-icon~="after"][mod-icon~="chatboxes"]:after{ content: "\f11c"; } [mod-icon~="before"][mod-icon~="chatbubble"]:before, [mod-icon~="after"][mod-icon~="chatbubble"]:after{ content: "\f11e"; } [mod-icon~="before"][mod-icon~="chatbubble-working"]:before, [mod-icon~="after"][mod-icon~="chatbubble-working"]:after{ content: "\f11d"; } [mod-icon~="before"][mod-icon~="chatbubbles"]:before, [mod-icon~="after"][mod-icon~="chatbubbles"]:after{ content: "\f11f"; } [mod-icon~="before"][mod-icon~="checkmark"]:before, [mod-icon~="after"][mod-icon~="checkmark"]:after{ content: "\f122"; } [mod-icon~="before"][mod-icon~="checkmark-circled"]:before, [mod-icon~="after"][mod-icon~="checkmark-circled"]:after{ content: "\f122"; } [mod-icon~="before"][mod-icon~="checkmark-round"]:before, [mod-icon~="after"][mod-icon~="checkmark-round"]:after{ content: "\f121"; } [mod-icon~="before"][mod-icon~="chevron-down"]:before, [mod-icon~="after"][mod-icon~="chevron-down"]:after{ content: "\f123"; } [mod-icon~="before"][mod-icon~="chevron-left"]:before, [mod-icon~="after"][mod-icon~="chevron-left"]:after{ content: "\f124"; } [mod-icon~="before"][mod-icon~="chevron-right"]:before, [mod-icon~="after"][mod-icon~="chevron-right"]:after{ content: "\f125"; } [mod-icon~="before"][mod-icon~="chevron-up"]:before, [mod-icon~="after"][mod-icon~="chevron-up"]:after{ content: "\f126"; } [mod-icon~="before"][mod-icon~="clipboard"]:before, [mod-icon~="after"][mod-icon~="clipboard"]:after{ content: "\f127"; } [mod-icon~="before"][mod-icon~="clock"]:before, [mod-icon~="after"][mod-icon~="clock"]:after{ content: "\f26e"; } [mod-icon~="before"][mod-icon~="close"]:before, [mod-icon~="after"][mod-icon~="close"]:after{ content: "\f12a"; } [mod-icon~="before"][mod-icon~="close-circled"]:before, [mod-icon~="after"][mod-icon~="close-circled"]:after{ content: "\f128"; } [mod-icon~="before"][mod-icon~="close-round"]:before, [mod-icon~="after"][mod-icon~="close-round"]:after{ content: "\f129"; } [mod-icon~="before"][mod-icon~="closed-captioning"]:before, [mod-icon~="after"][mod-icon~="closed-captioning"]:after{ content: "\f317"; } [mod-icon~="before"][mod-icon~="cloud"]:before, [mod-icon~="after"][mod-icon~="cloud"]:after{ content: "\f12b"; } [mod-icon~="before"][mod-icon~="code"]:before, [mod-icon~="after"][mod-icon~="code"]:after{ content: "\f271"; } [mod-icon~="before"][mod-icon~="code-download"]:before, [mod-icon~="after"][mod-icon~="code-download"]:after{ content: "\f26f"; } [mod-icon~="before"][mod-icon~="code-working"]:before, [mod-icon~="after"][mod-icon~="code-working"]:after{ content: "\f270"; } [mod-icon~="before"][mod-icon~="coffee"]:before, [mod-icon~="after"][mod-icon~="coffee"]:after{ content: "\f272"; } [mod-icon~="before"][mod-icon~="compass"]:before, [mod-icon~="after"][mod-icon~="compass"]:after{ content: "\f273"; } [mod-icon~="before"][mod-icon~="compose"]:before, [mod-icon~="after"][mod-icon~="compose"]:after{ content: "\f12c"; } [mod-icon~="before"][mod-icon~="connection-bars"]:before, [mod-icon~="after"][mod-icon~="connection-bars"]:after{ content: "\f274"; } [mod-icon~="before"][mod-icon~="contrast"]:before, [mod-icon~="after"][mod-icon~="contrast"]:after{ content: "\f275"; } [mod-icon~="before"][mod-icon~="crop"]:before, [mod-icon~="after"][mod-icon~="crop"]:after{ content: "\f3c1"; } [mod-icon~="before"][mod-icon~="cube"]:before, [mod-icon~="after"][mod-icon~="cube"]:after{ content: "\f318"; } [mod-icon~="before"][mod-icon~="disc"]:before, [mod-icon~="after"][mod-icon~="disc"]:after{ content: "\f12d"; } [mod-icon~="before"][mod-icon~="document"]:before, [mod-icon~="after"][mod-icon~="document"]:after{ content: "\f12f"; } [mod-icon~="before"][mod-icon~="document-text"]:before, [mod-icon~="after"][mod-icon~="document-text"]:after{ content: "\f12e"; } [mod-icon~="before"][mod-icon~="drag"]:before, [mod-icon~="after"][mod-icon~="drag"]:after{ content: "\f130"; } [mod-icon~="before"][mod-icon~="earth"]:before, [mod-icon~="after"][mod-icon~="earth"]:after{ content: "\f276"; } [mod-icon~="before"][mod-icon~="easel"]:before, [mod-icon~="after"][mod-icon~="easel"]:after{ content: "\f3c2"; } [mod-icon~="before"][mod-icon~="edit"]:before, [mod-icon~="after"][mod-icon~="edit"]:after{ content: "\f2bf"; } [mod-icon~="before"][mod-icon~="egg"]:before, [mod-icon~="after"][mod-icon~="egg"]:after{ content: "\f277"; } [mod-icon~="before"][mod-icon~="eject"]:before, [mod-icon~="after"][mod-icon~="eject"]:after{ content: "\f131"; } [mod-icon~="before"][mod-icon~="email"]:before, [mod-icon~="after"][mod-icon~="email"]:after{ content: "\f132"; } [mod-icon~="before"][mod-icon~="email-unread"]:before, [mod-icon~="after"][mod-icon~="email-unread"]:after{ content: "\f3c3"; } [mod-icon~="before"][mod-icon~="erlenmeyer-flask"]:before, [mod-icon~="after"][mod-icon~="erlenmeyer-flask"]:after{ content: "\f3c5"; } [mod-icon~="before"][mod-icon~="erlenmeyer-flask-bubbles"]:before, [mod-icon~="after"][mod-icon~="erlenmeyer-flask-bubbles"]:after{ content: "\f3c4"; } [mod-icon~="before"][mod-icon~="eye"]:before, [mod-icon~="after"][mod-icon~="eye"]:after{ content: "\f133"; } [mod-icon~="before"][mod-icon~="eye-disabled"]:before, [mod-icon~="after"][mod-icon~="eye-disabled"]:after{ content: "\f306"; } [mod-icon~="before"][mod-icon~="female"]:before, [mod-icon~="after"][mod-icon~="female"]:after{ content: "\f278"; } [mod-icon~="before"][mod-icon~="filing"]:before, [mod-icon~="after"][mod-icon~="filing"]:after{ content: "\f134"; } [mod-icon~="before"][mod-icon~="film-marker"]:before, [mod-icon~="after"][mod-icon~="film-marker"]:after{ content: "\f135"; } [mod-icon~="before"][mod-icon~="fireball"]:before, [mod-icon~="after"][mod-icon~="fireball"]:after{ content: "\f319"; } [mod-icon~="before"][mod-icon~="flag"]:before, [mod-icon~="after"][mod-icon~="flag"]:after{ content: "\f279"; } [mod-icon~="before"][mod-icon~="flame"]:before, [mod-icon~="after"][mod-icon~="flame"]:after{ content: "\f31a"; } [mod-icon~="before"][mod-icon~="flash"]:before, [mod-icon~="after"][mod-icon~="flash"]:after{ content: "\f137"; } [mod-icon~="before"][mod-icon~="flash-off"]:before, [mod-icon~="after"][mod-icon~="flash-off"]:after{ content: "\f136"; } [mod-icon~="before"][mod-icon~="folder"]:before, [mod-icon~="after"][mod-icon~="folder"]:after{ content: "\f139"; } [mod-icon~="before"][mod-icon~="fork"]:before, [mod-icon~="after"][mod-icon~="fork"]:after{ content: "\f27a"; } [mod-icon~="before"][mod-icon~="fork-repo"]:before, [mod-icon~="after"][mod-icon~="fork-repo"]:after{ content: "\f2c0"; } [mod-icon~="before"][mod-icon~="forward"]:before, [mod-icon~="after"][mod-icon~="forward"]:after{ content: "\f13a"; } [mod-icon~="before"][mod-icon~="funnel"]:before, [mod-icon~="after"][mod-icon~="funnel"]:after{ content: "\f31b"; } [mod-icon~="before"][mod-icon~="gear-a"]:before, [mod-icon~="after"][mod-icon~="gear-a"]:after{ content: "\f13d"; } [mod-icon~="before"][mod-icon~="gear-b"]:before, [mod-icon~="after"][mod-icon~="gear-b"]:after{ content: "\f13e"; } [mod-icon~="before"][mod-icon~="grid"]:before, [mod-icon~="after"][mod-icon~="grid"]:after{ content: "\f13f"; } [mod-icon~="before"][mod-icon~="hammer"]:before, [mod-icon~="after"][mod-icon~="hammer"]:after{ content: "\f27b"; } [mod-icon~="before"][mod-icon~="happy"]:before, [mod-icon~="after"][mod-icon~="happy"]:after{ content: "\f31c"; } [mod-icon~="before"][mod-icon~="happy-outline"]:before, [mod-icon~="after"][mod-icon~="happy-outline"]:after{ content: "\f3c6"; } [mod-icon~="before"][mod-icon~="headphone"]:before, [mod-icon~="after"][mod-icon~="headphone"]:after{ content: "\f140"; } [mod-icon~="before"][mod-icon~="heart"]:before, [mod-icon~="after"][mod-icon~="heart"]:after{ content: "\f141"; } [mod-icon~="before"][mod-icon~="heart-broken"]:before, [mod-icon~="after"][mod-icon~="heart-broken"]:after{ content: "\f31d"; } [mod-icon~="before"][mod-icon~="help"]:before, [mod-icon~="after"][mod-icon~="help"]:after{ content: "\f143"; } [mod-icon~="before"][mod-icon~="help-buoy"]:before, [mod-icon~="after"][mod-icon~="help-buoy"]:after{ content: "\f27c"; } [mod-icon~="before"][mod-icon~="help-circled"]:before, [mod-icon~="after"][mod-icon~="help-circled"]:after{ content: "\f142"; } [mod-icon~="before"][mod-icon~="home"]:before, [mod-icon~="after"][mod-icon~="home"]:after{ content: "\f144"; } [mod-icon~="before"][mod-icon~="icecream"]:before, [mod-icon~="after"][mod-icon~="icecream"]:after{ content: "\f27d"; } [mod-icon~="before"][mod-icon~="image"]:before, [mod-icon~="after"][mod-icon~="image"]:after{ content: "\f147"; } [mod-icon~="before"][mod-icon~="images"]:before, [mod-icon~="after"][mod-icon~="images"]:after{ content: "\f148"; } [mod-icon~="before"][mod-icon~="information"]:before, [mod-icon~="after"][mod-icon~="information"]:after{ content: "\f14a"; } [mod-icon~="before"][mod-icon~="information-circled"]:before, [mod-icon~="after"][mod-icon~="information-circled"]:after{ content: "\f149"; } [mod-icon~="before"][mod-icon~="ionic"]:before, [mod-icon~="after"][mod-icon~="ionic"]:after{ content: "\f14b"; } [mod-icon~="before"][mod-icon~="ios-alarm"]:before, [mod-icon~="after"][mod-icon~="ios-alarm"]:after{ content: "\f3c8"; } [mod-icon~="before"][mod-icon~="ios-alarm-outline"]:before, [mod-icon~="after"][mod-icon~="ios-alarm-outline"]:after{ content: "\f3c7"; } [mod-icon~="before"][mod-icon~="ios-albums"]:before, [mod-icon~="after"][mod-icon~="ios-albums"]:after{ content: "\f3ca"; } [mod-icon~="before"][mod-icon~="ios-albums-outline"]:before, [mod-icon~="after"][mod-icon~="ios-albums-outline"]:after{ content: "\f3c9"; } [mod-icon~="before"][mod-icon~="ios-americanfootball"]:before, [mod-icon~="after"][mod-icon~="ios-americanfootball"]:after{ content: "\f3cc"; } [mod-icon~="before"][mod-icon~="ios-americanfootball-outline"]:before, [mod-icon~="after"][mod-icon~="ios-americanfootball-outline"]:after{ content: "\f3cb"; } [mod-icon~="before"][mod-icon~="ios-analytics"]:before, [mod-icon~="after"][mod-icon~="ios-analytics"]:after{ content: "\f3ce"; } [mod-icon~="before"][mod-icon~="ios-analytics-outline"]:before, [mod-icon~="after"][mod-icon~="ios-analytics-outline"]:after{ content: "\f3cd"; } [mod-icon~="before"][mod-icon~="ios-arrow-back"]:before, [mod-icon~="after"][mod-icon~="ios-arrow-back"]:after{ content: "\f3cf"; } [mod-icon~="before"][mod-icon~="ios-arrow-down"]:before, [mod-icon~="after"][mod-icon~="ios-arrow-down"]:after{ content: "\f3d0"; } [mod-icon~="before"][mod-icon~="ios-arrow-forward"]:before, [mod-icon~="after"][mod-icon~="ios-arrow-forward"]:after{ content: "\f3d1"; } [mod-icon~="before"][mod-icon~="ios-arrow-left"]:before, [mod-icon~="after"][mod-icon~="ios-arrow-left"]:after{ content: "\f3d2"; } [mod-icon~="before"][mod-icon~="ios-arrow-right"]:before, [mod-icon~="after"][mod-icon~="ios-arrow-right"]:after{ content: "\f3d3"; } [mod-icon~="before"][mod-icon~="ios-arrow-thin-down"]:before, [mod-icon~="after"][mod-icon~="ios-arrow-thin-down"]:after{ content: "\f3d4"; } [mod-icon~="before"][mod-icon~="ios-arrow-thin-left"]:before, [mod-icon~="after"][mod-icon~="ios-arrow-thin-left"]:after{ content: "\f3d5"; } [mod-icon~="before"][mod-icon~="ios-arrow-thin-right"]:before, [mod-icon~="after"][mod-icon~="ios-arrow-thin-right"]:after{ content: "\f3d6"; } [mod-icon~="before"][mod-icon~="ios-arrow-thin-up"]:before, [mod-icon~="after"][mod-icon~="ios-arrow-thin-up"]:after{ content: "\f3d7"; } [mod-icon~="before"][mod-icon~="ios-arrow-up"]:before, [mod-icon~="after"][mod-icon~="ios-arrow-up"]:after{ content: "\f3d8"; } [mod-icon~="before"][mod-icon~="ios-at"]:before, [mod-icon~="after"][mod-icon~="ios-at"]:after{ content: "\f3da"; } [mod-icon~="before"][mod-icon~="ios-at-outline"]:before, [mod-icon~="after"][mod-icon~="ios-at-outline"]:after{ content: "\f3d9"; } [mod-icon~="before"][mod-icon~="ios-barcode"]:before, [mod-icon~="after"][mod-icon~="ios-barcode"]:after{ content: "\f3dc"; } [mod-icon~="before"][mod-icon~="ios-barcode-outline"]:before, [mod-icon~="after"][mod-icon~="ios-barcode-outline"]:after{ content: "\f3db"; } [mod-icon~="before"][mod-icon~="ios-baseball"]:before, [mod-icon~="after"][mod-icon~="ios-baseball"]:after{ content: "\f3de"; } [mod-icon~="before"][mod-icon~="ios-baseball-outline"]:before, [mod-icon~="after"][mod-icon~="ios-baseball-outline"]:after{ content: "\f3dd"; } [mod-icon~="before"][mod-icon~="ios-basketball"]:before, [mod-icon~="after"][mod-icon~="ios-basketball"]:after{ content: "\f3e0"; } [mod-icon~="before"][mod-icon~="ios-basketball-outline"]:before, [mod-icon~="after"][mod-icon~="ios-basketball-outline"]:after{ content: "\f3df"; } [mod-icon~="before"][mod-icon~="ios-bell"]:before, [mod-icon~="after"][mod-icon~="ios-bell"]:after{ content: "\f3e2"; } [mod-icon~="before"][mod-icon~="ios-bell-outline"]:before, [mod-icon~="after"][mod-icon~="ios-bell-outline"]:after{ content: "\f3e1"; } [mod-icon~="before"][mod-icon~="ios-body"]:before, [mod-icon~="after"][mod-icon~="ios-body"]:after{ content: "\f3e4"; } [mod-icon~="before"][mod-icon~="ios-body-outline"]:before, [mod-icon~="after"][mod-icon~="ios-body-outline"]:after{ content: "\f3e3"; } [mod-icon~="before"][mod-icon~="ios-bolt"]:before, [mod-icon~="after"][mod-icon~="ios-bolt"]:after{ content: "\f3e6"; } [mod-icon~="before"][mod-icon~="ios-bolt-outlinet"]:before, [mod-icon~="after"][mod-icon~="ios-bolt-outline"]:after{ content: "\f3e5"; } [mod-icon~="before"][mod-icon~="ios-book"]:before, [mod-icon~="after"][mod-icon~="ios-book"]:after{ content: "\f3e8"; } [mod-icon~="before"][mod-icon~="ios-book-outline"]:before, [mod-icon~="after"][mod-icon~="ios-book-outline"]:after{ content: "\f3e7"; } [mod-icon~="before"][mod-icon~="ios-bookmarks"]:before, [mod-icon~="after"][mod-icon~="ios-bookmarks"]:after{ content: "\f3ea"; } [mod-icon~="before"][mod-icon~="ios-bookmarks-outline"]:before, [mod-icon~="after"][mod-icon~="ios-bookmarks-outline"]:after{ content: "\f3e9"; } [mod-icon~="before"][mod-icon~="ios-box"]:before, [mod-icon~="after"][mod-icon~="ios-box"]:after{ content: "\f3ec"; } [mod-icon~="before"][mod-icon~="ios-box-outline"]:before, [mod-icon~="after"][mod-icon~="ios-box-outline"]:after{ content: "\f3eb"; } [mod-icon~="before"][mod-icon~="ios-briefcase"]:before, [mod-icon~="after"][mod-icon~="ios-briefcase"]:after{ content: "\f3ee"; } [mod-icon~="before"][mod-icon~="ios-briefcase-outline"]:before, [mod-icon~="after"][mod-icon~="ios-briefcase-outline"]:after{ content: "\f3ed"; } [mod-icon~="before"][mod-icon~="ios-browsers"]:before, [mod-icon~="after"][mod-icon~="ios-browsers"]:after{ content: "\f3f0"; } [mod-icon~="before"][mod-icon~="ios-browsers-outline"]:before, [mod-icon~="after"][mod-icon~="ios-browsers-outline"]:after{ content: "\f3ef"; } [mod-icon~="before"][mod-icon~="ios-calculator"]:before, [mod-icon~="after"][mod-icon~="ios-calculator"]:after{ content: "\f3f2"; } [mod-icon~="before"][mod-icon~="ios-calculator-outline"]:before, [mod-icon~="after"][mod-icon~="ios-calculator-outline"]:after{ content: "\f3f1"; } [mod-icon~="before"][mod-icon~="ios-calendar"]:before, [mod-icon~="after"][mod-icon~="ios-calendar"]:after{ content: "\f3f4"; } [mod-icon~="before"][mod-icon~="ios-calendar-outline"]:before, [mod-icon~="after"][mod-icon~="ios-calendar-outline"]:after{ content: "\f3f3"; } [mod-icon~="before"][mod-icon~="ios-camera"]:before, [mod-icon~="after"][mod-icon~="ios-camera"]:after{ content: "\f3f6"; } [mod-icon~="before"][mod-icon~="ios-camera-outline"]:before, [mod-icon~="after"][mod-icon~="ios-camera-outline"]:after{ content: "\f3f5"; } [mod-icon~="before"][mod-icon~="ios-cart"]:before, [mod-icon~="after"][mod-icon~="ios-cart"]:after{ content: "\f3f8"; } [mod-icon~="before"][mod-icon~="ios-cart-outline"]:before, [mod-icon~="after"][mod-icon~="ios-cart-outline"]:after{ content: "\f3f7"; } [mod-icon~="before"][mod-icon~="ios-chatboxes"]:before, [mod-icon~="after"][mod-icon~="ios-chatboxes"]:after{ content: "\f3fa"; } [mod-icon~="before"][mod-icon~="ios-chatboxes-outline"]:before, [mod-icon~="after"][mod-icon~="ios-chatboxes-outline"]:after{ content: "\f3f9"; } [mod-icon~="before"][mod-icon~="ios-chatbubble"]:before, [mod-icon~="after"][mod-icon~="ios-chatbubble"]:after{ content: "\f3fc"; } [mod-icon~="before"][mod-icon~="ios-chatbubble-outline"]:before, [mod-icon~="after"][mod-icon~="ios-chatbubble-outline"]:after{ content: "\f3fb"; } [mod-icon~="before"][mod-icon~="ios-checkmark"]:before, [mod-icon~="after"][mod-icon~="ios-checkmark"]:after{ content: "\f3ff"; } [mod-icon~="before"][mod-icon~="ios-checkmark-empty"]:before, [mod-icon~="after"][mod-icon~="ios-checkmark-empty"]:after{ content: "\f3fd"; } [mod-icon~="before"][mod-icon~="ios-checkmark-outline"]:before, [mod-icon~="after"][mod-icon~="ios-checkmark-outline"]:after{ content: "\f3fe"; } [mod-icon~="before"][mod-icon~="ios-circle-filled"]:before, [mod-icon~="after"][mod-icon~="ios-circle-filled"]:after{ content: "\f400"; } [mod-icon~="before"][mod-icon~="ios-circle-outline"]:before, [mod-icon~="after"][mod-icon~="ios-circle-outline"]:after{ content: "\f401"; } [mod-icon~="before"][mod-icon~="ios-clock"]:before, [mod-icon~="after"][mod-icon~="ios-clock"]:after{ content: "\f403"; } [mod-icon~="before"][mod-icon~="ios-clock-outline"]:before, [mod-icon~="after"][mod-icon~="ios-clock-outline"]:after{ content: "\f402"; } [mod-icon~="before"][mod-icon~="ios-close"]:before, [mod-icon~="after"][mod-icon~="ios-close"]:after{ content: "\f406"; } [mod-icon~="before"][mod-icon~="ios-close-empty"]:before, [mod-icon~="after"][mod-icon~="ios-close-empty"]:after{ content: "\f404"; } [mod-icon~="before"][mod-icon~="ios-close-outline"]:before, [mod-icon~="after"][mod-icon~="ios-close-outline"]:after{ content: "\f405"; } [mod-icon~="before"][mod-icon~="ios-cloud"]:before, [mod-icon~="after"][mod-icon~="ios-cloud"]:after{ content: "\f40c"; } [mod-icon~="before"][mod-icon~="ios-cloud-download"]:before, [mod-icon~="after"][mod-icon~="ios-cloud-download"]:after{ content: "\f408"; } [mod-icon~="before"][mod-icon~="ios-cloud-download-outline"]:before, [mod-icon~="after"][mod-icon~="ios-cloud-download-outline"]:after{ content: "\f407"; } [mod-icon~="before"][mod-icon~="ios-cloud-outline"]:before, [mod-icon~="after"][mod-icon~="ios-cloud-outline"]:after{ content: "\f409"; } [mod-icon~="before"][mod-icon~="ios-cloud-upload"]:before, [mod-icon~="after"][mod-icon~="ios-cloud-upload"]:after{ content: "\f40b"; } [mod-icon~="before"][mod-icon~="ios-cloud-upload-outline"]:before, [mod-icon~="after"][mod-icon~="ios-cloud-upload-outline"]:after{ content: "\f40a"; } [mod-icon~="before"][mod-icon~="ios-cloudy"]:before, [mod-icon~="after"][mod-icon~="ios-cloudy"]:after{ content: "\f410"; } [mod-icon~="before"][mod-icon~="ios-cloudy-night"]:before, [mod-icon~="after"][mod-icon~="ios-cloudy-night"]:after{ content: "\f40e"; } [mod-icon~="before"][mod-icon~="ios-cloudy-night-outline"]:before, [mod-icon~="after"][mod-icon~="ios-cloudy-night-outline"]:after{ content: "\f40d"; } [mod-icon~="before"][mod-icon~="ios-cloudy-outline"]:before, [mod-icon~="after"][mod-icon~="ios-cloudy-outline"]:after{ content: "\f40f"; } [mod-icon~="before"][mod-icon~="ios-cog"]:before, [mod-icon~="after"][mod-icon~="ios-cog"]:after{ content: "\f412"; } [mod-icon~="before"][mod-icon~="ios-cog-outline"]:before, [mod-icon~="after"][mod-icon~="ios-cog-outline"]:after{ content: "\f411"; } [mod-icon~="before"][mod-icon~="ios-color-filter"]:before, [mod-icon~="after"][mod-icon~="ios-color-filter"]:after{ content: "\f414"; } [mod-icon~="before"][mod-icon~="ios-color-filter-outline"]:before, [mod-icon~="after"][mod-icon~="ios-color-filter-outline"]:after{ content: "\f413"; } [mod-icon~="before"][mod-icon~="ios-color-wand"]:before, [mod-icon~="after"][mod-icon~="ios-color-wand"]:after{ content: "\f416"; } [mod-icon~="before"][mod-icon~="ios-color-wand-outline"]:before, [mod-icon~="after"][mod-icon~="ios-color-wand-outline"]:after{ content: "\f415"; } [mod-icon~="before"][mod-icon~="ios-compose"]:before, [mod-icon~="after"][mod-icon~="ios-compose"]:after{ content: "\f418"; } [mod-icon~="before"][mod-icon~="ios-compose-outline"]:before, [mod-icon~="after"][mod-icon~="ios-compose-outline"]:after{ content: "\f417"; } [mod-icon~="before"][mod-icon~="ios-contact"]:before, [mod-icon~="after"][mod-icon~="ios-contact"]:after{ content: "\f41a"; } [mod-icon~="before"][mod-icon~="ios-contact-outline"]:before, [mod-icon~="after"][mod-icon~="ios-contact-outline"]:after{ content: "\f419"; } [mod-icon~="before"][mod-icon~="ios-copy"]:before, [mod-icon~="after"][mod-icon~="ios-copy"]:after{ content: "\f41c"; } [mod-icon~="before"][mod-icon~="ios-copy-outline"]:before, [mod-icon~="after"][mod-icon~="ios-copy-outline"]:after{ content: "\f41b"; } [mod-icon~="before"][mod-icon~="ios-crop"]:before, [mod-icon~="after"][mod-icon~="ios-crop"]:after{ content: "\f41e"; } [mod-icon~="before"][mod-icon~="ios-crop-strong"]:before, [mod-icon~="after"][mod-icon~="ios-crop-strong"]:after{ content: "\f41d"; } [mod-icon~="before"][mod-icon~="ios-download"]:before, [mod-icon~="after"][mod-icon~="ios-download"]:after{ content: "\f420"; } [mod-icon~="before"][mod-icon~="ios-download-outline"]:before, [mod-icon~="after"][mod-icon~="ios-download-outline"]:after{ content: "\f41f"; } [mod-icon~="before"][mod-icon~="ios-drag"]:before, [mod-icon~="after"][mod-icon~="ios-drag"]:after{ content: "\f421"; } [mod-icon~="before"][mod-icon~="ios-email"]:before, [mod-icon~="after"][mod-icon~="ios-email"]:after{ content: "\f423"; } [mod-icon~="before"][mod-icon~="ios-email-outline"]:before, [mod-icon~="after"][mod-icon~="ios-email-outline"]:after{ content: "\f422"; } [mod-icon~="before"][mod-icon~="ios-eye"]:before, [mod-icon~="after"][mod-icon~="ios-eye"]:after{ content: "\f425"; } [mod-icon~="before"][mod-icon~="ios-eye-outline"]:before, [mod-icon~="after"][mod-icon~="ios-eye-outline"]:after{ content: "\f424"; } [mod-icon~="before"][mod-icon~="ios-fastforward"]:before, [mod-icon~="after"][mod-icon~="ios-fastforward"]:after{ content: "\f427"; } [mod-icon~="before"][mod-icon~="ios-fastforward-outline"]:before, [mod-icon~="after"][mod-icon~="ios-fastforward-outline"]:after{ content: "\f426"; } [mod-icon~="before"][mod-icon~="ios-filing"]:before, [mod-icon~="after"][mod-icon~="ios-filing"]:after{ content: "\f429"; } [mod-icon~="before"][mod-icon~="ios-filing-outline"]:before, [mod-icon~="after"][mod-icon~="ios-filing-outline"]:after{ content: "\f428"; } [mod-icon~="before"][mod-icon~="ios-film"]:before, [mod-icon~="after"][mod-icon~="ios-film"]:after{ content: "\f42b"; } [mod-icon~="before"][mod-icon~="ios-film-outline"]:before, [mod-icon~="after"][mod-icon~="ios-film-outline"]:after{ content: "\f42a"; } [mod-icon~="before"][mod-icon~="ios-flag"]:before, [mod-icon~="after"][mod-icon~="ios-flag"]:after{ content: "\f42d"; } [mod-icon~="before"][mod-icon~="ios-flag-outline"]:before, [mod-icon~="after"][mod-icon~="ios-flag-outline"]:after{ content: "\f42c"; } [mod-icon~="before"][mod-icon~="ios-flame"]:before, [mod-icon~="after"][mod-icon~="ios-flame"]:after{ content: "\f42f"; } [mod-icon~="before"][mod-icon~="ios-flame-outline"]:before, [mod-icon~="after"][mod-icon~="ios-flame-outline"]:after{ content: "\f42e"; } [mod-icon~="before"][mod-icon~="ios-flask"]:before, [mod-icon~="after"][mod-icon~="ios-flask"]:after{ content: "\f431"; } [mod-icon~="before"][mod-icon~="ios-flask-outline"]:before, [mod-icon~="after"][mod-icon~="ios-flask-outline"]:after{ content: "\f430"; } [mod-icon~="before"][mod-icon~="ios-flower"]:before, [mod-icon~="after"][mod-icon~="ios-flower"]:after{ content: "\f433"; } [mod-icon~="before"][mod-icon~="ios-flower-outline"]:before, [mod-icon~="after"][mod-icon~="ios-flower-outline"]:after{ content: "\f432"; } [mod-icon~="before"][mod-icon~="ios-folder"]:before, [mod-icon~="after"][mod-icon~="ios-folder"]:after{ content: "\f435"; } [mod-icon~="before"][mod-icon~="ios-folder-outline"]:before, [mod-icon~="after"][mod-icon~="ios-folder-outline"]:after{ content: "\f434"; } [mod-icon~="before"][mod-icon~="ios-football"]:before, [mod-icon~="after"][mod-icon~="ios-football"]:after{ content: "\f437"; } [mod-icon~="before"][mod-icon~="ios-football-outline"]:before, [mod-icon~="after"][mod-icon~="ios-football-outline"]:after{ content: "\f436"; } [mod-icon~="before"][mod-icon~="ios-game-controller-a"]:before, [mod-icon~="after"][mod-icon~="ios-game-controller-a"]:after{ content: "\f439"; } [mod-icon~="before"][mod-icon~="ios-game-controller-a-outline"]:before, [mod-icon~="after"][mod-icon~="ios-game-controller-a-outline"]:after{ content: "\f438"; } [mod-icon~="before"][mod-icon~="ios-game-controller-b"]:before, [mod-icon~="after"][mod-icon~="ios-game-controller-b"]:after{ content: "\f43b"; } [mod-icon~="before"][mod-icon~="ios-game-controller-b-outline"]:before, [mod-icon~="after"][mod-icon~="ios-game-controller-b-outline"]:after{ content: "\f43a"; } [mod-icon~="before"][mod-icon~="ios-gear"]:before, [mod-icon~="after"][mod-icon~="ios-gear"]:after{ content: "\f43d"; } [mod-icon~="before"][mod-icon~="ios-gear-outline"]:before, [mod-icon~="after"][mod-icon~="ios-gear-outline"]:after{ content: "\f43c"; } [mod-icon~="before"][mod-icon~="ios-glasses"]:before, [mod-icon~="after"][mod-icon~="ios-glasses"]:after{ content: "\f43f"; } [mod-icon~="before"][mod-icon~="ios-glasses-outline"]:before, [mod-icon~="after"][mod-icon~="ios-glasses-outline"]:after{ content: "\f43e"; } [mod-icon~="before"][mod-icon~="ios-grid-view"]:before, [mod-icon~="after"][mod-icon~="ios-grid-view"]:after{ content: "\f441"; } [mod-icon~="before"][mod-icon~="ios-grid-view-outline"]:before, [mod-icon~="after"][mod-icon~="ios-grid-view-outline"]:after{ content: "\f440"; } [mod-icon~="before"][mod-icon~="ios-heart"]:before, [mod-icon~="after"][mod-icon~="ios-heart"]:after{ content: "\f443"; } [mod-icon~="before"][mod-icon~="ios-heart-outline"]:before, [mod-icon~="after"][mod-icon~="ios-heart-outline"]:after{ content: "\f442"; } [mod-icon~="before"][mod-icon~="ios-help"]:before, [mod-icon~="after"][mod-icon~="ios-help"]:after{ content: "\f446"; } [mod-icon~="before"][mod-icon~="ios-help-empty"]:before, [mod-icon~="after"][mod-icon~="ios-help-empty"]:after{ content: "\f444"; } [mod-icon~="before"][mod-icon~="ios-help-outline"]:before, [mod-icon~="after"][mod-icon~="ios-help-outline"]:after{ content: "\f445"; } [mod-icon~="before"][mod-icon~="ios-home"]:before, [mod-icon~="after"][mod-icon~="ios-home"]:after{ content: "\f448"; } [mod-icon~="before"][mod-icon~="ios-home-outline"]:before, [mod-icon~="after"][mod-icon~="ios-home-outline"]:after{ content: "\f447"; } [mod-icon~="before"][mod-icon~="ios-infinite"]:before, [mod-icon~="after"][mod-icon~="ios-infinite"]:after{ content: "\f44a"; } [mod-icon~="before"][mod-icon~="ios-infinite-outline"]:before, [mod-icon~="after"][mod-icon~="ios-infinite-outline"]:after{ content: "\f449"; } [mod-icon~="before"][mod-icon~="ios-information"]:before, [mod-icon~="after"][mod-icon~="ios-information"]:after{ content: "\f44d"; } [mod-icon~="before"][mod-icon~="ios-information-empty"]:before, [mod-icon~="after"][mod-icon~="ios-information-empty"]:after{ content: "\f44b"; } [mod-icon~="before"][mod-icon~="ios-information-outline"]:before, [mod-icon~="after"][mod-icon~="ios-information-outline"]:after{ content: "\f44c"; } [mod-icon~="before"][mod-icon~="ios-ionic-outline"]:before, [mod-icon~="after"][mod-icon~="ios-ionic-outline"]:after{ content: "\f44e"; } [mod-icon~="before"][mod-icon~="ios-keypad"]:before, [mod-icon~="after"][mod-icon~="ios-keypad"]:after{ content: "\f450"; } [mod-icon~="before"][mod-icon~="ios-keypad-outline"]:before, [mod-icon~="after"][mod-icon~="ios-keypad-outline"]:after{ content: "\f44f"; } [mod-icon~="before"][mod-icon~="ios-lightbulb"]:before, [mod-icon~="after"][mod-icon~="ios-lightbulb"]:after{ content: "\f452"; } [mod-icon~="before"][mod-icon~="ios-lightbulb-outline"]:before, [mod-icon~="after"][mod-icon~="ios-lightbulb-outline"]:after{ content: "\f451"; } [mod-icon~="before"][mod-icon~="ios-list"]:before, [mod-icon~="after"][mod-icon~="ios-list"]:after{ content: "\f454"; } [mod-icon~="before"][mod-icon~="ios-list-outline"]:before, [mod-icon~="after"][mod-icon~="ios-list-outline"]:after{ content: "\f453"; } [mod-icon~="before"][mod-icon~="ios-location"]:before, [mod-icon~="after"][mod-icon~="ios-location"]:after{ content: "\f456"; } [mod-icon~="before"][mod-icon~="ios-location-outline"]:before, [mod-icon~="after"][mod-icon~="ios-location-outline"]:after{ content: "\f455"; } [mod-icon~="before"][mod-icon~="ios-locked"]:before, [mod-icon~="after"][mod-icon~="ios-locked"]:after{ content: "\f458"; } [mod-icon~="before"][mod-icon~="ios-locked-outline"]:before, [mod-icon~="after"][mod-icon~="ios-locked-outline"]:after{ content: "\f457"; } [mod-icon~="before"][mod-icon~="ios-loop"]:before, [mod-icon~="after"][mod-icon~="ios-loop"]:after{ content: "\f45a"; } [mod-icon~="before"][mod-icon~="ios-loop-strong"]:before, [mod-icon~="after"][mod-icon~="ios-loop-strong"]:after{ content: "\f459"; } [mod-icon~="before"][mod-icon~="ios-medical"]:before, [mod-icon~="after"][mod-icon~="ios-medical"]:after{ content: "\f45c"; } [mod-icon~="before"][mod-icon~="ios-medical-outline"]:before, [mod-icon~="after"][mod-icon~="ios-medical-outline"]:after{ content: "\f45b"; } [mod-icon~="before"][mod-icon~="ios-medkit"]:before, [mod-icon~="after"][mod-icon~="ios-medkit"]:after{ content: "\f45e"; } [mod-icon~="before"][mod-icon~="ios-medkit-outline"]:before, [mod-icon~="after"][mod-icon~="ios-medkit-outline"]:after{ content: "\f45d"; } [mod-icon~="before"][mod-icon~="ios-mic"]:before, [mod-icon~="after"][mod-icon~="ios-mic"]:after{ content: "\f461"; } [mod-icon~="before"][mod-icon~="ios-mic-off"]:before, [mod-icon~="after"][mod-icon~="ios-mic-off"]:after{ content: "\f45f"; } [mod-icon~="before"][mod-icon~="ios-mic-outline"]:before, [mod-icon~="after"][mod-icon~="ios-mic-outline"]:after{ content: "\f460"; } [mod-icon~="before"][mod-icon~="ios-minus"]:before, [mod-icon~="after"][mod-icon~="ios-minus"]:after{ content: "\f464"; } [mod-icon~="before"][mod-icon~="ios-minus-empty"]:before, [mod-icon~="after"][mod-icon~="ios-minus-empty"]:after{ content: "\f462"; } [mod-icon~="before"][mod-icon~="ios-minus-outline"]:before, [mod-icon~="after"][mod-icon~="ios-minus-outline"]:after{ content: "\f463"; } [mod-icon~="before"][mod-icon~="ios-monitor"]:before, [mod-icon~="after"][mod-icon~="ios-monitor"]:after{ content: "\f466"; } [mod-icon~="before"][mod-icon~="ios-monitor-outline"]:before, [mod-icon~="after"][mod-icon~="ios-monitor-outline"]:after{ content: "\f465"; } [mod-icon~="before"][mod-icon~="ios-moon"]:before, [mod-icon~="after"][mod-icon~="ios-moon"]:after{ content: "\f468"; } [mod-icon~="before"][mod-icon~="ios-moon-outline"]:before, [mod-icon~="after"][mod-icon~="ios-moon-outline"]:after{ content: "\f467"; } [mod-icon~="before"][mod-icon~="ios-more"]:before, [mod-icon~="after"][mod-icon~="ios-more"]:after{ content: "\f46a"; } [mod-icon~="before"][mod-icon~="ios-more-outline"]:before, [mod-icon~="after"][mod-icon~="ios-more-outline"]:after{ content: "\f469"; } [mod-icon~="before"][mod-icon~="ios-musical-note"]:before, [mod-icon~="after"][mod-icon~="ios-musical-note"]:after{ content: "\f46b"; } [mod-icon~="before"][mod-icon~="ios-musical-notes"]:before, [mod-icon~="after"][mod-icon~="ios-musical-notes"]:after{ content: "\f46c"; } [mod-icon~="before"][mod-icon~="ios-navigate"]:before, [mod-icon~="after"][mod-icon~="ios-navigate"]:after{ content: "\f46e"; } [mod-icon~="before"][mod-icon~="ios-navigate-outline"]:before, [mod-icon~="after"][mod-icon~="ios-navigate-outline"]:after{ content: "\f46d"; } [mod-icon~="before"][mod-icon~="ios-nutrition"]:before, [mod-icon~="after"][mod-icon~="ios-nutrition"]:after{ content: "\f470"; } [mod-icon~="before"][mod-icon~="ios-nutrition-outline"]:before, [mod-icon~="after"][mod-icon~="ios-nutrition-outline"]:after{ content: "\f46f"; } [mod-icon~="before"][mod-icon~="ios-paper"]:before, [mod-icon~="after"][mod-icon~="ios-paper"]:after{ content: "\f472"; } [mod-icon~="before"][mod-icon~="ios-paper-outline"]:before, [mod-icon~="after"][mod-icon~="ios-paper-outline"]:after{ content: "\f471"; } [mod-icon~="before"][mod-icon~="ios-paperplane"]:before, [mod-icon~="after"][mod-icon~="ios-paperplane"]:after{ content: "\f474"; } [mod-icon~="before"][mod-icon~="ios-paperplane-outline"]:before, [mod-icon~="after"][mod-icon~="ios-paperplane-outline"]:after{ content: "\f473"; } [mod-icon~="before"][mod-icon~="ios-partlysunny"]:before, [mod-icon~="after"][mod-icon~="ios-partlysunny"]:after{ content: "\f476"; } [mod-icon~="before"][mod-icon~="ios-partlysunny-outline"]:before, [mod-icon~="after"][mod-icon~="ios-partlysunny-outline"]:after{ content: "\f475"; } [mod-icon~="before"][mod-icon~="ios-pause"]:before, [mod-icon~="after"][mod-icon~="ios-pause"]:after{ content: "\f478"; } [mod-icon~="before"][mod-icon~="ios-pause-outline"]:before, [mod-icon~="after"][mod-icon~="ios-pause-outline"]:after{ content: "\f477"; } [mod-icon~="before"][mod-icon~="ios-paw"]:before, [mod-icon~="after"][mod-icon~="ios-paw"]:after{ content: "\f47a"; } [mod-icon~="before"][mod-icon~="ios-paw-outline"]:before, [mod-icon~="after"][mod-icon~="ios-paw-outline"]:after{ content: "\f479"; } [mod-icon~="before"][mod-icon~="ios-people"]:before, [mod-icon~="after"][mod-icon~="ios-people"]:after{ content: "\f47c"; } [mod-icon~="before"][mod-icon~="ios-people-outline"]:before, [mod-icon~="after"][mod-icon~="ios-people-outline"]:after{ content: "\f47b"; } [mod-icon~="before"][mod-icon~="ios-person"]:before, [mod-icon~="after"][mod-icon~="ios-person"]:after{ content: "\f47e"; } [mod-icon~="before"][mod-icon~="ios-person-outline"]:before, [mod-icon~="after"][mod-icon~="ios-person-outline"]:after{ content: "\f47d"; } [mod-icon~="before"][mod-icon~="ios-personad"]:before, [mod-icon~="after"][mod-icon~="ios-personadd"]:after{ content: "\f480"; } [mod-icon~="before"][mod-icon~="ios-personadd-outline"]:before, [mod-icon~="after"][mod-icon~="ios-personadd-outline"]:after{ content: "\f47f"; } [mod-icon~="before"][mod-icon~="ios-photos"]:before, [mod-icon~="after"][mod-icon~="ios-photos"]:after{ content: "\f482"; } [mod-icon~="before"][mod-icon~="ios-photos-outline"]:before, [mod-icon~="after"][mod-icon~="ios-photos-outline"]:after{ content: "\f481"; } [mod-icon~="before"][mod-icon~="ios-pie"]:before, [mod-icon~="after"][mod-icon~="ios-pie"]:after{ content: "\f484"; } [mod-icon~="before"][mod-icon~="ios-pie-outline"]:before, [mod-icon~="after"][mod-icon~="ios-pie-outline"]:after{ content: "\f483"; } [mod-icon~="before"][mod-icon~="ios-pint"]:before, [mod-icon~="after"][mod-icon~="ios-pint"]:after{ content: "\f486"; } [mod-icon~="before"][mod-icon~="ios-pint-outline"]:before, [mod-icon~="after"][mod-icon~="ios-pint-outline"]:after{ content: "\f485"; } [mod-icon~="before"][mod-icon~="ios-play"]:before, [mod-icon~="after"][mod-icon~="ios-play"]:after{ content: "\f488"; } [mod-icon~="before"][mod-icon~="ios-play-outline"]:before, [mod-icon~="after"][mod-icon~="ios-play-outline"]:after{ content: "\f487"; } [mod-icon~="before"][mod-icon~="ios-plus"]:before, [mod-icon~="after"][mod-icon~="ios-plus"]:after{ content: "\f48b"; } [mod-icon~="before"][mod-icon~="ios-plus-empty"]:before, [mod-icon~="after"][mod-icon~="ios-plus-empty"]:after{ content: "\f489"; } [mod-icon~="before"][mod-icon~="ios-plus-outline"]:before, [mod-icon~="after"][mod-icon~="ios-plus-outline"]:after{ content: "\f48a"; } [mod-icon~="before"][mod-icon~="ios-pricetag"]:before, [mod-icon~="after"][mod-icon~="ios-pricetag"]:after{ content: "\f48d"; } [mod-icon~="before"][mod-icon~="ios-pricetag-outline"]:before, [mod-icon~="after"][mod-icon~="ios-pricetag-outline"]:after{ content: "\f48c"; } [mod-icon~="before"][mod-icon~="ios-pricetags"]:before, [mod-icon~="after"][mod-icon~="ios-pricetags"]:after{ content: "\f48f"; } [mod-icon~="before"][mod-icon~="ios-pricetags-outline"]:before, [mod-icon~="after"][mod-icon~="ios-pricetags-outline"]:after{ content: "\f48e"; } [mod-icon~="before"][mod-icon~="ios-printer"]:before, [mod-icon~="after"][mod-icon~="ios-printer"]:after{ content: "\f491"; } [mod-icon~="before"][mod-icon~="ios-printer-outline"]:before, [mod-icon~="after"][mod-icon~="ios-printer-outline"]:after{ content: "\f490"; } [mod-icon~="before"][mod-icon~="ios-pulse"]:before, [mod-icon~="after"][mod-icon~="ios-pulse"]:after{ content: "\f493"; } [mod-icon~="before"][mod-icon~="ios-pulse-strong"]:before, [mod-icon~="after"][mod-icon~="ios-pulse-strong"]:after{ content: "\f492"; } [mod-icon~="before"][mod-icon~="ios-rainy"]:before, [mod-icon~="after"][mod-icon~="ios-rainy"]:after{ content: "\f495"; } [mod-icon~="before"][mod-icon~="ios-rainy-outline"]:before, [mod-icon~="after"][mod-icon~="ios-rainy-outline"]:after{ content: "\f494"; } [mod-icon~="before"][mod-icon~="ios-recording"]:before, [mod-icon~="after"][mod-icon~="ios-recording"]:after{ content: "\f497"; } [mod-icon~="before"][mod-icon~="ios-recording-outline"]:before, [mod-icon~="after"][mod-icon~="ios-recording-outline"]:after{ content: "\f496"; } [mod-icon~="before"][mod-icon~="ios-redo"]:before, [mod-icon~="after"][mod-icon~="ios-redo"]:after{ content: "\f499"; } [mod-icon~="before"][mod-icon~="ios-redo-outline"]:before, [mod-icon~="after"][mod-icon~="ios-redo-outline"]:after{ content: "\f498"; } [mod-icon~="before"][mod-icon~="ios-refresh"]:before, [mod-icon~="after"][mod-icon~="ios-refresh"]:after{ content: "\f49c"; } [mod-icon~="before"][mod-icon~="ios-refresh-empty"]:before, [mod-icon~="after"][mod-icon~="ios-refresh-empty"]:after{ content: "\f49a"; } [mod-icon~="before"][mod-icon~="ios-refresh-outline"]:before, [mod-icon~="after"][mod-icon~="ios-refresh-outline"]:after{ content: "\f49b"; } [mod-icon~="before"][mod-icon~="ios-reload"]:before, [mod-icon~="after"][mod-icon~="ios-reload"]:after{ content: "\f49d"; } [mod-icon~="before"][mod-icon~="ios-reverse-camera"]:before, [mod-icon~="after"][mod-icon~="ios-reverse-camera"]:after{ content: "\f49f"; } [mod-icon~="before"][mod-icon~="ios-reverse-camera-outline"]:before, [mod-icon~="after"][mod-icon~="ios-reverse-camera-outline"]:after{ content: "\f49e"; } [mod-icon~="before"][mod-icon~="ios-rewind"]:before, [mod-icon~="after"][mod-icon~="ios-rewind"]:after{ content: "\f4a1"; } [mod-icon~="before"][mod-icon~="ios-rewind-outline"]:before, [mod-icon~="after"][mod-icon~="ios-rewind-outline"]:after{ content: "\f4a0"; } [mod-icon~="before"][mod-icon~="ios-rose"]:before, [mod-icon~="after"][mod-icon~="ios-rose"]:after{ content: "\f4a3"; } [mod-icon~="before"][mod-icon~="ios-rose-outline"]:before, [mod-icon~="after"][mod-icon~="ios-rose-outline"]:after{ content: "\f4a2"; } [mod-icon~="before"][mod-icon~="ios-search"]:before, [mod-icon~="after"][mod-icon~="ios-search"]:after{ content: "\f4a5"; } [mod-icon~="before"][mod-icon~="ios-search-strong"]:before, [mod-icon~="after"][mod-icon~="ios-search-strong"]:after{ content: "\f4a4"; } [mod-icon~="before"][mod-icon~="ios-settings"]:before, [mod-icon~="after"][mod-icon~="ios-settings"]:after{ content: "\f4a7"; } [mod-icon~="before"][mod-icon~="ios-settings-strong"]:before, [mod-icon~="after"][mod-icon~="ios-settings-strong"]:after{ content: "\f4a6"; } [mod-icon~="before"][mod-icon~="ios-shuffle"]:before, [mod-icon~="after"][mod-icon~="ios-shuffle"]:after{ content: "\f4a9"; } [mod-icon~="before"][mod-icon~="ios-shuffle-strong"]:before, [mod-icon~="after"][mod-icon~="ios-shuffle-strong"]:after{ content: "\f4a8"; } [mod-icon~="before"][mod-icon~="ios-skipbackward"]:before, [mod-icon~="after"][mod-icon~="ios-skipbackward"]:after{ content: "\f4ab"; } [mod-icon~="before"][mod-icon~="ios-skipbackward-outline"]:before, [mod-icon~="after"][mod-icon~="ios-skipbackward-outline"]:after{ content: "\f4aa"; } [mod-icon~="before"][mod-icon~="ios-skipforward"]:before, [mod-icon~="after"][mod-icon~="ios-skipforward"]:after{ content: "\f4ad"; } [mod-icon~="before"][mod-icon~="ios-skipforward-outline"]:before, [mod-icon~="after"][mod-icon~="ios-skipforward-outline"]:after{ content: "\f4ac"; } [mod-icon~="before"][mod-icon~="ios-snowy"]:before, [mod-icon~="after"][mod-icon~="ios-snowy"]:after{ content: "\f4ae"; } [mod-icon~="before"][mod-icon~="ios-speedometer"]:before, [mod-icon~="after"][mod-icon~="ios-speedometer"]:after{ content: "\f4b0"; } [mod-icon~="before"][mod-icon~="ios-speedometer-outline"]:before, [mod-icon~="after"][mod-icon~="ios-speedometer-outline"]:after{ content: "\f4af"; } [mod-icon~="before"][mod-icon~="ios-star"]:before, [mod-icon~="after"][mod-icon~="ios-star"]:after{ content: "\f4b3"; } [mod-icon~="before"][mod-icon~="ios-star-half"]:before, [mod-icon~="after"][mod-icon~="ios-star-half"]:after{ content: "\f4b1"; } [mod-icon~="before"][mod-icon~="ios-star-outline"]:before, [mod-icon~="after"][mod-icon~="ios-star-outline"]:after{ content: "\f4b2"; } [mod-icon~="before"][mod-icon~="ios-stopwatch"]:before, [mod-icon~="after"][mod-icon~="ios-stopwatch"]:after{ content: "\f4b5"; } [mod-icon~="before"][mod-icon~="ios-stopwatch-outline"]:before, [mod-icon~="after"][mod-icon~="ios-stopwatch-outline"]:after{ content: "\f4b4"; } [mod-icon~="before"][mod-icon~="ios-sunny"]:before, [mod-icon~="after"][mod-icon~="ios-sunny"]:after{ content: "\f4b7"; } [mod-icon~="before"][mod-icon~="ios-sunny-outline"]:before, [mod-icon~="after"][mod-icon~="ios-sunny-outline"]:after{ content: "\f4b6"; } [mod-icon~="before"][mod-icon~="ios-telephone"]:before, [mod-icon~="after"][mod-icon~="ios-telephone"]:after{ content: "\f4b9"; } [mod-icon~="before"][mod-icon~="ios-telephone-outline"]:before, [mod-icon~="after"][mod-icon~="ios-telephone-outline"]:after{ content: "\f4b8"; } [mod-icon~="before"][mod-icon~="ios-tennisball"]:before, [mod-icon~="after"][mod-icon~="ios-tennisball"]:after{ content: "\f4bb"; } [mod-icon~="before"][mod-icon~="ios-tennisball-outline"]:before, [mod-icon~="after"][mod-icon~="ios-tennisball-outline"]:after{ content: "\f4ba"; } [mod-icon~="before"][mod-icon~="ios-thunderstorm"]:before, [mod-icon~="after"][mod-icon~="ios-thunderstorm"]:after{ content: "\f4bd"; } [mod-icon~="before"][mod-icon~="ios-thunderstorm-outline"]:before, [mod-icon~="after"][mod-icon~="ios-thunderstorm-outline"]:after{ content: "\f4bc"; } [mod-icon~="before"][mod-icon~="ios-time"]:before, [mod-icon~="after"][mod-icon~="ios-time"]:after{ content: "\f4bf"; } [mod-icon~="before"][mod-icon~="ios-time-outline"]:before, [mod-icon~="after"][mod-icon~="ios-time-outline"]:after{ content: "\f4be"; } [mod-icon~="before"][mod-icon~="ios-timer"]:before, [mod-icon~="after"][mod-icon~="ios-timer"]:after{ content: "\f4c1"; } [mod-icon~="before"][mod-icon~="ios-timer-outline"]:before, [mod-icon~="after"][mod-icon~="ios-timer-outline"]:after{ content: "\f4c0"; } [mod-icon~="before"][mod-icon~="ios-toggle"]:before, [mod-icon~="after"][mod-icon~="ios-toggle"]:after{ content: "\f4c3"; } [mod-icon~="before"][mod-icon~="ios-toggle-outline"]:before, [mod-icon~="after"][mod-icon~="ios-toggle-outline"]:after{ content: "\f4c2"; } [mod-icon~="before"][mod-icon~="ios-trash"]:before, [mod-icon~="after"][mod-icon~="ios-trash"]:after{ content: "\f4c5"; } [mod-icon~="before"][mod-icon~="ios-trash-outline"]:before, [mod-icon~="after"][mod-icon~="ios-trash-outline"]:after{ content: "\f4c4"; } [mod-icon~="before"][mod-icon~="ios-undo"]:before, [mod-icon~="after"][mod-icon~="ios-undo"]:after{ content: "\f4c7"; } [mod-icon~="before"][mod-icon~="ios-undo-outline"]:before, [mod-icon~="after"][mod-icon~="ios-undo-outline"]:after{ content: "\f4c6"; } [mod-icon~="before"][mod-icon~="ios-unlocked"]:before, [mod-icon~="after"][mod-icon~="ios-unlocked"]:after{ content: "\f4c9"; } [mod-icon~="before"][mod-icon~="ios-unlocked-outline"]:before, [mod-icon~="after"][mod-icon~="ios-unlocked-outline"]:after{ content: "\f4c8"; } [mod-icon~="before"][mod-icon~="ios-upload"]:before, [mod-icon~="after"][mod-icon~="ios-upload"]:after{ content: "\f4cb"; } [mod-icon~="before"][mod-icon~="ios-upload-outline"]:before, [mod-icon~="after"][mod-icon~="ios-upload-outline"]:after{ content: "\f4ca"; } [mod-icon~="before"][mod-icon~="ios-videocam"]:before, [mod-icon~="after"][mod-icon~="ios-videocam"]:after{ content: "\f4cd"; } [mod-icon~="before"][mod-icon~="ios-videocam-outline"]:before, [mod-icon~="after"][mod-icon~="ios-videocam-outline"]:after{ content: "\f4cc"; } [mod-icon~="before"][mod-icon~="ios-volume-high"]:before, [mod-icon~="after"][mod-icon~="ios-volume-high"]:after{ content: "\f4ce"; } [mod-icon~="before"][mod-icon~="ios-volume-low"]:before, [mod-icon~="after"][mod-icon~="ios-volume-low"]:after{ content: "\f4cf"; } [mod-icon~="before"][mod-icon~="ios-wineglass"]:before, [mod-icon~="after"][mod-icon~="ios-wineglass"]:after{ content: "\f4d1"; } [mod-icon~="before"][mod-icon~="ios-wineglass-outline"]:before, [mod-icon~="after"][mod-icon~="ios-wineglass-outline"]:after{ content: "\f4d0"; } [mod-icon~="before"][mod-icon~="ios-world"]:before, [mod-icon~="after"][mod-icon~="ios-world"]:after{ content: "\f4d3"; } [mod-icon~="before"][mod-icon~="ios-world-outline"]:before, [mod-icon~="after"][mod-icon~="ios-world-outline"]:after{ content: "\f4d2"; } [mod-icon~="before"][mod-icon~="ipad"]:before, [mod-icon~="after"][mod-icon~="ipad"]:after{ content: "\f1f9"; } [mod-icon~="before"][mod-icon~="iphone"]:before, [mod-icon~="after"][mod-icon~="iphone"]:after{ content: "\f1fa"; } [mod-icon~="before"][mod-icon~="ipod"]:before, [mod-icon~="after"][mod-icon~="ipod"]:after{ content: "\f1fb"; } [mod-icon~="before"][mod-icon~="jet"]:before, [mod-icon~="after"][mod-icon~="jet"]:after{ content: "\f295"; } [mod-icon~="before"][mod-icon~="key"]:before, [mod-icon~="after"][mod-icon~="key"]:after{ content: "\f296"; } [mod-icon~="before"][mod-icon~="knife"]:before, [mod-icon~="after"][mod-icon~="knife"]:after{ content: "\f297"; } [mod-icon~="before"][mod-icon~="laptop"]:before, [mod-icon~="after"][mod-icon~="laptop"]:after{ content: "\f1fc"; } [mod-icon~="before"][mod-icon~="leaf"]:before, [mod-icon~="after"][mod-icon~="leaf"]:after{ content: "\f1fd"; } [mod-icon~="before"][mod-icon~="levels"]:before, [mod-icon~="after"][mod-icon~="levels"]:after{ content: "\f298"; } [mod-icon~="before"][mod-icon~="lightbulb"]:before, [mod-icon~="after"][mod-icon~="lightbulb"]:after{ content: "\f299"; } [mod-icon~="before"][mod-icon~="link"]:before, [mod-icon~="after"][mod-icon~="link"]:after{ content: "\f1fe"; } [mod-icon~="before"][mod-icon~="load-a"]:before, [mod-icon~="after"][mod-icon~="load-a"]:after{ content: "\f29a"; } [mod-icon~="before"][mod-icon~="load-b"]:before, [mod-icon~="after"][mod-icon~="load-b"]:after{ content: "\f29b"; } [mod-icon~="before"][mod-icon~="load-c"]:before, [mod-icon~="after"][mod-icon~="load-c"]:after{ content: "\f29c"; } [mod-icon~="before"][mod-icon~="load-d"]:before, [mod-icon~="after"][mod-icon~="load-d"]:after{ content: "\f29d"; } [mod-icon~="before"][mod-icon~="location"]:before, [mod-icon~="after"][mod-icon~="location"]:after{ content: "\f1ff"; } [mod-icon~="before"][mod-icon~="lock-combination"]:before, [mod-icon~="after"][mod-icon~="lock-combination"]:after{ content: "\f4d4"; } [mod-icon~="before"][mod-icon~="locked"]:before, [mod-icon~="after"][mod-icon~="locked"]:after{ content: "\f200"; } [mod-icon~="before"][mod-icon~="log-in"]:before, [mod-icon~="after"][mod-icon~="log-in"]:after{ content: "\f29e"; } [mod-icon~="before"][mod-icon~="log-out"]:before, [mod-icon~="after"][mod-icon~="log-out"]:after{ content: "\f29f"; } [mod-icon~="before"][mod-icon~="loop"]:before, [mod-icon~="after"][mod-icon~="loop"]:after{ content: "\f201"; } [mod-icon~="before"][mod-icon~="magnet"]:before, [mod-icon~="after"][mod-icon~="magnet"]:after{ content: "\f2a0"; } [mod-icon~="before"][mod-icon~="male"]:before, [mod-icon~="after"][mod-icon~="male"]:after{ content: "\f2a1"; } [mod-icon~="before"][mod-icon~="man"]:before, [mod-icon~="after"][mod-icon~="man"]:after{ content: "\f202"; } [mod-icon~="before"][mod-icon~="map"]:before, [mod-icon~="after"][mod-icon~="map"]:after{ content: "\f203"; } [mod-icon~="before"][mod-icon~="medkit"]:before, [mod-icon~="after"][mod-icon~="medkit"]:after{ content: "\f2a2"; } [mod-icon~="before"][mod-icon~="merge"]:before, [mod-icon~="after"][mod-icon~="merge"]:after{ content: "\f33f"; } [mod-icon~="before"][mod-icon~="mic-a"]:before, [mod-icon~="after"][mod-icon~="mic-a"]:after{ content: "\f204"; } [mod-icon~="before"][mod-icon~="mic-b"]:before, [mod-icon~="after"][mod-icon~="mic-b"]:after{ content: "\f205"; } [mod-icon~="before"][mod-icon~="mic-c"]:before, [mod-icon~="after"][mod-icon~="mic-c"]:after{ content: "\f206"; } [mod-icon~="before"][mod-icon~="minus"]:before, [mod-icon~="after"][mod-icon~="minus"]:after{ content: "\f209"; } [mod-icon~="before"][mod-icon~="minus-circled"]:before, [mod-icon~="after"][mod-icon~="minus-circled"]:after{ content: "\f207"; } [mod-icon~="before"][mod-icon~="minus-round"]:before, [mod-icon~="after"][mod-icon~="minus-round"]:after{ content: "\f208"; } [mod-icon~="before"][mod-icon~="model-s"]:before, [mod-icon~="after"][mod-icon~="model-s"]:after{ content: "\f2c1"; } [mod-icon~="before"][mod-icon~="monitor"]:before, [mod-icon~="after"][mod-icon~="monitor"]:after{ content: "\f20a"; } [mod-icon~="before"][mod-icon~="more"]:before, [mod-icon~="after"][mod-icon~="more"]:after{ content: "\f20b"; } [mod-icon~="before"][mod-icon~="mouse"]:before, [mod-icon~="after"][mod-icon~="mouse"]:after{ content: "\f340"; } [mod-icon~="before"][mod-icon~="music-note"]:before, [mod-icon~="after"][mod-icon~="music-note"]:after{ content: "\f20c"; } [mod-icon~="before"][mod-icon~="navicon"]:before, [mod-icon~="after"][mod-icon~="navicon"]:after{ content: "\f20e"; } [mod-icon~="before"][mod-icon~="navicon-round"]:before, [mod-icon~="after"][mod-icon~="navicon-round"]:after{ content: "\f20d"; } [mod-icon~="before"][mod-icon~="navigate"]:before, [mod-icon~="after"][mod-icon~="navigate"]:after{ content: "\f2a3"; } [mod-icon~="before"][mod-icon~="network"]:before, [mod-icon~="after"][mod-icon~="network"]:after{ content: "\f341"; } [mod-icon~="before"][mod-icon~="no-smoking"]:before, [mod-icon~="after"][mod-icon~="no-smoking"]:after{ content: "\f2c2"; } [mod-icon~="before"][mod-icon~="nuclear"]:before, [mod-icon~="after"][mod-icon~="nuclear"]:after{ content: "\f2a4"; } [mod-icon~="before"][mod-icon~="outlet"]:before, [mod-icon~="after"][mod-icon~="outlet"]:after{ content: "\f342"; } [mod-icon~="before"][mod-icon~="paintbrush"]:before, [mod-icon~="after"][mod-icon~="paintbrush"]:after{ content: "\f4d5"; } [mod-icon~="before"][mod-icon~="paintbucket"]:before, [mod-icon~="after"][mod-icon~="paintbucket"]:after{ content: "\f4d6"; } [mod-icon~="before"][mod-icon~="paper-airplane"]:before, [mod-icon~="after"][mod-icon~="paper-airplane"]:after{ content: "\f2c3"; } [mod-icon~="before"][mod-icon~="paperclip"]:before, [mod-icon~="after"][mod-icon~="paperclip"]:after{ content: "\f20f"; } [mod-icon~="before"][mod-icon~="pause"]:before, [mod-icon~="after"][mod-icon~="pause"]:after{ content: "\f210"; } [mod-icon~="before"][mod-icon~="person"]:before, [mod-icon~="after"][mod-icon~="person"]:after{ content: "\f213"; } [mod-icon~="before"][mod-icon~="person-add"]:before, [mod-icon~="after"][mod-icon~="person-add"]:after{ content: "\f211"; } [mod-icon~="before"][mod-icon~="person-stalker"]:before, [mod-icon~="after"][mod-icon~="person-stalker"]:after{ content: "\f212"; } [mod-icon~="before"][mod-icon~="pie-graph"]:before, [mod-icon~="after"][mod-icon~="pie-graph"]:after{ content: "\f2a5"; } [mod-icon~="before"][mod-icon~="pin"]:before, [mod-icon~="after"][mod-icon~="pin"]:after{ content: "\f2a6"; } [mod-icon~="before"][mod-icon~="pinpoint"]:before, [mod-icon~="after"][mod-icon~="pinpoint"]:after{ content: "\f2a7"; } [mod-icon~="before"][mod-icon~="pizza"]:before, [mod-icon~="after"][mod-icon~="pizza"]:after{ content: "\f2a8"; } [mod-icon~="before"][mod-icon~="plane"]:before, [mod-icon~="after"][mod-icon~="plane"]:after{ content: "\f214"; } [mod-icon~="before"][mod-icon~="planet"]:before, [mod-icon~="after"][mod-icon~="planet"]:after{ content: "\f343"; } [mod-icon~="before"][mod-icon~="play"]:before, [mod-icon~="after"][mod-icon~="play"]:after{ content: "\f215"; } [mod-icon~="before"][mod-icon~="playstation"]:before, [mod-icon~="after"][mod-icon~="playstation"]:after{ content: "\f30a"; } [mod-icon~="before"][mod-icon~="plus"]:before, [mod-icon~="after"][mod-icon~="plus"]:after{ content: "\f218"; } [mod-icon~="before"][mod-icon~="plus-circled"]:before, [mod-icon~="after"][mod-icon~="plus-circled"]:after{ content: "\f216"; } [mod-icon~="before"][mod-icon~="plus-round"]:before, [mod-icon~="after"][mod-icon~="plus-round"]:after{ content: "\f217"; } [mod-icon~="before"][mod-icon~="podium"]:before, [mod-icon~="after"][mod-icon~="podium"]:after{ content: "\f344"; } [mod-icon~="before"][mod-icon~="pound"]:before, [mod-icon~="after"][mod-icon~="pound"]:after{ content: "\f219"; } [mod-icon~="before"][mod-icon~="power"]:before, [mod-icon~="after"][mod-icon~="power"]:after{ content: "\f2a9"; } [mod-icon~="before"][mod-icon~="pricetag"]:before, [mod-icon~="after"][mod-icon~="pricetag"]:after{ content: "\f2aa"; } [mod-icon~="before"][mod-icon~="pricetags"]:before, [mod-icon~="after"][mod-icon~="pricetags"]:after{ content: "\f2ab"; } [mod-icon~="before"][mod-icon~="printer"]:before, [mod-icon~="after"][mod-icon~="printer"]:after{ content: "\f21a"; } [mod-icon~="before"][mod-icon~="pull-request"]:before, [mod-icon~="after"][mod-icon~="pull-request"]:after{ content: "\f345"; } [mod-icon~="before"][mod-icon~="qr-scanner"]:before, [mod-icon~="after"][mod-icon~="qr-scanner"]:after{ content: "\f346"; } [mod-icon~="before"][mod-icon~="quote"]:before, [mod-icon~="after"][mod-icon~="quote"]:after{ content: "\f347"; } [mod-icon~="before"][mod-icon~="radio-waves"]:before, [mod-icon~="after"][mod-icon~="radio-waves"]:after{ content: "\f2ac"; } [mod-icon~="before"][mod-icon~="record"]:before, [mod-icon~="after"][mod-icon~="record"]:after{ content: "\f21b"; } [mod-icon~="before"][mod-icon~="refresh"]:before, [mod-icon~="after"][mod-icon~="refresh"]:after{ content: "\f21c"; } [mod-icon~="before"][mod-icon~="reply"]:before, [mod-icon~="after"][mod-icon~="reply"]:after{ content: "\f21e"; } [mod-icon~="before"][mod-icon~="reply-all"]:before, [mod-icon~="after"][mod-icon~="reply-all"]:after{ content: "\f21d"; } [mod-icon~="before"][mod-icon~="ribbon-a"]:before, [mod-icon~="after"][mod-icon~="ribbon-a"]:after{ content: "\f348"; } [mod-icon~="before"][mod-icon~="ribbon-b"]:before, [mod-icon~="after"][mod-icon~="ribbon-b"]:after{ content: "\f349"; } [mod-icon~="before"][mod-icon~="sad"]:before, [mod-icon~="after"][mod-icon~="sad"]:after{ content: "\f34a"; } [mod-icon~="before"][mod-icon~="sad-outline"]:before, [mod-icon~="after"][mod-icon~="sad-outline"]:after{ content: "\f4d7"; } [mod-icon~="before"][mod-icon~="scissors"]:before, [mod-icon~="after"][mod-icon~="scissors"]:after{ content: "\f34b"; } [mod-icon~="before"][mod-icon~="search"]:before, [mod-icon~="after"][mod-icon~="search"]:after{ content: "\f21f"; } [mod-icon~="before"][mod-icon~="settings"]:before, [mod-icon~="after"][mod-icon~="settings"]:after{ content: "\f2ad"; } [mod-icon~="before"][mod-icon~="share"]:before, [mod-icon~="after"][mod-icon~="share"]:after{ content: "\f220"; } [mod-icon~="before"][mod-icon~="shuffle"]:before, [mod-icon~="after"][mod-icon~="shuffle"]:after{ content: "\f221"; } [mod-icon~="before"][mod-icon~="skip-backward"]:before, [mod-icon~="after"][mod-icon~="skip-backward"]:after{ content: "\f222"; } [mod-icon~="before"][mod-icon~="skip-forward"]:before, [mod-icon~="after"][mod-icon~="skip-forward"]:after{ content: "\f223"; } [mod-icon~="before"][mod-icon~="social-android"]:before, [mod-icon~="after"][mod-icon~="social-android"]:after{ content: "\f225"; } [mod-icon~="before"][mod-icon~="social-android-outline"]:before, [mod-icon~="after"][mod-icon~="social-android-outline"]:after{ content: "\f224"; } [mod-icon~="before"][mod-icon~="social-angular"]:before, [mod-icon~="after"][mod-icon~="social-angular"]:after{ content: "\f4d9"; } [mod-icon~="before"][mod-icon~="social-angular-outline"]:before, [mod-icon~="after"][mod-icon~="social-angular-outline"]:after{ content: "\f4d8"; } [mod-icon~="before"][mod-icon~="social-apple"]:before, [mod-icon~="after"][mod-icon~="social-apple"]:after{ content: "\f227"; } [mod-icon~="before"][mod-icon~="social-apple-outline"]:before, [mod-icon~="after"][mod-icon~="social-apple-outline"]:after{ content: "\f226"; } [mod-icon~="before"][mod-icon~="social-bitcoin"]:before, [mod-icon~="after"][mod-icon~="social-bitcoin"]:after{ content: "\f2af"; } [mod-icon~="before"][mod-icon~="social-bitcoin-outline"]:before, [mod-icon~="after"][mod-icon~="social-bitcoin-outline"]:after{ content: "\f2ae"; } [mod-icon~="before"][mod-icon~="social-buffer"]:before, [mod-icon~="after"][mod-icon~="social-buffer"]:after{ content: "\f229"; } [mod-icon~="before"][mod-icon~="social-buffer-outline"]:before, [mod-icon~="after"][mod-icon~="social-buffer-outline"]:after{ content: "\f228"; } [mod-icon~="before"][mod-icon~="social-chrome"]:before, [mod-icon~="after"][mod-icon~="social-chrome"]:after{ content: "\f4db"; } [mod-icon~="before"][mod-icon~="social-chrome-outline"]:before, [mod-icon~="after"][mod-icon~="social-chrome-outline"]:after{ content: "\f4da"; } [mod-icon~="before"][mod-icon~="social-codepen"]:before, [mod-icon~="after"][mod-icon~="social-codepen"]:after{ content: "\f4dd"; } [mod-icon~="before"][mod-icon~="social-codepen-outline"]:before, [mod-icon~="after"][mod-icon~="social-codepen-outline"]:after{ content: "\f4dc"; } [mod-icon~="before"][mod-icon~="social-css3"]:before, [mod-icon~="after"][mod-icon~="social-css3"]:after{ content: "\f4df"; } [mod-icon~="before"][mod-icon~="social-css3-outline"]:before, [mod-icon~="after"][mod-icon~="social-css3-outline"]:after{ content: "\f4de"; } [mod-icon~="before"][mod-icon~="social-designernews"]:before, [mod-icon~="after"][mod-icon~="social-designernews"]:after{ content: "\f22b"; } [mod-icon~="before"][mod-icon~="social-designernews-outline"]:before, [mod-icon~="after"][mod-icon~="social-designernews-outline"]:after{ content: "\f22a"; } [mod-icon~="before"][mod-icon~="social-dribbble"]:before, [mod-icon~="after"][mod-icon~="social-dribbble"]:after{ content: "\f22d"; } [mod-icon~="before"][mod-icon~="social-dribbble-outline"]:before, [mod-icon~="after"][mod-icon~="social-dribbble-outline"]:after{ content: "\f22c"; } [mod-icon~="before"][mod-icon~="social-dropbox"]:before, [mod-icon~="after"][mod-icon~="social-dropbox"]:after{ content: "\f22f"; } [mod-icon~="before"][mod-icon~="social-dropbox-outline"]:before, [mod-icon~="after"][mod-icon~="social-dropbox-outline"]:after{ content: "\f22e"; } [mod-icon~="before"][mod-icon~="social-euro"]:before, [mod-icon~="after"][mod-icon~="social-euro"]:after{ content: "\f4e1"; } [mod-icon~="before"][mod-icon~="social-euro-outline"]:before, [mod-icon~="after"][mod-icon~="social-euro-outline"]:after{ content: "\f4e0"; } [mod-icon~="before"][mod-icon~="social-facebook"]:before, [mod-icon~="after"][mod-icon~="social-facebook"]:after{ content: "\f231"; } [mod-icon~="before"][mod-icon~="social-facebook-outline"]:before, [mod-icon~="after"][mod-icon~="social-facebook-outline"]:after{ content: "\f230"; } [mod-icon~="before"][mod-icon~="social-foursquare"]:before, [mod-icon~="after"][mod-icon~="social-foursquare"]:after{ content: "\f34d"; } [mod-icon~="before"][mod-icon~="social-foursquare-outline"]:before, [mod-icon~="after"][mod-icon~="social-foursquare-outline"]:after{ content: "\f34c"; } [mod-icon~="before"][mod-icon~="social-freebsd-devil"]:before, [mod-icon~="after"][mod-icon~="social-freebsd-devil"]:after{ content: "\f2c4"; } [mod-icon~="before"][mod-icon~="social-github"]:before, [mod-icon~="after"][mod-icon~="social-github"]:after{ content: "\f233"; } [mod-icon~="before"][mod-icon~="social-github-outline"]:before, [mod-icon~="after"][mod-icon~="social-github-outline"]:after{ content: "\f232"; } [mod-icon~="before"][mod-icon~="social-google"]:before, [mod-icon~="after"][mod-icon~="social-google"]:after{ content: "\f34f"; } [mod-icon~="before"][mod-icon~="social-google-outline"]:before, [mod-icon~="after"][mod-icon~="social-google-outline"]:after{ content: "\f34e"; } [mod-icon~="before"][mod-icon~="social-googleplus"]:before, [mod-icon~="after"][mod-icon~="social-googleplus"]:after{ content: "\f235"; } [mod-icon~="before"][mod-icon~="social-googleplus-outline"]:before, [mod-icon~="after"][mod-icon~="social-googleplus-outline"]:after{ content: "\f234"; } [mod-icon~="before"][mod-icon~="social-hackernews"]:before, [mod-icon~="after"][mod-icon~="social-hackernews"]:after{ content: "\f237"; } [mod-icon~="before"][mod-icon~="social-hackernews-outline"]:before, [mod-icon~="after"][mod-icon~="social-hackernews-outline"]:after{ content: "\f236"; } [mod-icon~="before"][mod-icon~="social-html5"]:before, [mod-icon~="after"][mod-icon~="social-html5"]:after{ content: "\f4e3"; } [mod-icon~="before"][mod-icon~="social-html5-outline"]:before, [mod-icon~="after"][mod-icon~="social-html5-outline"]:after{ content: "\f4e2"; } [mod-icon~="before"][mod-icon~="social-instagram"]:before, [mod-icon~="after"][mod-icon~="social-instagram"]:after{ content: "\f351"; } [mod-icon~="before"][mod-icon~="social-instagram-outline"]:before, [mod-icon~="after"][mod-icon~="social-instagram-outline"]:after{ content: "\f350"; } [mod-icon~="before"][mod-icon~="social-javascript"]:before, [mod-icon~="after"][mod-icon~="social-javascript"]:after{ content: "\f4e5"; } [mod-icon~="before"][mod-icon~="social-javascript-outline"]:before, [mod-icon~="after"][mod-icon~="social-javascript-outline"]:after{ content: "\f4e4"; } [mod-icon~="before"][mod-icon~="social-linkedin"]:before, [mod-icon~="after"][mod-icon~="social-linkedin"]:after{ content: "\f239"; } [mod-icon~="before"][mod-icon~="social-linkedin-outline"]:before, [mod-icon~="after"][mod-icon~="social-linkedin-outline"]:after{ content: "\f238"; } [mod-icon~="before"][mod-icon~="social-markdown"]:before, [mod-icon~="after"][mod-icon~="social-markdown"]:after{ content: "\f4e6"; } [mod-icon~="before"][mod-icon~="social-nodejs"]:before, [mod-icon~="after"][mod-icon~="social-nodejs"]:after{ content: "\f4e7"; } [mod-icon~="before"][mod-icon~="social-octocat"]:before, [mod-icon~="after"][mod-icon~="social-octocat"]:after{ content: "\f4e8"; } [mod-icon~="before"][mod-icon~="social-pinterest"]:before, [mod-icon~="after"][mod-icon~="social-pinterest"]:after{ content: "\f2b1"; } [mod-icon~="before"][mod-icon~="social-pinterest-outline"]:before, [mod-icon~="after"][mod-icon~="social-pinterest-outline"]:after{ content: "\f2b0"; } [mod-icon~="before"][mod-icon~="social-python"]:before, [mod-icon~="after"][mod-icon~="social-python"]:after{ content: "\f4e9"; } [mod-icon~="before"][mod-icon~="social-reddit"]:before, [mod-icon~="after"][mod-icon~="social-reddit"]:after{ content: "\f23b"; } [mod-icon~="before"][mod-icon~="social-reddit-outline"]:before, [mod-icon~="after"][mod-icon~="social-reddit-outline"]:after{ content: "\f23a"; } [mod-icon~="before"][mod-icon~="social-rss"]:before, [mod-icon~="after"][mod-icon~="social-rss"]:after{ content: "\f23d"; } [mod-icon~="before"][mod-icon~="social-rss-outline"]:before, [mod-icon~="after"][mod-icon~="social-rss-outline"]:after{ content: "\f23c"; } [mod-icon~="before"][mod-icon~="social-sass"]:before, [mod-icon~="after"][mod-icon~="social-sass"]:after{ content: "\f4ea"; } [mod-icon~="before"][mod-icon~="social-skype"]:before, [mod-icon~="after"][mod-icon~="social-skype"]:after{ content: "\f23f"; } [mod-icon~="before"][mod-icon~="social-skype-outline"]:before, [mod-icon~="after"][mod-icon~="social-skype-outline"]:after{ content: "\f23e"; } [mod-icon~="before"][mod-icon~="social-snapchat"]:before, [mod-icon~="after"][mod-icon~="social-snapchat"]:after{ content: "\f4ec"; } [mod-icon~="before"][mod-icon~="social-snapchat-outline"]:before, [mod-icon~="after"][mod-icon~="social-snapchat-outline"]:after{ content: "\f4eb"; } [mod-icon~="before"][mod-icon~="social-tumblr"]:before, [mod-icon~="after"][mod-icon~="social-tumblr"]:after{ content: "\f241"; } [mod-icon~="before"][mod-icon~="social-tumblr-outline"]:before, [mod-icon~="after"][mod-icon~="social-tumblr-outline"]:after{ content: "\f240"; } [mod-icon~="before"][mod-icon~="social-tux"]:before, [mod-icon~="after"][mod-icon~="social-tux"]:after{ content: "\f2c5"; } [mod-icon~="before"][mod-icon~="social-twitch"]:before, [mod-icon~="after"][mod-icon~="social-twitch"]:after{ content: "\f4ee"; } [mod-icon~="before"][mod-icon~="social-twitch-outline"]:before, [mod-icon~="after"][mod-icon~="social-twitch-outline"]:after{ content: "\f4ed"; } [mod-icon~="before"][mod-icon~="social-twitter"]:before, [mod-icon~="after"][mod-icon~="social-twitter"]:after{ content: "\f243"; } [mod-icon~="before"][mod-icon~="social-twitter-outline"]:before, [mod-icon~="after"][mod-icon~="social-twitter-outline"]:after{ content: "\f242"; } [mod-icon~="before"][mod-icon~="social-usd"]:before, [mod-icon~="after"][mod-icon~="social-usd"]:after{ content: "\f353"; } [mod-icon~="before"][mod-icon~="social-usd-outline"]:before, [mod-icon~="after"][mod-icon~="social-usd-outline"]:after{ content: "\f352"; } [mod-icon~="before"][mod-icon~="social-vimeo"]:before, [mod-icon~="after"][mod-icon~="social-vimeo"]:after{ content: "\f245"; } [mod-icon~="before"][mod-icon~="social-vimeo-outline"]:before, [mod-icon~="after"][mod-icon~="social-vimeo-outline"]:after{ content: "\f244"; } [mod-icon~="before"][mod-icon~="social-whatsapp"]:before, [mod-icon~="after"][mod-icon~="social-whatsapp"]:after{ content: "\f4f0"; } [mod-icon~="before"][mod-icon~="social-whatsapp-outline"]:before, [mod-icon~="after"][mod-icon~="social-whatsapp-outline"]:after{ content: "\f4ef"; } [mod-icon~="before"][mod-icon~="social-windows"]:before, [mod-icon~="after"][mod-icon~="social-windows"]:after{ content: "\f247"; } [mod-icon~="before"][mod-icon~="social-windows-outline"]:before, [mod-icon~="after"][mod-icon~="social-windows-outline"]:after{ content: "\f246"; } [mod-icon~="before"][mod-icon~="social-wordpress"]:before, [mod-icon~="after"][mod-icon~="social-wordpress"]:after{ content: "\f249"; } [mod-icon~="before"][mod-icon~="social-wordpress-outline"]:before, [mod-icon~="after"][mod-icon~="social-wordpress-outline"]:after{ content: "\f248"; } [mod-icon~="before"][mod-icon~="social-yahoo"]:before, [mod-icon~="after"][mod-icon~="social-yahoo"]:after{ content: "\f24b"; } [mod-icon~="before"][mod-icon~="social-yahoo-outline"]:before, [mod-icon~="after"][mod-icon~="social-yahoo-outline"]:after{ content: "\f24a"; } [mod-icon~="before"][mod-icon~="social-yen"]:before, [mod-icon~="after"][mod-icon~="social-yen"]:after{ content: "\f4f2"; } [mod-icon~="before"][mod-icon~="social-yen-outline"]:before, [mod-icon~="after"][mod-icon~="social-yen-outline"]:after{ content: "\f4f1"; } [mod-icon~="before"][mod-icon~="social-youtube"]:before, [mod-icon~="after"][mod-icon~="social-youtube"]:after{ content: "\f24d"; } [mod-icon~="before"][mod-icon~="social-youtube-outline"]:before, [mod-icon~="after"][mod-icon~="social-youtube-outline"]:after{ content: "\f24c"; } [mod-icon~="before"][mod-icon~="soup-can"]:before, [mod-icon~="after"][mod-icon~="soup-can"]:after{ content: "\f4f4"; } [mod-icon~="before"][mod-icon~="soup-can-outline"]:before, [mod-icon~="after"][mod-icon~="soup-can-outline"]:after{ content: "\f4f3"; } [mod-icon~="before"][mod-icon~="speakerphone"]:before, [mod-icon~="after"][mod-icon~="speakerphone"]:after{ content: "\f2b2"; } [mod-icon~="before"][mod-icon~="speedometer"]:before, [mod-icon~="after"][mod-icon~="speedometer"]:after{ content: "\f2b3"; } [mod-icon~="before"][mod-icon~="spoon"]:before, [mod-icon~="after"][mod-icon~="spoon"]:after{ content: "\f2b4"; } [mod-icon~="before"][mod-icon~="star"]:before, [mod-icon~="after"][mod-icon~="star"]:after{ content: "\f24e"; } [mod-icon~="before"][mod-icon~="stats-bars"]:before, [mod-icon~="after"][mod-icon~="stats-bars"]:after{ content: "\f2b5"; } [mod-icon~="before"][mod-icon~="steam"]:before, [mod-icon~="after"][mod-icon~="steam"]:after{ content: "\f30b"; } [mod-icon~="before"][mod-icon~="stop"]:before, [mod-icon~="after"][mod-icon~="stop"]:after{ content: "\f24f"; } [mod-icon~="before"][mod-icon~="thermometer"]:before, [mod-icon~="after"][mod-icon~="thermometer"]:after{ content: "\f2b6"; } [mod-icon~="before"][mod-icon~="thumbsdown"]:before, [mod-icon~="after"][mod-icon~="thumbsdown"]:after{ content: "\f250"; } [mod-icon~="before"][mod-icon~="thumbsup"]:before, [mod-icon~="after"][mod-icon~="thumbsup"]:after{ content: "\f251"; } [mod-icon~="before"][mod-icon~="toggle"]:before, [mod-icon~="after"][mod-icon~="toggle"]:after{ content: "\f355"; } [mod-icon~="before"][mod-icon~="toggle-filled"]:before, [mod-icon~="after"][mod-icon~="toggle-filled"]:after{ content: "\f354"; } [mod-icon~="before"][mod-icon~="transgender"]:before, [mod-icon~="after"][mod-icon~="transgender"]:after{ content: "\f4f5"; } [mod-icon~="before"][mod-icon~="trash-a"]:before, [mod-icon~="after"][mod-icon~="trash-a"]:after{ content: "\f252"; } [mod-icon~="before"][mod-icon~="trash-b"]:before, [mod-icon~="after"][mod-icon~="trash-b"]:after{ content: "\f253"; } [mod-icon~="before"][mod-icon~="trophy"]:before, [mod-icon~="after"][mod-icon~="trophy"]:after{ content: "\f356"; } [mod-icon~="before"][mod-icon~="tshirt"]:before, [mod-icon~="after"][mod-icon~="tshirt"]:after{ content: "\f4f7"; } [mod-icon~="before"][mod-icon~="tshirt-outline"]:before, [mod-icon~="after"][mod-icon~="tshirt-outline"]:after{ content: "\f4f6"; } [mod-icon~="before"][mod-icon~="umbrella"]:before, [mod-icon~="after"][mod-icon~="umbrella"]:after{ content: "\f2b7"; } [mod-icon~="before"][mod-icon~="university"]:before, [mod-icon~="after"][mod-icon~="university"]:after{ content: "\f357"; } [mod-icon~="before"][mod-icon~="unlocked"]:before, [mod-icon~="after"][mod-icon~="unlocked"]:after{ content: "\f254"; } [mod-icon~="before"][mod-icon~="upload"]:before, [mod-icon~="after"][mod-icon~="upload"]:after{ content: "\f255"; } [mod-icon~="before"][mod-icon~="usb"]:before, [mod-icon~="after"][mod-icon~="usb"]:after{ content: "\f2b8"; } [mod-icon~="before"][mod-icon~="videocamera"]:before, [mod-icon~="after"][mod-icon~="videocamera"]:after{ content: "\f256"; } [mod-icon~="before"][mod-icon~="volume-high"]:before, [mod-icon~="after"][mod-icon~="volume-high"]:after{ content: "\f257"; } [mod-icon~="before"][mod-icon~="volume-low"]:before, [mod-icon~="after"][mod-icon~="volume-low"]:after{ content: "\f258"; } [mod-icon~="before"][mod-icon~="volume-medium"]:before, [mod-icon~="after"][mod-icon~="volume-medium"]:after{ content: "\f259"; } [mod-icon~="before"][mod-icon~="volume-mute"]:before, [mod-icon~="after"][mod-icon~="volume-mute"]:after{ content: "\f25a"; } [mod-icon~="before"][mod-icon~="wand"]:before, [mod-icon~="after"][mod-icon~="wand"]:after{ content: "\f358"; } [mod-icon~="before"][mod-icon~="waterdrop"]:before, [mod-icon~="after"][mod-icon~="waterdrop"]:after{ content: "\f25b"; } [mod-icon~="before"][mod-icon~="wifi"]:before, [mod-icon~="after"][mod-icon~="wifi"]:after{ content: "\f25c"; } [mod-icon~="before"][mod-icon~="wineglass"]:before, [mod-icon~="after"][mod-icon~="wineglass"]:after{ content: "\f2b9"; } [mod-icon~="before"][mod-icon~="woman"]:before, [mod-icon~="after"][mod-icon~="woman"]:after{ content: "\f25d"; } [mod-icon~="before"][mod-icon~="wrench"]:before, [mod-icon~="after"][mod-icon~="wrench"]:after{ content: "\f2ba"; } [mod-icon~="before"][mod-icon~="xbox"]:before, [mod-icon~="after"][mod-icon~="xbox"]:after{ content: "\f30c"; }
main.css
@charset "UTF-8"; /*! Ionicons, v2.0.0 Created by <NAME> for the Ionic Framework, http://ionicons.com/ https://twitter.com/benjsperry https://twitter.com/ionicframework MIT License: https://github.com/driftyco/ionicons Android-style icons originally built by Google’s Material Design Icons: https://github.com/google/material-design-icons used under CC BY http://creativecommons.org/licenses/by/4.0/ Modified icons to fit ionicon’s grid from original. ---------------------------------------------------------------------- @about Modulr.css ----------------------------------------- @desc: Ionic Icon Set for modulr.css fw @author: <NAME> & <NAME> @git: https://www.github/com/uloga/icon @source: http://www.getmodulr.com/css/icon ------------------------------------------------ @uses: modulr/icon/* @docs: true \------------------------------------------------- */ @font-face { font-family: "Ionicons"; src: url("fonts/ionicons.eot?v=2.0.0"); src: url("fonts/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"), url("fonts/ionicons.ttf?v=2.0.0") format("truetype"), url("fonts/ionicons.woff?v=2.0.0") format("woff"), url("fonts/ionicons.svg?v=2.0.0#Ionicons") format("svg"); font-weight: normal; font-style: normal; } [mod-icon] { display: inline-block; font-family: "Ionicons", 'Raleway',Helvetica,Arial,sans-serif; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; text-rendering: auto; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } [mod-icon~="before"]:before{ padding-right: 8px; } [mod-icon~="after"]:after{ padding-left: 8px; } [mod-icon~="before"]:before, [mod-icon~="after"]:after{ position: relative; top: 1px; } /* --- increse icon size ---- */ [mod-icon~="lg"]:not([mod-button~="fab"]):before, [mod-icon~="lg"]:not([mod-button~="fab"]):after{ font-size: 1.33333333em; line-height: .75em; vertical-align: -15%; top: 0; } [mod-icon~="before"][mod-icon~="alert"]:before, [mod-icon~="after"][mod-icon~="alert"]:after{ content: "\f101"; } [mod-icon~="before"][mod-icon~="alert-circled"]:before, [mod-icon~="after"][mod-icon~="alert-circled"]:after{ content: "\f100"; } [mod-icon~="before"][mod-icon~="android-add"]:before, [mod-icon~="after"][mod-icon~="android-add"]:after{ content: "\f2c7"; } [mod-icon~="before"][mod-icon~="android-add-circle"]:before, [mod-icon~="after"][mod-icon~="android-add-circle"]:after{ content: "\f359"; } [mod-icon~="before"][mod-icon~="android-alarm-clock"]:before, [mod-icon~="after"][mod-icon~="android-alarm-clock"]:after{ content: "\f35a"; } [mod-icon~="before"][mod-icon~="android-alert"]:before, [mod-icon~="after"][mod-icon~="android-alert"]:after{ content: "\f35b"; } [mod-icon~="before"][mod-icon~="android-apps"]:before, [mod-icon~="after"][mod-icon~="android-apps"]:after{ content: "\f35c"; } [mod-icon~="before"][mod-icon~="android-archive"]:before, [mod-icon~="after"][mod-icon~="android-archive"]:after{ content: "\f2c9"; } [mod-icon~="before"][mod-icon~="android-arrow-back"]:before, [mod-icon~="after"][mod-icon~="android-arrow-back"]:after{ content: "\f2ca"; } [mod-icon~="before"][mod-icon~="android-arrow-down"]:before, [mod-icon~="after"][mod-icon~="android-arrow-down"]:after{ content: "\f35d"; } [mod-icon~="before"][mod-icon~="android-arrow-dropdown"]:before, [mod-icon~="after"][mod-icon~="android-arrow-dropdown"]:after{ content: "\f35f"; } [mod-icon~="before"][mod-icon~="android-arrow-dropdown-circle"]:before, [mod-icon~="after"][mod-icon~="android-arrow-dropdown-circle"]:after{ content: "\f35e"; } [mod-icon~="before"][mod-icon~="android-arrow-dropleft"]:before, [mod-icon~="after"][mod-icon~="android-arrow-dropleft"]:after{ content: "\f361"; } [mod-icon~="before"][mod-icon~="android-arrow-dropleft-circle"]:before, [mod-icon~="after"][mod-icon~="android-arrow-dropleft-circle"]:after{ content: "\f360"; } [mod-icon~="before"][mod-icon~="android-arrow-dropright"]:before, [mod-icon~="after"][mod-icon~="android-arrow-dropright"]:after{ content: "\f363"; } [mod-icon~="before"][mod-icon~="android-arrow-dropright-circle"]:before, [mod-icon~="after"][mod-icon~="android-arrow-dropright-circle"]:after{ content: "\f362"; } [mod-icon~="before"][mod-icon~="android-arrow-dropup"]:before, [mod-icon~="after"][mod-icon~="android-arrow-dropup"]:after{ content: "\f365"; } [mod-icon~="before"][mod-icon~="android-arrow-dropup-circle"]:before, [mod-icon~="after"][mod-icon~="android-arrow-dropup-circle"]:after{ content: "\f364"; } [mod-icon~="before"][mod-icon~="android-arrow-forward"]:before, [mod-icon~="after"][mod-icon~="android-arrow-forward"]:after{ content: "\f30f"; } [mod-icon~="before"][mod-icon~="android-arrow-up"]:before, [mod-icon~="after"][mod-icon~="android-arrow-up"]:after{ content: "\f366"; } [mod-icon~="before"][mod-icon~="android-attach"]:before, [mod-icon~="after"][mod-icon~="android-attach"]:after{ content: "\f367"; } [mod-icon~="before"][mod-icon~="android-bar"]:before, [mod-icon~="after"][mod-icon~="android-bar"]:after{ content: "\f368"; } [mod-icon~="before"][mod-icon~="android-bicycle"]:before, [mod-icon~="after"][mod-icon~="android-bicycle"]:after{ content: "\f369"; } [mod-icon~="before"][mod-icon~="android-boat"]:before, [mod-icon~="after"][mod-icon~="android-boat"]:after{ content: "\f36a"; } [mod-icon~="before"][mod-icon~="android-bookmark"]:before, [mod-icon~="after"][mod-icon~="android-bookmark"]:after{ content: "\f36b"; } [mod-icon~="before"][mod-icon~="android-bulb"]:before, [mod-icon~="after"][mod-icon~="android-bulb"]:after{ content: "\f36c"; } [mod-icon~="before"][mod-icon~="android-bus"]:before, [mod-icon~="after"][mod-icon~="android-bus"]:after{ content: "\f36d"; } [mod-icon~="before"][mod-icon~="android-calendar"]:before, [mod-icon~="after"][mod-icon~="android-calendar"]:after{ content: "\f2d1"; } [mod-icon~="before"][mod-icon~="android-call"]:before, [mod-icon~="after"][mod-icon~="android-call"]:after{ content: "\f2d2"; } [mod-icon~="before"][mod-icon~="android-camera"]:before, [mod-icon~="after"][mod-icon~="android-camera"]:after{ content: "\f2d3"; } [mod-icon~="before"][mod-icon~="android-cancel"]:before, [mod-icon~="after"][mod-icon~="android-cancel"]:after{ content: "\f36e"; } [mod-icon~="before"][mod-icon~="android-car"]:before, [mod-icon~="after"][mod-icon~="android-car"]:after{ content: "\f36f"; } [mod-icon~="before"][mod-icon~="android-cart"]:before, [mod-icon~="after"][mod-icon~="android-cart"]:after{ content: "\f370"; } [mod-icon~="before"][mod-icon~="android-chat"]:before, [mod-icon~="after"][mod-icon~="android-chat"]:after{ content: "\f2d4"; } [mod-icon~="before"][mod-icon~="android-checkbox"]:before, [mod-icon~="after"][mod-icon~="android-checkbox"]:after{ content: "\f374"; } [mod-icon~="before"][mod-icon~="android-checkbox-blank"]:before, [mod-icon~="after"][mod-icon~="android-checkbox-blank"]:after{ content: "\f371"; } [mod-icon~="before"][mod-icon~="android-checkbox-outline"]:before, [mod-icon~="after"][mod-icon~="android-checkbox-outline"]:after{ content: "\f373"; } [mod-icon~="before"][mod-icon~="android-checkbox-outline-blank"]:before, [mod-icon~="after"][mod-icon~="android-checkbox-outline-blank"]:after{ content: "\f372"; } [mod-icon~="before"][mod-icon~="android-checkmark-circle"]:before, [mod-icon~="after"][mod-icon~="android-checkmark-circle"]:after{ content: "\f375"; } [mod-icon~="before"][mod-icon~="android-clipboard"]:before, [mod-icon~="after"][mod-icon~="android-clipboard"]:after{ content: "\f376"; } [mod-icon~="before"][mod-icon~="android-close"]:before, [mod-icon~="after"][mod-icon~="android-close"]:after{ content: "\f2d7"; } [mod-icon~="before"][mod-icon~="android-cloud"]:before, [mod-icon~="after"][mod-icon~="android-cloud"]:after{ content: "\f37a"; } [mod-icon~="before"][mod-icon~="android-cloud-circle"]:before, [mod-icon~="after"][mod-icon~="android-cloud-circle"]:after{ content: "\f377"; } [mod-icon~="before"][mod-icon~="android-cloud-done"]:before, [mod-icon~="after"][mod-icon~="android-cloud-done"]:after{ content: "\f378"; } [mod-icon~="before"][mod-icon~="android-cloud-outline"]:before, [mod-icon~="after"][mod-icon~="android-cloud-outline"]:after{ content: "\f379"; } [mod-icon~="before"][mod-icon~="android-color-palette"]:before, [mod-icon~="after"][mod-icon~="android-color-palette"]:after{ content: "\f37b"; } [mod-icon~="before"][mod-icon~="android-compass"]:before, [mod-icon~="after"][mod-icon~="android-compass"]:after{ content: "\f37c"; } [mod-icon~="before"][mod-icon~="android-contact"]:before, [mod-icon~="after"][mod-icon~="android-contact"]:after{ content: "\f2d8"; } [mod-icon~="before"][mod-icon~="android-contacts"]:before, [mod-icon~="after"][mod-icon~="android-contacts"]:after{ content: "\f2d9"; } [mod-icon~="before"][mod-icon~="android-contract"]:before, [mod-icon~="after"][mod-icon~="android-contract"]:after{ content: "\f37d"; } [mod-icon~="before"][mod-icon~="android-create"]:before, [mod-icon~="after"][mod-icon~="android-create"]:after{ content: "\f37e"; } [mod-icon~="before"][mod-icon~="android-delete"]:before, [mod-icon~="after"][mod-icon~="android-delete"]:after{ content: "\f37f"; } [mod-icon~="before"][mod-icon~="android-desktop"]:before, [mod-icon~="after"][mod-icon~="android-desktop"]:after{ content: "\f380"; } [mod-icon~="before"][mod-icon~="android-document"]:before, [mod-icon~="after"][mod-icon~="android-document"]:after{ content: "\f381"; } [mod-icon~="before"][mod-icon~="android-done"]:before, [mod-icon~="after"][mod-icon~="android-done"]:after{ content: "\f383"; } [mod-icon~="before"][mod-icon~="android-done-all"]:before, [mod-icon~="after"][mod-icon~="android-done-all"]:after{ content: "\f382"; } [mod-icon~="before"][mod-icon~="android-download"]:before, [mod-icon~="after"][mod-icon~="android-download"]:after{ content: "\f2dd"; } [mod-icon~="before"][mod-icon~="android-drafts"]:before, [mod-icon~="after"][mod-icon~="android-drafts"]:after{ content: "\f384"; } [mod-icon~="before"][mod-icon~="android-exit"]:before, [mod-icon~="after"][mod-icon~="android-exit"]:after{ content: "\f385"; } [mod-icon~="before"][mod-icon~="android-expand"]:before, [mod-icon~="after"][mod-icon~="android-expand"]:after{ content: "\f386"; } [mod-icon~="before"][mod-icon~="android-favorite"]:before, [mod-icon~="after"][mod-icon~="android-favorite"]:after{ content: "\f388"; } [mod-icon~="before"][mod-icon~="android-favorite-outline"]:before, [mod-icon~="after"][mod-icon~="android-favorite-outline"]:after{ content: "\f387"; } [mod-icon~="before"][mod-icon~="android-film"]:before, [mod-icon~="after"][mod-icon~="android-film"]:after{ content: "\f389"; } [mod-icon~="before"][mod-icon~="android-folder"]:before, [mod-icon~="after"][mod-icon~="android-folder"]:after{ content: "\f2e0"; } [mod-icon~="before"][mod-icon~="android-folder-open"]:before, [mod-icon~="after"][mod-icon~="android-folder-open"]:after{ content: "\f38a"; } [mod-icon~="before"][mod-icon~="android-funnel"]:before, [mod-icon~="after"][mod-icon~="android-funnel"]:after{ content: "\f38b"; } [mod-icon~="before"][mod-icon~="android-globe"]:before, [mod-icon~="after"][mod-icon~="android-globe"]:after{ content: "\f38c"; } [mod-icon~="before"][mod-icon~="android-hand"]:before, [mod-icon~="after"][mod-icon~="android-hand"]:after{ content: "\f2e3"; } [mod-icon~="before"][mod-icon~="android-hangout"]:before, [mod-icon~="after"][mod-icon~="android-hangout"]:after{ content: "\f38d"; } [mod-icon~="before"][mod-icon~="android-happy"]:before, [mod-icon~="after"][mod-icon~="android-happy"]:after{ content: "\f38e"; } [mod-icon~="before"][mod-icon~="android-home"]:before, [mod-icon~="after"][mod-icon~="android-home"]:after{ content: "\f38f"; } [mod-icon~="before"][mod-icon~="android-image"]:before, [mod-icon~="after"][mod-icon~="android-image"]:after{ content: "\f2e4"; } [mod-icon~="before"][mod-icon~="android-laptop"]:before, [mod-icon~="after"][mod-icon~="android-laptop"]:after{ content: "\f390"; } [mod-icon~="before"][mod-icon~="android-list"]:before, [mod-icon~="after"][mod-icon~="android-list"]:after{ content: "\f391"; } [mod-icon~="before"][mod-icon~="android-locate"]:before, [mod-icon~="after"][mod-icon~="android-locate"]:after{ content: "\f2e9"; } [mod-icon~="before"][mod-icon~="android-lock"]:before, [mod-icon~="after"][mod-icon~="android-lock"]:after{ content: "\f392"; } [mod-icon~="before"][mod-icon~="android-mail"]:before, [mod-icon~="after"][mod-icon~="android-mail"]:after{ content: "\f2eb"; } [mod-icon~="before"][mod-icon~="android-map"]:before, [mod-icon~="after"][mod-icon~="android-map"]:after{ content: "\f393"; } [mod-icon~="before"][mod-icon~="android-menu"]:before, [mod-icon~="after"][mod-icon~="android-menu"]:after{ content: "\f394"; } [mod-icon~="before"][mod-icon~="android-microphone"]:before, [mod-icon~="after"][mod-icon~="android-microphone"]:after{ content: "\f2ec"; } [mod-icon~="before"][mod-icon~="android-microphone-off"]:before, [mod-icon~="after"][mod-icon~="android-microphone-off"]:after{ content: "\f395"; } [mod-icon~="before"][mod-icon~="android-more-horizontal"]:before, [mod-icon~="after"][mod-icon~="android-more-horizontal"]:after{ content: "\f396"; } [mod-icon~="before"][mod-icon~="android-more-vertical"]:before, [mod-icon~="after"][mod-icon~="android-more-vertical"]:after{ content: "\f397"; } [mod-icon~="before"][mod-icon~="android-navigate"]:before, [mod-icon~="after"][mod-icon~="android-navigate"]:after{ content: "\f398"; } [mod-icon~="before"][mod-icon~="android-notifications"]:before, [mod-icon~="after"][mod-icon~="android-notifications"]:after{ content: "\f39b"; } [mod-icon~="before"][mod-icon~="android-notifications-none"]:before, [mod-icon~="after"][mod-icon~="android-notifications-none"]:after{ content: "\f399"; } [mod-icon~="before"][mod-icon~="android-notifications-off"]:before, [mod-icon~="after"][mod-icon~="android-notifications-off"]:after{ content: "\f39a"; } [mod-icon~="before"][mod-icon~="android-open"]:before, [mod-icon~="after"][mod-icon~="android-open"]:after{ content: "\f39c"; } [mod-icon~="before"][mod-icon~="android-options"]:before, [mod-icon~="after"][mod-icon~="android-options"]:after{ content: "\f39d"; } [mod-icon~="before"][mod-icon~="android-people"]:before, [mod-icon~="after"][mod-icon~="android-people"]:after{ content: "\f39e"; } [mod-icon~="before"][mod-icon~="android-person"]:before, [mod-icon~="after"][mod-icon~="android-person"]:after{ content: "\f3a0"; } [mod-icon~="before"][mod-icon~="android-person-add"]:before, [mod-icon~="after"][mod-icon~="android-person-add"]:after{ content: "\f39f"; } [mod-icon~="before"][mod-icon~="android-phone-landscape"]:before, [mod-icon~="after"][mod-icon~="android-phone-landscape"]:after{ content: "\f3a1"; } [mod-icon~="before"][mod-icon~="android-phone-portrait"]:before, [mod-icon~="after"][mod-icon~="android-phone-portrait"]:after{ content: "\f3a2"; } [mod-icon~="before"][mod-icon~="android-pin"]:before, [mod-icon~="after"][mod-icon~="android-pin"]:after{ content: "\f3a3"; } [mod-icon~="before"][mod-icon~="android-plane"]:before, [mod-icon~="after"][mod-icon~="android-plane"]:after{ content: "\f3a4"; } [mod-icon~="before"][mod-icon~="android-playstore"]:before, [mod-icon~="after"][mod-icon~="android-playstore"]:after{ content: "\f2f0"; } [mod-icon~="before"][mod-icon~="android-print"]:before, [mod-icon~="after"][mod-icon~="android-print"]:after{ content: "\f3a5"; } [mod-icon~="before"][mod-icon~="android-radio-button-off"]:before, [mod-icon~="after"][mod-icon~="android-radio-button-off"]:after{ content: "\f3a6"; } [mod-icon~="before"][mod-icon~="android-radio-button-on"]:before, [mod-icon~="after"][mod-icon~="android-radio-button-on"]:after{ content: "\f3a7"; } [mod-icon~="before"][mod-icon~="android-refresh"]:before, [mod-icon~="after"][mod-icon~="android-refresh"]:after{ content: "\f3a8"; } [mod-icon~="before"][mod-icon~="android-remove"]:before, [mod-icon~="after"][mod-icon~="android-remove"]:after{ content: "\f2f4"; } [mod-icon~="before"][mod-icon~="android-remove-circle"]:before, [mod-icon~="after"][mod-icon~="android-remove-circle"]:after{ content: "\f3a9"; } [mod-icon~="before"][mod-icon~="android-restaurant"]:before, [mod-icon~="after"][mod-icon~="android-restaurant"]:after{ content: "\f3aa"; } [mod-icon~="before"][mod-icon~="android-sad"]:before, [mod-icon~="after"][mod-icon~="android-sad"]:after{ content: "\f3ab"; } [mod-icon~="before"][mod-icon~="android-search"]:before, [mod-icon~="after"][mod-icon~="android-search"]:after{ content: "\f2f5"; } [mod-icon~="before"][mod-icon~="android-send"]:before, [mod-icon~="after"][mod-icon~="android-send"]:after{ content: "\f2f6"; } [mod-icon~="before"][mod-icon~="android-settings"]:before, [mod-icon~="after"][mod-icon~="android-settings"]:after{ content: "\f2f7"; } [mod-icon~="before"][mod-icon~="android-share"]:before, [mod-icon~="after"][mod-icon~="android-share"]:after{ content: "\f2f8"; } [mod-icon~="before"][mod-icon~="android-share-alt"]:before, [mod-icon~="after"][mod-icon~="android-share-alt"]:after{ content: "\f3ac"; } [mod-icon~="before"][mod-icon~="android-star"]:before, [mod-icon~="after"][mod-icon~="android-star"]:after{ content: "\f2fc"; } [mod-icon~="before"][mod-icon~="android-star-half"]:before, [mod-icon~="after"][mod-icon~="android-star-half"]:after{ content: "\f3ad"; } [mod-icon~="before"][mod-icon~="android-star-outline"]:before, [mod-icon~="after"][mod-icon~="android-star-outline"]:after{ content: "\f3ae"; } [mod-icon~="before"][mod-icon~="android-stopwatch"]:before, [mod-icon~="after"][mod-icon~="android-stopwatch"]:after{ content: "\f2fd"; } [mod-icon~="before"][mod-icon~="android-subway"]:before, [mod-icon~="after"][mod-icon~="android-subway"]:after{ content: "\f3af"; } [mod-icon~="before"][mod-icon~="android-sunny"]:before, [mod-icon~="after"][mod-icon~="android-sunny"]:after{ content: "\f3b0"; } [mod-icon~="before"][mod-icon~="android-sync"]:before, [mod-icon~="after"][mod-icon~="android-sync"]:after{ content: "\f3b1"; } [mod-icon~="before"][mod-icon~="android-textsms"]:before, [mod-icon~="after"][mod-icon~="android-textsms"]:after{ content: "\f3b2"; } [mod-icon~="before"][mod-icon~="android-time"]:before, [mod-icon~="after"][mod-icon~="android-time"]:after{ content: "\f3b3"; } [mod-icon~="before"][mod-icon~="android-train"]:before, [mod-icon~="after"][mod-icon~="android-train"]:after{ content: "\f3b4"; } [mod-icon~="before"][mod-icon~="android-unlock"]:before, [mod-icon~="after"][mod-icon~="android-unlock"]:after{ content: "\f3b5"; } [mod-icon~="before"][mod-icon~="android-upload"]:before, [mod-icon~="after"][mod-icon~="android-upload"]:after{ content: "\f3b6"; } [mod-icon~="before"][mod-icon~="android-volume-down"]:before, [mod-icon~="after"][mod-icon~="android-volume-down"]:after{ content: "\f3b7"; } [mod-icon~="before"][mod-icon~="android-volume-mute"]:before, [mod-icon~="after"][mod-icon~="android-volume-mute"]:after{ content: "\f3b8"; } [mod-icon~="before"][mod-icon~="android-volume-off"]:before, [mod-icon~="after"][mod-icon~="android-volume-off"]:after{ content: "\f3b9"; } [mod-icon~="before"][mod-icon~="android-volume-up"]:before, [mod-icon~="after"][mod-icon~="android-volume-up"]:after{ content: "\f3ba"; } [mod-icon~="before"][mod-icon~="android-walk"]:before, [mod-icon~="after"][mod-icon~="android-walk"]:after{ content: "\f3bb"; } [mod-icon~="before"][mod-icon~="android-warning"]:before, [mod-icon~="after"][mod-icon~="android-warning"]:after{ content: "\f3bc"; } [mod-icon~="before"][mod-icon~="android-watch"]:before, [mod-icon~="after"][mod-icon~="android-watch"]:after{ content: "\f3bd"; } [mod-icon~="before"][mod-icon~="android-wifi"]:before, [mod-icon~="after"][mod-icon~="android-wifi"]:after{ content: "\f305"; } [mod-icon~="before"][mod-icon~="aperture"]:before, [mod-icon~="after"][mod-icon~="aperture"]:after{ content: "\f313"; } [mod-icon~="before"][mod-icon~="archive"]:before, [mod-icon~="after"][mod-icon~="archive"]:after{ content: "\f102"; } [mod-icon~="before"][mod-icon~="arrow-down-a"]:before, [mod-icon~="after"][mod-icon~="arrow-down-a"]:after{ content: "\f103"; } [mod-icon~="before"][mod-icon~="arrow-down-b"]:before, [mod-icon~="after"][mod-icon~="arrow-down-b"]:after{ content: "\f104"; } [mod-icon~="before"][mod-icon~="arrow-down-c"]:before, [mod-icon~="after"][mod-icon~="arrow-down-c"]:after{ content: "\f105"; } [mod-icon~="before"][mod-icon~="arrow-expand"]:before, [mod-icon~="after"][mod-icon~="arrow-expand"]:after{ content: "\f25e"; } [mod-icon~="before"][mod-icon~="arrow-graph-down-left"]:before, [mod-icon~="after"][mod-icon~="arrow-graph-down-left"]:after{ content: "\f25f"; } [mod-icon~="before"][mod-icon~="arrow-graph-down-right"]:before, [mod-icon~="after"][mod-icon~="arrow-graph-down-right"]:after{ content: "\f260"; } [mod-icon~="before"][mod-icon~="arrow-graph-up-left"]:before, [mod-icon~="after"][mod-icon~="arrow-graph-up-left"]:after{ content: "\f261"; } [mod-icon~="before"][mod-icon~="arrow-graph-up-right"]:before, [mod-icon~="after"][mod-icon~="arrow-graph-up-right"]:after{ content: "\f262"; } [mod-icon~="before"][mod-icon~="arrow-left-a"]:before, [mod-icon~="after"][mod-icon~="arrow-left-a"]:after{ content: "\f106"; } [mod-icon~="before"][mod-icon~="arrow-left-b"]:before, [mod-icon~="after"][mod-icon~="arrow-left-b"]:after{ content: "\f107"; } [mod-icon~="before"][mod-icon~="arrow-left-c"]:before, [mod-icon~="after"][mod-icon~="arrow-left-c"]:after{ content: "\f108"; } [mod-icon~="before"][mod-icon~="arrow-move"]:before, [mod-icon~="after"][mod-icon~="arrow-move"]:after{ content: "\f263"; } [mod-icon~="before"][mod-icon~="arrow-resize"]:before, [mod-icon~="after"][mod-icon~="arrow-resize"]:after{ content: "\f264"; } [mod-icon~="before"][mod-icon~="arrow-return-left"]:before, [mod-icon~="after"][mod-icon~="arrow-return-left"]:after{ content: "\f265"; } [mod-icon~="before"][mod-icon~="arrow-return-right"]:before, [mod-icon~="after"][mod-icon~="arrow-return-right"]:after{ content: "\f266"; } [mod-icon~="before"][mod-icon~="arrow-right-a"]:before, [mod-icon~="after"][mod-icon~="arrow-right-a"]:after{ content: "\f109"; } [mod-icon~="before"][mod-icon~="arrow-right-b"]:before, [mod-icon~="after"][mod-icon~="arrow-right-b"]:after{ content: "\f10a"; } [mod-icon~="before"][mod-icon~="arrow-right-c"]:before, [mod-icon~="after"][mod-icon~="arrow-right-c"]:after{ content: "\f10b"; } [mod-icon~="before"][mod-icon~="arrow-shrink"]:before, [mod-icon~="after"][mod-icon~="arrow-shrink"]:after{ content: "\f267"; } [mod-icon~="before"][mod-icon~="arrow-swap"]:before, [mod-icon~="after"][mod-icon~="arrow-swap"]:after{ content: "\f268"; } [mod-icon~="before"][mod-icon~="arrow-up-a"]:before, [mod-icon~="after"][mod-icon~="arrow-up-a"]:after{ content: "\f10c"; } [mod-icon~="before"][mod-icon~="arrow-up-b"]:before, [mod-icon~="after"][mod-icon~="arrow-up-b"]:after{ content: "\f10d"; } [mod-icon~="before"][mod-icon~="arrow-up-c"]:before, [mod-icon~="after"][mod-icon~="arrow-up-c"]:after{ content: "\f10e"; } [mod-icon~="before"][mod-icon~="asterisk"]:before, [mod-icon~="after"][mod-icon~="asterisk"]:after{ content: "\f314"; } [mod-icon~="before"][mod-icon~="at"]:before, [mod-icon~="after"][mod-icon~="at"]:after{ content: "\f10f"; } [mod-icon~="before"][mod-icon~="backspace"]:before, [mod-icon~="after"][mod-icon~="backspace"]:after{ content: "\f3bf"; } [mod-icon~="before"][mod-icon~="backspace-outline"]:before, [mod-icon~="after"][mod-icon~="backspace-outline"]:after{ content: "\f3be"; } [mod-icon~="before"][mod-icon~="bag"]:before, [mod-icon~="after"][mod-icon~="bag"]:after{ content: "\f110"; } [mod-icon~="before"][mod-icon~="battery-charging"]:before, [mod-icon~="after"][mod-icon~="battery-charging"]:after{ content: "\f111"; } [mod-icon~="before"][mod-icon~="battery-empty"]:before, [mod-icon~="after"][mod-icon~="battery-empty"]:after{ content: "\f112"; } [mod-icon~="before"][mod-icon~="battery-full"]:before, [mod-icon~="after"][mod-icon~="battery-full"]:after{ content: "\f113"; } [mod-icon~="before"][mod-icon~="battery-half"]:before, [mod-icon~="after"][mod-icon~="battery-half"]:after{ content: "\f114"; } [mod-icon~="before"][mod-icon~="battery-low"]:before, [mod-icon~="after"][mod-icon~="battery-low"]:after{ content: "\f115"; } [mod-icon~="before"][mod-icon~="beaker"]:before, [mod-icon~="after"][mod-icon~="beaker"]:after{ content: "\f269"; } [mod-icon~="before"][mod-icon~="beer"]:before, [mod-icon~="after"][mod-icon~="beer"]:after{ content: "\f26a"; } [mod-icon~="before"][mod-icon~="bluetooth"]:before, [mod-icon~="after"][mod-icon~="bluetooth"]:after{ content: "\f116"; } [mod-icon~="before"][mod-icon~="bonfire"]:before, [mod-icon~="after"][mod-icon~="bonfire"]:after{ content: "\f315"; } [mod-icon~="before"][mod-icon~="bookmark"]:before, [mod-icon~="after"][mod-icon~="bookmark"]:after{ content: "\f26b"; } [mod-icon~="before"][mod-icon~="bowtie"]:before, [mod-icon~="after"][mod-icon~="bowtie"]:after{ content: "\f3c0"; } [mod-icon~="before"][mod-icon~="briefcase"]:before, [mod-icon~="after"][mod-icon~="briefcase"]:after{ content: "\f26c"; } [mod-icon~="before"][mod-icon~="bug"]:before, [mod-icon~="after"][mod-icon~="bug"]:after{ content: "\f2be"; } [mod-icon~="before"][mod-icon~="calculator"]:before, [mod-icon~="after"][mod-icon~="calculator"]:after{ content: "\f26d"; } [mod-icon~="before"][mod-icon~="calendar"]:before, [mod-icon~="after"][mod-icon~="calendar"]:after{ content: "\f117"; } [mod-icon~="before"][mod-icon~="camera"]:before, [mod-icon~="after"][mod-icon~="camera"]:after{ content: "\f118"; } [mod-icon~="before"][mod-icon~="card"]:before, [mod-icon~="after"][mod-icon~="card"]:after{ content: "\f119"; } [mod-icon~="before"][mod-icon~="cash"]:before, [mod-icon~="after"][mod-icon~="cash"]:after{ content: "\f316"; } [mod-icon~="before"][mod-icon~="chatbox"]:before, [mod-icon~="after"][mod-icon~="chatbox"]:after{ content: "\f11b"; } [mod-icon~="before"][mod-icon~="chatbox-working"]:before, [mod-icon~="after"][mod-icon~="chatbox-working"]:after{ content: "\f11a"; } [mod-icon~="before"][mod-icon~="chatboxes"]:before, [mod-icon~="after"][mod-icon~="chatboxes"]:after{ content: "\f11c"; } [mod-icon~="before"][mod-icon~="chatbubble"]:before, [mod-icon~="after"][mod-icon~="chatbubble"]:after{ content: "\f11e"; } [mod-icon~="before"][mod-icon~="chatbubble-working"]:before, [mod-icon~="after"][mod-icon~="chatbubble-working"]:after{ content: "\f11d"; } [mod-icon~="before"][mod-icon~="chatbubbles"]:before, [mod-icon~="after"][mod-icon~="chatbubbles"]:after{ content: "\f11f"; } [mod-icon~="before"][mod-icon~="checkmark"]:before, [mod-icon~="after"][mod-icon~="checkmark"]:after{ content: "\f122"; } [mod-icon~="before"][mod-icon~="checkmark-circled"]:before, [mod-icon~="after"][mod-icon~="checkmark-circled"]:after{ content: "\f122"; } [mod-icon~="before"][mod-icon~="checkmark-round"]:before, [mod-icon~="after"][mod-icon~="checkmark-round"]:after{ content: "\f121"; } [mod-icon~="before"][mod-icon~="chevron-down"]:before, [mod-icon~="after"][mod-icon~="chevron-down"]:after{ content: "\f123"; } [mod-icon~="before"][mod-icon~="chevron-left"]:before, [mod-icon~="after"][mod-icon~="chevron-left"]:after{ content: "\f124"; } [mod-icon~="before"][mod-icon~="chevron-right"]:before, [mod-icon~="after"][mod-icon~="chevron-right"]:after{ content: "\f125"; } [mod-icon~="before"][mod-icon~="chevron-up"]:before, [mod-icon~="after"][mod-icon~="chevron-up"]:after{ content: "\f126"; } [mod-icon~="before"][mod-icon~="clipboard"]:before, [mod-icon~="after"][mod-icon~="clipboard"]:after{ content: "\f127"; } [mod-icon~="before"][mod-icon~="clock"]:before, [mod-icon~="after"][mod-icon~="clock"]:after{ content: "\f26e"; } [mod-icon~="before"][mod-icon~="close"]:before, [mod-icon~="after"][mod-icon~="close"]:after{ content: "\f12a"; } [mod-icon~="before"][mod-icon~="close-circled"]:before, [mod-icon~="after"][mod-icon~="close-circled"]:after{ content: "\f128"; } [mod-icon~="before"][mod-icon~="close-round"]:before, [mod-icon~="after"][mod-icon~="close-round"]:after{ content: "\f129"; } [mod-icon~="before"][mod-icon~="closed-captioning"]:before, [mod-icon~="after"][mod-icon~="closed-captioning"]:after{ content: "\f317"; } [mod-icon~="before"][mod-icon~="cloud"]:before, [mod-icon~="after"][mod-icon~="cloud"]:after{ content: "\f12b"; } [mod-icon~="before"][mod-icon~="code"]:before, [mod-icon~="after"][mod-icon~="code"]:after{ content: "\f271"; } [mod-icon~="before"][mod-icon~="code-download"]:before, [mod-icon~="after"][mod-icon~="code-download"]:after{ content: "\f26f"; } [mod-icon~="before"][mod-icon~="code-working"]:before, [mod-icon~="after"][mod-icon~="code-working"]:after{ content: "\f270"; } [mod-icon~="before"][mod-icon~="coffee"]:before, [mod-icon~="after"][mod-icon~="coffee"]:after{ content: "\f272"; } [mod-icon~="before"][mod-icon~="compass"]:before, [mod-icon~="after"][mod-icon~="compass"]:after{ content: "\f273"; } [mod-icon~="before"][mod-icon~="compose"]:before, [mod-icon~="after"][mod-icon~="compose"]:after{ content: "\f12c"; } [mod-icon~="before"][mod-icon~="connection-bars"]:before, [mod-icon~="after"][mod-icon~="connection-bars"]:after{ content: "\f274"; } [mod-icon~="before"][mod-icon~="contrast"]:before, [mod-icon~="after"][mod-icon~="contrast"]:after{ content: "\f275"; } [mod-icon~="before"][mod-icon~="crop"]:before, [mod-icon~="after"][mod-icon~="crop"]:after{ content: "\f3c1"; } [mod-icon~="before"][mod-icon~="cube"]:before, [mod-icon~="after"][mod-icon~="cube"]:after{ content: "\f318"; } [mod-icon~="before"][mod-icon~="disc"]:before, [mod-icon~="after"][mod-icon~="disc"]:after{ content: "\f12d"; } [mod-icon~="before"][mod-icon~="document"]:before, [mod-icon~="after"][mod-icon~="document"]:after{ content: "\f12f"; } [mod-icon~="before"][mod-icon~="document-text"]:before, [mod-icon~="after"][mod-icon~="document-text"]:after{ content: "\f12e"; } [mod-icon~="before"][mod-icon~="drag"]:before, [mod-icon~="after"][mod-icon~="drag"]:after{ content: "\f130"; } [mod-icon~="before"][mod-icon~="earth"]:before, [mod-icon~="after"][mod-icon~="earth"]:after{ content: "\f276"; } [mod-icon~="before"][mod-icon~="easel"]:before, [mod-icon~="after"][mod-icon~="easel"]:after{ content: "\f3c2"; } [mod-icon~="before"][mod-icon~="edit"]:before, [mod-icon~="after"][mod-icon~="edit"]:after{ content: "\f2bf"; } [mod-icon~="before"][mod-icon~="egg"]:before, [mod-icon~="after"][mod-icon~="egg"]:after{ content: "\f277"; } [mod-icon~="before"][mod-icon~="eject"]:before, [mod-icon~="after"][mod-icon~="eject"]:after{ content: "\f131"; } [mod-icon~="before"][mod-icon~="email"]:before, [mod-icon~="after"][mod-icon~="email"]:after{ content: "\f132"; } [mod-icon~="before"][mod-icon~="email-unread"]:before, [mod-icon~="after"][mod-icon~="email-unread"]:after{ content: "\f3c3"; } [mod-icon~="before"][mod-icon~="erlenmeyer-flask"]:before, [mod-icon~="after"][mod-icon~="erlenmeyer-flask"]:after{ content: "\f3c5"; } [mod-icon~="before"][mod-icon~="erlenmeyer-flask-bubbles"]:before, [mod-icon~="after"][mod-icon~="erlenmeyer-flask-bubbles"]:after{ content: "\f3c4"; } [mod-icon~="before"][mod-icon~="eye"]:before, [mod-icon~="after"][mod-icon~="eye"]:after{ content: "\f133"; } [mod-icon~="before"][mod-icon~="eye-disabled"]:before, [mod-icon~="after"][mod-icon~="eye-disabled"]:after{ content: "\f306"; } [mod-icon~="before"][mod-icon~="female"]:before, [mod-icon~="after"][mod-icon~="female"]:after{ content: "\f278"; } [mod-icon~="before"][mod-icon~="filing"]:before, [mod-icon~="after"][mod-icon~="filing"]:after{ content: "\f134"; } [mod-icon~="before"][mod-icon~="film-marker"]:before, [mod-icon~="after"][mod-icon~="film-marker"]:after{ content: "\f135"; } [mod-icon~="before"][mod-icon~="fireball"]:before, [mod-icon~="after"][mod-icon~="fireball"]:after{ content: "\f319"; } [mod-icon~="before"][mod-icon~="flag"]:before, [mod-icon~="after"][mod-icon~="flag"]:after{ content: "\f279"; } [mod-icon~="before"][mod-icon~="flame"]:before, [mod-icon~="after"][mod-icon~="flame"]:after{ content: "\f31a"; } [mod-icon~="before"][mod-icon~="flash"]:before, [mod-icon~="after"][mod-icon~="flash"]:after{ content: "\f137"; } [mod-icon~="before"][mod-icon~="flash-off"]:before, [mod-icon~="after"][mod-icon~="flash-off"]:after{ content: "\f136"; } [mod-icon~="before"][mod-icon~="folder"]:before, [mod-icon~="after"][mod-icon~="folder"]:after{ content: "\f139"; } [mod-icon~="before"][mod-icon~="fork"]:before, [mod-icon~="after"][mod-icon~="fork"]:after{ content: "\f27a"; } [mod-icon~="before"][mod-icon~="fork-repo"]:before, [mod-icon~="after"][mod-icon~="fork-repo"]:after{ content: "\f2c0"; } [mod-icon~="before"][mod-icon~="forward"]:before, [mod-icon~="after"][mod-icon~="forward"]:after{ content: "\f13a"; } [mod-icon~="before"][mod-icon~="funnel"]:before, [mod-icon~="after"][mod-icon~="funnel"]:after{ content: "\f31b"; } [mod-icon~="before"][mod-icon~="gear-a"]:before, [mod-icon~="after"][mod-icon~="gear-a"]:after{ content: "\f13d"; } [mod-icon~="before"][mod-icon~="gear-b"]:before, [mod-icon~="after"][mod-icon~="gear-b"]:after{ content: "\f13e"; } [mod-icon~="before"][mod-icon~="grid"]:before, [mod-icon~="after"][mod-icon~="grid"]:after{ content: "\f13f"; } [mod-icon~="before"][mod-icon~="hammer"]:before, [mod-icon~="after"][mod-icon~="hammer"]:after{ content: "\f27b"; } [mod-icon~="before"][mod-icon~="happy"]:before, [mod-icon~="after"][mod-icon~="happy"]:after{ content: "\f31c"; } [mod-icon~="before"][mod-icon~="happy-outline"]:before, [mod-icon~="after"][mod-icon~="happy-outline"]:after{ content: "\f3c6"; } [mod-icon~="before"][mod-icon~="headphone"]:before, [mod-icon~="after"][mod-icon~="headphone"]:after{ content: "\f140"; } [mod-icon~="before"][mod-icon~="heart"]:before, [mod-icon~="after"][mod-icon~="heart"]:after{ content: "\f141"; } [mod-icon~="before"][mod-icon~="heart-broken"]:before, [mod-icon~="after"][mod-icon~="heart-broken"]:after{ content: "\f31d"; } [mod-icon~="before"][mod-icon~="help"]:before, [mod-icon~="after"][mod-icon~="help"]:after{ content: "\f143"; } [mod-icon~="before"][mod-icon~="help-buoy"]:before, [mod-icon~="after"][mod-icon~="help-buoy"]:after{ content: "\f27c"; } [mod-icon~="before"][mod-icon~="help-circled"]:before, [mod-icon~="after"][mod-icon~="help-circled"]:after{ content: "\f142"; } [mod-icon~="before"][mod-icon~="home"]:before, [mod-icon~="after"][mod-icon~="home"]:after{ content: "\f144"; } [mod-icon~="before"][mod-icon~="icecream"]:before, [mod-icon~="after"][mod-icon~="icecream"]:after{ content: "\f27d"; } [mod-icon~="before"][mod-icon~="image"]:before, [mod-icon~="after"][mod-icon~="image"]:after{ content: "\f147"; } [mod-icon~="before"][mod-icon~="images"]:before, [mod-icon~="after"][mod-icon~="images"]:after{ content: "\f148"; } [mod-icon~="before"][mod-icon~="information"]:before, [mod-icon~="after"][mod-icon~="information"]:after{ content: "\f14a"; } [mod-icon~="before"][mod-icon~="information-circled"]:before, [mod-icon~="after"][mod-icon~="information-circled"]:after{ content: "\f149"; } [mod-icon~="before"][mod-icon~="ionic"]:before, [mod-icon~="after"][mod-icon~="ionic"]:after{ content: "\f14b"; } [mod-icon~="before"][mod-icon~="ios-alarm"]:before, [mod-icon~="after"][mod-icon~="ios-alarm"]:after{ content: "\f3c8"; } [mod-icon~="before"][mod-icon~="ios-alarm-outline"]:before, [mod-icon~="after"][mod-icon~="ios-alarm-outline"]:after{ content: "\f3c7"; } [mod-icon~="before"][mod-icon~="ios-albums"]:before, [mod-icon~="after"][mod-icon~="ios-albums"]:after{ content: "\f3ca"; } [mod-icon~="before"][mod-icon~="ios-albums-outline"]:before, [mod-icon~="after"][mod-icon~="ios-albums-outline"]:after{ content: "\f3c9"; } [mod-icon~="before"][mod-icon~="ios-americanfootball"]:before, [mod-icon~="after"][mod-icon~="ios-americanfootball"]:after{ content: "\f3cc"; } [mod-icon~="before"][mod-icon~="ios-americanfootball-outline"]:before, [mod-icon~="after"][mod-icon~="ios-americanfootball-outline"]:after{ content: "\f3cb"; } [mod-icon~="before"][mod-icon~="ios-analytics"]:before, [mod-icon~="after"][mod-icon~="ios-analytics"]:after{ content: "\f3ce"; } [mod-icon~="before"][mod-icon~="ios-analytics-outline"]:before, [mod-icon~="after"][mod-icon~="ios-analytics-outline"]:after{ content: "\f3cd"; } [mod-icon~="before"][mod-icon~="ios-arrow-back"]:before, [mod-icon~="after"][mod-icon~="ios-arrow-back"]:after{ content: "\f3cf"; } [mod-icon~="before"][mod-icon~="ios-arrow-down"]:before, [mod-icon~="after"][mod-icon~="ios-arrow-down"]:after{ content: "\f3d0"; } [mod-icon~="before"][mod-icon~="ios-arrow-forward"]:before, [mod-icon~="after"][mod-icon~="ios-arrow-forward"]:after{ content: "\f3d1"; } [mod-icon~="before"][mod-icon~="ios-arrow-left"]:before, [mod-icon~="after"][mod-icon~="ios-arrow-left"]:after{ content: "\f3d2"; } [mod-icon~="before"][mod-icon~="ios-arrow-right"]:before, [mod-icon~="after"][mod-icon~="ios-arrow-right"]:after{ content: "\f3d3"; } [mod-icon~="before"][mod-icon~="ios-arrow-thin-down"]:before, [mod-icon~="after"][mod-icon~="ios-arrow-thin-down"]:after{ content: "\f3d4"; } [mod-icon~="before"][mod-icon~="ios-arrow-thin-left"]:before, [mod-icon~="after"][mod-icon~="ios-arrow-thin-left"]:after{ content: "\f3d5"; } [mod-icon~="before"][mod-icon~="ios-arrow-thin-right"]:before, [mod-icon~="after"][mod-icon~="ios-arrow-thin-right"]:after{ content: "\f3d6"; } [mod-icon~="before"][mod-icon~="ios-arrow-thin-up"]:before, [mod-icon~="after"][mod-icon~="ios-arrow-thin-up"]:after{ content: "\f3d7"; } [mod-icon~="before"][mod-icon~="ios-arrow-up"]:before, [mod-icon~="after"][mod-icon~="ios-arrow-up"]:after{ content: "\f3d8"; } [mod-icon~="before"][mod-icon~="ios-at"]:before, [mod-icon~="after"][mod-icon~="ios-at"]:after{ content: "\f3da"; } [mod-icon~="before"][mod-icon~="ios-at-outline"]:before, [mod-icon~="after"][mod-icon~="ios-at-outline"]:after{ content: "\f3d9"; } [mod-icon~="before"][mod-icon~="ios-barcode"]:before, [mod-icon~="after"][mod-icon~="ios-barcode"]:after{ content: "\f3dc"; } [mod-icon~="before"][mod-icon~="ios-barcode-outline"]:before, [mod-icon~="after"][mod-icon~="ios-barcode-outline"]:after{ content: "\f3db"; } [mod-icon~="before"][mod-icon~="ios-baseball"]:before, [mod-icon~="after"][mod-icon~="ios-baseball"]:after{ content: "\f3de"; } [mod-icon~="before"][mod-icon~="ios-baseball-outline"]:before, [mod-icon~="after"][mod-icon~="ios-baseball-outline"]:after{ content: "\f3dd"; } [mod-icon~="before"][mod-icon~="ios-basketball"]:before, [mod-icon~="after"][mod-icon~="ios-basketball"]:after{ content: "\f3e0"; } [mod-icon~="before"][mod-icon~="ios-basketball-outline"]:before, [mod-icon~="after"][mod-icon~="ios-basketball-outline"]:after{ content: "\f3df"; } [mod-icon~="before"][mod-icon~="ios-bell"]:before, [mod-icon~="after"][mod-icon~="ios-bell"]:after{ content: "\f3e2"; } [mod-icon~="before"][mod-icon~="ios-bell-outline"]:before, [mod-icon~="after"][mod-icon~="ios-bell-outline"]:after{ content: "\f3e1"; } [mod-icon~="before"][mod-icon~="ios-body"]:before, [mod-icon~="after"][mod-icon~="ios-body"]:after{ content: "\f3e4"; } [mod-icon~="before"][mod-icon~="ios-body-outline"]:before, [mod-icon~="after"][mod-icon~="ios-body-outline"]:after{ content: "\f3e3"; } [mod-icon~="before"][mod-icon~="ios-bolt"]:before, [mod-icon~="after"][mod-icon~="ios-bolt"]:after{ content: "\f3e6"; } [mod-icon~="before"][mod-icon~="ios-bolt-outlinet"]:before, [mod-icon~="after"][mod-icon~="ios-bolt-outline"]:after{ content: "\f3e5"; } [mod-icon~="before"][mod-icon~="ios-book"]:before, [mod-icon~="after"][mod-icon~="ios-book"]:after{ content: "\f3e8"; } [mod-icon~="before"][mod-icon~="ios-book-outline"]:before, [mod-icon~="after"][mod-icon~="ios-book-outline"]:after{ content: "\f3e7"; } [mod-icon~="before"][mod-icon~="ios-bookmarks"]:before, [mod-icon~="after"][mod-icon~="ios-bookmarks"]:after{ content: "\f3ea"; } [mod-icon~="before"][mod-icon~="ios-bookmarks-outline"]:before, [mod-icon~="after"][mod-icon~="ios-bookmarks-outline"]:after{ content: "\f3e9"; } [mod-icon~="before"][mod-icon~="ios-box"]:before, [mod-icon~="after"][mod-icon~="ios-box"]:after{ content: "\f3ec"; } [mod-icon~="before"][mod-icon~="ios-box-outline"]:before, [mod-icon~="after"][mod-icon~="ios-box-outline"]:after{ content: "\f3eb"; } [mod-icon~="before"][mod-icon~="ios-briefcase"]:before, [mod-icon~="after"][mod-icon~="ios-briefcase"]:after{ content: "\f3ee"; } [mod-icon~="before"][mod-icon~="ios-briefcase-outline"]:before, [mod-icon~="after"][mod-icon~="ios-briefcase-outline"]:after{ content: "\f3ed"; } [mod-icon~="before"][mod-icon~="ios-browsers"]:before, [mod-icon~="after"][mod-icon~="ios-browsers"]:after{ content: "\f3f0"; } [mod-icon~="before"][mod-icon~="ios-browsers-outline"]:before, [mod-icon~="after"][mod-icon~="ios-browsers-outline"]:after{ content: "\f3ef"; } [mod-icon~="before"][mod-icon~="ios-calculator"]:before, [mod-icon~="after"][mod-icon~="ios-calculator"]:after{ content: "\f3f2"; } [mod-icon~="before"][mod-icon~="ios-calculator-outline"]:before, [mod-icon~="after"][mod-icon~="ios-calculator-outline"]:after{ content: "\f3f1"; } [mod-icon~="before"][mod-icon~="ios-calendar"]:before, [mod-icon~="after"][mod-icon~="ios-calendar"]:after{ content: "\f3f4"; } [mod-icon~="before"][mod-icon~="ios-calendar-outline"]:before, [mod-icon~="after"][mod-icon~="ios-calendar-outline"]:after{ content: "\f3f3"; } [mod-icon~="before"][mod-icon~="ios-camera"]:before, [mod-icon~="after"][mod-icon~="ios-camera"]:after{ content: "\f3f6"; } [mod-icon~="before"][mod-icon~="ios-camera-outline"]:before, [mod-icon~="after"][mod-icon~="ios-camera-outline"]:after{ content: "\f3f5"; } [mod-icon~="before"][mod-icon~="ios-cart"]:before, [mod-icon~="after"][mod-icon~="ios-cart"]:after{ content: "\f3f8"; } [mod-icon~="before"][mod-icon~="ios-cart-outline"]:before, [mod-icon~="after"][mod-icon~="ios-cart-outline"]:after{ content: "\f3f7"; } [mod-icon~="before"][mod-icon~="ios-chatboxes"]:before, [mod-icon~="after"][mod-icon~="ios-chatboxes"]:after{ content: "\f3fa"; } [mod-icon~="before"][mod-icon~="ios-chatboxes-outline"]:before, [mod-icon~="after"][mod-icon~="ios-chatboxes-outline"]:after{ content: "\f3f9"; } [mod-icon~="before"][mod-icon~="ios-chatbubble"]:before, [mod-icon~="after"][mod-icon~="ios-chatbubble"]:after{ content: "\f3fc"; } [mod-icon~="before"][mod-icon~="ios-chatbubble-outline"]:before, [mod-icon~="after"][mod-icon~="ios-chatbubble-outline"]:after{ content: "\f3fb"; } [mod-icon~="before"][mod-icon~="ios-checkmark"]:before, [mod-icon~="after"][mod-icon~="ios-checkmark"]:after{ content: "\f3ff"; } [mod-icon~="before"][mod-icon~="ios-checkmark-empty"]:before, [mod-icon~="after"][mod-icon~="ios-checkmark-empty"]:after{ content: "\f3fd"; } [mod-icon~="before"][mod-icon~="ios-checkmark-outline"]:before, [mod-icon~="after"][mod-icon~="ios-checkmark-outline"]:after{ content: "\f3fe"; } [mod-icon~="before"][mod-icon~="ios-circle-filled"]:before, [mod-icon~="after"][mod-icon~="ios-circle-filled"]:after{ content: "\f400"; } [mod-icon~="before"][mod-icon~="ios-circle-outline"]:before, [mod-icon~="after"][mod-icon~="ios-circle-outline"]:after{ content: "\f401"; } [mod-icon~="before"][mod-icon~="ios-clock"]:before, [mod-icon~="after"][mod-icon~="ios-clock"]:after{ content: "\f403"; } [mod-icon~="before"][mod-icon~="ios-clock-outline"]:before, [mod-icon~="after"][mod-icon~="ios-clock-outline"]:after{ content: "\f402"; } [mod-icon~="before"][mod-icon~="ios-close"]:before, [mod-icon~="after"][mod-icon~="ios-close"]:after{ content: "\f406"; } [mod-icon~="before"][mod-icon~="ios-close-empty"]:before, [mod-icon~="after"][mod-icon~="ios-close-empty"]:after{ content: "\f404"; } [mod-icon~="before"][mod-icon~="ios-close-outline"]:before, [mod-icon~="after"][mod-icon~="ios-close-outline"]:after{ content: "\f405"; } [mod-icon~="before"][mod-icon~="ios-cloud"]:before, [mod-icon~="after"][mod-icon~="ios-cloud"]:after{ content: "\f40c"; } [mod-icon~="before"][mod-icon~="ios-cloud-download"]:before, [mod-icon~="after"][mod-icon~="ios-cloud-download"]:after{ content: "\f408"; } [mod-icon~="before"][mod-icon~="ios-cloud-download-outline"]:before, [mod-icon~="after"][mod-icon~="ios-cloud-download-outline"]:after{ content: "\f407"; } [mod-icon~="before"][mod-icon~="ios-cloud-outline"]:before, [mod-icon~="after"][mod-icon~="ios-cloud-outline"]:after{ content: "\f409"; } [mod-icon~="before"][mod-icon~="ios-cloud-upload"]:before, [mod-icon~="after"][mod-icon~="ios-cloud-upload"]:after{ content: "\f40b"; } [mod-icon~="before"][mod-icon~="ios-cloud-upload-outline"]:before, [mod-icon~="after"][mod-icon~="ios-cloud-upload-outline"]:after{ content: "\f40a"; } [mod-icon~="before"][mod-icon~="ios-cloudy"]:before, [mod-icon~="after"][mod-icon~="ios-cloudy"]:after{ content: "\f410"; } [mod-icon~="before"][mod-icon~="ios-cloudy-night"]:before, [mod-icon~="after"][mod-icon~="ios-cloudy-night"]:after{ content: "\f40e"; } [mod-icon~="before"][mod-icon~="ios-cloudy-night-outline"]:before, [mod-icon~="after"][mod-icon~="ios-cloudy-night-outline"]:after{ content: "\f40d"; } [mod-icon~="before"][mod-icon~="ios-cloudy-outline"]:before, [mod-icon~="after"][mod-icon~="ios-cloudy-outline"]:after{ content: "\f40f"; } [mod-icon~="before"][mod-icon~="ios-cog"]:before, [mod-icon~="after"][mod-icon~="ios-cog"]:after{ content: "\f412"; } [mod-icon~="before"][mod-icon~="ios-cog-outline"]:before, [mod-icon~="after"][mod-icon~="ios-cog-outline"]:after{ content: "\f411"; } [mod-icon~="before"][mod-icon~="ios-color-filter"]:before, [mod-icon~="after"][mod-icon~="ios-color-filter"]:after{ content: "\f414"; } [mod-icon~="before"][mod-icon~="ios-color-filter-outline"]:before, [mod-icon~="after"][mod-icon~="ios-color-filter-outline"]:after{ content: "\f413"; } [mod-icon~="before"][mod-icon~="ios-color-wand"]:before, [mod-icon~="after"][mod-icon~="ios-color-wand"]:after{ content: "\f416"; } [mod-icon~="before"][mod-icon~="ios-color-wand-outline"]:before, [mod-icon~="after"][mod-icon~="ios-color-wand-outline"]:after{ content: "\f415"; } [mod-icon~="before"][mod-icon~="ios-compose"]:before, [mod-icon~="after"][mod-icon~="ios-compose"]:after{ content: "\f418"; } [mod-icon~="before"][mod-icon~="ios-compose-outline"]:before, [mod-icon~="after"][mod-icon~="ios-compose-outline"]:after{ content: "\f417"; } [mod-icon~="before"][mod-icon~="ios-contact"]:before, [mod-icon~="after"][mod-icon~="ios-contact"]:after{ content: "\f41a"; } [mod-icon~="before"][mod-icon~="ios-contact-outline"]:before, [mod-icon~="after"][mod-icon~="ios-contact-outline"]:after{ content: "\f419"; } [mod-icon~="before"][mod-icon~="ios-copy"]:before, [mod-icon~="after"][mod-icon~="ios-copy"]:after{ content: "\f41c"; } [mod-icon~="before"][mod-icon~="ios-copy-outline"]:before, [mod-icon~="after"][mod-icon~="ios-copy-outline"]:after{ content: "\f41b"; } [mod-icon~="before"][mod-icon~="ios-crop"]:before, [mod-icon~="after"][mod-icon~="ios-crop"]:after{ content: "\f41e"; } [mod-icon~="before"][mod-icon~="ios-crop-strong"]:before, [mod-icon~="after"][mod-icon~="ios-crop-strong"]:after{ content: "\f41d"; } [mod-icon~="before"][mod-icon~="ios-download"]:before, [mod-icon~="after"][mod-icon~="ios-download"]:after{ content: "\f420"; } [mod-icon~="before"][mod-icon~="ios-download-outline"]:before, [mod-icon~="after"][mod-icon~="ios-download-outline"]:after{ content: "\f41f"; } [mod-icon~="before"][mod-icon~="ios-drag"]:before, [mod-icon~="after"][mod-icon~="ios-drag"]:after{ content: "\f421"; } [mod-icon~="before"][mod-icon~="ios-email"]:before, [mod-icon~="after"][mod-icon~="ios-email"]:after{ content: "\f423"; } [mod-icon~="before"][mod-icon~="ios-email-outline"]:before, [mod-icon~="after"][mod-icon~="ios-email-outline"]:after{ content: "\f422"; } [mod-icon~="before"][mod-icon~="ios-eye"]:before, [mod-icon~="after"][mod-icon~="ios-eye"]:after{ content: "\f425"; } [mod-icon~="before"][mod-icon~="ios-eye-outline"]:before, [mod-icon~="after"][mod-icon~="ios-eye-outline"]:after{ content: "\f424"; } [mod-icon~="before"][mod-icon~="ios-fastforward"]:before, [mod-icon~="after"][mod-icon~="ios-fastforward"]:after{ content: "\f427"; } [mod-icon~="before"][mod-icon~="ios-fastforward-outline"]:before, [mod-icon~="after"][mod-icon~="ios-fastforward-outline"]:after{ content: "\f426"; } [mod-icon~="before"][mod-icon~="ios-filing"]:before, [mod-icon~="after"][mod-icon~="ios-filing"]:after{ content: "\f429"; } [mod-icon~="before"][mod-icon~="ios-filing-outline"]:before, [mod-icon~="after"][mod-icon~="ios-filing-outline"]:after{ content: "\f428"; } [mod-icon~="before"][mod-icon~="ios-film"]:before, [mod-icon~="after"][mod-icon~="ios-film"]:after{ content: "\f42b"; } [mod-icon~="before"][mod-icon~="ios-film-outline"]:before, [mod-icon~="after"][mod-icon~="ios-film-outline"]:after{ content: "\f42a"; } [mod-icon~="before"][mod-icon~="ios-flag"]:before, [mod-icon~="after"][mod-icon~="ios-flag"]:after{ content: "\f42d"; } [mod-icon~="before"][mod-icon~="ios-flag-outline"]:before, [mod-icon~="after"][mod-icon~="ios-flag-outline"]:after{ content: "\f42c"; } [mod-icon~="before"][mod-icon~="ios-flame"]:before, [mod-icon~="after"][mod-icon~="ios-flame"]:after{ content: "\f42f"; } [mod-icon~="before"][mod-icon~="ios-flame-outline"]:before, [mod-icon~="after"][mod-icon~="ios-flame-outline"]:after{ content: "\f42e"; } [mod-icon~="before"][mod-icon~="ios-flask"]:before, [mod-icon~="after"][mod-icon~="ios-flask"]:after{ content: "\f431"; } [mod-icon~="before"][mod-icon~="ios-flask-outline"]:before, [mod-icon~="after"][mod-icon~="ios-flask-outline"]:after{ content: "\f430"; } [mod-icon~="before"][mod-icon~="ios-flower"]:before, [mod-icon~="after"][mod-icon~="ios-flower"]:after{ content: "\f433"; } [mod-icon~="before"][mod-icon~="ios-flower-outline"]:before, [mod-icon~="after"][mod-icon~="ios-flower-outline"]:after{ content: "\f432"; } [mod-icon~="before"][mod-icon~="ios-folder"]:before, [mod-icon~="after"][mod-icon~="ios-folder"]:after{ content: "\f435"; } [mod-icon~="before"][mod-icon~="ios-folder-outline"]:before, [mod-icon~="after"][mod-icon~="ios-folder-outline"]:after{ content: "\f434"; } [mod-icon~="before"][mod-icon~="ios-football"]:before, [mod-icon~="after"][mod-icon~="ios-football"]:after{ content: "\f437"; } [mod-icon~="before"][mod-icon~="ios-football-outline"]:before, [mod-icon~="after"][mod-icon~="ios-football-outline"]:after{ content: "\f436"; } [mod-icon~="before"][mod-icon~="ios-game-controller-a"]:before, [mod-icon~="after"][mod-icon~="ios-game-controller-a"]:after{ content: "\f439"; } [mod-icon~="before"][mod-icon~="ios-game-controller-a-outline"]:before, [mod-icon~="after"][mod-icon~="ios-game-controller-a-outline"]:after{ content: "\f438"; } [mod-icon~="before"][mod-icon~="ios-game-controller-b"]:before, [mod-icon~="after"][mod-icon~="ios-game-controller-b"]:after{ content: "\f43b"; } [mod-icon~="before"][mod-icon~="ios-game-controller-b-outline"]:before, [mod-icon~="after"][mod-icon~="ios-game-controller-b-outline"]:after{ content: "\f43a"; } [mod-icon~="before"][mod-icon~="ios-gear"]:before, [mod-icon~="after"][mod-icon~="ios-gear"]:after{ content: "\f43d"; } [mod-icon~="before"][mod-icon~="ios-gear-outline"]:before, [mod-icon~="after"][mod-icon~="ios-gear-outline"]:after{ content: "\f43c"; } [mod-icon~="before"][mod-icon~="ios-glasses"]:before, [mod-icon~="after"][mod-icon~="ios-glasses"]:after{ content: "\f43f"; } [mod-icon~="before"][mod-icon~="ios-glasses-outline"]:before, [mod-icon~="after"][mod-icon~="ios-glasses-outline"]:after{ content: "\f43e"; } [mod-icon~="before"][mod-icon~="ios-grid-view"]:before, [mod-icon~="after"][mod-icon~="ios-grid-view"]:after{ content: "\f441"; } [mod-icon~="before"][mod-icon~="ios-grid-view-outline"]:before, [mod-icon~="after"][mod-icon~="ios-grid-view-outline"]:after{ content: "\f440"; } [mod-icon~="before"][mod-icon~="ios-heart"]:before, [mod-icon~="after"][mod-icon~="ios-heart"]:after{ content: "\f443"; } [mod-icon~="before"][mod-icon~="ios-heart-outline"]:before, [mod-icon~="after"][mod-icon~="ios-heart-outline"]:after{ content: "\f442"; } [mod-icon~="before"][mod-icon~="ios-help"]:before, [mod-icon~="after"][mod-icon~="ios-help"]:after{ content: "\f446"; } [mod-icon~="before"][mod-icon~="ios-help-empty"]:before, [mod-icon~="after"][mod-icon~="ios-help-empty"]:after{ content: "\f444"; } [mod-icon~="before"][mod-icon~="ios-help-outline"]:before, [mod-icon~="after"][mod-icon~="ios-help-outline"]:after{ content: "\f445"; } [mod-icon~="before"][mod-icon~="ios-home"]:before, [mod-icon~="after"][mod-icon~="ios-home"]:after{ content: "\f448"; } [mod-icon~="before"][mod-icon~="ios-home-outline"]:before, [mod-icon~="after"][mod-icon~="ios-home-outline"]:after{ content: "\f447"; } [mod-icon~="before"][mod-icon~="ios-infinite"]:before, [mod-icon~="after"][mod-icon~="ios-infinite"]:after{ content: "\f44a"; } [mod-icon~="before"][mod-icon~="ios-infinite-outline"]:before, [mod-icon~="after"][mod-icon~="ios-infinite-outline"]:after{ content: "\f449"; } [mod-icon~="before"][mod-icon~="ios-information"]:before, [mod-icon~="after"][mod-icon~="ios-information"]:after{ content: "\f44d"; } [mod-icon~="before"][mod-icon~="ios-information-empty"]:before, [mod-icon~="after"][mod-icon~="ios-information-empty"]:after{ content: "\f44b"; } [mod-icon~="before"][mod-icon~="ios-information-outline"]:before, [mod-icon~="after"][mod-icon~="ios-information-outline"]:after{ content: "\f44c"; } [mod-icon~="before"][mod-icon~="ios-ionic-outline"]:before, [mod-icon~="after"][mod-icon~="ios-ionic-outline"]:after{ content: "\f44e"; } [mod-icon~="before"][mod-icon~="ios-keypad"]:before, [mod-icon~="after"][mod-icon~="ios-keypad"]:after{ content: "\f450"; } [mod-icon~="before"][mod-icon~="ios-keypad-outline"]:before, [mod-icon~="after"][mod-icon~="ios-keypad-outline"]:after{ content: "\f44f"; } [mod-icon~="before"][mod-icon~="ios-lightbulb"]:before, [mod-icon~="after"][mod-icon~="ios-lightbulb"]:after{ content: "\f452"; } [mod-icon~="before"][mod-icon~="ios-lightbulb-outline"]:before, [mod-icon~="after"][mod-icon~="ios-lightbulb-outline"]:after{ content: "\f451"; } [mod-icon~="before"][mod-icon~="ios-list"]:before, [mod-icon~="after"][mod-icon~="ios-list"]:after{ content: "\f454"; } [mod-icon~="before"][mod-icon~="ios-list-outline"]:before, [mod-icon~="after"][mod-icon~="ios-list-outline"]:after{ content: "\f453"; } [mod-icon~="before"][mod-icon~="ios-location"]:before, [mod-icon~="after"][mod-icon~="ios-location"]:after{ content: "\f456"; } [mod-icon~="before"][mod-icon~="ios-location-outline"]:before, [mod-icon~="after"][mod-icon~="ios-location-outline"]:after{ content: "\f455"; } [mod-icon~="before"][mod-icon~="ios-locked"]:before, [mod-icon~="after"][mod-icon~="ios-locked"]:after{ content: "\f458"; } [mod-icon~="before"][mod-icon~="ios-locked-outline"]:before, [mod-icon~="after"][mod-icon~="ios-locked-outline"]:after{ content: "\f457"; } [mod-icon~="before"][mod-icon~="ios-loop"]:before, [mod-icon~="after"][mod-icon~="ios-loop"]:after{ content: "\f45a"; } [mod-icon~="before"][mod-icon~="ios-loop-strong"]:before, [mod-icon~="after"][mod-icon~="ios-loop-strong"]:after{ content: "\f459"; } [mod-icon~="before"][mod-icon~="ios-medical"]:before, [mod-icon~="after"][mod-icon~="ios-medical"]:after{ content: "\f45c"; } [mod-icon~="before"][mod-icon~="ios-medical-outline"]:before, [mod-icon~="after"][mod-icon~="ios-medical-outline"]:after{ content: "\f45b"; } [mod-icon~="before"][mod-icon~="ios-medkit"]:before, [mod-icon~="after"][mod-icon~="ios-medkit"]:after{ content: "\f45e"; } [mod-icon~="before"][mod-icon~="ios-medkit-outline"]:before, [mod-icon~="after"][mod-icon~="ios-medkit-outline"]:after{ content: "\f45d"; } [mod-icon~="before"][mod-icon~="ios-mic"]:before, [mod-icon~="after"][mod-icon~="ios-mic"]:after{ content: "\f461"; } [mod-icon~="before"][mod-icon~="ios-mic-off"]:before, [mod-icon~="after"][mod-icon~="ios-mic-off"]:after{ content: "\f45f"; } [mod-icon~="before"][mod-icon~="ios-mic-outline"]:before, [mod-icon~="after"][mod-icon~="ios-mic-outline"]:after{ content: "\f460"; } [mod-icon~="before"][mod-icon~="ios-minus"]:before, [mod-icon~="after"][mod-icon~="ios-minus"]:after{ content: "\f464"; } [mod-icon~="before"][mod-icon~="ios-minus-empty"]:before, [mod-icon~="after"][mod-icon~="ios-minus-empty"]:after{ content: "\f462"; } [mod-icon~="before"][mod-icon~="ios-minus-outline"]:before, [mod-icon~="after"][mod-icon~="ios-minus-outline"]:after{ content: "\f463"; } [mod-icon~="before"][mod-icon~="ios-monitor"]:before, [mod-icon~="after"][mod-icon~="ios-monitor"]:after{ content: "\f466"; } [mod-icon~="before"][mod-icon~="ios-monitor-outline"]:before, [mod-icon~="after"][mod-icon~="ios-monitor-outline"]:after{ content: "\f465"; } [mod-icon~="before"][mod-icon~="ios-moon"]:before, [mod-icon~="after"][mod-icon~="ios-moon"]:after{ content: "\f468"; } [mod-icon~="before"][mod-icon~="ios-moon-outline"]:before, [mod-icon~="after"][mod-icon~="ios-moon-outline"]:after{ content: "\f467"; } [mod-icon~="before"][mod-icon~="ios-more"]:before, [mod-icon~="after"][mod-icon~="ios-more"]:after{ content: "\f46a"; } [mod-icon~="before"][mod-icon~="ios-more-outline"]:before, [mod-icon~="after"][mod-icon~="ios-more-outline"]:after{ content: "\f469"; } [mod-icon~="before"][mod-icon~="ios-musical-note"]:before, [mod-icon~="after"][mod-icon~="ios-musical-note"]:after{ content: "\f46b"; } [mod-icon~="before"][mod-icon~="ios-musical-notes"]:before, [mod-icon~="after"][mod-icon~="ios-musical-notes"]:after{ content: "\f46c"; } [mod-icon~="before"][mod-icon~="ios-navigate"]:before, [mod-icon~="after"][mod-icon~="ios-navigate"]:after{ content: "\f46e"; } [mod-icon~="before"][mod-icon~="ios-navigate-outline"]:before, [mod-icon~="after"][mod-icon~="ios-navigate-outline"]:after{ content: "\f46d"; } [mod-icon~="before"][mod-icon~="ios-nutrition"]:before, [mod-icon~="after"][mod-icon~="ios-nutrition"]:after{ content: "\f470"; } [mod-icon~="before"][mod-icon~="ios-nutrition-outline"]:before, [mod-icon~="after"][mod-icon~="ios-nutrition-outline"]:after{ content: "\f46f"; } [mod-icon~="before"][mod-icon~="ios-paper"]:before, [mod-icon~="after"][mod-icon~="ios-paper"]:after{ content: "\f472"; } [mod-icon~="before"][mod-icon~="ios-paper-outline"]:before, [mod-icon~="after"][mod-icon~="ios-paper-outline"]:after{ content: "\f471"; } [mod-icon~="before"][mod-icon~="ios-paperplane"]:before, [mod-icon~="after"][mod-icon~="ios-paperplane"]:after{ content: "\f474"; } [mod-icon~="before"][mod-icon~="ios-paperplane-outline"]:before, [mod-icon~="after"][mod-icon~="ios-paperplane-outline"]:after{ content: "\f473"; } [mod-icon~="before"][mod-icon~="ios-partlysunny"]:before, [mod-icon~="after"][mod-icon~="ios-partlysunny"]:after{ content: "\f476"; } [mod-icon~="before"][mod-icon~="ios-partlysunny-outline"]:before, [mod-icon~="after"][mod-icon~="ios-partlysunny-outline"]:after{ content: "\f475"; } [mod-icon~="before"][mod-icon~="ios-pause"]:before, [mod-icon~="after"][mod-icon~="ios-pause"]:after{ content: "\f478"; } [mod-icon~="before"][mod-icon~="ios-pause-outline"]:before, [mod-icon~="after"][mod-icon~="ios-pause-outline"]:after{ content: "\f477"; } [mod-icon~="before"][mod-icon~="ios-paw"]:before, [mod-icon~="after"][mod-icon~="ios-paw"]:after{ content: "\f47a"; } [mod-icon~="before"][mod-icon~="ios-paw-outline"]:before, [mod-icon~="after"][mod-icon~="ios-paw-outline"]:after{ content: "\f479"; } [mod-icon~="before"][mod-icon~="ios-people"]:before, [mod-icon~="after"][mod-icon~="ios-people"]:after{ content: "\f47c"; } [mod-icon~="before"][mod-icon~="ios-people-outline"]:before, [mod-icon~="after"][mod-icon~="ios-people-outline"]:after{ content: "\f47b"; } [mod-icon~="before"][mod-icon~="ios-person"]:before, [mod-icon~="after"][mod-icon~="ios-person"]:after{ content: "\f47e"; } [mod-icon~="before"][mod-icon~="ios-person-outline"]:before, [mod-icon~="after"][mod-icon~="ios-person-outline"]:after{ content: "\f47d"; } [mod-icon~="before"][mod-icon~="ios-personad"]:before, [mod-icon~="after"][mod-icon~="ios-personadd"]:after{ content: "\f480"; } [mod-icon~="before"][mod-icon~="ios-personadd-outline"]:before, [mod-icon~="after"][mod-icon~="ios-personadd-outline"]:after{ content: "\f47f"; } [mod-icon~="before"][mod-icon~="ios-photos"]:before, [mod-icon~="after"][mod-icon~="ios-photos"]:after{ content: "\f482"; } [mod-icon~="before"][mod-icon~="ios-photos-outline"]:before, [mod-icon~="after"][mod-icon~="ios-photos-outline"]:after{ content: "\f481"; } [mod-icon~="before"][mod-icon~="ios-pie"]:before, [mod-icon~="after"][mod-icon~="ios-pie"]:after{ content: "\f484"; } [mod-icon~="before"][mod-icon~="ios-pie-outline"]:before, [mod-icon~="after"][mod-icon~="ios-pie-outline"]:after{ content: "\f483"; } [mod-icon~="before"][mod-icon~="ios-pint"]:before, [mod-icon~="after"][mod-icon~="ios-pint"]:after{ content: "\f486"; } [mod-icon~="before"][mod-icon~="ios-pint-outline"]:before, [mod-icon~="after"][mod-icon~="ios-pint-outline"]:after{ content: "\f485"; } [mod-icon~="before"][mod-icon~="ios-play"]:before, [mod-icon~="after"][mod-icon~="ios-play"]:after{ content: "\f488"; } [mod-icon~="before"][mod-icon~="ios-play-outline"]:before, [mod-icon~="after"][mod-icon~="ios-play-outline"]:after{ content: "\f487"; } [mod-icon~="before"][mod-icon~="ios-plus"]:before, [mod-icon~="after"][mod-icon~="ios-plus"]:after{ content: "\f48b"; } [mod-icon~="before"][mod-icon~="ios-plus-empty"]:before, [mod-icon~="after"][mod-icon~="ios-plus-empty"]:after{ content: "\f489"; } [mod-icon~="before"][mod-icon~="ios-plus-outline"]:before, [mod-icon~="after"][mod-icon~="ios-plus-outline"]:after{ content: "\f48a"; } [mod-icon~="before"][mod-icon~="ios-pricetag"]:before, [mod-icon~="after"][mod-icon~="ios-pricetag"]:after{ content: "\f48d"; } [mod-icon~="before"][mod-icon~="ios-pricetag-outline"]:before, [mod-icon~="after"][mod-icon~="ios-pricetag-outline"]:after{ content: "\f48c"; } [mod-icon~="before"][mod-icon~="ios-pricetags"]:before, [mod-icon~="after"][mod-icon~="ios-pricetags"]:after{ content: "\f48f"; } [mod-icon~="before"][mod-icon~="ios-pricetags-outline"]:before, [mod-icon~="after"][mod-icon~="ios-pricetags-outline"]:after{ content: "\f48e"; } [mod-icon~="before"][mod-icon~="ios-printer"]:before, [mod-icon~="after"][mod-icon~="ios-printer"]:after{ content: "\f491"; } [mod-icon~="before"][mod-icon~="ios-printer-outline"]:before, [mod-icon~="after"][mod-icon~="ios-printer-outline"]:after{ content: "\f490"; } [mod-icon~="before"][mod-icon~="ios-pulse"]:before, [mod-icon~="after"][mod-icon~="ios-pulse"]:after{ content: "\f493"; } [mod-icon~="before"][mod-icon~="ios-pulse-strong"]:before, [mod-icon~="after"][mod-icon~="ios-pulse-strong"]:after{ content: "\f492"; } [mod-icon~="before"][mod-icon~="ios-rainy"]:before, [mod-icon~="after"][mod-icon~="ios-rainy"]:after{ content: "\f495"; } [mod-icon~="before"][mod-icon~="ios-rainy-outline"]:before, [mod-icon~="after"][mod-icon~="ios-rainy-outline"]:after{ content: "\f494"; } [mod-icon~="before"][mod-icon~="ios-recording"]:before, [mod-icon~="after"][mod-icon~="ios-recording"]:after{ content: "\f497"; } [mod-icon~="before"][mod-icon~="ios-recording-outline"]:before, [mod-icon~="after"][mod-icon~="ios-recording-outline"]:after{ content: "\f496"; } [mod-icon~="before"][mod-icon~="ios-redo"]:before, [mod-icon~="after"][mod-icon~="ios-redo"]:after{ content: "\f499"; } [mod-icon~="before"][mod-icon~="ios-redo-outline"]:before, [mod-icon~="after"][mod-icon~="ios-redo-outline"]:after{ content: "\f498"; } [mod-icon~="before"][mod-icon~="ios-refresh"]:before, [mod-icon~="after"][mod-icon~="ios-refresh"]:after{ content: "\f49c"; } [mod-icon~="before"][mod-icon~="ios-refresh-empty"]:before, [mod-icon~="after"][mod-icon~="ios-refresh-empty"]:after{ content: "\f49a"; } [mod-icon~="before"][mod-icon~="ios-refresh-outline"]:before, [mod-icon~="after"][mod-icon~="ios-refresh-outline"]:after{ content: "\f49b"; } [mod-icon~="before"][mod-icon~="ios-reload"]:before, [mod-icon~="after"][mod-icon~="ios-reload"]:after{ content: "\f49d"; } [mod-icon~="before"][mod-icon~="ios-reverse-camera"]:before, [mod-icon~="after"][mod-icon~="ios-reverse-camera"]:after{ content: "\f49f"; } [mod-icon~="before"][mod-icon~="ios-reverse-camera-outline"]:before, [mod-icon~="after"][mod-icon~="ios-reverse-camera-outline"]:after{ content: "\f49e"; } [mod-icon~="before"][mod-icon~="ios-rewind"]:before, [mod-icon~="after"][mod-icon~="ios-rewind"]:after{ content: "\f4a1"; } [mod-icon~="before"][mod-icon~="ios-rewind-outline"]:before, [mod-icon~="after"][mod-icon~="ios-rewind-outline"]:after{ content: "\f4a0"; } [mod-icon~="before"][mod-icon~="ios-rose"]:before, [mod-icon~="after"][mod-icon~="ios-rose"]:after{ content: "\f4a3"; } [mod-icon~="before"][mod-icon~="ios-rose-outline"]:before, [mod-icon~="after"][mod-icon~="ios-rose-outline"]:after{ content: "\f4a2"; } [mod-icon~="before"][mod-icon~="ios-search"]:before, [mod-icon~="after"][mod-icon~="ios-search"]:after{ content: "\f4a5"; } [mod-icon~="before"][mod-icon~="ios-search-strong"]:before, [mod-icon~="after"][mod-icon~="ios-search-strong"]:after{ content: "\f4a4"; } [mod-icon~="before"][mod-icon~="ios-settings"]:before, [mod-icon~="after"][mod-icon~="ios-settings"]:after{ content: "\f4a7"; } [mod-icon~="before"][mod-icon~="ios-settings-strong"]:before, [mod-icon~="after"][mod-icon~="ios-settings-strong"]:after{ content: "\f4a6"; } [mod-icon~="before"][mod-icon~="ios-shuffle"]:before, [mod-icon~="after"][mod-icon~="ios-shuffle"]:after{ content: "\f4a9"; } [mod-icon~="before"][mod-icon~="ios-shuffle-strong"]:before, [mod-icon~="after"][mod-icon~="ios-shuffle-strong"]:after{ content: "\f4a8"; } [mod-icon~="before"][mod-icon~="ios-skipbackward"]:before, [mod-icon~="after"][mod-icon~="ios-skipbackward"]:after{ content: "\f4ab"; } [mod-icon~="before"][mod-icon~="ios-skipbackward-outline"]:before, [mod-icon~="after"][mod-icon~="ios-skipbackward-outline"]:after{ content: "\f4aa"; } [mod-icon~="before"][mod-icon~="ios-skipforward"]:before, [mod-icon~="after"][mod-icon~="ios-skipforward"]:after{ content: "\f4ad"; } [mod-icon~="before"][mod-icon~="ios-skipforward-outline"]:before, [mod-icon~="after"][mod-icon~="ios-skipforward-outline"]:after{ content: "\f4ac"; } [mod-icon~="before"][mod-icon~="ios-snowy"]:before, [mod-icon~="after"][mod-icon~="ios-snowy"]:after{ content: "\f4ae"; } [mod-icon~="before"][mod-icon~="ios-speedometer"]:before, [mod-icon~="after"][mod-icon~="ios-speedometer"]:after{ content: "\f4b0"; } [mod-icon~="before"][mod-icon~="ios-speedometer-outline"]:before, [mod-icon~="after"][mod-icon~="ios-speedometer-outline"]:after{ content: "\f4af"; } [mod-icon~="before"][mod-icon~="ios-star"]:before, [mod-icon~="after"][mod-icon~="ios-star"]:after{ content: "\f4b3"; } [mod-icon~="before"][mod-icon~="ios-star-half"]:before, [mod-icon~="after"][mod-icon~="ios-star-half"]:after{ content: "\f4b1"; } [mod-icon~="before"][mod-icon~="ios-star-outline"]:before, [mod-icon~="after"][mod-icon~="ios-star-outline"]:after{ content: "\f4b2"; } [mod-icon~="before"][mod-icon~="ios-stopwatch"]:before, [mod-icon~="after"][mod-icon~="ios-stopwatch"]:after{ content: "\f4b5"; } [mod-icon~="before"][mod-icon~="ios-stopwatch-outline"]:before, [mod-icon~="after"][mod-icon~="ios-stopwatch-outline"]:after{ content: "\f4b4"; } [mod-icon~="before"][mod-icon~="ios-sunny"]:before, [mod-icon~="after"][mod-icon~="ios-sunny"]:after{ content: "\f4b7"; } [mod-icon~="before"][mod-icon~="ios-sunny-outline"]:before, [mod-icon~="after"][mod-icon~="ios-sunny-outline"]:after{ content: "\f4b6"; } [mod-icon~="before"][mod-icon~="ios-telephone"]:before, [mod-icon~="after"][mod-icon~="ios-telephone"]:after{ content: "\f4b9"; } [mod-icon~="before"][mod-icon~="ios-telephone-outline"]:before, [mod-icon~="after"][mod-icon~="ios-telephone-outline"]:after{ content: "\f4b8"; } [mod-icon~="before"][mod-icon~="ios-tennisball"]:before, [mod-icon~="after"][mod-icon~="ios-tennisball"]:after{ content: "\f4bb"; } [mod-icon~="before"][mod-icon~="ios-tennisball-outline"]:before, [mod-icon~="after"][mod-icon~="ios-tennisball-outline"]:after{ content: "\f4ba"; } [mod-icon~="before"][mod-icon~="ios-thunderstorm"]:before, [mod-icon~="after"][mod-icon~="ios-thunderstorm"]:after{ content: "\f4bd"; } [mod-icon~="before"][mod-icon~="ios-thunderstorm-outline"]:before, [mod-icon~="after"][mod-icon~="ios-thunderstorm-outline"]:after{ content: "\f4bc"; } [mod-icon~="before"][mod-icon~="ios-time"]:before, [mod-icon~="after"][mod-icon~="ios-time"]:after{ content: "\f4bf"; } [mod-icon~="before"][mod-icon~="ios-time-outline"]:before, [mod-icon~="after"][mod-icon~="ios-time-outline"]:after{ content: "\f4be"; } [mod-icon~="before"][mod-icon~="ios-timer"]:before, [mod-icon~="after"][mod-icon~="ios-timer"]:after{ content: "\f4c1"; } [mod-icon~="before"][mod-icon~="ios-timer-outline"]:before, [mod-icon~="after"][mod-icon~="ios-timer-outline"]:after{ content: "\f4c0"; } [mod-icon~="before"][mod-icon~="ios-toggle"]:before, [mod-icon~="after"][mod-icon~="ios-toggle"]:after{ content: "\f4c3"; } [mod-icon~="before"][mod-icon~="ios-toggle-outline"]:before, [mod-icon~="after"][mod-icon~="ios-toggle-outline"]:after{ content: "\f4c2"; } [mod-icon~="before"][mod-icon~="ios-trash"]:before, [mod-icon~="after"][mod-icon~="ios-trash"]:after{ content: "\f4c5"; } [mod-icon~="before"][mod-icon~="ios-trash-outline"]:before, [mod-icon~="after"][mod-icon~="ios-trash-outline"]:after{ content: "\f4c4"; } [mod-icon~="before"][mod-icon~="ios-undo"]:before, [mod-icon~="after"][mod-icon~="ios-undo"]:after{ content: "\f4c7"; } [mod-icon~="before"][mod-icon~="ios-undo-outline"]:before, [mod-icon~="after"][mod-icon~="ios-undo-outline"]:after{ content: "\f4c6"; } [mod-icon~="before"][mod-icon~="ios-unlocked"]:before, [mod-icon~="after"][mod-icon~="ios-unlocked"]:after{ content: "\f4c9"; } [mod-icon~="before"][mod-icon~="ios-unlocked-outline"]:before, [mod-icon~="after"][mod-icon~="ios-unlocked-outline"]:after{ content: "\f4c8"; } [mod-icon~="before"][mod-icon~="ios-upload"]:before, [mod-icon~="after"][mod-icon~="ios-upload"]:after{ content: "\f4cb"; } [mod-icon~="before"][mod-icon~="ios-upload-outline"]:before, [mod-icon~="after"][mod-icon~="ios-upload-outline"]:after{ content: "\f4ca"; } [mod-icon~="before"][mod-icon~="ios-videocam"]:before, [mod-icon~="after"][mod-icon~="ios-videocam"]:after{ content: "\f4cd"; } [mod-icon~="before"][mod-icon~="ios-videocam-outline"]:before, [mod-icon~="after"][mod-icon~="ios-videocam-outline"]:after{ content: "\f4cc"; } [mod-icon~="before"][mod-icon~="ios-volume-high"]:before, [mod-icon~="after"][mod-icon~="ios-volume-high"]:after{ content: "\f4ce"; } [mod-icon~="before"][mod-icon~="ios-volume-low"]:before, [mod-icon~="after"][mod-icon~="ios-volume-low"]:after{ content: "\f4cf"; } [mod-icon~="before"][mod-icon~="ios-wineglass"]:before, [mod-icon~="after"][mod-icon~="ios-wineglass"]:after{ content: "\f4d1"; } [mod-icon~="before"][mod-icon~="ios-wineglass-outline"]:before, [mod-icon~="after"][mod-icon~="ios-wineglass-outline"]:after{ content: "\f4d0"; } [mod-icon~="before"][mod-icon~="ios-world"]:before, [mod-icon~="after"][mod-icon~="ios-world"]:after{ content: "\f4d3"; } [mod-icon~="before"][mod-icon~="ios-world-outline"]:before, [mod-icon~="after"][mod-icon~="ios-world-outline"]:after{ content: "\f4d2"; } [mod-icon~="before"][mod-icon~="ipad"]:before, [mod-icon~="after"][mod-icon~="ipad"]:after{ content: "\f1f9"; } [mod-icon~="before"][mod-icon~="iphone"]:before, [mod-icon~="after"][mod-icon~="iphone"]:after{ content: "\f1fa"; } [mod-icon~="before"][mod-icon~="ipod"]:before, [mod-icon~="after"][mod-icon~="ipod"]:after{ content: "\f1fb"; } [mod-icon~="before"][mod-icon~="jet"]:before, [mod-icon~="after"][mod-icon~="jet"]:after{ content: "\f295"; } [mod-icon~="before"][mod-icon~="key"]:before, [mod-icon~="after"][mod-icon~="key"]:after{ content: "\f296"; } [mod-icon~="before"][mod-icon~="knife"]:before, [mod-icon~="after"][mod-icon~="knife"]:after{ content: "\f297"; } [mod-icon~="before"][mod-icon~="laptop"]:before, [mod-icon~="after"][mod-icon~="laptop"]:after{ content: "\f1fc"; } [mod-icon~="before"][mod-icon~="leaf"]:before, [mod-icon~="after"][mod-icon~="leaf"]:after{ content: "\f1fd"; } [mod-icon~="before"][mod-icon~="levels"]:before, [mod-icon~="after"][mod-icon~="levels"]:after{ content: "\f298"; } [mod-icon~="before"][mod-icon~="lightbulb"]:before, [mod-icon~="after"][mod-icon~="lightbulb"]:after{ content: "\f299"; } [mod-icon~="before"][mod-icon~="link"]:before, [mod-icon~="after"][mod-icon~="link"]:after{ content: "\f1fe"; } [mod-icon~="before"][mod-icon~="load-a"]:before, [mod-icon~="after"][mod-icon~="load-a"]:after{ content: "\f29a"; } [mod-icon~="before"][mod-icon~="load-b"]:before, [mod-icon~="after"][mod-icon~="load-b"]:after{ content: "\f29b"; } [mod-icon~="before"][mod-icon~="load-c"]:before, [mod-icon~="after"][mod-icon~="load-c"]:after{ content: "\f29c"; } [mod-icon~="before"][mod-icon~="load-d"]:before, [mod-icon~="after"][mod-icon~="load-d"]:after{ content: "\f29d"; } [mod-icon~="before"][mod-icon~="location"]:before, [mod-icon~="after"][mod-icon~="location"]:after{ content: "\f1ff"; } [mod-icon~="before"][mod-icon~="lock-combination"]:before, [mod-icon~="after"][mod-icon~="lock-combination"]:after{ content: "\f4d4"; } [mod-icon~="before"][mod-icon~="locked"]:before, [mod-icon~="after"][mod-icon~="locked"]:after{ content: "\f200"; } [mod-icon~="before"][mod-icon~="log-in"]:before, [mod-icon~="after"][mod-icon~="log-in"]:after{ content: "\f29e"; } [mod-icon~="before"][mod-icon~="log-out"]:before, [mod-icon~="after"][mod-icon~="log-out"]:after{ content: "\f29f"; } [mod-icon~="before"][mod-icon~="loop"]:before, [mod-icon~="after"][mod-icon~="loop"]:after{ content: "\f201"; } [mod-icon~="before"][mod-icon~="magnet"]:before, [mod-icon~="after"][mod-icon~="magnet"]:after{ content: "\f2a0"; } [mod-icon~="before"][mod-icon~="male"]:before, [mod-icon~="after"][mod-icon~="male"]:after{ content: "\f2a1"; } [mod-icon~="before"][mod-icon~="man"]:before, [mod-icon~="after"][mod-icon~="man"]:after{ content: "\f202"; } [mod-icon~="before"][mod-icon~="map"]:before, [mod-icon~="after"][mod-icon~="map"]:after{ content: "\f203"; } [mod-icon~="before"][mod-icon~="medkit"]:before, [mod-icon~="after"][mod-icon~="medkit"]:after{ content: "\f2a2"; } [mod-icon~="before"][mod-icon~="merge"]:before, [mod-icon~="after"][mod-icon~="merge"]:after{ content: "\f33f"; } [mod-icon~="before"][mod-icon~="mic-a"]:before, [mod-icon~="after"][mod-icon~="mic-a"]:after{ content: "\f204"; } [mod-icon~="before"][mod-icon~="mic-b"]:before, [mod-icon~="after"][mod-icon~="mic-b"]:after{ content: "\f205"; } [mod-icon~="before"][mod-icon~="mic-c"]:before, [mod-icon~="after"][mod-icon~="mic-c"]:after{ content: "\f206"; } [mod-icon~="before"][mod-icon~="minus"]:before, [mod-icon~="after"][mod-icon~="minus"]:after{ content: "\f209"; } [mod-icon~="before"][mod-icon~="minus-circled"]:before, [mod-icon~="after"][mod-icon~="minus-circled"]:after{ content: "\f207"; } [mod-icon~="before"][mod-icon~="minus-round"]:before, [mod-icon~="after"][mod-icon~="minus-round"]:after{ content: "\f208"; } [mod-icon~="before"][mod-icon~="model-s"]:before, [mod-icon~="after"][mod-icon~="model-s"]:after{ content: "\f2c1"; } [mod-icon~="before"][mod-icon~="monitor"]:before, [mod-icon~="after"][mod-icon~="monitor"]:after{ content: "\f20a"; } [mod-icon~="before"][mod-icon~="more"]:before, [mod-icon~="after"][mod-icon~="more"]:after{ content: "\f20b"; } [mod-icon~="before"][mod-icon~="mouse"]:before, [mod-icon~="after"][mod-icon~="mouse"]:after{ content: "\f340"; } [mod-icon~="before"][mod-icon~="music-note"]:before, [mod-icon~="after"][mod-icon~="music-note"]:after{ content: "\f20c"; } [mod-icon~="before"][mod-icon~="navicon"]:before, [mod-icon~="after"][mod-icon~="navicon"]:after{ content: "\f20e"; } [mod-icon~="before"][mod-icon~="navicon-round"]:before, [mod-icon~="after"][mod-icon~="navicon-round"]:after{ content: "\f20d"; } [mod-icon~="before"][mod-icon~="navigate"]:before, [mod-icon~="after"][mod-icon~="navigate"]:after{ content: "\f2a3"; } [mod-icon~="before"][mod-icon~="network"]:before, [mod-icon~="after"][mod-icon~="network"]:after{ content: "\f341"; } [mod-icon~="before"][mod-icon~="no-smoking"]:before, [mod-icon~="after"][mod-icon~="no-smoking"]:after{ content: "\f2c2"; } [mod-icon~="before"][mod-icon~="nuclear"]:before, [mod-icon~="after"][mod-icon~="nuclear"]:after{ content: "\f2a4"; } [mod-icon~="before"][mod-icon~="outlet"]:before, [mod-icon~="after"][mod-icon~="outlet"]:after{ content: "\f342"; } [mod-icon~="before"][mod-icon~="paintbrush"]:before, [mod-icon~="after"][mod-icon~="paintbrush"]:after{ content: "\f4d5"; } [mod-icon~="before"][mod-icon~="paintbucket"]:before, [mod-icon~="after"][mod-icon~="paintbucket"]:after{ content: "\f4d6"; } [mod-icon~="before"][mod-icon~="paper-airplane"]:before, [mod-icon~="after"][mod-icon~="paper-airplane"]:after{ content: "\f2c3"; } [mod-icon~="before"][mod-icon~="paperclip"]:before, [mod-icon~="after"][mod-icon~="paperclip"]:after{ content: "\f20f"; } [mod-icon~="before"][mod-icon~="pause"]:before, [mod-icon~="after"][mod-icon~="pause"]:after{ content: "\f210"; } [mod-icon~="before"][mod-icon~="person"]:before, [mod-icon~="after"][mod-icon~="person"]:after{ content: "\f213"; } [mod-icon~="before"][mod-icon~="person-add"]:before, [mod-icon~="after"][mod-icon~="person-add"]:after{ content: "\f211"; } [mod-icon~="before"][mod-icon~="person-stalker"]:before, [mod-icon~="after"][mod-icon~="person-stalker"]:after{ content: "\f212"; } [mod-icon~="before"][mod-icon~="pie-graph"]:before, [mod-icon~="after"][mod-icon~="pie-graph"]:after{ content: "\f2a5"; } [mod-icon~="before"][mod-icon~="pin"]:before, [mod-icon~="after"][mod-icon~="pin"]:after{ content: "\f2a6"; } [mod-icon~="before"][mod-icon~="pinpoint"]:before, [mod-icon~="after"][mod-icon~="pinpoint"]:after{ content: "\f2a7"; } [mod-icon~="before"][mod-icon~="pizza"]:before, [mod-icon~="after"][mod-icon~="pizza"]:after{ content: "\f2a8"; } [mod-icon~="before"][mod-icon~="plane"]:before, [mod-icon~="after"][mod-icon~="plane"]:after{ content: "\f214"; } [mod-icon~="before"][mod-icon~="planet"]:before, [mod-icon~="after"][mod-icon~="planet"]:after{ content: "\f343"; } [mod-icon~="before"][mod-icon~="play"]:before, [mod-icon~="after"][mod-icon~="play"]:after{ content: "\f215"; } [mod-icon~="before"][mod-icon~="playstation"]:before, [mod-icon~="after"][mod-icon~="playstation"]:after{ content: "\f30a"; } [mod-icon~="before"][mod-icon~="plus"]:before, [mod-icon~="after"][mod-icon~="plus"]:after{ content: "\f218"; } [mod-icon~="before"][mod-icon~="plus-circled"]:before, [mod-icon~="after"][mod-icon~="plus-circled"]:after{ content: "\f216"; } [mod-icon~="before"][mod-icon~="plus-round"]:before, [mod-icon~="after"][mod-icon~="plus-round"]:after{ content: "\f217"; } [mod-icon~="before"][mod-icon~="podium"]:before, [mod-icon~="after"][mod-icon~="podium"]:after{ content: "\f344"; } [mod-icon~="before"][mod-icon~="pound"]:before, [mod-icon~="after"][mod-icon~="pound"]:after{ content: "\f219"; } [mod-icon~="before"][mod-icon~="power"]:before, [mod-icon~="after"][mod-icon~="power"]:after{ content: "\f2a9"; } [mod-icon~="before"][mod-icon~="pricetag"]:before, [mod-icon~="after"][mod-icon~="pricetag"]:after{ content: "\f2aa"; } [mod-icon~="before"][mod-icon~="pricetags"]:before, [mod-icon~="after"][mod-icon~="pricetags"]:after{ content: "\f2ab"; } [mod-icon~="before"][mod-icon~="printer"]:before, [mod-icon~="after"][mod-icon~="printer"]:after{ content: "\f21a"; } [mod-icon~="before"][mod-icon~="pull-request"]:before, [mod-icon~="after"][mod-icon~="pull-request"]:after{ content: "\f345"; } [mod-icon~="before"][mod-icon~="qr-scanner"]:before, [mod-icon~="after"][mod-icon~="qr-scanner"]:after{ content: "\f346"; } [mod-icon~="before"][mod-icon~="quote"]:before, [mod-icon~="after"][mod-icon~="quote"]:after{ content: "\f347"; } [mod-icon~="before"][mod-icon~="radio-waves"]:before, [mod-icon~="after"][mod-icon~="radio-waves"]:after{ content: "\f2ac"; } [mod-icon~="before"][mod-icon~="record"]:before, [mod-icon~="after"][mod-icon~="record"]:after{ content: "\f21b"; } [mod-icon~="before"][mod-icon~="refresh"]:before, [mod-icon~="after"][mod-icon~="refresh"]:after{ content: "\f21c"; } [mod-icon~="before"][mod-icon~="reply"]:before, [mod-icon~="after"][mod-icon~="reply"]:after{ content: "\f21e"; } [mod-icon~="before"][mod-icon~="reply-all"]:before, [mod-icon~="after"][mod-icon~="reply-all"]:after{ content: "\f21d"; } [mod-icon~="before"][mod-icon~="ribbon-a"]:before, [mod-icon~="after"][mod-icon~="ribbon-a"]:after{ content: "\f348"; } [mod-icon~="before"][mod-icon~="ribbon-b"]:before, [mod-icon~="after"][mod-icon~="ribbon-b"]:after{ content: "\f349"; } [mod-icon~="before"][mod-icon~="sad"]:before, [mod-icon~="after"][mod-icon~="sad"]:after{ content: "\f34a"; } [mod-icon~="before"][mod-icon~="sad-outline"]:before, [mod-icon~="after"][mod-icon~="sad-outline"]:after{ content: "\f4d7"; } [mod-icon~="before"][mod-icon~="scissors"]:before, [mod-icon~="after"][mod-icon~="scissors"]:after{ content: "\f34b"; } [mod-icon~="before"][mod-icon~="search"]:before, [mod-icon~="after"][mod-icon~="search"]:after{ content: "\f21f"; } [mod-icon~="before"][mod-icon~="settings"]:before, [mod-icon~="after"][mod-icon~="settings"]:after{ content: "\f2ad"; } [mod-icon~="before"][mod-icon~="share"]:before, [mod-icon~="after"][mod-icon~="share"]:after{ content: "\f220"; } [mod-icon~="before"][mod-icon~="shuffle"]:before, [mod-icon~="after"][mod-icon~="shuffle"]:after{ content: "\f221"; } [mod-icon~="before"][mod-icon~="skip-backward"]:before, [mod-icon~="after"][mod-icon~="skip-backward"]:after{ content: "\f222"; } [mod-icon~="before"][mod-icon~="skip-forward"]:before, [mod-icon~="after"][mod-icon~="skip-forward"]:after{ content: "\f223"; } [mod-icon~="before"][mod-icon~="social-android"]:before, [mod-icon~="after"][mod-icon~="social-android"]:after{ content: "\f225"; } [mod-icon~="before"][mod-icon~="social-android-outline"]:before, [mod-icon~="after"][mod-icon~="social-android-outline"]:after{ content: "\f224"; } [mod-icon~="before"][mod-icon~="social-angular"]:before, [mod-icon~="after"][mod-icon~="social-angular"]:after{ content: "\f4d9"; } [mod-icon~="before"][mod-icon~="social-angular-outline"]:before, [mod-icon~="after"][mod-icon~="social-angular-outline"]:after{ content: "\f4d8"; } [mod-icon~="before"][mod-icon~="social-apple"]:before, [mod-icon~="after"][mod-icon~="social-apple"]:after{ content: "\f227"; } [mod-icon~="before"][mod-icon~="social-apple-outline"]:before, [mod-icon~="after"][mod-icon~="social-apple-outline"]:after{ content: "\f226"; } [mod-icon~="before"][mod-icon~="social-bitcoin"]:before, [mod-icon~="after"][mod-icon~="social-bitcoin"]:after{ content: "\f2af"; } [mod-icon~="before"][mod-icon~="social-bitcoin-outline"]:before, [mod-icon~="after"][mod-icon~="social-bitcoin-outline"]:after{ content: "\f2ae"; } [mod-icon~="before"][mod-icon~="social-buffer"]:before, [mod-icon~="after"][mod-icon~="social-buffer"]:after{ content: "\f229"; } [mod-icon~="before"][mod-icon~="social-buffer-outline"]:before, [mod-icon~="after"][mod-icon~="social-buffer-outline"]:after{ content: "\f228"; } [mod-icon~="before"][mod-icon~="social-chrome"]:before, [mod-icon~="after"][mod-icon~="social-chrome"]:after{ content: "\f4db"; } [mod-icon~="before"][mod-icon~="social-chrome-outline"]:before, [mod-icon~="after"][mod-icon~="social-chrome-outline"]:after{ content: "\f4da"; } [mod-icon~="before"][mod-icon~="social-codepen"]:before, [mod-icon~="after"][mod-icon~="social-codepen"]:after{ content: "\f4dd"; } [mod-icon~="before"][mod-icon~="social-codepen-outline"]:before, [mod-icon~="after"][mod-icon~="social-codepen-outline"]:after{ content: "\f4dc"; } [mod-icon~="before"][mod-icon~="social-css3"]:before, [mod-icon~="after"][mod-icon~="social-css3"]:after{ content: "\f4df"; } [mod-icon~="before"][mod-icon~="social-css3-outline"]:before, [mod-icon~="after"][mod-icon~="social-css3-outline"]:after{ content: "\f4de"; } [mod-icon~="before"][mod-icon~="social-designernews"]:before, [mod-icon~="after"][mod-icon~="social-designernews"]:after{ content: "\f22b"; } [mod-icon~="before"][mod-icon~="social-designernews-outline"]:before, [mod-icon~="after"][mod-icon~="social-designernews-outline"]:after{ content: "\f22a"; } [mod-icon~="before"][mod-icon~="social-dribbble"]:before, [mod-icon~="after"][mod-icon~="social-dribbble"]:after{ content: "\f22d"; } [mod-icon~="before"][mod-icon~="social-dribbble-outline"]:before, [mod-icon~="after"][mod-icon~="social-dribbble-outline"]:after{ content: "\f22c"; } [mod-icon~="before"][mod-icon~="social-dropbox"]:before, [mod-icon~="after"][mod-icon~="social-dropbox"]:after{ content: "\f22f"; } [mod-icon~="before"][mod-icon~="social-dropbox-outline"]:before, [mod-icon~="after"][mod-icon~="social-dropbox-outline"]:after{ content: "\f22e"; } [mod-icon~="before"][mod-icon~="social-euro"]:before, [mod-icon~="after"][mod-icon~="social-euro"]:after{ content: "\f4e1"; } [mod-icon~="before"][mod-icon~="social-euro-outline"]:before, [mod-icon~="after"][mod-icon~="social-euro-outline"]:after{ content: "\f4e0"; } [mod-icon~="before"][mod-icon~="social-facebook"]:before, [mod-icon~="after"][mod-icon~="social-facebook"]:after{ content: "\f231"; } [mod-icon~="before"][mod-icon~="social-facebook-outline"]:before, [mod-icon~="after"][mod-icon~="social-facebook-outline"]:after{ content: "\f230"; } [mod-icon~="before"][mod-icon~="social-foursquare"]:before, [mod-icon~="after"][mod-icon~="social-foursquare"]:after{ content: "\f34d"; } [mod-icon~="before"][mod-icon~="social-foursquare-outline"]:before, [mod-icon~="after"][mod-icon~="social-foursquare-outline"]:after{ content: "\f34c"; } [mod-icon~="before"][mod-icon~="social-freebsd-devil"]:before, [mod-icon~="after"][mod-icon~="social-freebsd-devil"]:after{ content: "\f2c4"; } [mod-icon~="before"][mod-icon~="social-github"]:before, [mod-icon~="after"][mod-icon~="social-github"]:after{ content: "\f233"; } [mod-icon~="before"][mod-icon~="social-github-outline"]:before, [mod-icon~="after"][mod-icon~="social-github-outline"]:after{ content: "\f232"; } [mod-icon~="before"][mod-icon~="social-google"]:before, [mod-icon~="after"][mod-icon~="social-google"]:after{ content: "\f34f"; } [mod-icon~="before"][mod-icon~="social-google-outline"]:before, [mod-icon~="after"][mod-icon~="social-google-outline"]:after{ content: "\f34e"; } [mod-icon~="before"][mod-icon~="social-googleplus"]:before, [mod-icon~="after"][mod-icon~="social-googleplus"]:after{ content: "\f235"; } [mod-icon~="before"][mod-icon~="social-googleplus-outline"]:before, [mod-icon~="after"][mod-icon~="social-googleplus-outline"]:after{ content: "\f234"; } [mod-icon~="before"][mod-icon~="social-hackernews"]:before, [mod-icon~="after"][mod-icon~="social-hackernews"]:after{ content: "\f237"; } [mod-icon~="before"][mod-icon~="social-hackernews-outline"]:before, [mod-icon~="after"][mod-icon~="social-hackernews-outline"]:after{ content: "\f236"; } [mod-icon~="before"][mod-icon~="social-html5"]:before, [mod-icon~="after"][mod-icon~="social-html5"]:after{ content: "\f4e3"; } [mod-icon~="before"][mod-icon~="social-html5-outline"]:before, [mod-icon~="after"][mod-icon~="social-html5-outline"]:after{ content: "\f4e2"; } [mod-icon~="before"][mod-icon~="social-instagram"]:before, [mod-icon~="after"][mod-icon~="social-instagram"]:after{ content: "\f351"; } [mod-icon~="before"][mod-icon~="social-instagram-outline"]:before, [mod-icon~="after"][mod-icon~="social-instagram-outline"]:after{ content: "\f350"; } [mod-icon~="before"][mod-icon~="social-javascript"]:before, [mod-icon~="after"][mod-icon~="social-javascript"]:after{ content: "\f4e5"; } [mod-icon~="before"][mod-icon~="social-javascript-outline"]:before, [mod-icon~="after"][mod-icon~="social-javascript-outline"]:after{ content: "\f4e4"; } [mod-icon~="before"][mod-icon~="social-linkedin"]:before, [mod-icon~="after"][mod-icon~="social-linkedin"]:after{ content: "\f239"; } [mod-icon~="before"][mod-icon~="social-linkedin-outline"]:before, [mod-icon~="after"][mod-icon~="social-linkedin-outline"]:after{ content: "\f238"; } [mod-icon~="before"][mod-icon~="social-markdown"]:before, [mod-icon~="after"][mod-icon~="social-markdown"]:after{ content: "\f4e6"; } [mod-icon~="before"][mod-icon~="social-nodejs"]:before, [mod-icon~="after"][mod-icon~="social-nodejs"]:after{ content: "\f4e7"; } [mod-icon~="before"][mod-icon~="social-octocat"]:before, [mod-icon~="after"][mod-icon~="social-octocat"]:after{ content: "\f4e8"; } [mod-icon~="before"][mod-icon~="social-pinterest"]:before, [mod-icon~="after"][mod-icon~="social-pinterest"]:after{ content: "\f2b1"; } [mod-icon~="before"][mod-icon~="social-pinterest-outline"]:before, [mod-icon~="after"][mod-icon~="social-pinterest-outline"]:after{ content: "\f2b0"; } [mod-icon~="before"][mod-icon~="social-python"]:before, [mod-icon~="after"][mod-icon~="social-python"]:after{ content: "\f4e9"; } [mod-icon~="before"][mod-icon~="social-reddit"]:before, [mod-icon~="after"][mod-icon~="social-reddit"]:after{ content: "\f23b"; } [mod-icon~="before"][mod-icon~="social-reddit-outline"]:before, [mod-icon~="after"][mod-icon~="social-reddit-outline"]:after{ content: "\f23a"; } [mod-icon~="before"][mod-icon~="social-rss"]:before, [mod-icon~="after"][mod-icon~="social-rss"]:after{ content: "\f23d"; } [mod-icon~="before"][mod-icon~="social-rss-outline"]:before, [mod-icon~="after"][mod-icon~="social-rss-outline"]:after{ content: "\f23c"; } [mod-icon~="before"][mod-icon~="social-sass"]:before, [mod-icon~="after"][mod-icon~="social-sass"]:after{ content: "\f4ea"; } [mod-icon~="before"][mod-icon~="social-skype"]:before, [mod-icon~="after"][mod-icon~="social-skype"]:after{ content: "\f23f"; } [mod-icon~="before"][mod-icon~="social-skype-outline"]:before, [mod-icon~="after"][mod-icon~="social-skype-outline"]:after{ content: "\f23e"; } [mod-icon~="before"][mod-icon~="social-snapchat"]:before, [mod-icon~="after"][mod-icon~="social-snapchat"]:after{ content: "\f4ec"; } [mod-icon~="before"][mod-icon~="social-snapchat-outline"]:before, [mod-icon~="after"][mod-icon~="social-snapchat-outline"]:after{ content: "\f4eb"; } [mod-icon~="before"][mod-icon~="social-tumblr"]:before, [mod-icon~="after"][mod-icon~="social-tumblr"]:after{ content: "\f241"; } [mod-icon~="before"][mod-icon~="social-tumblr-outline"]:before, [mod-icon~="after"][mod-icon~="social-tumblr-outline"]:after{ content: "\f240"; } [mod-icon~="before"][mod-icon~="social-tux"]:before, [mod-icon~="after"][mod-icon~="social-tux"]:after{ content: "\f2c5"; } [mod-icon~="before"][mod-icon~="social-twitch"]:before, [mod-icon~="after"][mod-icon~="social-twitch"]:after{ content: "\f4ee"; } [mod-icon~="before"][mod-icon~="social-twitch-outline"]:before, [mod-icon~="after"][mod-icon~="social-twitch-outline"]:after{ content: "\f4ed"; } [mod-icon~="before"][mod-icon~="social-twitter"]:before, [mod-icon~="after"][mod-icon~="social-twitter"]:after{ content: "\f243"; } [mod-icon~="before"][mod-icon~="social-twitter-outline"]:before, [mod-icon~="after"][mod-icon~="social-twitter-outline"]:after{ content: "\f242"; } [mod-icon~="before"][mod-icon~="social-usd"]:before, [mod-icon~="after"][mod-icon~="social-usd"]:after{ content: "\f353"; } [mod-icon~="before"][mod-icon~="social-usd-outline"]:before, [mod-icon~="after"][mod-icon~="social-usd-outline"]:after{ content: "\f352"; } [mod-icon~="before"][mod-icon~="social-vimeo"]:before, [mod-icon~="after"][mod-icon~="social-vimeo"]:after{ content: "\f245"; } [mod-icon~="before"][mod-icon~="social-vimeo-outline"]:before, [mod-icon~="after"][mod-icon~="social-vimeo-outline"]:after{ content: "\f244"; } [mod-icon~="before"][mod-icon~="social-whatsapp"]:before, [mod-icon~="after"][mod-icon~="social-whatsapp"]:after{ content: "\f4f0"; } [mod-icon~="before"][mod-icon~="social-whatsapp-outline"]:before, [mod-icon~="after"][mod-icon~="social-whatsapp-outline"]:after{ content: "\f4ef"; } [mod-icon~="before"][mod-icon~="social-windows"]:before, [mod-icon~="after"][mod-icon~="social-windows"]:after{ content: "\f247"; } [mod-icon~="before"][mod-icon~="social-windows-outline"]:before, [mod-icon~="after"][mod-icon~="social-windows-outline"]:after{ content: "\f246"; } [mod-icon~="before"][mod-icon~="social-wordpress"]:before, [mod-icon~="after"][mod-icon~="social-wordpress"]:after{ content: "\f249"; } [mod-icon~="before"][mod-icon~="social-wordpress-outline"]:before, [mod-icon~="after"][mod-icon~="social-wordpress-outline"]:after{ content: "\f248"; } [mod-icon~="before"][mod-icon~="social-yahoo"]:before, [mod-icon~="after"][mod-icon~="social-yahoo"]:after{ content: "\f24b"; } [mod-icon~="before"][mod-icon~="social-yahoo-outline"]:before, [mod-icon~="after"][mod-icon~="social-yahoo-outline"]:after{ content: "\f24a"; } [mod-icon~="before"][mod-icon~="social-yen"]:before, [mod-icon~="after"][mod-icon~="social-yen"]:after{ content: "\f4f2"; } [mod-icon~="before"][mod-icon~="social-yen-outline"]:before, [mod-icon~="after"][mod-icon~="social-yen-outline"]:after{ content: "\f4f1"; } [mod-icon~="before"][mod-icon~="social-youtube"]:before, [mod-icon~="after"][mod-icon~="social-youtube"]:after{ content: "\f24d"; } [mod-icon~="before"][mod-icon~="social-youtube-outline"]:before, [mod-icon~="after"][mod-icon~="social-youtube-outline"]:after{ content: "\f24c"; } [mod-icon~="before"][mod-icon~="soup-can"]:before, [mod-icon~="after"][mod-icon~="soup-can"]:after{ content: "\f4f4"; } [mod-icon~="before"][mod-icon~="soup-can-outline"]:before, [mod-icon~="after"][mod-icon~="soup-can-outline"]:after{ content: "\f4f3"; } [mod-icon~="before"][mod-icon~="speakerphone"]:before, [mod-icon~="after"][mod-icon~="speakerphone"]:after{ content: "\f2b2"; } [mod-icon~="before"][mod-icon~="speedometer"]:before, [mod-icon~="after"][mod-icon~="speedometer"]:after{ content: "\f2b3"; } [mod-icon~="before"][mod-icon~="spoon"]:before, [mod-icon~="after"][mod-icon~="spoon"]:after{ content: "\f2b4"; } [mod-icon~="before"][mod-icon~="star"]:before, [mod-icon~="after"][mod-icon~="star"]:after{ content: "\f24e"; } [mod-icon~="before"][mod-icon~="stats-bars"]:before, [mod-icon~="after"][mod-icon~="stats-bars"]:after{ content: "\f2b5"; } [mod-icon~="before"][mod-icon~="steam"]:before, [mod-icon~="after"][mod-icon~="steam"]:after{ content: "\f30b"; } [mod-icon~="before"][mod-icon~="stop"]:before, [mod-icon~="after"][mod-icon~="stop"]:after{ content: "\f24f"; } [mod-icon~="before"][mod-icon~="thermometer"]:before, [mod-icon~="after"][mod-icon~="thermometer"]:after{ content: "\f2b6"; } [mod-icon~="before"][mod-icon~="thumbsdown"]:before, [mod-icon~="after"][mod-icon~="thumbsdown"]:after{ content: "\f250"; } [mod-icon~="before"][mod-icon~="thumbsup"]:before, [mod-icon~="after"][mod-icon~="thumbsup"]:after{ content: "\f251"; } [mod-icon~="before"][mod-icon~="toggle"]:before, [mod-icon~="after"][mod-icon~="toggle"]:after{ content: "\f355"; } [mod-icon~="before"][mod-icon~="toggle-filled"]:before, [mod-icon~="after"][mod-icon~="toggle-filled"]:after{ content: "\f354"; } [mod-icon~="before"][mod-icon~="transgender"]:before, [mod-icon~="after"][mod-icon~="transgender"]:after{ content: "\f4f5"; } [mod-icon~="before"][mod-icon~="trash-a"]:before, [mod-icon~="after"][mod-icon~="trash-a"]:after{ content: "\f252"; } [mod-icon~="before"][mod-icon~="trash-b"]:before, [mod-icon~="after"][mod-icon~="trash-b"]:after{ content: "\f253"; } [mod-icon~="before"][mod-icon~="trophy"]:before, [mod-icon~="after"][mod-icon~="trophy"]:after{ content: "\f356"; } [mod-icon~="before"][mod-icon~="tshirt"]:before, [mod-icon~="after"][mod-icon~="tshirt"]:after{ content: "\f4f7"; } [mod-icon~="before"][mod-icon~="tshirt-outline"]:before, [mod-icon~="after"][mod-icon~="tshirt-outline"]:after{ content: "\f4f6"; } [mod-icon~="before"][mod-icon~="umbrella"]:before, [mod-icon~="after"][mod-icon~="umbrella"]:after{ content: "\f2b7"; } [mod-icon~="before"][mod-icon~="university"]:before, [mod-icon~="after"][mod-icon~="university"]:after{ content: "\f357"; } [mod-icon~="before"][mod-icon~="unlocked"]:before, [mod-icon~="after"][mod-icon~="unlocked"]:after{ content: "\f254"; } [mod-icon~="before"][mod-icon~="upload"]:before, [mod-icon~="after"][mod-icon~="upload"]:after{ content: "\f255"; } [mod-icon~="before"][mod-icon~="usb"]:before, [mod-icon~="after"][mod-icon~="usb"]:after{ content: "\f2b8"; } [mod-icon~="before"][mod-icon~="videocamera"]:before, [mod-icon~="after"][mod-icon~="videocamera"]:after{ content: "\f256"; } [mod-icon~="before"][mod-icon~="volume-high"]:before, [mod-icon~="after"][mod-icon~="volume-high"]:after{ content: "\f257"; } [mod-icon~="before"][mod-icon~="volume-low"]:before, [mod-icon~="after"][mod-icon~="volume-low"]:after{ content: "\f258"; } [mod-icon~="before"][mod-icon~="volume-medium"]:before, [mod-icon~="after"][mod-icon~="volume-medium"]:after{ content: "\f259"; } [mod-icon~="before"][mod-icon~="volume-mute"]:before, [mod-icon~="after"][mod-icon~="volume-mute"]:after{ content: "\f25a"; } [mod-icon~="before"][mod-icon~="wand"]:before, [mod-icon~="after"][mod-icon~="wand"]:after{ content: "\f358"; } [mod-icon~="before"][mod-icon~="waterdrop"]:before, [mod-icon~="after"][mod-icon~="waterdrop"]:after{ content: "\f25b"; } [mod-icon~="before"][mod-icon~="wifi"]:before, [mod-icon~="after"][mod-icon~="wifi"]:after{ content: "\f25c"; } [mod-icon~="before"][mod-icon~="wineglass"]:before, [mod-icon~="after"][mod-icon~="wineglass"]:after{ content: "\f2b9"; } [mod-icon~="before"][mod-icon~="woman"]:before, [mod-icon~="after"][mod-icon~="woman"]:after{ content: "\f25d"; } [mod-icon~="before"][mod-icon~="wrench"]:before, [mod-icon~="after"][mod-icon~="wrench"]:after{ content: "\f2ba"; } [mod-icon~="before"][mod-icon~="xbox"]:before, [mod-icon~="after"][mod-icon~="xbox"]:after{ content: "\f30c"; }
0.426083
0.062531
:root { --primary-red: #db1616; --light-red: #db5353; } /*************/ body, html { margin: 0; padding: 0; } body.home { background: linear-gradient(var(--primary-red), #ffa1a4) } .container { min-height: 900px; padding: 0 10%; } .top { display: flex; justify-content: space-between; align-items: center; } .top .nav a { color: white; font-size: 24px; margin: 0; text-decoration: none; font-family: 'Raleway'; font-weight: 100; margin-right: 50px; } .top .nav a:hover { text-decoration: underline; } .container .top p { color: white; font-size: 50px; font-family: 'Raleway'; font-weight: 800; font-style: italic; } .container .content { display: flex; justify-content: space-between; margin-top: 10vh; } .container .content .tagline { color: white; font-size: 50px; width: 50%; font-family: 'Raleway'; } .container .content .tagline p.sub{ font-size: 20px; font-weight: 100; } .container .content .tagline .readmore { font-size: 24px; font-weight: 100; cursor: pointer; text-align: center; } .tagline a { color: white; } .readmore p { width: fit-content; margin: 50px auto 5px auto; } .readmore p:hover + img { transform: translateY(20px); } div.signup { width: 25%; height: 300px; padding: 50px; background-color: white; box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22); } div.signup p { font-size: 30px; font-family: 'Raleway'; font-weight: 800; } div.readmore img { filter: invert(100%); width: 40px; transition: transform 500ms; } .readmore img:hover { transform: translateY(20px); } .more-content { background-color: white; min-height: 1000px; } .signedin p { color: white; font-size: 50px; font-family: 'Raleway'; } .signedin { width: 30%; } .signup img.googlebox { height: 50px; width: 50px; } .signup a div { background-color: #4285F4; display: flex; padding: 5px; align-items: center; width: 210px; margin: auto; } .signup a div:hover { background-color:#3264b8; } .signup a p { margin: 0; color: white; font-size: 18px; margin-left: 5px; } .signup a { text-decoration: none; } /**RESPONSIVE NAVBAR**/ .navbar { background-color: var(--primary-red); padding: 25px 50px; display: flex; align-items: center; justify-content: space-between; } .navbar a { color: white; text-decoration: none; font-family: 'Raleway'; font-size: 20px; } .navbar a:hover { text-decoration: underline; } .navbar a.home { font-size: 50px; font-family: 'Raleway'; font-weight: 800; font-style: italic; } .navbar .right a { margin-left: 50px; } .navbar i { display: none; } .extended-navbar { display: none; border-bottom: 4px solid var(--primary-red); flex-direction: column; font-size: 20px; text-align: center; } .extended-navbar a { color: var(--primary-red); text-decoration: none; padding: 10px; } .extended-navbar a:hover { background-color: var(--primary-red); color: white; } .navbar .fa-times { display: none; } .navbar.home { background-color: white; } .navbar.home a { color: var(--primary-red); } .navbar.home i { color: var(--primary-red); } .extended-navbar.home { background-color: white; } .extended-navbar a { font-family: 'Raleway'; } .profile { display: flex; padding: 5% 5% 0 20%; } .profile .left { display: flex; flex-direction: column; align-items: center; } .profile .left .profile-image { width: 200px; height: 200px; border-radius: 50%; } .profile .left p.name { font-size: 24px; font-family: 'Raleway'; } .profile .left a { background-color: var(--light-red); width: 50%; min-width: 80px; height: 40px; line-height: 40px; text-align: center; text-decoration: none; color: white; font-family: 'Raleway'; border-radius: 10px; } .profile .left a:hover { background-color: var(--primary-red); } .profile .right { margin-left: 20%; width: 100%; } .profile .right .movies p { font-size: 24px; margin: 0; font-family: 'Raleway'; text-decoration: underline; } .profile .movies .list { display: flex; width: 100%; flex-wrap: wrap; margin-top: 50px; } .profile .movies .list .item { margin-right: 25px; } .profile .movies .more p, .profile .movies .more a { text-decoration: none; color: var(--primary-red); margin-top: 25px; } .profile .movies .more p:hover { text-decoration: underline; } /* Movies Page */ .movies { display: flex; flex-direction: column; padding: 5% 5% 100px 20%; } .movies p.head { font-size: 24px; font-family: 'Raleway'; } .movies .myMovies, .results { display: flex; flex-wrap: wrap; } .movies .myMovies .movie, .results .result { margin-right: 50px; display: flex; flex-direction: column; align-items: center; margin-bottom: 50px; width: 150px; white-space: nowrap; overflow: hidden; padding: 5px; box-sizing: border-box; } .results .result { cursor: pointer; } .results .result:hover { border: 2px solid green; } .movies .myMovies .movie p, .results .result p { margin: 10px; max-width: 150px; text-align: left; } .movies .search { margin-bottom: 50px; width: 100%; } .movies .search input { height: 30px; flex-grow: 1; } .movies .search button { height: 30px; } .movies .search form { width: 100%; display: flex; } .selected { border: 2px solid green; padding: 10px; } /* */ @media only screen and (max-width: 1000px) { .container .content { flex-direction: column; margin-top: 0; } .container .content .tagline { width: 100%; } .content .signup { width: 100%; box-sizing: border-box; margin-top: 50px; } .container { padding-bottom: 50px; } div.signedin { text-align: center; width: 100%; } } @media only screen and (max-width: 400px) { div.signup p { margin: 0; font-size: 18px; } div.signup a div { margin-top: 50px; width: 60px; } div.signup a div img { margin: auto; } div.signup a p { display: none; } div.signup { padding: 50px 25px; } .navbar a.home { font-size: 30px; } } @media only screen and (max-width: 600px) { .navbar i { display: flex; font-size: 30px; cursor: pointer; color: white; } .navbar .right { display: none; } }
assets/main.css
:root { --primary-red: #db1616; --light-red: #db5353; } /*************/ body, html { margin: 0; padding: 0; } body.home { background: linear-gradient(var(--primary-red), #ffa1a4) } .container { min-height: 900px; padding: 0 10%; } .top { display: flex; justify-content: space-between; align-items: center; } .top .nav a { color: white; font-size: 24px; margin: 0; text-decoration: none; font-family: 'Raleway'; font-weight: 100; margin-right: 50px; } .top .nav a:hover { text-decoration: underline; } .container .top p { color: white; font-size: 50px; font-family: 'Raleway'; font-weight: 800; font-style: italic; } .container .content { display: flex; justify-content: space-between; margin-top: 10vh; } .container .content .tagline { color: white; font-size: 50px; width: 50%; font-family: 'Raleway'; } .container .content .tagline p.sub{ font-size: 20px; font-weight: 100; } .container .content .tagline .readmore { font-size: 24px; font-weight: 100; cursor: pointer; text-align: center; } .tagline a { color: white; } .readmore p { width: fit-content; margin: 50px auto 5px auto; } .readmore p:hover + img { transform: translateY(20px); } div.signup { width: 25%; height: 300px; padding: 50px; background-color: white; box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22); } div.signup p { font-size: 30px; font-family: 'Raleway'; font-weight: 800; } div.readmore img { filter: invert(100%); width: 40px; transition: transform 500ms; } .readmore img:hover { transform: translateY(20px); } .more-content { background-color: white; min-height: 1000px; } .signedin p { color: white; font-size: 50px; font-family: 'Raleway'; } .signedin { width: 30%; } .signup img.googlebox { height: 50px; width: 50px; } .signup a div { background-color: #4285F4; display: flex; padding: 5px; align-items: center; width: 210px; margin: auto; } .signup a div:hover { background-color:#3264b8; } .signup a p { margin: 0; color: white; font-size: 18px; margin-left: 5px; } .signup a { text-decoration: none; } /**RESPONSIVE NAVBAR**/ .navbar { background-color: var(--primary-red); padding: 25px 50px; display: flex; align-items: center; justify-content: space-between; } .navbar a { color: white; text-decoration: none; font-family: 'Raleway'; font-size: 20px; } .navbar a:hover { text-decoration: underline; } .navbar a.home { font-size: 50px; font-family: 'Raleway'; font-weight: 800; font-style: italic; } .navbar .right a { margin-left: 50px; } .navbar i { display: none; } .extended-navbar { display: none; border-bottom: 4px solid var(--primary-red); flex-direction: column; font-size: 20px; text-align: center; } .extended-navbar a { color: var(--primary-red); text-decoration: none; padding: 10px; } .extended-navbar a:hover { background-color: var(--primary-red); color: white; } .navbar .fa-times { display: none; } .navbar.home { background-color: white; } .navbar.home a { color: var(--primary-red); } .navbar.home i { color: var(--primary-red); } .extended-navbar.home { background-color: white; } .extended-navbar a { font-family: 'Raleway'; } .profile { display: flex; padding: 5% 5% 0 20%; } .profile .left { display: flex; flex-direction: column; align-items: center; } .profile .left .profile-image { width: 200px; height: 200px; border-radius: 50%; } .profile .left p.name { font-size: 24px; font-family: 'Raleway'; } .profile .left a { background-color: var(--light-red); width: 50%; min-width: 80px; height: 40px; line-height: 40px; text-align: center; text-decoration: none; color: white; font-family: 'Raleway'; border-radius: 10px; } .profile .left a:hover { background-color: var(--primary-red); } .profile .right { margin-left: 20%; width: 100%; } .profile .right .movies p { font-size: 24px; margin: 0; font-family: 'Raleway'; text-decoration: underline; } .profile .movies .list { display: flex; width: 100%; flex-wrap: wrap; margin-top: 50px; } .profile .movies .list .item { margin-right: 25px; } .profile .movies .more p, .profile .movies .more a { text-decoration: none; color: var(--primary-red); margin-top: 25px; } .profile .movies .more p:hover { text-decoration: underline; } /* Movies Page */ .movies { display: flex; flex-direction: column; padding: 5% 5% 100px 20%; } .movies p.head { font-size: 24px; font-family: 'Raleway'; } .movies .myMovies, .results { display: flex; flex-wrap: wrap; } .movies .myMovies .movie, .results .result { margin-right: 50px; display: flex; flex-direction: column; align-items: center; margin-bottom: 50px; width: 150px; white-space: nowrap; overflow: hidden; padding: 5px; box-sizing: border-box; } .results .result { cursor: pointer; } .results .result:hover { border: 2px solid green; } .movies .myMovies .movie p, .results .result p { margin: 10px; max-width: 150px; text-align: left; } .movies .search { margin-bottom: 50px; width: 100%; } .movies .search input { height: 30px; flex-grow: 1; } .movies .search button { height: 30px; } .movies .search form { width: 100%; display: flex; } .selected { border: 2px solid green; padding: 10px; } /* */ @media only screen and (max-width: 1000px) { .container .content { flex-direction: column; margin-top: 0; } .container .content .tagline { width: 100%; } .content .signup { width: 100%; box-sizing: border-box; margin-top: 50px; } .container { padding-bottom: 50px; } div.signedin { text-align: center; width: 100%; } } @media only screen and (max-width: 400px) { div.signup p { margin: 0; font-size: 18px; } div.signup a div { margin-top: 50px; width: 60px; } div.signup a div img { margin: auto; } div.signup a p { display: none; } div.signup { padding: 50px 25px; } .navbar a.home { font-size: 30px; } } @media only screen and (max-width: 600px) { .navbar i { display: flex; font-size: 30px; cursor: pointer; color: white; } .navbar .right { display: none; } }
0.534855
0.084531
.block_title{ margin-top: 40px; margin-bottom: 10px; font-family: 'iCielPanton-Light',"Arial", sans-serif; font-size: 28px; } .block_title_right{ font-family: 'iCielPanton-Black',"Arial", sans-serif; } .package{ height: 488px; /*width: auto;*/ margin-top: 20px; margin-left: 4.5%; } .package_plus{ /*margin-left: 12px;*/ } .pack_first{ /* margin-left: 7px; margin-right: 12px;*/ } .pack_last{ /*margin-left: 12px;*/ } .pack_title{ padding-top: 13px; color: #fff; font-family: 'Roboto-Light',"Arial", sans-serif; font-size: 23px; } .pack_title_right{ font-family: 'Roboto-Black',"Arial", sans-serif; } .pack_price{ /*font-size: 16px;*/ font-size: 14px; font-family: 'Roboto-Light',"Arial", sans-serif; padding-top: 3px; } .pack_price_left{ /*font-size: 22px;*/ font-size: 16px; font-family: 'Roboto-Black',"Arial", sans-serif; } .pack_button{ padding-left: 10%; padding-right: 10%; margin-top: 5px; } .pack_button > a{ height: 46px; line-height: 46px; } .pack_zone-1{ min-height: 206px; min-width: 217px; background-color: #fff; margin-top: 117px; } .pack_zone-2{ margin-left: 5px; margin-right: 5px; margin-bottom: 5px; margin-top: -307px; background-color: #ebebeb; min-height: 419px; } .pack_end_level{ border-width: 1px; border-color: #a1a1a1; width: 80%; margin-top: 15px; } .pack_info{ width: 207px; font-size: 9px; font-family: 'Roboto-Light',"Arial", sans-serif; margin: 0 auto; } .pack_info tr{ height:30px; } .pack_info_left{ font-family: 'Roboto-Bold',"Arial", sans-serif; font-size: 14px; width: 90px; } .pack_info_middle{ width: 30px; font-size: 14px; } .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15 { float: left; position: relative; min-height: 1px; } .col-xs-15 { width: 20%; } @media (min-width: 768px) { .col-sm-15 { width: 20%; } .package{ margin-left: 0; } } @media (min-width: 992px) { .col-md-15 { width: 20%; } .pack_button{ padding-left: 10px; padding-right: 10px; } } @media (min-width: 1200px) { .col-lg-15 { width: 20%; } .pack_button{ padding-left: 50px; padding-right: 50px; } } .slogan_banner { clear: both; margin-bottom: 20px; }
public/themes/frontend/css/package.css
.block_title{ margin-top: 40px; margin-bottom: 10px; font-family: 'iCielPanton-Light',"Arial", sans-serif; font-size: 28px; } .block_title_right{ font-family: 'iCielPanton-Black',"Arial", sans-serif; } .package{ height: 488px; /*width: auto;*/ margin-top: 20px; margin-left: 4.5%; } .package_plus{ /*margin-left: 12px;*/ } .pack_first{ /* margin-left: 7px; margin-right: 12px;*/ } .pack_last{ /*margin-left: 12px;*/ } .pack_title{ padding-top: 13px; color: #fff; font-family: 'Roboto-Light',"Arial", sans-serif; font-size: 23px; } .pack_title_right{ font-family: 'Roboto-Black',"Arial", sans-serif; } .pack_price{ /*font-size: 16px;*/ font-size: 14px; font-family: 'Roboto-Light',"Arial", sans-serif; padding-top: 3px; } .pack_price_left{ /*font-size: 22px;*/ font-size: 16px; font-family: 'Roboto-Black',"Arial", sans-serif; } .pack_button{ padding-left: 10%; padding-right: 10%; margin-top: 5px; } .pack_button > a{ height: 46px; line-height: 46px; } .pack_zone-1{ min-height: 206px; min-width: 217px; background-color: #fff; margin-top: 117px; } .pack_zone-2{ margin-left: 5px; margin-right: 5px; margin-bottom: 5px; margin-top: -307px; background-color: #ebebeb; min-height: 419px; } .pack_end_level{ border-width: 1px; border-color: #a1a1a1; width: 80%; margin-top: 15px; } .pack_info{ width: 207px; font-size: 9px; font-family: 'Roboto-Light',"Arial", sans-serif; margin: 0 auto; } .pack_info tr{ height:30px; } .pack_info_left{ font-family: 'Roboto-Bold',"Arial", sans-serif; font-size: 14px; width: 90px; } .pack_info_middle{ width: 30px; font-size: 14px; } .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15 { float: left; position: relative; min-height: 1px; } .col-xs-15 { width: 20%; } @media (min-width: 768px) { .col-sm-15 { width: 20%; } .package{ margin-left: 0; } } @media (min-width: 992px) { .col-md-15 { width: 20%; } .pack_button{ padding-left: 10px; padding-right: 10px; } } @media (min-width: 1200px) { .col-lg-15 { width: 20%; } .pack_button{ padding-left: 50px; padding-right: 50px; } } .slogan_banner { clear: both; margin-bottom: 20px; }
0.457379
0.069732
.dropTarget { position: absolute; top: 0; left: 0; bottom: 0; right: 0; margin-bottom: 160px; background: var(--drop-bg-color); text-align: center; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; color: transparent; transition: all 50ms ease-out; backdrop-filter: blur(0); z-index: 1; } .dropping { background: var(--drop-main-color); border: 0.5rem dashed var(--theme-main-color); color: var(--theme-main-color); transition: all 50ms ease-out; backdrop-filter: blur(3px); z-index: 100; } .main { display: flex; justify-content: center; } .mainReady { display: block; } .wrap { opacity: 1; display: flex; flex-wrap: wrap; align-items: flex-start; align-content: space-around; justify-content: space-between; max-width: 960px; margin: 4rem auto; transition: all 300ms ease-out 200ms; z-index: 10; } .searchImageDisplay { display: flex; flex-wrap: wrap; align-items: center; align-content: space-around; justify-content: space-between; background: linear-gradient( 0deg, var(--result-draw-color) 0, var(--result-draw-color) 90%, var(--result-line-color) 90%, var(--result-line-color) 100% ) 0 50%, linear-gradient( 90deg, var(--result-draw-color) 0, var(--result-draw-color) 90%, var(--result-line-color) 90%, var(--result-line-color) 100% ) 50% 0, var(--result-main-color); background-size: 20px 20px; box-shadow: 0 0 20px var(--shadow-color); border-radius: 0.5rem; overflow: hidden; } .messageTextLabel { color: var(--text-strong-color); font-size: 0.7rem; line-height: 1rem; height: 1rem; width: 100%; padding: 0.2rem 0.5rem 0.2rem 0.5rem; border-top: 1px dashed var(--theme-weak-color); } .detail { color: var(--text-strong-color); font-size: 0.8rem; text-align: center; flex-grow: 1; } .originalImageDisplay { width: 160px; min-height: 90px; display: block; } .resultList { width: 300px; margin-bottom: 2rem; } .resultList button { color: var(--text-main-color); background-color: var(--blank-color); outline: 0; border: 1px solid var(--shadow-color); border-radius: 3px; cursor: pointer; font-size: 0.7rem; padding: 0.5rem; box-shadow: 1px 1px 3px var(--shadow-color); transition: all 100ms ease-out; } .resultList button:hover { box-shadow: 1px 1px 5px var(--theme-main-color); transition: all 100ms ease-out; } .resultList button:active { box-shadow: 0 0 2px var(--theme-main-color); transform: translate(1px, 1px); transition: all 100ms ease-out; } .playerInfoPane { margin-bottom: 2rem; box-shadow: 0 0 20px var(--shadow-color); background: linear-gradient( 0deg, var(--info-draw-color) 0, var(--info-draw-color) 95%, var(--info-line-color) 95%, var(--info-line-color) 100% ) 0 50%, linear-gradient( 90deg, var(--info-draw-color) 0, var(--info-draw-color) 95%, var(--info-line-color) 95%, var(--info-line-color) 100% ) 50% 0, var(--info-main-color); background-size: 50px 50px; border-radius: 0.5rem; overflow: hidden; } @media (max-width: 960px) { .wrap { justify-content: space-around; } .resultList { width: 640px; height: 30vh; overflow-y: scroll; padding: 0 20px 0 20px; border-bottom: 1px dashed var(--theme-weak-color); margin-bottom: 1rem; } }
components/index.module.css
.dropTarget { position: absolute; top: 0; left: 0; bottom: 0; right: 0; margin-bottom: 160px; background: var(--drop-bg-color); text-align: center; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; color: transparent; transition: all 50ms ease-out; backdrop-filter: blur(0); z-index: 1; } .dropping { background: var(--drop-main-color); border: 0.5rem dashed var(--theme-main-color); color: var(--theme-main-color); transition: all 50ms ease-out; backdrop-filter: blur(3px); z-index: 100; } .main { display: flex; justify-content: center; } .mainReady { display: block; } .wrap { opacity: 1; display: flex; flex-wrap: wrap; align-items: flex-start; align-content: space-around; justify-content: space-between; max-width: 960px; margin: 4rem auto; transition: all 300ms ease-out 200ms; z-index: 10; } .searchImageDisplay { display: flex; flex-wrap: wrap; align-items: center; align-content: space-around; justify-content: space-between; background: linear-gradient( 0deg, var(--result-draw-color) 0, var(--result-draw-color) 90%, var(--result-line-color) 90%, var(--result-line-color) 100% ) 0 50%, linear-gradient( 90deg, var(--result-draw-color) 0, var(--result-draw-color) 90%, var(--result-line-color) 90%, var(--result-line-color) 100% ) 50% 0, var(--result-main-color); background-size: 20px 20px; box-shadow: 0 0 20px var(--shadow-color); border-radius: 0.5rem; overflow: hidden; } .messageTextLabel { color: var(--text-strong-color); font-size: 0.7rem; line-height: 1rem; height: 1rem; width: 100%; padding: 0.2rem 0.5rem 0.2rem 0.5rem; border-top: 1px dashed var(--theme-weak-color); } .detail { color: var(--text-strong-color); font-size: 0.8rem; text-align: center; flex-grow: 1; } .originalImageDisplay { width: 160px; min-height: 90px; display: block; } .resultList { width: 300px; margin-bottom: 2rem; } .resultList button { color: var(--text-main-color); background-color: var(--blank-color); outline: 0; border: 1px solid var(--shadow-color); border-radius: 3px; cursor: pointer; font-size: 0.7rem; padding: 0.5rem; box-shadow: 1px 1px 3px var(--shadow-color); transition: all 100ms ease-out; } .resultList button:hover { box-shadow: 1px 1px 5px var(--theme-main-color); transition: all 100ms ease-out; } .resultList button:active { box-shadow: 0 0 2px var(--theme-main-color); transform: translate(1px, 1px); transition: all 100ms ease-out; } .playerInfoPane { margin-bottom: 2rem; box-shadow: 0 0 20px var(--shadow-color); background: linear-gradient( 0deg, var(--info-draw-color) 0, var(--info-draw-color) 95%, var(--info-line-color) 95%, var(--info-line-color) 100% ) 0 50%, linear-gradient( 90deg, var(--info-draw-color) 0, var(--info-draw-color) 95%, var(--info-line-color) 95%, var(--info-line-color) 100% ) 50% 0, var(--info-main-color); background-size: 50px 50px; border-radius: 0.5rem; overflow: hidden; } @media (max-width: 960px) { .wrap { justify-content: space-around; } .resultList { width: 640px; height: 30vh; overflow-y: scroll; padding: 0 20px 0 20px; border-bottom: 1px dashed var(--theme-weak-color); margin-bottom: 1rem; } }
0.443118
0.054349
{ font-weight: normal; font-style: normal; } [class^="md-"], [class*=" md-"] { display: inline-block; font: normal normal normal 14px/1 'Material Design Iconic Font'; font-size: inherit; speak: none; text-rendering: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } input[type="text"],input[type="email"]{ height: 40px; } .bigSize { height: 40px; } /*/*media queries @media only screen and (max-width: 1004px) { .disappear { display:none; } .appear { display:none; } } @media only screen and (min-width : 768px) { .modals { width: 75px !important; height: 75px !important; font-size: 12px; } } .panel1_Mobile { padding-left: 1em; padding-right: 1em; border: solid 0.1em lightgrey; border-radius: 5px; background-color: #58987766; max-height: 600px; } .menubtn { color: #fff; background-color: #60a392; } .menubody { color: #fff; background-color: #60a3; } .text-centerr { text-align: center; } media queries*/ /* Custom, iPhone Retina @media only screen and (min-width : 320px) { .btn-sq-xs { width: 25px !important; height: 25px !important; padding:2px; } } */ /* Extra Small Devices, Phones @media only screen and (min-width : 480px) { .btn-sq-xs { width: 50px !important; height: 50px !important; font-size: 10px; } }*/ /* Small Devices, Tablets @media only screen and (min-width : 768px) { .btn-sq-sm { width: 75px !important; height: 75px !important; font-size: 12px; } }*/ /* Medium Devices, Desktops @media only screen and (min-width : 992px) { .btn-sq-md { width: 150px !important; height: 150px !important; padding-top: 2px; margin-bottom: 10px; } }*/ /* Large Devices, Wide Screens @media only screen and (min-width : 1200px) { .btn-sq-lg { width: 400px !important; height: 400px !important; padding-top: 2px; margin-bottom: 10px; } } */ .btnColours { background-color: #599877; color: #fff; } .side-margins{ padding-left: 0px; padding-right: 0px; } .top-margins{ padding-top: 2px; padding-right: 0px; } .md { line-height: inherit; vertical-align: bottom; } .md-inbox:before { content: "\f10c"; } .md-star:before { content: "\f2e5"; } .md-send:before { content: "\f119"; } .md-drafts:before { content: "\f107"; } .md-arrow-back:before { content: "\f297"; } .md-arrow-forward:before { content: "\f298"; } /*Sidebar*/ .sidebar-overlay { visibility: hidden; position: fixed; top: 0; left: 0; right: 0; bottom: 0; opacity: 0; background: #000; z-index: 1034; -webkit-transition: visibility 0 linear 0.4s, opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1); -moz-transition: visibility 0 linear 0.4s, opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1); transition: visibility 0 linear 0.4s, opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1); -webkit-transform: translateZ(0); -moz-transform: translateZ(0); -ms-transform: translateZ(0); -o-transform: translateZ(0); transform: translateZ(0); } .sidebar-overlay.active { opacity: 0.5; visibility: visible; -webkit-transition-delay: 0; -moz-transition-delay: 0; transition-delay: 0; } .top-bar { height: 25px; background: rgba(0, 0, 0, 0.1); } /* -- Google typography ------------------------------- */ .headline { font-size: 24px; font-weight: 300; line-height: 1.1; color: #212121; text-transform: inherit; letter-spacing: inherit; } .subhead { font-size: 16px; font-weight: 300; line-height: 1.1; color: #212121; text-transform: inherit; letter-spacing: inherit; } /* -- Bootstrap-like style ------------------------------- */ .caret { display: inline-block; width: 0; height: 0; margin-left: 2px; vertical-align: middle; border-top: 4px solid; border-right: 4px solid transparent; border-left: 4px solid transparent; } .dropdown-menu { display: none; } /* -- Constructor style ------------------------------- */ .constructor { position: relative; margin: 0; padding: 0 50px; -webkit-transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1); -o-transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1); transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1); } .sidebar, .wrapper { display: table-cell; vertical-align: top; } .sidebar-stacked.open + .wrapper .constructor { margin-left: 280px; } @media (max-width: 768px) { .sidebar-stacked.open + .wrapper .constructor { margin-left: 240px; } } /* -- Sidebar style ------------------------------- */ .sidebar { position: relative; display: block; min-height: 100%; overflow-y: auto; overflow-x: hidden; border: none; -webkit-transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1); -o-transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1); transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1); } .sidebar:before, .sidebar:after { content: " "; display: table; } .sidebar:after { clear: both; } .sidebar::-webkit-scrollbar-track { border-radius: 2px; } .sidebar::-webkit-scrollbar { width: 5px; background-color: #F7F7F7; } .sidebar::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); background-color: #BFBFBF; } .sidebar .sidebar-header { position: relative; height: 157.5px; margin-bottom: 8px; -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .sidebar .sidebar-header.header-cover { background-repeat: no-repeat; background-position: center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } .sidebar .sidebar-header:hover .sidebar-toggle { opacity: 1; } .sidebar .sidebar-toggle { position: relative; float: right; margin: 16px; padding: 0; background-image: none; border: none; height: 40px; width: 40px; font-size: 20px; opacity: 0.7; -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .sidebar .sidebar-toggle:before, .sidebar .sidebar-toggle:after { content: " "; display: table; } .sidebar .sidebar-toggle:after { clear: both; } .sidebar .icon-material-sidebar-arrow:before { content: "\e610"; } .sidebar .sidebar-image img { border-radius: 50%; -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .sidebar .sidebar-brand { position: absolute; bottom: 0; left: 0; right: 0; display: block; height: 48px; line-height: 48px; padding: 0; padding-left: 16px; padding-right: 56px; text-decoration: none; clear: both; font-weight: 500; overflow: hidden; -o-text-overflow: ellipsis; text-overflow: ellipsis; white-space: nowrap; -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .sidebar .sidebar-brand:hover, .sidebar .sidebar-brand:focus { -webkit-box-shadow: none; box-shadow: none; outline: none; } .sidebar .sidebar-brand .caret { position: absolute; right: 24px; top: 24px; } .sidebar .sidebar-brand .sidebar-badge { position: absolute; right: 16px; top: 12px; } .sidebar .sidebar-brand:hover, .sidebar .sidebar-brand:focus { text-decoration: none; } .sidebar .sidebar-badge { display: inline-block; min-width: 24px; height: 24px; line-height: 24px; padding: 0 3px; font-size: 10px; text-align: center; white-space: nowrap; vertical-align: baseline; } .sidebar .sidebar-badge.badge-circle { border-radius: 50%; } .sidebar .sidebar-divider, .sidebar .sidebar-nav .divider { position: relative; display: block; height: 1px; margin: 8px 0; padding: 0; overflow: hidden; } .sidebar .sidebar-text { display: block; height: 48px; line-height: 48px; padding: 0; padding-left: 16px; padding-right: 56px; text-decoration: none; clear: both; font-weight: 500; overflow: hidden; -o-text-overflow: ellipsis; text-overflow: ellipsis; white-space: nowrap; -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .sidebar .sidebar-text:hover, .sidebar .sidebar-text:focus { -webkit-box-shadow: none; box-shadow: none; outline: none; } .sidebar .sidebar-text .caret { position: absolute; right: 24px; top: 24px; } .sidebar .sidebar-text .sidebar-badge { position: absolute; right: 16px; top: 12px; } .sidebar .sidebar-icon { display: inline-block; margin-right: 16px; min-width: 40px; width: 40px; text-align: left; font-size: 20px; } .sidebar .sidebar-icon:before, .sidebar .sidebar-icon:after { vertical-align: middle; } .sidebar .sidebar-nav { margin: 0; padding: 0; } .sidebar .sidebar-nav li { position: relative; list-style-type: none; } .sidebar .sidebar-nav li a { position: relative; cursor: pointer; user-select: none; display: block; height: 48px; line-height: 48px; padding: 0; padding-left: 16px; padding-right: 56px; text-decoration: none; clear: both; font-weight: 500; overflow: hidden; -o-text-overflow: ellipsis; text-overflow: ellipsis; white-space: nowrap; -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .sidebar .sidebar-nav li a:hover, .sidebar .sidebar-nav li a:focus { -webkit-box-shadow: none; box-shadow: none; outline: none; } .sidebar .sidebar-nav li a .caret { position: absolute; right: 24px; top: 24px; } .sidebar .sidebar-nav li a .sidebar-badge { position: absolute; right: 16px; top: 12px; } .sidebar .sidebar-nav li a:hover { background: transparent; } .sidebar .sidebar-nav .dropdown-menu { position: relative; width: 100%; margin: 0; padding: 0; border: none; border-radius: 0; -webkit-box-shadow: none; box-shadow: none; } .sidebar-default { background-color: #ffffff; } .sidebar-default .sidebar-header { background-color: #eceff1; } .sidebar-default .sidebar-toggle { color: #212121; background-color: transparent; } .sidebar-default .sidebar-brand { color: #757575; background-color: transparent; } .sidebar-default .sidebar-brand:hover, .sidebar-default .sidebar-brand:focus { color: #212121; background-color: rgba(0, 0, 0, 0.1); } .sidebar-default .sidebar-badge { color: #ffffff; background-color: #bdbdbd; } .sidebar-default .sidebar-divider, .sidebar-default .sidebar-nav .divider { background-color: #bdbdbd; } .sidebar-default .sidebar-text { color: #212121; } .sidebar-default .sidebar-nav li > a { color: #212121; background-color: transparent; } .sidebar-default .sidebar-nav li > a i { color: #757575; } .sidebar-default .sidebar-nav li:hover > a, .sidebar-default .sidebar-nav li > a:hover { color: #212121; background-color: #e0e0e0; } .sidebar-default .sidebar-nav li:hover > a i, .sidebar-default .sidebar-nav li > a:hover i { color: #757575; } .sidebar-default .sidebar-nav li:focus > a, .sidebar-default .sidebar-nav li > a:focus { color: #212121; background-color: transparent; } .sidebar-default .sidebar-nav li:focus > a i, .sidebar-default .sidebar-nav li > a:focus i { color: #757575; } .sidebar-default .sidebar-nav > .open > a, .sidebar-default .sidebar-nav > .open > a:hover, .sidebar-default .sidebar-nav > .open > a:focus { color: #212121; background-color: #e0e0e0; } .sidebar-default .sidebar-nav > .active > a, .sidebar-default .sidebar-nav > .active > a:hover, .sidebar-default .sidebar-nav > .active > a:focus { color: #212121; background-color: #e0e0e0; } .sidebar-default .sidebar-nav > .disabled > a, .sidebar-default .sidebar-nav > .disabled > a:hover, .sidebar-default .sidebar-nav > .disabled > a:focus { color: #e0e0e0; background-color: transparent; } .sidebar-default .sidebar-nav > .dropdown > .dropdown-menu { background-color: #e0e0e0; } .sidebar-default .sidebar-nav > .dropdown > .dropdown-menu > li > a:focus { background-color: #e0e0e0; color: #212121; } .sidebar-default .sidebar-nav > .dropdown > .dropdown-menu > li > a:hover { background-color: #cecece; color: #212121; } .sidebar-default .sidebar-nav > .dropdown > .dropdown-menu > .active > a, .sidebar-default .sidebar-nav > .dropdown > .dropdown-menu > .active > a:hover, .sidebar-default .sidebar-nav > .dropdown > .dropdown-menu > .active > a:focus { color: #212121; background-color: #e0e0e0; } .sidebar-inverse { background-color: #212121; } .sidebar-inverse .sidebar-header { background-color: #eceff1; } .sidebar-inverse .sidebar-toggle { color: #212121; background-color: transparent; } .sidebar-inverse .sidebar-brand { color: #757575; background-color: transparent; } .sidebar-inverse .sidebar-brand:hover, .sidebar-inverse .sidebar-brand:focus { color: #212121; background-color: rgba(0, 0, 0, 0.1); } .sidebar-inverse .sidebar-badge { color: #212121; background-color: #e0e0e0; } .sidebar-inverse .sidebar-divider, .sidebar-inverse .sidebar-nav .divider { background-color: #bdbdbd; } .sidebar-inverse .sidebar-text { color: #f5f5f5; } .sidebar-inverse .sidebar-nav li > a { color: #f5f5f5; background-color: transparent; } .sidebar-inverse .sidebar-nav li > a i { color: #bdbdbd; } .sidebar-inverse .sidebar-nav li:hover > a, .sidebar-inverse .sidebar-nav li > a:hover { color: #bdbdbd; background-color: #000000; } .sidebar-inverse .sidebar-nav li:hover > a i, .sidebar-inverse .sidebar-nav li > a:hover i { color: #bdbdbd; } .sidebar-inverse .sidebar-nav li:focus > a, .sidebar-inverse .sidebar-nav li > a:focus { color: #f5f5f5; background-color: transparent; } .sidebar-inverse .sidebar-nav li:focus > a i, .sidebar-inverse .sidebar-nav li > a:focus i { color: #bdbdbd; } .sidebar-inverse .sidebar-nav > .open > a, .sidebar-inverse .sidebar-nav > .open > a:hover, .sidebar-inverse .sidebar-nav > .open > a:focus { color: #bdbdbd; background-color: #000000; } .sidebar-inverse .sidebar-nav > .active > a, .sidebar-inverse .sidebar-nav > .active > a:hover, .sidebar-inverse .sidebar-nav > .active > a:focus { color: #f5f5f5; background-color: #000000; } .sidebar-inverse .sidebar-nav > .disabled > a, .sidebar-inverse .sidebar-nav > .disabled > a:hover, .sidebar-inverse .sidebar-nav > .disabled > a:focus { color: #757575; background-color: transparent; } .sidebar-inverse .sidebar-nav > .dropdown > .dropdown-menu { background-color: #000000; } .sidebar-inverse .sidebar-nav > .dropdown > .dropdown-menu > li > a:focus { background-color: #000000; color: #bdbdbd; } .sidebar-inverse .sidebar-nav > .dropdown > .dropdown-menu > li > a:hover { background-color: #000000; color: #bdbdbd; } .sidebar-inverse .sidebar-nav > .dropdown > .dropdown-menu > .active > a, .sidebar-inverse .sidebar-nav > .dropdown > .dropdown-menu > .active > a:hover, .sidebar-inverse .sidebar-nav > .dropdown > .dropdown-menu > .active > a:focus { color: #f5f5f5; background-color: #000000; } .sidebar-colored { background-color: #ffffff; } .sidebar-colored .sidebar-header { background-color: #e91e63; } .sidebar-colored .sidebar-toggle { color: #f5f5f5; background-color: transparent; } .sidebar-colored .sidebar-brand { color: #e0e0e0; background-color: transparent; } .sidebar-colored .sidebar-brand:hover, .sidebar-colored .sidebar-brand:focus { color: #f5f5f5; background-color: rgba(0, 0, 0, 0.1); } .sidebar-colored .sidebar-badge { color: #ffffff; background-color: #ec407a; } .sidebar-colored .sidebar-divider, .sidebar-colored .sidebar-nav .divider { background-color: #bdbdbd; } .sidebar-colored .sidebar-text { color: #212121; } .sidebar-colored .sidebar-nav li > a { color: #212121; background-color: transparent; } .sidebar-colored .sidebar-nav li > a i { color: #757575; } .sidebar-colored .sidebar-nav li:hover > a, .sidebar-colored .sidebar-nav li > a:hover { color: #e91e63; background-color: #e0e0e0; } .sidebar-colored .sidebar-nav li:hover > a i, .sidebar-colored .sidebar-nav li > a:hover i { color: #f06292; } .sidebar-colored .sidebar-nav li:focus > a, .sidebar-colored .sidebar-nav li > a:focus { color: #212121; background-color: transparent; } .sidebar-colored .sidebar-nav li:focus > a i, .sidebar-colored .sidebar-nav li > a:focus i { color: #f06292; } .sidebar-colored .sidebar-nav > .open > a, .sidebar-colored .sidebar-nav > .open > a:hover, .sidebar-colored .sidebar-nav > .open > a:focus { color: #e91e63; background-color: #e0e0e0; } .sidebar-colored .sidebar-nav > .active > a, .sidebar-colored .sidebar-nav > .active > a:hover, .sidebar-colored .sidebar-nav > .active > a:focus { color: #212121; background-color: #f5f5f5; } .sidebar-colored .sidebar-nav > .disabled > a, .sidebar-colored .sidebar-nav > .disabled > a:hover, .sidebar-colored .sidebar-nav > .disabled > a:focus { color: #e0e0e0; background-color: transparent; } .sidebar-colored .sidebar-nav > .dropdown > .dropdown-menu { background-color: #e0e0e0; } .sidebar-colored .sidebar-nav > .dropdown > .dropdown-menu > li > a:focus { background-color: #e0e0e0; color: #e91e63; } .sidebar-colored .sidebar-nav > .dropdown > .dropdown-menu > li > a:hover { background-color: #cecece; color: #e91e63; } .sidebar-colored .sidebar-nav > .dropdown > .dropdown-menu > .active > a, .sidebar-colored .sidebar-nav > .dropdown > .dropdown-menu > .active > a:hover, .sidebar-colored .sidebar-nav > .dropdown > .dropdown-menu > .active > a:focus { color: #212121; background-color: #f5f5f5; } .sidebar-colored-inverse { background-color: #e91e63; } .sidebar-colored-inverse .sidebar-header { background-color: #eceff1; } .sidebar-colored-inverse .sidebar-toggle { color: #212121; background-color: transparent; } .sidebar-colored-inverse .sidebar-brand { color: #757575; background-color: transparent; } .sidebar-colored-inverse .sidebar-brand:hover, .sidebar-colored-inverse .sidebar-brand:focus { color: #212121; background-color: rgba(0, 0, 0, 0.1); } .sidebar-colored-inverse .sidebar-badge { color: #212121; background-color: #e0e0e0; } .sidebar-colored-inverse .sidebar-divider, .sidebar-colored-inverse .sidebar-nav .divider { background-color: #bdbdbd; } .sidebar-colored-inverse .sidebar-text { color: #e0e0e0; } .sidebar-colored-inverse .sidebar-nav li > a { color: #f5f5f5; background-color: transparent; } .sidebar-colored-inverse .sidebar-nav li > a i { color: #e0e0e0; } .sidebar-colored-inverse .sidebar-nav li:hover > a, .sidebar-colored-inverse .sidebar-nav li > a:hover { color: #f5f5f5; background-color: rgba(0, 0, 0, 0.1); } .sidebar-colored-inverse .sidebar-nav li:hover > a i, .sidebar-colored-inverse .sidebar-nav li > a:hover i { color: #f5f5f5; } .sidebar-colored-inverse .sidebar-nav li:focus > a, .sidebar-colored-inverse .sidebar-nav li > a:focus { color: #f5f5f5; background-color: transparent; } .sidebar-colored-inverse .sidebar-nav li:focus > a i, .sidebar-colored-inverse .sidebar-nav li > a:focus i { color: #f5f5f5; } .sidebar-colored-inverse .sidebar-nav > .open > a, .sidebar-colored-inverse .sidebar-nav > .open > a:hover, .sidebar-colored-inverse .sidebar-nav > .open > a:focus { color: #f5f5f5; background-color: rgba(0, 0, 0, 0.1); } .sidebar-colored-inverse .sidebar-nav > .active > a, .sidebar-colored-inverse .sidebar-nav > .active > a:hover, .sidebar-colored-inverse .sidebar-nav > .active > a:focus { color: #f5f5f5; background-color: rgba(0, 0, 0, 0.2); } .sidebar-colored-inverse .sidebar-nav > .disabled > a, .sidebar-colored-inverse .sidebar-nav > .disabled > a:hover, .sidebar-colored-inverse .sidebar-nav > .disabled > a:focus { color: #bdbdbd; background-color: transparent; } .sidebar-colored-inverse .sidebar-nav > .dropdown > .dropdown-menu { background-color: rgba(0, 0, 0, 0.1); } .sidebar-colored-inverse .sidebar-nav > .dropdown > .dropdown-menu > li > a:focus { background-color: rgba(0, 0, 0, 0.1); color: #f5f5f5; } .sidebar-colored-inverse .sidebar-nav > .dropdown > .dropdown-menu > li > a:hover { background-color: rgba(0, 0, 0, 0.1); color: #f5f5f5; } .sidebar-colored-inverse .sidebar-nav > .dropdown > .dropdown-menu > .active > a, .sidebar-colored-inverse .sidebar-nav > .dropdown > .dropdown-menu > .active > a:hover, .sidebar-colored-inverse .sidebar-nav > .dropdown > .dropdown-menu > .active > a:focus { color: #f5f5f5; background-color: rgba(0, 0, 0, 0.2); } .sidebar { width: 0; -webkit-transform: translate3d(-280px, 0, 0); transform: translate3d(-280px, 0, 0); } .sidebar.open { min-width: 280px; width: 280px; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); background-color:#fff; height: 620px; border-bottom-left-radius:10px; border-bottom-right-radius:10px; } .sidebar-fixed-left, .sidebar-fixed-right, .sidebar-stacked { position: fixed; top: 0; bottom: 0; z-index: 1035; } .sidebar-stacked { left: 0; } .sidebar-fixed-left { left: 0; box-shadow: 2px 0px 15px rgba(0, 0, 0, 0.35); -webkit-box-shadow: 2px 0px 15px rgba(0, 0, 0, 0.35); } .sidebar-fixed-right { right: 0; box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.35); -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.35); -webkit-transform: translate3d(280px, 0, 0); transform: translate3d(280px, 0, 0); } .sidebar-fixed-right.open { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } .sidebar-fixed-right .icon-material-sidebar-arrow:before { content: "\e614"; } @media (max-width: 768px) { .sidebar.open { min-width: 240px; width: 240px; } .sidebar .sidebar-header { height: 135px; } .sidebar .sidebar-image img { width: 44px; height: 44px; } } /*end of sidebar*/ .shift2Right { margin-left: 27px; } .shift2RightUsers { margin-left: 20px; } /*Teacher List*/ .glyphicon-lg { font-size:4em } .info-block { border-right:5px solid #E6E6E6;margin-bottom:25px } .info-block .square-box { width:100px;min-height:110px;margin-right:22px;text-align:center!important;background-color:#676767;padding:20px 0 } .info-block.block-info { border-color:#579876; } .info-block.block-info .square-box { background-color:#58987700;color:#FFF; } .m-progress { margin-top: -50px; margin-right:5px; width: 50px; height: 32px; background-color:#36736a; border-color: #36736a; color:#fff; } .btn-progress { margin-top:-40px; margin-right:5px; width: 50px; height: 32px; background-color:#60a392; border-color: #60a392; color:#fff; } .btn-progress1 { margin-top:-55px; margin-right:-10px; width: 50px; height: 32px; background-color:#60a392; border-color: #60a392; color:#fff; } .presentation1 { color:#579876; } .presentation2 { color:#ea2803; } /*End of Teacher list*/ .card-container.card { max-width: 350px; padding: 40px 40px; margin-top: 0px; } .card { background-color: #F7F7F7; /* just in case there no content*/ padding: 20px 25px 30px; margin: 0 auto 25px; margin-top: 50px; /* shadows and rounded borders */ -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3); -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3); box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3); } .profile-img-card { width: 96px; height: 96px; margin: 0 auto 10px; display: block; -moz-border-radius: 50%; -webkit-border-radius: 50%; border-radius: 50%; } /* * Form styles */ .profile-name-card { font-size: 16px; font-weight: bold; text-align: center; margin: 10px 0 0; min-height: 1em; } .reauth-email { display: block; color: #404040; line-height: 2; margin-bottom: 10px; font-size: 14px; text-align: center; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } .form-signin #inputEmail, .form-signin #inputPassword { direction: ltr; height: 44px; font-size: 16px; } .form-signin input[type=email], .form-signin input[type=password], .form-signin input[type=text], .form-signin button { width: 100%; display: block; margin-bottom: 10px; z-index: 1; position: relative; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } .form-signin .form-control:focus { border-color: rgb(104, 145, 162); outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgb(104, 145, 162); box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgb(104, 145, 162); } .btn.btn-signin { /*background-color: #4d90fe; */ background-color: rgb(59, 196, 146); /* background-color: linear-gradient(rgb(104, 145, 162), rgb(12, 97, 33));*/ padding: 0px; font-weight: 700; font-size: 14px; height: 36px; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; border: none; -o-transition: all 0.218s; -moz-transition: all 0.218s; -webkit-transition: all 0.218s; transition: all 0.218s; } .btn.btn-signin:hover, .btn.btn-signin:active, .btn.btn-signin:focus { background-color: rgb(12, 97, 33); } .forgot-password { color: rgb(104, 145, 162); } .forgot-password:hover, .forgot-password:active, .forgot-password:focus{ color: rgb(12, 97, 33); } /*background image style*/ .backgroundColour { /*background: #eee url(../images/xv.png);*/ background: #E8E8E8 url(../images/background2.png); } /*Overriding style*/ .listBottom { margin-bottom:0px; } .list-group-item { padding-left: 0px; } /*Overriding style*/ .backup { margin-right:20px; } .platform{ margin-top:-3px; margin-bottom:-3px; } .multiSel { width:772px; margin-left:182px; } .addLearner { margin-top:10px; padding-top:20px; width:100%; } /*Manage Academy Stylesheet*/ h1, h2, h3, h4, h5, h6 { line-height: 1.5em; font-weight: 300; } strong { font-weight: 600; } strong { font-weight: 400; } .tile { width: 100%; display: inline-block; box-sizing: border-box; background: #fff; padding: 20px; margin-bottom: 30px; } .tile .title { margin-top: 0px; } .tile.purple, .tile.blue, .tile.red, .tile.orange, .tile.green,.tile.pink { color: #fff; } .tile.purple { background: #579876; } .tile.purple:hover { background: #3e2784; } .tile.red { background: #579876; } .tile.red:hover { background: #7f132d; } .tile.green { background: #579876; } .tile.green:hover { background: #007300; } .tile.blue { background: #579876; } .tile.blue:hover { background: #125acd; } .tile.pink { background: #579876; } .tile.pink:hover { background:#FD8AA6; } .tile.orange { background: #579876; } .tile.orange:hover { background: #b8431f; } /*Subjects Table*/ .panel-table .panel-body{ padding:0; } .panel-table .panel-body .table-bordered{ border-style: none; margin:0; } .panel-table .panel-body .table-bordered > thead > tr > th:first-of-type { text-align:center; width: 100px; } .panel-table .panel-body .table-bordered > thead > tr > th:last-of-type, .panel-table .panel-body .table-bordered > tbody > tr > td:last-of-type { border-right: 0px; } .panel-table .panel-body .table-bordered > thead > tr > th:first-of-type, .panel-table .panel-body .table-bordered > tbody > tr > td:first-of-type { border-left: 0px; } .panel-table .panel-body .table-bordered > tbody > tr:first-of-type > td{ border-bottom: 0px; } .panel-table .panel-body .table-bordered > thead > tr:first-of-type > th{ border-top: 0px; } .panel-table .panel-footer .pagination{ margin:0; } /* used to vertically center elements, may need modification if you're not using default sizes. */ .panel-table .panel-footer .col{ line-height: 34px; height: 34px; } .panel-table .panel-heading .col h3{ line-height: 30px; height: 30px; } .panel-table .panel-body .table-bordered > tbody > tr > td{ line-height: 34px; } .subjectButton() { margin-top:1000px; } .backgroundColour1 { margin-top:-3px; background: #eee url(../images/background2.png); } .tableBackground { width:900px; background-color:#F5F5F5; } /*End Subjects Table*/ /*End of Manage Academy Stylesheet*/ /*To do list Stylesheet*/ .form{ background: #ffffff; width:10%; padding:60px; margin:50px auto; border-radius:4px; box-shadow:0px 0px 10px #ddd; text-align:center; min-width:300px; margin-top:-630px; } #result{ display:none; box-shadow:0px 0px 10px #ddd; margin:20px auto; overflow:hidden; background: #fff; } .goAway{ position:absolute; right:20px; top:12px; background: #3bc492;; border:1px solid #ddd; padding:8px 14px; border-radius:12px; color: #fff; } #input{ width:100%; padding:15px 20px; border:1px solid #d6d6d6; border-radius:25px; font-size:13px; max-width:600px; margin:auto; text-align:center; outline:none; } #input::placeholder{ color:#999; } #button{ width:100%; background: #3bc492; color: #fff; margin:10px auto; border:none; height:45px; font-size:1em; border-radius:20px; max-width:600px; padding-top:4px; font-weight:bold; outline:none; cursor:pointer; } /*End of To do list Stylesheet*/ /*Select box Stylesheet*/ .ddlSize { width: 772px; margin-left: 183px; } /*End of Select box Stylesheet*/ /*Form Wizard*/ .form-box { padding-top: 40px; padding-bottom: 40px; filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ea5804', endColorstr='#ea5804',GradientType=0 ); /* IE6-9 */ } .form-wizard { padding: 25px; background: #fff; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; box-shadow: 0px 0px 6px 3px #777; font-family: 'Roboto', sans-serif; font-size: 16px; font-weight: 300; color: #888; line-height: 30px; text-align: center; } .form-wizard strong { font-weight: 500; } .form-wizard a, .form-wizard a:hover, .form-wizard a:focus { color: #ea2803; text-decoration: none; -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s; } .form-wizard h1, .form-wizard h2 { margin-top: 10px; font-size: 38px; font-weight: 100; color: #555; line-height: 50px; } .form-wizard h3 { font-size: 25px; font-weight: 300; color: #ea2803; line-height: 30px; margin-top: 0; margin-bottom: 5px; text-transform: uppercase; } .form-wizard h4 { float:left; font-size: 20px; font-weight: 300; color: #ea2803; line-height: 26px; width:100%; } .form-wizard h4 span{ float:right; font-size: 18px; font-weight: 300; color: #555; line-height: 26px; } .form-wizard table tr th{font-weight:normal;} .form-wizard img { max-width: 100%; } .form-wizard ::-moz-selection { background: #ea2803; color: #fff; text-shadow: none; } .form-wizard ::selection { background: #ea2803; color: #fff; text-shadow: none; } /*.form-controal { height: 44px; width:100%; margin: 0; padding: 0 20px; vertical-align: middle; background: #fff; border: 1px solid #ddd; font-family: 'Roboto', sans-serif; font-size: 16px; font-weight: 300; line-height: 44px; color: #888; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s; } .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"], .radio input[type="radio"], .radio-inline input[type="radio"] { position: absolute; margin-top: 9px; margin-left: -20px; } .form-control option:hover, .form-control option:checked { box-shadow: 0 0 10px 100px #ea2803 inset; } .form-control:focus { outline: 0; background: #fff; border: 1px solid #ccc; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; } .form-control:-moz-placeholder { color: #888; } .form-control:-ms-input-placeholder { color: #888; } .form-control::-webkit-input-placeholder { color: #888; }*/ .form-wizard label { font-weight: 300; } .form-wizard label span { color:#ea2803; } .form-wizard .btn { min-width: 105px; height: 40px; margin: 0; padding: 0 20px; vertical-align: middle; border: 0; font-family: 'Roboto', sans-serif; font-size: 16px; font-weight: 300; line-height: 40px; color: #fff; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; text-shadow: none; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s; } .form-wizard .btn:hover { background:#f34727; color: #fff; } .form-wizard .btn:active { outline: 0; background:#f34727; color: #fff; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; } .form-wizard .btn:focus, .form-wizard .btn:active:focus, .form-wizard .btn.active:focus { outline: 0; background:#f34727; color: #fff; } .form-wizard .btn.btn-next, .form-wizard .btn.btn-next:focus, .form-wizard .btn.btn-next:active:focus, .form-wizard .btn.btn-next.active:focus { background: #ea2803; } .form-wizard .btn.btn-submit, .form-wizard .btn.btn-submit:focus, .form-wizard .btn.btn-submit:active:focus, .form-wizard .btn.btn-submit.active:focus { background: #ea2803; } .form-wizard .btn.btn-previous, .form-wizard .btn.btn-previous:focus, .form-wizard .btn.btn-previous:active:focus, .form-wizard .btn.btn-previous.active:focus { background: #bbb; } .btn-cancel { background: #ea2803; } .form-wizard .success h3{ color: #4F8A10; text-align: center; margin: 20px auto !important; } .form-wizard .success .success-icon { color: #4F8A10; font-size: 100px; border: 5px solid #4F8A10; border-radius: 100px; text-align: center !important; width: 110px; margin: 25px auto; } .form-wizard .progress-bar { background-color: #ea2803; } .form-wizard-steps{ margin:auto; overflow: hidden; position: relative; margin-top: 20px; } .form-wizard-step{ padding-top:10px !important; border:2px solid #fff; background:#ccc; -ms-transform: skewX(-30deg); /* IE 9 */ -webkit-transform: skewX(-30deg); /* Safari */ transform: skewX(-30deg); /* Standard syntax */ } .form-wizard-step.active{ background:#579876; } .form-wizard-step.activated{ background:#ea2803; } .form-wizard-progress { position: absolute; top: 36px; left: 0; width: 100%; height: 0px; background: #ea2803; } .form-wizard-progress-line { position: absolute; top: 0; left: 0; height: 0px; background: #ea2803; } .form-wizard-tolal-steps-3 .form-wizard-step { position: relative; float: left; width: 33.33%; padding: 0 5px; } .form-wizard-tolal-steps-4 .form-wizard-step { position: relative; float: left; width: 25%; padding: 0 5px; } .form-wizard-tolal-steps-5 .form-wizard-step { position: relative; float: left; width: 20%; padding: 0 5px; } .movebtns { margin-left: 220px; } .form-wizard-step-icon { display: inline-block; width: 40px; height: 40px; margin-top: 4px; background: #ddd; font-size: 16px; color: #777; line-height: 40px; -moz-border-radius: 50%; -webkit-border-radius: 50%; border-radius: 50%; -ms-transform: skewX(30deg); /* IE 9 */ -webkit-transform: skewX(30deg); /* Safari */ transform: skewX(30deg); /* Standard syntax */ } .form-wizard-step.activated .form-wizard-step-icon { background: #ea2803; border: 1px solid #fff; color: #fff; line-height: 38px; } .form-wizard-step.active .form-wizard-step-icon { background: #fff; border: 1px solid #fff; color: #ea2803; line-height: 38px; } .form-wizard-step p { color: #fff; -ms-transform: skewX(30deg); /* IE 9 */ -webkit-transform: skewX(30deg); /* Safari */ transform: skewX(30deg); /* Standard syntax */ } .form-wizard-step.activated p { color: #fff; } .form-wizard-step.active p { color: #fff; } .form-wizard fieldset { display: none; text-align: left; border:0px !important } .form-wizard-buttons { text-align: right; } .form-wizard .input-error { border-color: #ea2803;} /** image uploader **/ .image-upload a[data-action] { cursor: pointer; color: #555; font-size: 18px; line-height: 24px; transition: color 0.2s; } .image-upload a[data-action] i { width: 1.25em; text-align: center; } .image-upload a[data-action]:hover { color: #ea2803; } .image-upload a[data-action].disabled { opacity: 0.35; cursor: default; } .image-upload a[data-action].disabled:hover { color: #555; } .settings_wrap{ margin-top:20px; } .image_picker .settings_wrap { overflow: hidden; position: relative; } .image_picker .settings_wrap .drop_target, .image_picker .settings_wrap .settings_actions { float: left; } .image_picker .settings_wrap .drop_target { margin-right: 18px; } .image_picker .settings_wrap .settings_actions { float: left; margin-top: 100px; margin-left: 20px; } .settings_actions.vertical a { display: block; } .drop_target { position: relative; cursor: pointer; transition: all 0.2s; width: 250px; height: 250px; background: #f2f2f2; border-radius: 100%; margin: 0 auto 25px auto; overflow: hidden; border: 8px solid #E0E0E0; } .drop_target input[type="file"] { visibility: hidden; } .drop_target::before { content: 'Drop Hear'; font-family: FontAwesome; position: absolute; display: block; width: 100%; line-height: 220px; text-align: center; font-size: 40px; color: rgba(0, 0, 0, 0.3); transition: color 0.2s; } .drop_target:hover, .drop_target.dropping { background: #f80; border-top-color: #cc6d00; } .drop_target:hover:before, .drop_target.dropping:before { color: rgba(0, 0, 0, 0.6); } .drop_target .image_preview { width: 100%; height: 100%; background: no-repeat center; background-size: contain; position: relative; z-index: 2; } .noPaddingLeft { padding-left: 0px; } .noPaaddingRight { width:98.5%; } .removePadding { padding-left:0%; } .removePaddingRight { padding-right:0px; } #radioBtn .notActive{ color: #fff; background-color:#CCCCCC; } /*End Form Wizard*/ /***Assign Teacher button***/ .Class_Assign{ padding-bottom:4px; width:100px; margin-top:-95px; background-color: #579876; color:#fff; } /***Assign Teacher button***/ /*manageMessages style .manageInboxWidth{ max-width: 100%; }*/ /*end manageMessages style*/ /*admin inline styles*/ .achors { color:#696969; } .titles { text-align:center; color:#808080;" } .foot { color:#fff; } .wiz { width: 12.25%;" } .display { display: none; } .mTitle { padding-left: 30px; } .profileNames { color:#00b1b1; } .adminIcons { width: 100px; } .dropdownPadding { padding:0px; background-color: #dff0d8; } /*end of admin inline styles*/ /**/ .panel1 { width: 25%; /*margin-top:-624px;*/ padding-left: 1em; padding-right: 1em; border: solid 0.1em lightgrey; border-radius: 5px; background-color:#58987766; max-height:600px; } .panel1 .panel-header { text-align: center; } .panel1 li { background: lightgrey; } .panel1 li:hover { background: red; } .controls { text-align: center; margin: auto; } .input { border-radius: 15px; margin: auto; } .submit { margin: 5px auto 5px auto; text-align: center; width: 100px; color: #ffffff; font-size: 15px; background: #589876; padding: 5px 20px 5px 20px; } .submit:hover { background: #3bc492; cursor: pointer; cursor: hand; } .delete { display: inline-block; color: red; margin: 3px; padding: 2px; } .delete:hover { background: lightgrey; border-radius: 5px; cursor: pointer; cursor: hand; } .todoList { margin: 5px; } .complete { display: inline-block; color: green; margin: 3px; padding: 2px; } .complete:hover { background: lightgrey; border-radius: 5px; cursor: pointer; cursor: hand; } .completed { text-decoration: line-through; } .todoItem { margin: auto; margin-top: 5px; width: 100%; border: solid 1px #589877; border-radius: 10px; padding: 5px; } .todoItemText { display: inline-block; margin: 5px; } .itemControls { float: right; } .stats { text-align: center; } .tboxTodoItem { -moz-border-radius: 15px; border-radius: 5px; border: solid 1px lightgrey; padding: 5px; } .sTaskDescriptioen { width: 100%; } /**/ .hov { -webkit-transform: scale(1, 1); -ms-transform: scale(1, 1); transform: scale(1, 1); transition-duration: 0.3s; -webkit-transition-duration: 0.3s; /* Safari */ } .hov:hover{ cursor: pointer; -webkit-transform: scale(1.1, 1.1); -ms-transform: scale(1.1, 1.1); transform: scale(1.1, 1.1); transition-duration: 0.3s; -webkit-transition-duration: 0.3s; /* Safari */ box-shadow: 10px 10px 5px #888888; z-index: 1; color: #fff; background-color: #3bc492; } .error_msgs{ margin-top:-66px; margin-right:350px; } .alert-succes{ color:#fff; background-color: #19C856; } .colorStrike { color:red; } .spanStrike { color: #55555; } .hidden { display: none; } /**/ .results tr[visible='false'], .no-result { display: none; } .results tr[visible='true'] { display: table-row; } .searchCount { padding: 8px; color: #55555; } .backgroundColors { background-color:#F5F5F5; } .learnerGlyph { color:#589877; } /*pagination style*/ .current { background-color: #589877; color: #fff; } #pagin li { display: inline-block; } #pagin a { color:#A9A9A9; float: left; padding: 8px 16px; text-decoration: none; border: 1px solid #ddd; } #pagin a:hover:not(.active) {background-color: #589877; color:#fff;} #pagin a:first-child { border-top-left-radius: 5px; border-bottom-left-radius: 5px; } #pagin a:last-child { border-top-right-radius: 5px; border-bottom-right-radius: 5px; } /*end of pagination style*/ .addressStyling { border: 1px solid lightgrey; padding-top: 15px; padding-left: 10px; /*padding-bottom: 20px; padding-right: 20px;margin-left: 162px;*/ margin-bottom: 10px; } /* /*reactivate user alert style*/ .alert-actives { color:#fff; background-color:#3bc492; } /**/ /*TeacherList Modal Style*/ .modStyle { background-color:#3bc492; } .modBstyle { background-color:#58987766; } /*TeacherList Modal Style*/ /*ManageUsers button style*/ .btn-recycle { margin-top:-70px; } .btn-drop { margin-top: -55px; margin-right:100px; } /*End of ManageUsers button style*/ /*********Lists images***********/ .listImg{ width:80px; height:80px; border-radius: 50%; border:1px solid green; transition: transform .2s; } .userImg{ width:30px; height:30px; border-radius: 50%; border:1px solid green; transition: transform .2s } .userImg:hover { transform: scale(3); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */ } /********End of list images************/ /********Manage Users buttons************/ .btn-btnColors { background-color:#5cb8a6; border-color: #5cb8a6; color:#fff; } .mov { height: 50px;width: 50px; margin-top: -18px; margin-left:-10px; color:#5cb8a6; } .unread{ float: right; background: #e74c3c; width: 2em; border-radius: 50%; font-size: 0.75em; line-height: 2; text-align: center; animation: notificationpulse 0.5s infinite; -webkit-animation: notificationpulse 0.8s infinite; -moz-animation: notificationpulse 10s infinite; } /*the animations */ @keyframes notificationpulse { 0% { box-shadow: 0 0 0 0.00em #c0392b; } 25% { box-shadow: 0 0 0 0.25em #c0392b; } 50% { box-shadow: 0 0 0 0.50em #c0392b; } 75% { box-shadow: 0 0 0 0.25em #c0392b; } 100% { box-shadow: 0 0 0 0.15em #c0392b; } } @-webkit-keyframes notificationpulse { 0% { box-shadow: 0 0 0 0.00em #c0392b; } 25% { box-shadow: 0 0 0 0.25em #c0392b; } 50% { box-shadow: 0 0 0 0.50em #c0392b; } 75% { box-shadow: 0 0 0 0.25em #c0392b; } 100% { box-shadow: 0 0 0 0.15em #c0392b; } } @-moz-keyframes notificationpulse { 0% { box-shadow: 0 0 0 0.00em #c0392b; } 25% { box-shadow: 0 0 0 0.25em #c0392b; } 50% { box-shadow: 0 0 0 0.50em #c0392b; } 75% { box-shadow: 0 0 0 0.25em #c0392b; } 100% { box-shadow: 0 0 0 0.15em #c0392b; } } /********End of Manage Users buttons************/ /********Dropdown Menu************/ .btn.dropdown-toggle ~ .dropdown-menu, ul.nav li.dropdown ul.dropdown-menu { background-color: rgb(244, 244, 244); background-color: rgb(255, 255, 255); border: 0 solid rgb(66, 133, 244); box-shadow: 0px 0px 3px rgba(25, 25, 25, 0.3); top: 0px; margin: 0px; padding: 0px; } ul.nav li.dropdown ul.dropdown-menu { position: absolute; width: 100%; } .dropdown-menu .dropdown-plus-title { width: 100%; color: rgb(51, 51, 51); padding: 6px 12px; font-weight: 800; border: 0 solid rgb(76, 174, 76); border-bottom-width: 2px; cursor: pointer; } ul.nav li.dropdown ul.dropdown-menu .dropdown-plus-title { padding-top: 10px; padding-bottom: 10px; line-height: 20px; } .btn.dropdown-toggle.btn-success ~ .dropdown-menu .dropdown-plus-title { border-color: rgb(76, 174, 76); } @media (min-width: 768px) { ul.nav li.dropdown ul.dropdown-menu .dropdown-plus-title { padding-top: 15px; padding-bottom: 15px; } } @media (min-width: 768px) { ul.nav li.dropdown ul.dropdown-menu { width: auto; } } .navbar-inverse .navbar-nav>.open>a, .navbar-inverse .navbar-nav>.open>a:focus, .navbar-inverse .navbar-nav>.open>a:hover { background-color:#589877; } /********End of Dropdown Menu************/ /********mobile size button************/ .pull_down { margin-top:30px; } /********End of mobile size button************/ /********Tumza************/ .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form { border-color: #ffffff; } .navbar-inverse .navbar-toggle { border-color: #d5ead8; } .navbar-inverse .navbar-toggle:focus, .navbar-inverse .navbar-toggle:hover { background-color: #589877; } @media (max-width: 767px){ .navbar-inverse .navbar-nav .open .dropdown-menu>li>a { color: #d5ead8; }} /********Tumza************/ /* Custom, iPhone Retina */ @media only screen and (min-width : 320px) and (max-width : 767px) { .btn-sq-xs { width: 25px !important; height: 25px !important; padding:2px; } .body-margin { margin-left: 0px; margin-right:0px; } .body { padding-left: 0px; padding-right:0px; } .panel1 { width: 100%; } } /************* @media only screen and (min-width : 767px) and (max-width : 780px) { .panel1 { width: 50% } .panel-success>.panel-heading { color: #ffffff; background-color: #afc8bb; border-color: #d6e9c6; } #accordion { width: 400px; } /*************/ /* Extra Small Devices, Phones */ @media only screen and (min-width : 768px) and (max-width : 1023px){ .btn-sq-sm { width: 50px !important; height: 50px !important; font-size: 10px; } .body-margin { margin-left: 0px; margin-right:0px; padding-left: 0px; padding-right:0px; } .panel1 { width: 100% } .body { padding-left: 0px; padding-right:0px; } } /* Medium Devices, Desktops */ @media only screen and (min-width : 1024px) and (max-width : 1599px) { .btn-sq-md { width: 110px !important; height: 150px !important; padding-top: 2px; margin-bottom: 10px; border-radius: 20px; } .body-margin { margin-left: 100px; margin-right:100px; } .sidebar.open { height: 465px; width: 180px; min-width: 0px; } .adminIcons { width: 60px; } .panel1 { width: 26%; } .sidebar .sidebar-image img { margin-left: 60px; border: #afc8bb solid; } } /* Large Devices, Wide Screens */ @media only screen and (min-width : 1600px){ .btn-sq-lg { width: 230px !important; height: 200px !important; padding-top: 2px; margin-bottom: 10px; border-radius: 20px; } .body-margin { margin-left: 200px; margin-right:200px; } .panel1 { width: 30%; } } /*********************/ .event-list { list-style: none; font-family: 'Lato', sans-serif; margin-bottom:-30px; padding: 0px; } .event-list > li { background-color: rgb(255, 255, 255); box-shadow: 0px 0px 5px rgb(51, 51, 51); box-shadow: 0px 0px 5px rgba(51, 51, 51, 0.7); padding: 0px; margin: 0px 0px 20px; } .event-list > li > time { display: inline-block; width: 100%; color: rgb(255, 255, 255); background-color: #3bc492; padding: 5px; text-align: center; text-transform: uppercase; } .event-list > li:nth-child(even) > time { background-color: #3bc492; } .event-list > li > time > span { display: none; } .event-list > li > time > .day { display: block; font-size: 24pt; font-weight: 100; line-height: 1; } .event-list > li time > .month { display: block; font-size: 24pt; font-weight: 500; line-height: 1; } .event-list > li > img { width: 100%; } .event-list > li > .info { padding-top: 5px; text-align: center; } .event-list > li > .info > .title { font-size: 17pt; font-weight: 700; margin: 0px; } .event-list > li > .info > .desc { font-size: 13pt; font-weight: 300; margin: 0px; } .event-list > li > .info > ul, .event-list > li > .social > ul { display: table; list-style: none; margin: 10px 0px 0px; padding: 0px; width: 100%; text-align: center; } .event-list > li > .social > ul { margin: 0px; } .event-list > li > .info > ul > li, .event-list > li > .social > ul > li { display: table-cell; cursor: pointer; color: rgb(30, 30, 30); font-size: 11pt; font-weight: 300; padding: 3px 0px; } .event-list > li > .info > ul > li > a { display: block; width: 100%; color: rgb(30, 30, 30); text-decoration: none; } .event-list > li > .social > ul > li { padding: 0px; } .event-list > li > .social > ul > li > a { padding: 3px 0px; } .event-list > li > .info > ul > li:hover, .event-list > li > .social > ul > li:hover { color: rgb(30, 30, 30); background-color: rgb(200, 200, 200); } .facebook a, .twitter a, .google-plus a { display: block; width: 100%; color: rgb(75, 110, 168) !important; } .twitter a { color: rgb(79, 213, 248) !important; } .google-plus a { color: rgb(221, 75, 57) !important; } .facebook:hover a { color: rgb(255, 255, 255) !important; background-color: rgb(75, 110, 168) !important; } .twitter:hover a { color: rgb(255, 255, 255) !important; background-color: rgb(79, 213, 248) !important; } .google-plus:hover a { color: rgb(255, 255, 255) !important; background-color: rgb(221, 75, 57) !important; } @media (min-width: 768px) { .event-list > li { position: relative; display: block; width: 100%; height: 80px; padding: 0px; } .event-list > li > time, .event-list > li > img { display: inline-block; } .event-list > li > time, .event-list > li > img { width: 120px; float: left; } .event-list > li > .info { background-color: ##00000000; overflow: hidden; } .event-list > li > time, .event-list > li > img { width: 120px; height: 80px; padding: 0px; margin: 0px; } .event-list > li > .info { position: relative; height: 120px; text-align: left; padding-right: 40px; } .event-list > li > .info > .title, .event-list > li > .info > .desc { padding: 0px 10px; } .event-list > li > .info > ul { position: absolute; left: 0px; bottom: 0px; } .event-list > li > .social { position: absolute; top: 0px; right: 0px; display: block; width: 40px; } .event-list > li > .social > ul { border-left: 1px solid rgb(230, 230, 230); } .event-list > li > .social > ul > li { display: block; padding: 0px; } .event-list > li > .social > ul > li > a { display: block; width: 40px; padding: 10px 0px 9px; } } /*******************************/
assets/css/adminCopy.css
{ font-weight: normal; font-style: normal; } [class^="md-"], [class*=" md-"] { display: inline-block; font: normal normal normal 14px/1 'Material Design Iconic Font'; font-size: inherit; speak: none; text-rendering: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } input[type="text"],input[type="email"]{ height: 40px; } .bigSize { height: 40px; } /*/*media queries @media only screen and (max-width: 1004px) { .disappear { display:none; } .appear { display:none; } } @media only screen and (min-width : 768px) { .modals { width: 75px !important; height: 75px !important; font-size: 12px; } } .panel1_Mobile { padding-left: 1em; padding-right: 1em; border: solid 0.1em lightgrey; border-radius: 5px; background-color: #58987766; max-height: 600px; } .menubtn { color: #fff; background-color: #60a392; } .menubody { color: #fff; background-color: #60a3; } .text-centerr { text-align: center; } media queries*/ /* Custom, iPhone Retina @media only screen and (min-width : 320px) { .btn-sq-xs { width: 25px !important; height: 25px !important; padding:2px; } } */ /* Extra Small Devices, Phones @media only screen and (min-width : 480px) { .btn-sq-xs { width: 50px !important; height: 50px !important; font-size: 10px; } }*/ /* Small Devices, Tablets @media only screen and (min-width : 768px) { .btn-sq-sm { width: 75px !important; height: 75px !important; font-size: 12px; } }*/ /* Medium Devices, Desktops @media only screen and (min-width : 992px) { .btn-sq-md { width: 150px !important; height: 150px !important; padding-top: 2px; margin-bottom: 10px; } }*/ /* Large Devices, Wide Screens @media only screen and (min-width : 1200px) { .btn-sq-lg { width: 400px !important; height: 400px !important; padding-top: 2px; margin-bottom: 10px; } } */ .btnColours { background-color: #599877; color: #fff; } .side-margins{ padding-left: 0px; padding-right: 0px; } .top-margins{ padding-top: 2px; padding-right: 0px; } .md { line-height: inherit; vertical-align: bottom; } .md-inbox:before { content: "\f10c"; } .md-star:before { content: "\f2e5"; } .md-send:before { content: "\f119"; } .md-drafts:before { content: "\f107"; } .md-arrow-back:before { content: "\f297"; } .md-arrow-forward:before { content: "\f298"; } /*Sidebar*/ .sidebar-overlay { visibility: hidden; position: fixed; top: 0; left: 0; right: 0; bottom: 0; opacity: 0; background: #000; z-index: 1034; -webkit-transition: visibility 0 linear 0.4s, opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1); -moz-transition: visibility 0 linear 0.4s, opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1); transition: visibility 0 linear 0.4s, opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1); -webkit-transform: translateZ(0); -moz-transform: translateZ(0); -ms-transform: translateZ(0); -o-transform: translateZ(0); transform: translateZ(0); } .sidebar-overlay.active { opacity: 0.5; visibility: visible; -webkit-transition-delay: 0; -moz-transition-delay: 0; transition-delay: 0; } .top-bar { height: 25px; background: rgba(0, 0, 0, 0.1); } /* -- Google typography ------------------------------- */ .headline { font-size: 24px; font-weight: 300; line-height: 1.1; color: #212121; text-transform: inherit; letter-spacing: inherit; } .subhead { font-size: 16px; font-weight: 300; line-height: 1.1; color: #212121; text-transform: inherit; letter-spacing: inherit; } /* -- Bootstrap-like style ------------------------------- */ .caret { display: inline-block; width: 0; height: 0; margin-left: 2px; vertical-align: middle; border-top: 4px solid; border-right: 4px solid transparent; border-left: 4px solid transparent; } .dropdown-menu { display: none; } /* -- Constructor style ------------------------------- */ .constructor { position: relative; margin: 0; padding: 0 50px; -webkit-transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1); -o-transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1); transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1); } .sidebar, .wrapper { display: table-cell; vertical-align: top; } .sidebar-stacked.open + .wrapper .constructor { margin-left: 280px; } @media (max-width: 768px) { .sidebar-stacked.open + .wrapper .constructor { margin-left: 240px; } } /* -- Sidebar style ------------------------------- */ .sidebar { position: relative; display: block; min-height: 100%; overflow-y: auto; overflow-x: hidden; border: none; -webkit-transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1); -o-transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1); transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1); } .sidebar:before, .sidebar:after { content: " "; display: table; } .sidebar:after { clear: both; } .sidebar::-webkit-scrollbar-track { border-radius: 2px; } .sidebar::-webkit-scrollbar { width: 5px; background-color: #F7F7F7; } .sidebar::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); background-color: #BFBFBF; } .sidebar .sidebar-header { position: relative; height: 157.5px; margin-bottom: 8px; -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .sidebar .sidebar-header.header-cover { background-repeat: no-repeat; background-position: center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } .sidebar .sidebar-header:hover .sidebar-toggle { opacity: 1; } .sidebar .sidebar-toggle { position: relative; float: right; margin: 16px; padding: 0; background-image: none; border: none; height: 40px; width: 40px; font-size: 20px; opacity: 0.7; -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .sidebar .sidebar-toggle:before, .sidebar .sidebar-toggle:after { content: " "; display: table; } .sidebar .sidebar-toggle:after { clear: both; } .sidebar .icon-material-sidebar-arrow:before { content: "\e610"; } .sidebar .sidebar-image img { border-radius: 50%; -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .sidebar .sidebar-brand { position: absolute; bottom: 0; left: 0; right: 0; display: block; height: 48px; line-height: 48px; padding: 0; padding-left: 16px; padding-right: 56px; text-decoration: none; clear: both; font-weight: 500; overflow: hidden; -o-text-overflow: ellipsis; text-overflow: ellipsis; white-space: nowrap; -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .sidebar .sidebar-brand:hover, .sidebar .sidebar-brand:focus { -webkit-box-shadow: none; box-shadow: none; outline: none; } .sidebar .sidebar-brand .caret { position: absolute; right: 24px; top: 24px; } .sidebar .sidebar-brand .sidebar-badge { position: absolute; right: 16px; top: 12px; } .sidebar .sidebar-brand:hover, .sidebar .sidebar-brand:focus { text-decoration: none; } .sidebar .sidebar-badge { display: inline-block; min-width: 24px; height: 24px; line-height: 24px; padding: 0 3px; font-size: 10px; text-align: center; white-space: nowrap; vertical-align: baseline; } .sidebar .sidebar-badge.badge-circle { border-radius: 50%; } .sidebar .sidebar-divider, .sidebar .sidebar-nav .divider { position: relative; display: block; height: 1px; margin: 8px 0; padding: 0; overflow: hidden; } .sidebar .sidebar-text { display: block; height: 48px; line-height: 48px; padding: 0; padding-left: 16px; padding-right: 56px; text-decoration: none; clear: both; font-weight: 500; overflow: hidden; -o-text-overflow: ellipsis; text-overflow: ellipsis; white-space: nowrap; -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .sidebar .sidebar-text:hover, .sidebar .sidebar-text:focus { -webkit-box-shadow: none; box-shadow: none; outline: none; } .sidebar .sidebar-text .caret { position: absolute; right: 24px; top: 24px; } .sidebar .sidebar-text .sidebar-badge { position: absolute; right: 16px; top: 12px; } .sidebar .sidebar-icon { display: inline-block; margin-right: 16px; min-width: 40px; width: 40px; text-align: left; font-size: 20px; } .sidebar .sidebar-icon:before, .sidebar .sidebar-icon:after { vertical-align: middle; } .sidebar .sidebar-nav { margin: 0; padding: 0; } .sidebar .sidebar-nav li { position: relative; list-style-type: none; } .sidebar .sidebar-nav li a { position: relative; cursor: pointer; user-select: none; display: block; height: 48px; line-height: 48px; padding: 0; padding-left: 16px; padding-right: 56px; text-decoration: none; clear: both; font-weight: 500; overflow: hidden; -o-text-overflow: ellipsis; text-overflow: ellipsis; white-space: nowrap; -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .sidebar .sidebar-nav li a:hover, .sidebar .sidebar-nav li a:focus { -webkit-box-shadow: none; box-shadow: none; outline: none; } .sidebar .sidebar-nav li a .caret { position: absolute; right: 24px; top: 24px; } .sidebar .sidebar-nav li a .sidebar-badge { position: absolute; right: 16px; top: 12px; } .sidebar .sidebar-nav li a:hover { background: transparent; } .sidebar .sidebar-nav .dropdown-menu { position: relative; width: 100%; margin: 0; padding: 0; border: none; border-radius: 0; -webkit-box-shadow: none; box-shadow: none; } .sidebar-default { background-color: #ffffff; } .sidebar-default .sidebar-header { background-color: #eceff1; } .sidebar-default .sidebar-toggle { color: #212121; background-color: transparent; } .sidebar-default .sidebar-brand { color: #757575; background-color: transparent; } .sidebar-default .sidebar-brand:hover, .sidebar-default .sidebar-brand:focus { color: #212121; background-color: rgba(0, 0, 0, 0.1); } .sidebar-default .sidebar-badge { color: #ffffff; background-color: #bdbdbd; } .sidebar-default .sidebar-divider, .sidebar-default .sidebar-nav .divider { background-color: #bdbdbd; } .sidebar-default .sidebar-text { color: #212121; } .sidebar-default .sidebar-nav li > a { color: #212121; background-color: transparent; } .sidebar-default .sidebar-nav li > a i { color: #757575; } .sidebar-default .sidebar-nav li:hover > a, .sidebar-default .sidebar-nav li > a:hover { color: #212121; background-color: #e0e0e0; } .sidebar-default .sidebar-nav li:hover > a i, .sidebar-default .sidebar-nav li > a:hover i { color: #757575; } .sidebar-default .sidebar-nav li:focus > a, .sidebar-default .sidebar-nav li > a:focus { color: #212121; background-color: transparent; } .sidebar-default .sidebar-nav li:focus > a i, .sidebar-default .sidebar-nav li > a:focus i { color: #757575; } .sidebar-default .sidebar-nav > .open > a, .sidebar-default .sidebar-nav > .open > a:hover, .sidebar-default .sidebar-nav > .open > a:focus { color: #212121; background-color: #e0e0e0; } .sidebar-default .sidebar-nav > .active > a, .sidebar-default .sidebar-nav > .active > a:hover, .sidebar-default .sidebar-nav > .active > a:focus { color: #212121; background-color: #e0e0e0; } .sidebar-default .sidebar-nav > .disabled > a, .sidebar-default .sidebar-nav > .disabled > a:hover, .sidebar-default .sidebar-nav > .disabled > a:focus { color: #e0e0e0; background-color: transparent; } .sidebar-default .sidebar-nav > .dropdown > .dropdown-menu { background-color: #e0e0e0; } .sidebar-default .sidebar-nav > .dropdown > .dropdown-menu > li > a:focus { background-color: #e0e0e0; color: #212121; } .sidebar-default .sidebar-nav > .dropdown > .dropdown-menu > li > a:hover { background-color: #cecece; color: #212121; } .sidebar-default .sidebar-nav > .dropdown > .dropdown-menu > .active > a, .sidebar-default .sidebar-nav > .dropdown > .dropdown-menu > .active > a:hover, .sidebar-default .sidebar-nav > .dropdown > .dropdown-menu > .active > a:focus { color: #212121; background-color: #e0e0e0; } .sidebar-inverse { background-color: #212121; } .sidebar-inverse .sidebar-header { background-color: #eceff1; } .sidebar-inverse .sidebar-toggle { color: #212121; background-color: transparent; } .sidebar-inverse .sidebar-brand { color: #757575; background-color: transparent; } .sidebar-inverse .sidebar-brand:hover, .sidebar-inverse .sidebar-brand:focus { color: #212121; background-color: rgba(0, 0, 0, 0.1); } .sidebar-inverse .sidebar-badge { color: #212121; background-color: #e0e0e0; } .sidebar-inverse .sidebar-divider, .sidebar-inverse .sidebar-nav .divider { background-color: #bdbdbd; } .sidebar-inverse .sidebar-text { color: #f5f5f5; } .sidebar-inverse .sidebar-nav li > a { color: #f5f5f5; background-color: transparent; } .sidebar-inverse .sidebar-nav li > a i { color: #bdbdbd; } .sidebar-inverse .sidebar-nav li:hover > a, .sidebar-inverse .sidebar-nav li > a:hover { color: #bdbdbd; background-color: #000000; } .sidebar-inverse .sidebar-nav li:hover > a i, .sidebar-inverse .sidebar-nav li > a:hover i { color: #bdbdbd; } .sidebar-inverse .sidebar-nav li:focus > a, .sidebar-inverse .sidebar-nav li > a:focus { color: #f5f5f5; background-color: transparent; } .sidebar-inverse .sidebar-nav li:focus > a i, .sidebar-inverse .sidebar-nav li > a:focus i { color: #bdbdbd; } .sidebar-inverse .sidebar-nav > .open > a, .sidebar-inverse .sidebar-nav > .open > a:hover, .sidebar-inverse .sidebar-nav > .open > a:focus { color: #bdbdbd; background-color: #000000; } .sidebar-inverse .sidebar-nav > .active > a, .sidebar-inverse .sidebar-nav > .active > a:hover, .sidebar-inverse .sidebar-nav > .active > a:focus { color: #f5f5f5; background-color: #000000; } .sidebar-inverse .sidebar-nav > .disabled > a, .sidebar-inverse .sidebar-nav > .disabled > a:hover, .sidebar-inverse .sidebar-nav > .disabled > a:focus { color: #757575; background-color: transparent; } .sidebar-inverse .sidebar-nav > .dropdown > .dropdown-menu { background-color: #000000; } .sidebar-inverse .sidebar-nav > .dropdown > .dropdown-menu > li > a:focus { background-color: #000000; color: #bdbdbd; } .sidebar-inverse .sidebar-nav > .dropdown > .dropdown-menu > li > a:hover { background-color: #000000; color: #bdbdbd; } .sidebar-inverse .sidebar-nav > .dropdown > .dropdown-menu > .active > a, .sidebar-inverse .sidebar-nav > .dropdown > .dropdown-menu > .active > a:hover, .sidebar-inverse .sidebar-nav > .dropdown > .dropdown-menu > .active > a:focus { color: #f5f5f5; background-color: #000000; } .sidebar-colored { background-color: #ffffff; } .sidebar-colored .sidebar-header { background-color: #e91e63; } .sidebar-colored .sidebar-toggle { color: #f5f5f5; background-color: transparent; } .sidebar-colored .sidebar-brand { color: #e0e0e0; background-color: transparent; } .sidebar-colored .sidebar-brand:hover, .sidebar-colored .sidebar-brand:focus { color: #f5f5f5; background-color: rgba(0, 0, 0, 0.1); } .sidebar-colored .sidebar-badge { color: #ffffff; background-color: #ec407a; } .sidebar-colored .sidebar-divider, .sidebar-colored .sidebar-nav .divider { background-color: #bdbdbd; } .sidebar-colored .sidebar-text { color: #212121; } .sidebar-colored .sidebar-nav li > a { color: #212121; background-color: transparent; } .sidebar-colored .sidebar-nav li > a i { color: #757575; } .sidebar-colored .sidebar-nav li:hover > a, .sidebar-colored .sidebar-nav li > a:hover { color: #e91e63; background-color: #e0e0e0; } .sidebar-colored .sidebar-nav li:hover > a i, .sidebar-colored .sidebar-nav li > a:hover i { color: #f06292; } .sidebar-colored .sidebar-nav li:focus > a, .sidebar-colored .sidebar-nav li > a:focus { color: #212121; background-color: transparent; } .sidebar-colored .sidebar-nav li:focus > a i, .sidebar-colored .sidebar-nav li > a:focus i { color: #f06292; } .sidebar-colored .sidebar-nav > .open > a, .sidebar-colored .sidebar-nav > .open > a:hover, .sidebar-colored .sidebar-nav > .open > a:focus { color: #e91e63; background-color: #e0e0e0; } .sidebar-colored .sidebar-nav > .active > a, .sidebar-colored .sidebar-nav > .active > a:hover, .sidebar-colored .sidebar-nav > .active > a:focus { color: #212121; background-color: #f5f5f5; } .sidebar-colored .sidebar-nav > .disabled > a, .sidebar-colored .sidebar-nav > .disabled > a:hover, .sidebar-colored .sidebar-nav > .disabled > a:focus { color: #e0e0e0; background-color: transparent; } .sidebar-colored .sidebar-nav > .dropdown > .dropdown-menu { background-color: #e0e0e0; } .sidebar-colored .sidebar-nav > .dropdown > .dropdown-menu > li > a:focus { background-color: #e0e0e0; color: #e91e63; } .sidebar-colored .sidebar-nav > .dropdown > .dropdown-menu > li > a:hover { background-color: #cecece; color: #e91e63; } .sidebar-colored .sidebar-nav > .dropdown > .dropdown-menu > .active > a, .sidebar-colored .sidebar-nav > .dropdown > .dropdown-menu > .active > a:hover, .sidebar-colored .sidebar-nav > .dropdown > .dropdown-menu > .active > a:focus { color: #212121; background-color: #f5f5f5; } .sidebar-colored-inverse { background-color: #e91e63; } .sidebar-colored-inverse .sidebar-header { background-color: #eceff1; } .sidebar-colored-inverse .sidebar-toggle { color: #212121; background-color: transparent; } .sidebar-colored-inverse .sidebar-brand { color: #757575; background-color: transparent; } .sidebar-colored-inverse .sidebar-brand:hover, .sidebar-colored-inverse .sidebar-brand:focus { color: #212121; background-color: rgba(0, 0, 0, 0.1); } .sidebar-colored-inverse .sidebar-badge { color: #212121; background-color: #e0e0e0; } .sidebar-colored-inverse .sidebar-divider, .sidebar-colored-inverse .sidebar-nav .divider { background-color: #bdbdbd; } .sidebar-colored-inverse .sidebar-text { color: #e0e0e0; } .sidebar-colored-inverse .sidebar-nav li > a { color: #f5f5f5; background-color: transparent; } .sidebar-colored-inverse .sidebar-nav li > a i { color: #e0e0e0; } .sidebar-colored-inverse .sidebar-nav li:hover > a, .sidebar-colored-inverse .sidebar-nav li > a:hover { color: #f5f5f5; background-color: rgba(0, 0, 0, 0.1); } .sidebar-colored-inverse .sidebar-nav li:hover > a i, .sidebar-colored-inverse .sidebar-nav li > a:hover i { color: #f5f5f5; } .sidebar-colored-inverse .sidebar-nav li:focus > a, .sidebar-colored-inverse .sidebar-nav li > a:focus { color: #f5f5f5; background-color: transparent; } .sidebar-colored-inverse .sidebar-nav li:focus > a i, .sidebar-colored-inverse .sidebar-nav li > a:focus i { color: #f5f5f5; } .sidebar-colored-inverse .sidebar-nav > .open > a, .sidebar-colored-inverse .sidebar-nav > .open > a:hover, .sidebar-colored-inverse .sidebar-nav > .open > a:focus { color: #f5f5f5; background-color: rgba(0, 0, 0, 0.1); } .sidebar-colored-inverse .sidebar-nav > .active > a, .sidebar-colored-inverse .sidebar-nav > .active > a:hover, .sidebar-colored-inverse .sidebar-nav > .active > a:focus { color: #f5f5f5; background-color: rgba(0, 0, 0, 0.2); } .sidebar-colored-inverse .sidebar-nav > .disabled > a, .sidebar-colored-inverse .sidebar-nav > .disabled > a:hover, .sidebar-colored-inverse .sidebar-nav > .disabled > a:focus { color: #bdbdbd; background-color: transparent; } .sidebar-colored-inverse .sidebar-nav > .dropdown > .dropdown-menu { background-color: rgba(0, 0, 0, 0.1); } .sidebar-colored-inverse .sidebar-nav > .dropdown > .dropdown-menu > li > a:focus { background-color: rgba(0, 0, 0, 0.1); color: #f5f5f5; } .sidebar-colored-inverse .sidebar-nav > .dropdown > .dropdown-menu > li > a:hover { background-color: rgba(0, 0, 0, 0.1); color: #f5f5f5; } .sidebar-colored-inverse .sidebar-nav > .dropdown > .dropdown-menu > .active > a, .sidebar-colored-inverse .sidebar-nav > .dropdown > .dropdown-menu > .active > a:hover, .sidebar-colored-inverse .sidebar-nav > .dropdown > .dropdown-menu > .active > a:focus { color: #f5f5f5; background-color: rgba(0, 0, 0, 0.2); } .sidebar { width: 0; -webkit-transform: translate3d(-280px, 0, 0); transform: translate3d(-280px, 0, 0); } .sidebar.open { min-width: 280px; width: 280px; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); background-color:#fff; height: 620px; border-bottom-left-radius:10px; border-bottom-right-radius:10px; } .sidebar-fixed-left, .sidebar-fixed-right, .sidebar-stacked { position: fixed; top: 0; bottom: 0; z-index: 1035; } .sidebar-stacked { left: 0; } .sidebar-fixed-left { left: 0; box-shadow: 2px 0px 15px rgba(0, 0, 0, 0.35); -webkit-box-shadow: 2px 0px 15px rgba(0, 0, 0, 0.35); } .sidebar-fixed-right { right: 0; box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.35); -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.35); -webkit-transform: translate3d(280px, 0, 0); transform: translate3d(280px, 0, 0); } .sidebar-fixed-right.open { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } .sidebar-fixed-right .icon-material-sidebar-arrow:before { content: "\e614"; } @media (max-width: 768px) { .sidebar.open { min-width: 240px; width: 240px; } .sidebar .sidebar-header { height: 135px; } .sidebar .sidebar-image img { width: 44px; height: 44px; } } /*end of sidebar*/ .shift2Right { margin-left: 27px; } .shift2RightUsers { margin-left: 20px; } /*Teacher List*/ .glyphicon-lg { font-size:4em } .info-block { border-right:5px solid #E6E6E6;margin-bottom:25px } .info-block .square-box { width:100px;min-height:110px;margin-right:22px;text-align:center!important;background-color:#676767;padding:20px 0 } .info-block.block-info { border-color:#579876; } .info-block.block-info .square-box { background-color:#58987700;color:#FFF; } .m-progress { margin-top: -50px; margin-right:5px; width: 50px; height: 32px; background-color:#36736a; border-color: #36736a; color:#fff; } .btn-progress { margin-top:-40px; margin-right:5px; width: 50px; height: 32px; background-color:#60a392; border-color: #60a392; color:#fff; } .btn-progress1 { margin-top:-55px; margin-right:-10px; width: 50px; height: 32px; background-color:#60a392; border-color: #60a392; color:#fff; } .presentation1 { color:#579876; } .presentation2 { color:#ea2803; } /*End of Teacher list*/ .card-container.card { max-width: 350px; padding: 40px 40px; margin-top: 0px; } .card { background-color: #F7F7F7; /* just in case there no content*/ padding: 20px 25px 30px; margin: 0 auto 25px; margin-top: 50px; /* shadows and rounded borders */ -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3); -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3); box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3); } .profile-img-card { width: 96px; height: 96px; margin: 0 auto 10px; display: block; -moz-border-radius: 50%; -webkit-border-radius: 50%; border-radius: 50%; } /* * Form styles */ .profile-name-card { font-size: 16px; font-weight: bold; text-align: center; margin: 10px 0 0; min-height: 1em; } .reauth-email { display: block; color: #404040; line-height: 2; margin-bottom: 10px; font-size: 14px; text-align: center; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } .form-signin #inputEmail, .form-signin #inputPassword { direction: ltr; height: 44px; font-size: 16px; } .form-signin input[type=email], .form-signin input[type=password], .form-signin input[type=text], .form-signin button { width: 100%; display: block; margin-bottom: 10px; z-index: 1; position: relative; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } .form-signin .form-control:focus { border-color: rgb(104, 145, 162); outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgb(104, 145, 162); box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgb(104, 145, 162); } .btn.btn-signin { /*background-color: #4d90fe; */ background-color: rgb(59, 196, 146); /* background-color: linear-gradient(rgb(104, 145, 162), rgb(12, 97, 33));*/ padding: 0px; font-weight: 700; font-size: 14px; height: 36px; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; border: none; -o-transition: all 0.218s; -moz-transition: all 0.218s; -webkit-transition: all 0.218s; transition: all 0.218s; } .btn.btn-signin:hover, .btn.btn-signin:active, .btn.btn-signin:focus { background-color: rgb(12, 97, 33); } .forgot-password { color: rgb(104, 145, 162); } .forgot-password:hover, .forgot-password:active, .forgot-password:focus{ color: rgb(12, 97, 33); } /*background image style*/ .backgroundColour { /*background: #eee url(../images/xv.png);*/ background: #E8E8E8 url(../images/background2.png); } /*Overriding style*/ .listBottom { margin-bottom:0px; } .list-group-item { padding-left: 0px; } /*Overriding style*/ .backup { margin-right:20px; } .platform{ margin-top:-3px; margin-bottom:-3px; } .multiSel { width:772px; margin-left:182px; } .addLearner { margin-top:10px; padding-top:20px; width:100%; } /*Manage Academy Stylesheet*/ h1, h2, h3, h4, h5, h6 { line-height: 1.5em; font-weight: 300; } strong { font-weight: 600; } strong { font-weight: 400; } .tile { width: 100%; display: inline-block; box-sizing: border-box; background: #fff; padding: 20px; margin-bottom: 30px; } .tile .title { margin-top: 0px; } .tile.purple, .tile.blue, .tile.red, .tile.orange, .tile.green,.tile.pink { color: #fff; } .tile.purple { background: #579876; } .tile.purple:hover { background: #3e2784; } .tile.red { background: #579876; } .tile.red:hover { background: #7f132d; } .tile.green { background: #579876; } .tile.green:hover { background: #007300; } .tile.blue { background: #579876; } .tile.blue:hover { background: #125acd; } .tile.pink { background: #579876; } .tile.pink:hover { background:#FD8AA6; } .tile.orange { background: #579876; } .tile.orange:hover { background: #b8431f; } /*Subjects Table*/ .panel-table .panel-body{ padding:0; } .panel-table .panel-body .table-bordered{ border-style: none; margin:0; } .panel-table .panel-body .table-bordered > thead > tr > th:first-of-type { text-align:center; width: 100px; } .panel-table .panel-body .table-bordered > thead > tr > th:last-of-type, .panel-table .panel-body .table-bordered > tbody > tr > td:last-of-type { border-right: 0px; } .panel-table .panel-body .table-bordered > thead > tr > th:first-of-type, .panel-table .panel-body .table-bordered > tbody > tr > td:first-of-type { border-left: 0px; } .panel-table .panel-body .table-bordered > tbody > tr:first-of-type > td{ border-bottom: 0px; } .panel-table .panel-body .table-bordered > thead > tr:first-of-type > th{ border-top: 0px; } .panel-table .panel-footer .pagination{ margin:0; } /* used to vertically center elements, may need modification if you're not using default sizes. */ .panel-table .panel-footer .col{ line-height: 34px; height: 34px; } .panel-table .panel-heading .col h3{ line-height: 30px; height: 30px; } .panel-table .panel-body .table-bordered > tbody > tr > td{ line-height: 34px; } .subjectButton() { margin-top:1000px; } .backgroundColour1 { margin-top:-3px; background: #eee url(../images/background2.png); } .tableBackground { width:900px; background-color:#F5F5F5; } /*End Subjects Table*/ /*End of Manage Academy Stylesheet*/ /*To do list Stylesheet*/ .form{ background: #ffffff; width:10%; padding:60px; margin:50px auto; border-radius:4px; box-shadow:0px 0px 10px #ddd; text-align:center; min-width:300px; margin-top:-630px; } #result{ display:none; box-shadow:0px 0px 10px #ddd; margin:20px auto; overflow:hidden; background: #fff; } .goAway{ position:absolute; right:20px; top:12px; background: #3bc492;; border:1px solid #ddd; padding:8px 14px; border-radius:12px; color: #fff; } #input{ width:100%; padding:15px 20px; border:1px solid #d6d6d6; border-radius:25px; font-size:13px; max-width:600px; margin:auto; text-align:center; outline:none; } #input::placeholder{ color:#999; } #button{ width:100%; background: #3bc492; color: #fff; margin:10px auto; border:none; height:45px; font-size:1em; border-radius:20px; max-width:600px; padding-top:4px; font-weight:bold; outline:none; cursor:pointer; } /*End of To do list Stylesheet*/ /*Select box Stylesheet*/ .ddlSize { width: 772px; margin-left: 183px; } /*End of Select box Stylesheet*/ /*Form Wizard*/ .form-box { padding-top: 40px; padding-bottom: 40px; filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ea5804', endColorstr='#ea5804',GradientType=0 ); /* IE6-9 */ } .form-wizard { padding: 25px; background: #fff; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; box-shadow: 0px 0px 6px 3px #777; font-family: 'Roboto', sans-serif; font-size: 16px; font-weight: 300; color: #888; line-height: 30px; text-align: center; } .form-wizard strong { font-weight: 500; } .form-wizard a, .form-wizard a:hover, .form-wizard a:focus { color: #ea2803; text-decoration: none; -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s; } .form-wizard h1, .form-wizard h2 { margin-top: 10px; font-size: 38px; font-weight: 100; color: #555; line-height: 50px; } .form-wizard h3 { font-size: 25px; font-weight: 300; color: #ea2803; line-height: 30px; margin-top: 0; margin-bottom: 5px; text-transform: uppercase; } .form-wizard h4 { float:left; font-size: 20px; font-weight: 300; color: #ea2803; line-height: 26px; width:100%; } .form-wizard h4 span{ float:right; font-size: 18px; font-weight: 300; color: #555; line-height: 26px; } .form-wizard table tr th{font-weight:normal;} .form-wizard img { max-width: 100%; } .form-wizard ::-moz-selection { background: #ea2803; color: #fff; text-shadow: none; } .form-wizard ::selection { background: #ea2803; color: #fff; text-shadow: none; } /*.form-controal { height: 44px; width:100%; margin: 0; padding: 0 20px; vertical-align: middle; background: #fff; border: 1px solid #ddd; font-family: 'Roboto', sans-serif; font-size: 16px; font-weight: 300; line-height: 44px; color: #888; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s; } .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"], .radio input[type="radio"], .radio-inline input[type="radio"] { position: absolute; margin-top: 9px; margin-left: -20px; } .form-control option:hover, .form-control option:checked { box-shadow: 0 0 10px 100px #ea2803 inset; } .form-control:focus { outline: 0; background: #fff; border: 1px solid #ccc; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; } .form-control:-moz-placeholder { color: #888; } .form-control:-ms-input-placeholder { color: #888; } .form-control::-webkit-input-placeholder { color: #888; }*/ .form-wizard label { font-weight: 300; } .form-wizard label span { color:#ea2803; } .form-wizard .btn { min-width: 105px; height: 40px; margin: 0; padding: 0 20px; vertical-align: middle; border: 0; font-family: 'Roboto', sans-serif; font-size: 16px; font-weight: 300; line-height: 40px; color: #fff; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; text-shadow: none; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s; } .form-wizard .btn:hover { background:#f34727; color: #fff; } .form-wizard .btn:active { outline: 0; background:#f34727; color: #fff; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; } .form-wizard .btn:focus, .form-wizard .btn:active:focus, .form-wizard .btn.active:focus { outline: 0; background:#f34727; color: #fff; } .form-wizard .btn.btn-next, .form-wizard .btn.btn-next:focus, .form-wizard .btn.btn-next:active:focus, .form-wizard .btn.btn-next.active:focus { background: #ea2803; } .form-wizard .btn.btn-submit, .form-wizard .btn.btn-submit:focus, .form-wizard .btn.btn-submit:active:focus, .form-wizard .btn.btn-submit.active:focus { background: #ea2803; } .form-wizard .btn.btn-previous, .form-wizard .btn.btn-previous:focus, .form-wizard .btn.btn-previous:active:focus, .form-wizard .btn.btn-previous.active:focus { background: #bbb; } .btn-cancel { background: #ea2803; } .form-wizard .success h3{ color: #4F8A10; text-align: center; margin: 20px auto !important; } .form-wizard .success .success-icon { color: #4F8A10; font-size: 100px; border: 5px solid #4F8A10; border-radius: 100px; text-align: center !important; width: 110px; margin: 25px auto; } .form-wizard .progress-bar { background-color: #ea2803; } .form-wizard-steps{ margin:auto; overflow: hidden; position: relative; margin-top: 20px; } .form-wizard-step{ padding-top:10px !important; border:2px solid #fff; background:#ccc; -ms-transform: skewX(-30deg); /* IE 9 */ -webkit-transform: skewX(-30deg); /* Safari */ transform: skewX(-30deg); /* Standard syntax */ } .form-wizard-step.active{ background:#579876; } .form-wizard-step.activated{ background:#ea2803; } .form-wizard-progress { position: absolute; top: 36px; left: 0; width: 100%; height: 0px; background: #ea2803; } .form-wizard-progress-line { position: absolute; top: 0; left: 0; height: 0px; background: #ea2803; } .form-wizard-tolal-steps-3 .form-wizard-step { position: relative; float: left; width: 33.33%; padding: 0 5px; } .form-wizard-tolal-steps-4 .form-wizard-step { position: relative; float: left; width: 25%; padding: 0 5px; } .form-wizard-tolal-steps-5 .form-wizard-step { position: relative; float: left; width: 20%; padding: 0 5px; } .movebtns { margin-left: 220px; } .form-wizard-step-icon { display: inline-block; width: 40px; height: 40px; margin-top: 4px; background: #ddd; font-size: 16px; color: #777; line-height: 40px; -moz-border-radius: 50%; -webkit-border-radius: 50%; border-radius: 50%; -ms-transform: skewX(30deg); /* IE 9 */ -webkit-transform: skewX(30deg); /* Safari */ transform: skewX(30deg); /* Standard syntax */ } .form-wizard-step.activated .form-wizard-step-icon { background: #ea2803; border: 1px solid #fff; color: #fff; line-height: 38px; } .form-wizard-step.active .form-wizard-step-icon { background: #fff; border: 1px solid #fff; color: #ea2803; line-height: 38px; } .form-wizard-step p { color: #fff; -ms-transform: skewX(30deg); /* IE 9 */ -webkit-transform: skewX(30deg); /* Safari */ transform: skewX(30deg); /* Standard syntax */ } .form-wizard-step.activated p { color: #fff; } .form-wizard-step.active p { color: #fff; } .form-wizard fieldset { display: none; text-align: left; border:0px !important } .form-wizard-buttons { text-align: right; } .form-wizard .input-error { border-color: #ea2803;} /** image uploader **/ .image-upload a[data-action] { cursor: pointer; color: #555; font-size: 18px; line-height: 24px; transition: color 0.2s; } .image-upload a[data-action] i { width: 1.25em; text-align: center; } .image-upload a[data-action]:hover { color: #ea2803; } .image-upload a[data-action].disabled { opacity: 0.35; cursor: default; } .image-upload a[data-action].disabled:hover { color: #555; } .settings_wrap{ margin-top:20px; } .image_picker .settings_wrap { overflow: hidden; position: relative; } .image_picker .settings_wrap .drop_target, .image_picker .settings_wrap .settings_actions { float: left; } .image_picker .settings_wrap .drop_target { margin-right: 18px; } .image_picker .settings_wrap .settings_actions { float: left; margin-top: 100px; margin-left: 20px; } .settings_actions.vertical a { display: block; } .drop_target { position: relative; cursor: pointer; transition: all 0.2s; width: 250px; height: 250px; background: #f2f2f2; border-radius: 100%; margin: 0 auto 25px auto; overflow: hidden; border: 8px solid #E0E0E0; } .drop_target input[type="file"] { visibility: hidden; } .drop_target::before { content: 'Drop Hear'; font-family: FontAwesome; position: absolute; display: block; width: 100%; line-height: 220px; text-align: center; font-size: 40px; color: rgba(0, 0, 0, 0.3); transition: color 0.2s; } .drop_target:hover, .drop_target.dropping { background: #f80; border-top-color: #cc6d00; } .drop_target:hover:before, .drop_target.dropping:before { color: rgba(0, 0, 0, 0.6); } .drop_target .image_preview { width: 100%; height: 100%; background: no-repeat center; background-size: contain; position: relative; z-index: 2; } .noPaddingLeft { padding-left: 0px; } .noPaaddingRight { width:98.5%; } .removePadding { padding-left:0%; } .removePaddingRight { padding-right:0px; } #radioBtn .notActive{ color: #fff; background-color:#CCCCCC; } /*End Form Wizard*/ /***Assign Teacher button***/ .Class_Assign{ padding-bottom:4px; width:100px; margin-top:-95px; background-color: #579876; color:#fff; } /***Assign Teacher button***/ /*manageMessages style .manageInboxWidth{ max-width: 100%; }*/ /*end manageMessages style*/ /*admin inline styles*/ .achors { color:#696969; } .titles { text-align:center; color:#808080;" } .foot { color:#fff; } .wiz { width: 12.25%;" } .display { display: none; } .mTitle { padding-left: 30px; } .profileNames { color:#00b1b1; } .adminIcons { width: 100px; } .dropdownPadding { padding:0px; background-color: #dff0d8; } /*end of admin inline styles*/ /**/ .panel1 { width: 25%; /*margin-top:-624px;*/ padding-left: 1em; padding-right: 1em; border: solid 0.1em lightgrey; border-radius: 5px; background-color:#58987766; max-height:600px; } .panel1 .panel-header { text-align: center; } .panel1 li { background: lightgrey; } .panel1 li:hover { background: red; } .controls { text-align: center; margin: auto; } .input { border-radius: 15px; margin: auto; } .submit { margin: 5px auto 5px auto; text-align: center; width: 100px; color: #ffffff; font-size: 15px; background: #589876; padding: 5px 20px 5px 20px; } .submit:hover { background: #3bc492; cursor: pointer; cursor: hand; } .delete { display: inline-block; color: red; margin: 3px; padding: 2px; } .delete:hover { background: lightgrey; border-radius: 5px; cursor: pointer; cursor: hand; } .todoList { margin: 5px; } .complete { display: inline-block; color: green; margin: 3px; padding: 2px; } .complete:hover { background: lightgrey; border-radius: 5px; cursor: pointer; cursor: hand; } .completed { text-decoration: line-through; } .todoItem { margin: auto; margin-top: 5px; width: 100%; border: solid 1px #589877; border-radius: 10px; padding: 5px; } .todoItemText { display: inline-block; margin: 5px; } .itemControls { float: right; } .stats { text-align: center; } .tboxTodoItem { -moz-border-radius: 15px; border-radius: 5px; border: solid 1px lightgrey; padding: 5px; } .sTaskDescriptioen { width: 100%; } /**/ .hov { -webkit-transform: scale(1, 1); -ms-transform: scale(1, 1); transform: scale(1, 1); transition-duration: 0.3s; -webkit-transition-duration: 0.3s; /* Safari */ } .hov:hover{ cursor: pointer; -webkit-transform: scale(1.1, 1.1); -ms-transform: scale(1.1, 1.1); transform: scale(1.1, 1.1); transition-duration: 0.3s; -webkit-transition-duration: 0.3s; /* Safari */ box-shadow: 10px 10px 5px #888888; z-index: 1; color: #fff; background-color: #3bc492; } .error_msgs{ margin-top:-66px; margin-right:350px; } .alert-succes{ color:#fff; background-color: #19C856; } .colorStrike { color:red; } .spanStrike { color: #55555; } .hidden { display: none; } /**/ .results tr[visible='false'], .no-result { display: none; } .results tr[visible='true'] { display: table-row; } .searchCount { padding: 8px; color: #55555; } .backgroundColors { background-color:#F5F5F5; } .learnerGlyph { color:#589877; } /*pagination style*/ .current { background-color: #589877; color: #fff; } #pagin li { display: inline-block; } #pagin a { color:#A9A9A9; float: left; padding: 8px 16px; text-decoration: none; border: 1px solid #ddd; } #pagin a:hover:not(.active) {background-color: #589877; color:#fff;} #pagin a:first-child { border-top-left-radius: 5px; border-bottom-left-radius: 5px; } #pagin a:last-child { border-top-right-radius: 5px; border-bottom-right-radius: 5px; } /*end of pagination style*/ .addressStyling { border: 1px solid lightgrey; padding-top: 15px; padding-left: 10px; /*padding-bottom: 20px; padding-right: 20px;margin-left: 162px;*/ margin-bottom: 10px; } /* /*reactivate user alert style*/ .alert-actives { color:#fff; background-color:#3bc492; } /**/ /*TeacherList Modal Style*/ .modStyle { background-color:#3bc492; } .modBstyle { background-color:#58987766; } /*TeacherList Modal Style*/ /*ManageUsers button style*/ .btn-recycle { margin-top:-70px; } .btn-drop { margin-top: -55px; margin-right:100px; } /*End of ManageUsers button style*/ /*********Lists images***********/ .listImg{ width:80px; height:80px; border-radius: 50%; border:1px solid green; transition: transform .2s; } .userImg{ width:30px; height:30px; border-radius: 50%; border:1px solid green; transition: transform .2s } .userImg:hover { transform: scale(3); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */ } /********End of list images************/ /********Manage Users buttons************/ .btn-btnColors { background-color:#5cb8a6; border-color: #5cb8a6; color:#fff; } .mov { height: 50px;width: 50px; margin-top: -18px; margin-left:-10px; color:#5cb8a6; } .unread{ float: right; background: #e74c3c; width: 2em; border-radius: 50%; font-size: 0.75em; line-height: 2; text-align: center; animation: notificationpulse 0.5s infinite; -webkit-animation: notificationpulse 0.8s infinite; -moz-animation: notificationpulse 10s infinite; } /*the animations */ @keyframes notificationpulse { 0% { box-shadow: 0 0 0 0.00em #c0392b; } 25% { box-shadow: 0 0 0 0.25em #c0392b; } 50% { box-shadow: 0 0 0 0.50em #c0392b; } 75% { box-shadow: 0 0 0 0.25em #c0392b; } 100% { box-shadow: 0 0 0 0.15em #c0392b; } } @-webkit-keyframes notificationpulse { 0% { box-shadow: 0 0 0 0.00em #c0392b; } 25% { box-shadow: 0 0 0 0.25em #c0392b; } 50% { box-shadow: 0 0 0 0.50em #c0392b; } 75% { box-shadow: 0 0 0 0.25em #c0392b; } 100% { box-shadow: 0 0 0 0.15em #c0392b; } } @-moz-keyframes notificationpulse { 0% { box-shadow: 0 0 0 0.00em #c0392b; } 25% { box-shadow: 0 0 0 0.25em #c0392b; } 50% { box-shadow: 0 0 0 0.50em #c0392b; } 75% { box-shadow: 0 0 0 0.25em #c0392b; } 100% { box-shadow: 0 0 0 0.15em #c0392b; } } /********End of Manage Users buttons************/ /********Dropdown Menu************/ .btn.dropdown-toggle ~ .dropdown-menu, ul.nav li.dropdown ul.dropdown-menu { background-color: rgb(244, 244, 244); background-color: rgb(255, 255, 255); border: 0 solid rgb(66, 133, 244); box-shadow: 0px 0px 3px rgba(25, 25, 25, 0.3); top: 0px; margin: 0px; padding: 0px; } ul.nav li.dropdown ul.dropdown-menu { position: absolute; width: 100%; } .dropdown-menu .dropdown-plus-title { width: 100%; color: rgb(51, 51, 51); padding: 6px 12px; font-weight: 800; border: 0 solid rgb(76, 174, 76); border-bottom-width: 2px; cursor: pointer; } ul.nav li.dropdown ul.dropdown-menu .dropdown-plus-title { padding-top: 10px; padding-bottom: 10px; line-height: 20px; } .btn.dropdown-toggle.btn-success ~ .dropdown-menu .dropdown-plus-title { border-color: rgb(76, 174, 76); } @media (min-width: 768px) { ul.nav li.dropdown ul.dropdown-menu .dropdown-plus-title { padding-top: 15px; padding-bottom: 15px; } } @media (min-width: 768px) { ul.nav li.dropdown ul.dropdown-menu { width: auto; } } .navbar-inverse .navbar-nav>.open>a, .navbar-inverse .navbar-nav>.open>a:focus, .navbar-inverse .navbar-nav>.open>a:hover { background-color:#589877; } /********End of Dropdown Menu************/ /********mobile size button************/ .pull_down { margin-top:30px; } /********End of mobile size button************/ /********Tumza************/ .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form { border-color: #ffffff; } .navbar-inverse .navbar-toggle { border-color: #d5ead8; } .navbar-inverse .navbar-toggle:focus, .navbar-inverse .navbar-toggle:hover { background-color: #589877; } @media (max-width: 767px){ .navbar-inverse .navbar-nav .open .dropdown-menu>li>a { color: #d5ead8; }} /********Tumza************/ /* Custom, iPhone Retina */ @media only screen and (min-width : 320px) and (max-width : 767px) { .btn-sq-xs { width: 25px !important; height: 25px !important; padding:2px; } .body-margin { margin-left: 0px; margin-right:0px; } .body { padding-left: 0px; padding-right:0px; } .panel1 { width: 100%; } } /************* @media only screen and (min-width : 767px) and (max-width : 780px) { .panel1 { width: 50% } .panel-success>.panel-heading { color: #ffffff; background-color: #afc8bb; border-color: #d6e9c6; } #accordion { width: 400px; } /*************/ /* Extra Small Devices, Phones */ @media only screen and (min-width : 768px) and (max-width : 1023px){ .btn-sq-sm { width: 50px !important; height: 50px !important; font-size: 10px; } .body-margin { margin-left: 0px; margin-right:0px; padding-left: 0px; padding-right:0px; } .panel1 { width: 100% } .body { padding-left: 0px; padding-right:0px; } } /* Medium Devices, Desktops */ @media only screen and (min-width : 1024px) and (max-width : 1599px) { .btn-sq-md { width: 110px !important; height: 150px !important; padding-top: 2px; margin-bottom: 10px; border-radius: 20px; } .body-margin { margin-left: 100px; margin-right:100px; } .sidebar.open { height: 465px; width: 180px; min-width: 0px; } .adminIcons { width: 60px; } .panel1 { width: 26%; } .sidebar .sidebar-image img { margin-left: 60px; border: #afc8bb solid; } } /* Large Devices, Wide Screens */ @media only screen and (min-width : 1600px){ .btn-sq-lg { width: 230px !important; height: 200px !important; padding-top: 2px; margin-bottom: 10px; border-radius: 20px; } .body-margin { margin-left: 200px; margin-right:200px; } .panel1 { width: 30%; } } /*********************/ .event-list { list-style: none; font-family: 'Lato', sans-serif; margin-bottom:-30px; padding: 0px; } .event-list > li { background-color: rgb(255, 255, 255); box-shadow: 0px 0px 5px rgb(51, 51, 51); box-shadow: 0px 0px 5px rgba(51, 51, 51, 0.7); padding: 0px; margin: 0px 0px 20px; } .event-list > li > time { display: inline-block; width: 100%; color: rgb(255, 255, 255); background-color: #3bc492; padding: 5px; text-align: center; text-transform: uppercase; } .event-list > li:nth-child(even) > time { background-color: #3bc492; } .event-list > li > time > span { display: none; } .event-list > li > time > .day { display: block; font-size: 24pt; font-weight: 100; line-height: 1; } .event-list > li time > .month { display: block; font-size: 24pt; font-weight: 500; line-height: 1; } .event-list > li > img { width: 100%; } .event-list > li > .info { padding-top: 5px; text-align: center; } .event-list > li > .info > .title { font-size: 17pt; font-weight: 700; margin: 0px; } .event-list > li > .info > .desc { font-size: 13pt; font-weight: 300; margin: 0px; } .event-list > li > .info > ul, .event-list > li > .social > ul { display: table; list-style: none; margin: 10px 0px 0px; padding: 0px; width: 100%; text-align: center; } .event-list > li > .social > ul { margin: 0px; } .event-list > li > .info > ul > li, .event-list > li > .social > ul > li { display: table-cell; cursor: pointer; color: rgb(30, 30, 30); font-size: 11pt; font-weight: 300; padding: 3px 0px; } .event-list > li > .info > ul > li > a { display: block; width: 100%; color: rgb(30, 30, 30); text-decoration: none; } .event-list > li > .social > ul > li { padding: 0px; } .event-list > li > .social > ul > li > a { padding: 3px 0px; } .event-list > li > .info > ul > li:hover, .event-list > li > .social > ul > li:hover { color: rgb(30, 30, 30); background-color: rgb(200, 200, 200); } .facebook a, .twitter a, .google-plus a { display: block; width: 100%; color: rgb(75, 110, 168) !important; } .twitter a { color: rgb(79, 213, 248) !important; } .google-plus a { color: rgb(221, 75, 57) !important; } .facebook:hover a { color: rgb(255, 255, 255) !important; background-color: rgb(75, 110, 168) !important; } .twitter:hover a { color: rgb(255, 255, 255) !important; background-color: rgb(79, 213, 248) !important; } .google-plus:hover a { color: rgb(255, 255, 255) !important; background-color: rgb(221, 75, 57) !important; } @media (min-width: 768px) { .event-list > li { position: relative; display: block; width: 100%; height: 80px; padding: 0px; } .event-list > li > time, .event-list > li > img { display: inline-block; } .event-list > li > time, .event-list > li > img { width: 120px; float: left; } .event-list > li > .info { background-color: ##00000000; overflow: hidden; } .event-list > li > time, .event-list > li > img { width: 120px; height: 80px; padding: 0px; margin: 0px; } .event-list > li > .info { position: relative; height: 120px; text-align: left; padding-right: 40px; } .event-list > li > .info > .title, .event-list > li > .info > .desc { padding: 0px 10px; } .event-list > li > .info > ul { position: absolute; left: 0px; bottom: 0px; } .event-list > li > .social { position: absolute; top: 0px; right: 0px; display: block; width: 40px; } .event-list > li > .social > ul { border-left: 1px solid rgb(230, 230, 230); } .event-list > li > .social > ul > li { display: block; padding: 0px; } .event-list > li > .social > ul > li > a { display: block; width: 40px; padding: 10px 0px 9px; } } /*******************************/
0.359139
0.124107
@charset "UTF-8"; /* すべてのWebページに適用される */ body { margin: 0 0 0 0; padding: 0 0 0 0; background-color: #f5f3eb; } .wrapper{ margin: 0 auto 0 auto; width:1200px; font-family: 'ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif; } .here{ margin-left: 180px; } p { line-height: 160%; } a:link{ color: #6aa4d6; } a:visited{ color: #6aa4d6; } a:hover{ color: #4f7697; } a:active { color: #aed3f2; } img{ border-style: none; } /* すべてのページに適用 - navまわり - */ #nav li { display: inline; list-style-type: none; padding-right: 30px; } #nav { margin: 0 0 0 0; padding: 40px 30px 10px 30px; background-image: url(../images/menu-bg.png); } #nav li a:link{ color: #f5f3eb; text-decoration: none; } #nav li a:visited{ color: #f5f3eb; text-decoration: none; } #nav li a:hover{ color: #e4dbb9; text-decoration: none; } #nav li a:active { color: #ffffff; text-decoration: none; } /* すべてのページに適用 - fotter - */ #footer { background-image: url(../images/footer-bg.png); background-repeat: repeat-x; margin-top: 30px; padding:20px 0 20px 0; font-size: smaller; color: #442220; } /* メイントップ */ .top{ font-size:13px; width:auto; margin-right: auto; margin-left: 250px; margin-bottom: 1px; border:1px solid #442220; background-color: #FFFFFF; } /* メイン年表 */ table.table1 { margin-left: auto; margin-right: auto; width: auto; /* テーブルの横幅 */ border-collapse: collapse; /* 枠線の表示方法 */ border: 1px solid #1280da; /* テーブル全体の枠線(太さ・色・スタイル) */ background-color: #fffaf0; /* 背景色 */ text-align: center; table-layout: fixed; } table.table1 th, table.table1 td { padding: 3px 3px 3px 3px; border: 1px solid #d6c2b5; /* セルの枠線(太さ・色・スタイル) */ vertical-align: middle; } table.table1 th{ background-color: #c99e73; color: #442220; } table.table1 th.years,td.years{ background-color: #eee5df; width: auto; table-layout: fixed; } .miyapaku{ width:350px; } .mv{ color:#fa6666; } .an{ color:#9999fa; } .other{ font-size:13px; } .miyazaki { width:150px; } /* 個別のスタイルのデザイン */
style.css
@charset "UTF-8"; /* すべてのWebページに適用される */ body { margin: 0 0 0 0; padding: 0 0 0 0; background-color: #f5f3eb; } .wrapper{ margin: 0 auto 0 auto; width:1200px; font-family: 'ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif; } .here{ margin-left: 180px; } p { line-height: 160%; } a:link{ color: #6aa4d6; } a:visited{ color: #6aa4d6; } a:hover{ color: #4f7697; } a:active { color: #aed3f2; } img{ border-style: none; } /* すべてのページに適用 - navまわり - */ #nav li { display: inline; list-style-type: none; padding-right: 30px; } #nav { margin: 0 0 0 0; padding: 40px 30px 10px 30px; background-image: url(../images/menu-bg.png); } #nav li a:link{ color: #f5f3eb; text-decoration: none; } #nav li a:visited{ color: #f5f3eb; text-decoration: none; } #nav li a:hover{ color: #e4dbb9; text-decoration: none; } #nav li a:active { color: #ffffff; text-decoration: none; } /* すべてのページに適用 - fotter - */ #footer { background-image: url(../images/footer-bg.png); background-repeat: repeat-x; margin-top: 30px; padding:20px 0 20px 0; font-size: smaller; color: #442220; } /* メイントップ */ .top{ font-size:13px; width:auto; margin-right: auto; margin-left: 250px; margin-bottom: 1px; border:1px solid #442220; background-color: #FFFFFF; } /* メイン年表 */ table.table1 { margin-left: auto; margin-right: auto; width: auto; /* テーブルの横幅 */ border-collapse: collapse; /* 枠線の表示方法 */ border: 1px solid #1280da; /* テーブル全体の枠線(太さ・色・スタイル) */ background-color: #fffaf0; /* 背景色 */ text-align: center; table-layout: fixed; } table.table1 th, table.table1 td { padding: 3px 3px 3px 3px; border: 1px solid #d6c2b5; /* セルの枠線(太さ・色・スタイル) */ vertical-align: middle; } table.table1 th{ background-color: #c99e73; color: #442220; } table.table1 th.years,td.years{ background-color: #eee5df; width: auto; table-layout: fixed; } .miyapaku{ width:350px; } .mv{ color:#fa6666; } .an{ color:#9999fa; } .other{ font-size:13px; } .miyazaki { width:150px; } /* 個別のスタイルのデザイン */
0.201106
0.08819
* Copyright (c) 2015-present, Zippy Technologies * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /** * Copyright (c) 2015-present, Zippy Technologies * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /** * Copyright (c) 2015-present, Zippy Technologies * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ .zippy-react-toolkit-overlay { position: absolute; visibility: hidden; opacity: 0; pointer-events: none; } .zippy-react-toolkit-overlay, .zippy-react-toolkit-overlay * { box-sizing: border-box; } .zippy-react-toolkit-overlay--position-fixed { position: fixed; } .zippy-react-toolkit-overlay--visible { visibility: visible; pointer-events: inherit; opacity: 1; } .zippy-react-toolkit-overlay--has-transition.zippy-react-toolkit-overlay--transition-enter { opacity: 0; visibility: visible; } .zippy-react-toolkit-overlay--has-transition.zippy-react-toolkit-overlay--transition-enter-active { transition: opacity 1000ms ease; opacity: 1; } .zippy-react-toolkit-overlay--has-transition.zippy-react-toolkit-overlay--transition-leave { visibility: visible; opacity: 1; } .zippy-react-toolkit-overlay--has-transition.zippy-react-toolkit-overlay--transition-leave-active { transition: opacity 1000ms ease; opacity: 0; } .zippy-react-toolkit-overlay__content { position: relative; z-index: 1; } .zippy-react-toolkit-overlay__arrow-wrapper { position: absolute; overflow: hidden; } .zippy-react-toolkit-overlay__arrow-wrapper--bottom, .zippy-react-toolkit-overlay__arrow-wrapper--top { transform: translateX(-50%); } .zippy-react-toolkit-overlay__arrow-wrapper--right, .zippy-react-toolkit-overlay__arrow-wrapper--left { transform: translateY(-50%); } .zippy-react-toolkit-overlay__arrow { position: absolute; transform-origin: center; } .zippy-react-toolkit-overlay__arrow--top { left: 50%; top: 0; transform: translateX(-50%) translateY(-50%) rotate(45deg); } .zippy-react-toolkit-overlay__arrow--left { top: 50%; left: 0; transform: translateX(-50%) translateY(-50%) rotate(45deg); } .zippy-react-toolkit-overlay__arrow--right { right: 0; top: 50%; transform: translateX(50%) translateY(-50%) rotate(45deg); } .zippy-react-toolkit-overlay__arrow--bottom { left: 50%; bottom: 0; transform: translateX(-50%) translateY(50%) rotate(45deg); } .zippy-react-toolkit-combo-box { display: flex; align-self: center; position: relative; box-sizing: border-box; text-align: start; direction: ltr; outline: 0; width: 140px; vertical-align: middle; } .zippy-react-toolkit-combo-box *, .zippy-react-toolkit-combo-box *:before, .zippy-react-toolkit-combo-box *:after { box-sizing: border-box; } .zippy-react-toolkit-combo-box--rtl { direction: rtl; } .zippy-react-toolkit-combo-box--inlineFlex { display: inline-flex; } .zippy-react-toolkit-combo-box__list { z-index: 100; min-height: 28px; } .zippy-react-toolkit-combo-box__list:not(.zippy-react-toolkit-combo-box__list--relative-to-viewport) { left: -1px; right: -1px; min-width: 100%; } .zippy-react-toolkit-combo-box__list:not(.zippy-react-toolkit-combo-box__list--relative-to-viewport) { position: absolute; } .zippy-react-toolkit-combo-box__list--position-top:not(.zippy-react-toolkit-combo-box__list--relative-to-viewport) { bottom: 100%; } .zippy-react-toolkit-combo-box__list--position-bottom:not(.zippy-react-toolkit-combo-box__list--relative-to-viewport) { top: 100%; } .zippy-react-toolkit-combo-box__list__virtual-list { outline: none; overflow: auto; max-height: 300px; } .zippy-react-toolkit-combo-box__list__item { cursor: pointer; user-select: none; width: 100%; } .zippy-react-toolkit-combo-box__list__item--ellipsis { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .zippy-react-toolkit-combo-box__list__loading-text, .zippy-react-toolkit-combo-box__list__new-custom-tag-text, .zippy-react-toolkit-combo-box__list__empty-text { padding: 9px; text-align: center; } .zippy-react-toolkit-combo-box__list__loading-text { position: absolute; left: 0; top: 0; right: 0; bottom: 0; z-index: 100; display: flex; align-items: center; justify-content: center; } .zippy-react-toolkit-combo-box__input__wrapper { display: flex; max-width: 100%; margin-bottom: 2px; } .zippy-react-toolkit-combo-box__input__wrapper--invisible { position: absolute; left: -20000px; } .zippy-react-toolkit-combo-box__input { border: 0; outline: none; max-width: 100%; min-width: 3px; font-family: inherit; font-size: inherit; background: none; } .zippy-react-toolkit-combo-box__input::-ms-clear { display: none; } .zippy-react-toolkit-combo-box__input__placeholder { color: #bbb; } .zippy-react-toolkit-combo-box__value { display: flex; flex: 1; flex-wrap: wrap; align-items: center; } .zippy-react-toolkit-combo-box__tools { position: relative; display: flex; margin-bottom: 1px; } .zippy-react-toolkit-combo-box__value__tag { display: flex; cursor: pointer; max-width: calc(100% - 5px); } .zippy-react-toolkit-combo-box__value__display-value { display: inline-block; align-self: center; margin-bottom: 2px; max-width: calc(100% - 5px); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .zippy-react-toolkit-combo-box__value__tag--ellipsis .zippy-react-toolkit-combo-box__value__tag__label { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .zippy-react-toolkit-combo-box__value__tag__label { flex: 1; } .zippy-react-toolkit-combo-box__value__tag__clear-icon { display: flex; align-items: center; cursor: pointer; } .zippy-react-toolkit-combo-box__toggle-icon { display: flex; align-items: center; cursor: pointer; } .react-scroll-container__scroller, .react-virtual-scroll-container__scroll-container { outline: none; }
node_modules/@zippytech/react-toolkit/ComboBox/base.css
* Copyright (c) 2015-present, Zippy Technologies * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /** * Copyright (c) 2015-present, Zippy Technologies * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /** * Copyright (c) 2015-present, Zippy Technologies * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ .zippy-react-toolkit-overlay { position: absolute; visibility: hidden; opacity: 0; pointer-events: none; } .zippy-react-toolkit-overlay, .zippy-react-toolkit-overlay * { box-sizing: border-box; } .zippy-react-toolkit-overlay--position-fixed { position: fixed; } .zippy-react-toolkit-overlay--visible { visibility: visible; pointer-events: inherit; opacity: 1; } .zippy-react-toolkit-overlay--has-transition.zippy-react-toolkit-overlay--transition-enter { opacity: 0; visibility: visible; } .zippy-react-toolkit-overlay--has-transition.zippy-react-toolkit-overlay--transition-enter-active { transition: opacity 1000ms ease; opacity: 1; } .zippy-react-toolkit-overlay--has-transition.zippy-react-toolkit-overlay--transition-leave { visibility: visible; opacity: 1; } .zippy-react-toolkit-overlay--has-transition.zippy-react-toolkit-overlay--transition-leave-active { transition: opacity 1000ms ease; opacity: 0; } .zippy-react-toolkit-overlay__content { position: relative; z-index: 1; } .zippy-react-toolkit-overlay__arrow-wrapper { position: absolute; overflow: hidden; } .zippy-react-toolkit-overlay__arrow-wrapper--bottom, .zippy-react-toolkit-overlay__arrow-wrapper--top { transform: translateX(-50%); } .zippy-react-toolkit-overlay__arrow-wrapper--right, .zippy-react-toolkit-overlay__arrow-wrapper--left { transform: translateY(-50%); } .zippy-react-toolkit-overlay__arrow { position: absolute; transform-origin: center; } .zippy-react-toolkit-overlay__arrow--top { left: 50%; top: 0; transform: translateX(-50%) translateY(-50%) rotate(45deg); } .zippy-react-toolkit-overlay__arrow--left { top: 50%; left: 0; transform: translateX(-50%) translateY(-50%) rotate(45deg); } .zippy-react-toolkit-overlay__arrow--right { right: 0; top: 50%; transform: translateX(50%) translateY(-50%) rotate(45deg); } .zippy-react-toolkit-overlay__arrow--bottom { left: 50%; bottom: 0; transform: translateX(-50%) translateY(50%) rotate(45deg); } .zippy-react-toolkit-combo-box { display: flex; align-self: center; position: relative; box-sizing: border-box; text-align: start; direction: ltr; outline: 0; width: 140px; vertical-align: middle; } .zippy-react-toolkit-combo-box *, .zippy-react-toolkit-combo-box *:before, .zippy-react-toolkit-combo-box *:after { box-sizing: border-box; } .zippy-react-toolkit-combo-box--rtl { direction: rtl; } .zippy-react-toolkit-combo-box--inlineFlex { display: inline-flex; } .zippy-react-toolkit-combo-box__list { z-index: 100; min-height: 28px; } .zippy-react-toolkit-combo-box__list:not(.zippy-react-toolkit-combo-box__list--relative-to-viewport) { left: -1px; right: -1px; min-width: 100%; } .zippy-react-toolkit-combo-box__list:not(.zippy-react-toolkit-combo-box__list--relative-to-viewport) { position: absolute; } .zippy-react-toolkit-combo-box__list--position-top:not(.zippy-react-toolkit-combo-box__list--relative-to-viewport) { bottom: 100%; } .zippy-react-toolkit-combo-box__list--position-bottom:not(.zippy-react-toolkit-combo-box__list--relative-to-viewport) { top: 100%; } .zippy-react-toolkit-combo-box__list__virtual-list { outline: none; overflow: auto; max-height: 300px; } .zippy-react-toolkit-combo-box__list__item { cursor: pointer; user-select: none; width: 100%; } .zippy-react-toolkit-combo-box__list__item--ellipsis { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .zippy-react-toolkit-combo-box__list__loading-text, .zippy-react-toolkit-combo-box__list__new-custom-tag-text, .zippy-react-toolkit-combo-box__list__empty-text { padding: 9px; text-align: center; } .zippy-react-toolkit-combo-box__list__loading-text { position: absolute; left: 0; top: 0; right: 0; bottom: 0; z-index: 100; display: flex; align-items: center; justify-content: center; } .zippy-react-toolkit-combo-box__input__wrapper { display: flex; max-width: 100%; margin-bottom: 2px; } .zippy-react-toolkit-combo-box__input__wrapper--invisible { position: absolute; left: -20000px; } .zippy-react-toolkit-combo-box__input { border: 0; outline: none; max-width: 100%; min-width: 3px; font-family: inherit; font-size: inherit; background: none; } .zippy-react-toolkit-combo-box__input::-ms-clear { display: none; } .zippy-react-toolkit-combo-box__input__placeholder { color: #bbb; } .zippy-react-toolkit-combo-box__value { display: flex; flex: 1; flex-wrap: wrap; align-items: center; } .zippy-react-toolkit-combo-box__tools { position: relative; display: flex; margin-bottom: 1px; } .zippy-react-toolkit-combo-box__value__tag { display: flex; cursor: pointer; max-width: calc(100% - 5px); } .zippy-react-toolkit-combo-box__value__display-value { display: inline-block; align-self: center; margin-bottom: 2px; max-width: calc(100% - 5px); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .zippy-react-toolkit-combo-box__value__tag--ellipsis .zippy-react-toolkit-combo-box__value__tag__label { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .zippy-react-toolkit-combo-box__value__tag__label { flex: 1; } .zippy-react-toolkit-combo-box__value__tag__clear-icon { display: flex; align-items: center; cursor: pointer; } .zippy-react-toolkit-combo-box__toggle-icon { display: flex; align-items: center; cursor: pointer; } .react-scroll-container__scroller, .react-virtual-scroll-container__scroll-container { outline: none; }
0.856257
0.063919
*:not(i) { font-family: "Open Sans", Helvetica, Arial, sans-serif; } html { height: 100%; font-size: 16px; } body { height: 100%; background: #F3F4F8; } .image-grid { display: flex; flex-direction: row; flex-wrap: wrap; align-content: center; align-items: center; justify-content: center; max-width: 100%; height: 100%; margin: 0 auto; padding: 0; list-style: none; } .image-grid__item { display: flex; flex-direction: column; flex-grow: 0; flex-shrink: 0; flex-basis: 360px; align-items: stretch; justify-content: center; position: relative; height: 400px; margin-right: 14px; margin-bottom: 14px; transition: transform 0.14s ease-in, text-shadow 0.1s ease-in; } .image-grid__item:before { content: ""; visibility: hidden; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: none; border-radius: 3px; box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0.06), 0 8px 20px -2px rgba(0, 0, 0, 0.1), 0 6px 10px -6px rgba(0, 0, 0, 0.2); transition: visibility 0.1s ease-out, opacity 0.1s ease-out; opacity: 0; } .image-grid__item:hover:before { visibility: visible; opacity: 1; } .grid-item { display: flex; position: relative; flex-direction: column; flex-grow: 1; flex-shrink: 1; align-items: stretch; justify-content: center; text-decoration: none; color: #eeeeee; overflow: hidden; } .grid-item:hover .grid-item__image { transform: scale(1.2); } .grid-item:hover .grid-item__hover { visibility: visible; opacity: 1; } .grid-item:hover .grid-item__name { visibility: visible; transform: scale(1); opacity: 1; } .grid-item__image { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-size: cover; background-position: center center; transform: scale(1); will-change: transform; transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94); z-index: 0; } .grid-item__hover { visibility: hidden; display: block; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(rgba(47, 48, 50, 0.2), rgba(47, 48, 50, 0.7)); box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.15); border-radius: 0; transition: visibility 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94); opacity: 0; } .grid-item__name { visibility: hidden; display: flex; flex-direction: column; flex-grow: 1; flex-shrink: 1; align-items: center; font-size: 2rem; font-weight: 300; color: white; text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.4), 2px 2px 6px rgba(0, 0, 0, 0.3); justify-content: center; transform: scale(0.6); transform-origin: center center; transition: visibility 0.14s ease-out, opacity 0.14s ease-out, transform 0.24s ease; opacity: 0; }
transformations/style.css
*:not(i) { font-family: "Open Sans", Helvetica, Arial, sans-serif; } html { height: 100%; font-size: 16px; } body { height: 100%; background: #F3F4F8; } .image-grid { display: flex; flex-direction: row; flex-wrap: wrap; align-content: center; align-items: center; justify-content: center; max-width: 100%; height: 100%; margin: 0 auto; padding: 0; list-style: none; } .image-grid__item { display: flex; flex-direction: column; flex-grow: 0; flex-shrink: 0; flex-basis: 360px; align-items: stretch; justify-content: center; position: relative; height: 400px; margin-right: 14px; margin-bottom: 14px; transition: transform 0.14s ease-in, text-shadow 0.1s ease-in; } .image-grid__item:before { content: ""; visibility: hidden; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: none; border-radius: 3px; box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0.06), 0 8px 20px -2px rgba(0, 0, 0, 0.1), 0 6px 10px -6px rgba(0, 0, 0, 0.2); transition: visibility 0.1s ease-out, opacity 0.1s ease-out; opacity: 0; } .image-grid__item:hover:before { visibility: visible; opacity: 1; } .grid-item { display: flex; position: relative; flex-direction: column; flex-grow: 1; flex-shrink: 1; align-items: stretch; justify-content: center; text-decoration: none; color: #eeeeee; overflow: hidden; } .grid-item:hover .grid-item__image { transform: scale(1.2); } .grid-item:hover .grid-item__hover { visibility: visible; opacity: 1; } .grid-item:hover .grid-item__name { visibility: visible; transform: scale(1); opacity: 1; } .grid-item__image { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-size: cover; background-position: center center; transform: scale(1); will-change: transform; transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94); z-index: 0; } .grid-item__hover { visibility: hidden; display: block; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(rgba(47, 48, 50, 0.2), rgba(47, 48, 50, 0.7)); box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.15); border-radius: 0; transition: visibility 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94); opacity: 0; } .grid-item__name { visibility: hidden; display: flex; flex-direction: column; flex-grow: 1; flex-shrink: 1; align-items: center; font-size: 2rem; font-weight: 300; color: white; text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.4), 2px 2px 6px rgba(0, 0, 0, 0.3); justify-content: center; transform: scale(0.6); transform-origin: center center; transition: visibility 0.14s ease-out, opacity 0.14s ease-out, transform 0.24s ease; opacity: 0; }
0.540196
0.111193
.rmcard .rm_formcard_menu_icon { float: right; margin: 14px 4px 0px 0px; transform: rotate(90deg); cursor: pointer; } .rmagic .rmagic-cards .rmcard:hover .rm_formcard_menu_icon i { color: #00a0d2; } .rmagic-cards .rmcard .rm-form-links { display: none; } .rmagic-cards .rmcard:hover .rm-form-links { display: block; } .rm-formcard-menu { position: absolute; background-color: #fff; width: 370px; left: 90px; top: 38px; padding: 0px; z-index: 999; border: 1px solid #e1e1e1; -webkit-box-shadow: 0 3px 30px rgba(25,30,35,.1); box-shadow: 0 3px 30px rgba(25,30,35,.1); } .rm-formcard-menu-nub { position: absolute; width: 10px; height: 11px; -webkit-transform: rotate(225deg); transform: rotate(225deg); z-index: 2; box-shadow: 1px 1px 0 0 #ccc; background: #fff; top: -5px; left: 90px; } .rm-formcard-menu-header .rm_formname_edit_link_span { background-image: url(../../images/rm-formcard-menu-edit-bg.png); height: 30px; padding: 6px 40px; position: absolute; top: 5px; right: 40px; z-index: 2; float: left; width: 88px; color: #0087be; cursor: pointer; } .rm-formcard-tabmenu-wrap {} .rm-formcard-menu-header { height: 40px; border-bottom: 1px solid #e1e1e1; line-height: 20px; padding: 10px; } .rm-formcard-menu-header input { width: 88%; float: left; position: absolute; top: 9px; left: 7px; padding: 0px; text-align: left; color: #000000; font-weight: 800; outline: 0px; } .rm-formcard-menu-form-name-save-icon, .rm-formcard-menu-form-name-save-loader { width: auto; float: left; } .rm-formcard-menu-form-name-save-icon i, .rm-formcard-menu-form-name-save-loader i { color: #0dc30d; font-size: 18px; margin-left: 5px; } .rm-formcard-menu-form-name-save-loader i { color: #0087be; animation-name: rm_rotate; animation-duration: 1s; animation-fill-mode: both; animation-iteration-count: infinite; } @keyframes rm_rotate { from { transform-origin: center; transform: rotate3d(0, 0, 1, 360deg); } to { transform-origin: center; transform: none; } } .rm-formcard-menu-close { float: right; } .rm-formcard-menu-close i { font-size: 18px; } .rm-formcard-menu-form-name { white-space: nowrap; text-overflow: ellipsis; max-width: 280px; text-align: left; font-weight: 600; overflow: hidden; float: left; font-size: 13px; } .rm-formcard-menu-form-name:hover { cursor: pointer; } .rm-formcard-menu-header:hover .rm-formcard-menu-form-name { color: #0073aa; } /* -- form card-tab Menu -- */ .rm-formcard-tabhead-container { width: 30%; background-color: #fff; border-right: 1px solid #e5e5e5; } .rm-formcard-tabhead-container ul { margin: 0px; } .rm_formcard_tabhead-title { margin: 12px 0px 6px 8px; color: #6c7781; } .rm-formcard-tabhead-container ul li.rm_formcard_tabhead { padding-left: 24px; line-height: 30px; font-size: 13px; margin: 0px; border-top: 1px solid transparent; border-bottom: 1px solid transparent; border-left: 2px solid transparent; margin-bottom: -1px; } .rm-formcard-tabhead-container ul li.rm_formcard_tabhead:hover {} .rm-formcard-tabhead-container ul li.rm_formcard_tabhead.rm_active_tabhead { background-color: #f7fcfd; border-top: 1px solid #e1e1e1; border-bottom: 1px solid #e1e1e1; margin-bottom: -1px; margin-right: -1px; border-left: 2px solid #00aadc; -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, .02), 0 1px 0 rgba(0, 0, 0, .02); box-shadow: 0 2px 0 rgba(0, 0, 0, .02), 0 1px 0 rgba(0, 0, 0, .02) } .rm-formcard-tabhead-container ul li.rm_formcard_tabhead a { text-transform: capitalize; color: #555d66; } .rm_formcard_tabhead.rm_active_tabhead a { color: #32373c; } .rm-formcard-tabhead-container ul li.rm_formcard_tabhead a i { font-size: 12px; margin-right: 10px; } .rm-formcard-tabhead-container ul li.rm_formcard_tabhead.rm_active_tabhead::after {} /* -- form card-tab Menu Content-- */ .rm-formcard-tabpanel-container { width: 70%; background: #f6fbfd; height: 300px; } .rm-formcard-tabpanel-container .rm-formcard-tabpanel { padding: 10px; } .rm-formcard-tabpanel-wrap { text-align: center; } .rm-formcard-tabpanel-wrap .rm-formcard-tab-item { display: inline-block; margin: 6px; width: 40%; } .rm-formcard-tab-item .rm-formcard-icon { width: 22px; } .rm-formcard-tab-item .rm-formcard-label { font-size: 11px; text-transform: capitalize; color: rgb(125, 125, 125); } .rm-formcard-tabpanel-info { font-size: 12px; line-height: 14px; text-align: left; position: absolute; bottom: 10px; margin-right: 5px; color: #4f748e; font-style: italic; } .rm-formcard-tab-item.rm-db-link { width: 100%; float: left; text-align: center } .rm-formcard-tab-item a.rm_fdlink_more { font-size: 11px; } /* --- Form Card */ .rmagic-cards .rmcard:hover .rm-form-links { animation-duration: 0.3s; animation-timing-function: ease-out; animation-fill-mode: both; } @keyframes rm-fadeIn { from { opacity: 0; } to { opacity: 1; } } .rmagic .rm-form-links { animation-name: rm-fadeIn; } .rmagic .rm-form-links .rm-form-settings { cursor: pointer; } .rmagic .rm-form-links .rm-form-settings i { font-size: 18px; margin-right: 4px; line-height: 23px; } .rmagic .rm-form-links .rm-form-settings span { line-height: 25px; vertical-align: top; } #rm_fcm_panel_build .rm-formcard-tabpanel-wrap, #rm_fcm_panel_manage .rm-formcard-tabpanel-wrap, #rm_fcm_panel_analyze .rm-formcard-tabpanel-wrap, #rm_fcm_panel_automate .rm-formcard-tabpanel-wrap { padding-top: 40px; } /* copied msg */ div[id^="rm_msg_copied_to_clipboard_"] { position: absolute; top: 60%; right: 0; width: 70%; text-align: center; }
wp3/wp-content/plugins/custom-registration-form-builder-with-submission-manager/admin/css/style_rm_formcard_menu.css
.rmcard .rm_formcard_menu_icon { float: right; margin: 14px 4px 0px 0px; transform: rotate(90deg); cursor: pointer; } .rmagic .rmagic-cards .rmcard:hover .rm_formcard_menu_icon i { color: #00a0d2; } .rmagic-cards .rmcard .rm-form-links { display: none; } .rmagic-cards .rmcard:hover .rm-form-links { display: block; } .rm-formcard-menu { position: absolute; background-color: #fff; width: 370px; left: 90px; top: 38px; padding: 0px; z-index: 999; border: 1px solid #e1e1e1; -webkit-box-shadow: 0 3px 30px rgba(25,30,35,.1); box-shadow: 0 3px 30px rgba(25,30,35,.1); } .rm-formcard-menu-nub { position: absolute; width: 10px; height: 11px; -webkit-transform: rotate(225deg); transform: rotate(225deg); z-index: 2; box-shadow: 1px 1px 0 0 #ccc; background: #fff; top: -5px; left: 90px; } .rm-formcard-menu-header .rm_formname_edit_link_span { background-image: url(../../images/rm-formcard-menu-edit-bg.png); height: 30px; padding: 6px 40px; position: absolute; top: 5px; right: 40px; z-index: 2; float: left; width: 88px; color: #0087be; cursor: pointer; } .rm-formcard-tabmenu-wrap {} .rm-formcard-menu-header { height: 40px; border-bottom: 1px solid #e1e1e1; line-height: 20px; padding: 10px; } .rm-formcard-menu-header input { width: 88%; float: left; position: absolute; top: 9px; left: 7px; padding: 0px; text-align: left; color: #000000; font-weight: 800; outline: 0px; } .rm-formcard-menu-form-name-save-icon, .rm-formcard-menu-form-name-save-loader { width: auto; float: left; } .rm-formcard-menu-form-name-save-icon i, .rm-formcard-menu-form-name-save-loader i { color: #0dc30d; font-size: 18px; margin-left: 5px; } .rm-formcard-menu-form-name-save-loader i { color: #0087be; animation-name: rm_rotate; animation-duration: 1s; animation-fill-mode: both; animation-iteration-count: infinite; } @keyframes rm_rotate { from { transform-origin: center; transform: rotate3d(0, 0, 1, 360deg); } to { transform-origin: center; transform: none; } } .rm-formcard-menu-close { float: right; } .rm-formcard-menu-close i { font-size: 18px; } .rm-formcard-menu-form-name { white-space: nowrap; text-overflow: ellipsis; max-width: 280px; text-align: left; font-weight: 600; overflow: hidden; float: left; font-size: 13px; } .rm-formcard-menu-form-name:hover { cursor: pointer; } .rm-formcard-menu-header:hover .rm-formcard-menu-form-name { color: #0073aa; } /* -- form card-tab Menu -- */ .rm-formcard-tabhead-container { width: 30%; background-color: #fff; border-right: 1px solid #e5e5e5; } .rm-formcard-tabhead-container ul { margin: 0px; } .rm_formcard_tabhead-title { margin: 12px 0px 6px 8px; color: #6c7781; } .rm-formcard-tabhead-container ul li.rm_formcard_tabhead { padding-left: 24px; line-height: 30px; font-size: 13px; margin: 0px; border-top: 1px solid transparent; border-bottom: 1px solid transparent; border-left: 2px solid transparent; margin-bottom: -1px; } .rm-formcard-tabhead-container ul li.rm_formcard_tabhead:hover {} .rm-formcard-tabhead-container ul li.rm_formcard_tabhead.rm_active_tabhead { background-color: #f7fcfd; border-top: 1px solid #e1e1e1; border-bottom: 1px solid #e1e1e1; margin-bottom: -1px; margin-right: -1px; border-left: 2px solid #00aadc; -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, .02), 0 1px 0 rgba(0, 0, 0, .02); box-shadow: 0 2px 0 rgba(0, 0, 0, .02), 0 1px 0 rgba(0, 0, 0, .02) } .rm-formcard-tabhead-container ul li.rm_formcard_tabhead a { text-transform: capitalize; color: #555d66; } .rm_formcard_tabhead.rm_active_tabhead a { color: #32373c; } .rm-formcard-tabhead-container ul li.rm_formcard_tabhead a i { font-size: 12px; margin-right: 10px; } .rm-formcard-tabhead-container ul li.rm_formcard_tabhead.rm_active_tabhead::after {} /* -- form card-tab Menu Content-- */ .rm-formcard-tabpanel-container { width: 70%; background: #f6fbfd; height: 300px; } .rm-formcard-tabpanel-container .rm-formcard-tabpanel { padding: 10px; } .rm-formcard-tabpanel-wrap { text-align: center; } .rm-formcard-tabpanel-wrap .rm-formcard-tab-item { display: inline-block; margin: 6px; width: 40%; } .rm-formcard-tab-item .rm-formcard-icon { width: 22px; } .rm-formcard-tab-item .rm-formcard-label { font-size: 11px; text-transform: capitalize; color: rgb(125, 125, 125); } .rm-formcard-tabpanel-info { font-size: 12px; line-height: 14px; text-align: left; position: absolute; bottom: 10px; margin-right: 5px; color: #4f748e; font-style: italic; } .rm-formcard-tab-item.rm-db-link { width: 100%; float: left; text-align: center } .rm-formcard-tab-item a.rm_fdlink_more { font-size: 11px; } /* --- Form Card */ .rmagic-cards .rmcard:hover .rm-form-links { animation-duration: 0.3s; animation-timing-function: ease-out; animation-fill-mode: both; } @keyframes rm-fadeIn { from { opacity: 0; } to { opacity: 1; } } .rmagic .rm-form-links { animation-name: rm-fadeIn; } .rmagic .rm-form-links .rm-form-settings { cursor: pointer; } .rmagic .rm-form-links .rm-form-settings i { font-size: 18px; margin-right: 4px; line-height: 23px; } .rmagic .rm-form-links .rm-form-settings span { line-height: 25px; vertical-align: top; } #rm_fcm_panel_build .rm-formcard-tabpanel-wrap, #rm_fcm_panel_manage .rm-formcard-tabpanel-wrap, #rm_fcm_panel_analyze .rm-formcard-tabpanel-wrap, #rm_fcm_panel_automate .rm-formcard-tabpanel-wrap { padding-top: 40px; } /* copied msg */ div[id^="rm_msg_copied_to_clipboard_"] { position: absolute; top: 60%; right: 0; width: 70%; text-align: center; }
0.454472
0.052716
.r_left { float: left; } .r_right { float: right; } .ioa-message { box-shadow:0px 0px 20px rgba(0,0,0,0.1); border-radius:2px; width:330px; padding:0; background:#222; position:fixed; z-index:999; top:45px; left:45%; display: none; } .ioa-message .ioa-message-head { padding:8px 5px; margin:0; text-transform:uppercase; font-weight:bold; position:relative; font-size:15px; } .ioa-message .ioa-message-body { color:#fff; font-size:12px; line-height:1.6; padding:0px; } .ioa-icon-area { float: left; text-align: center; box-shadow:-1px 0px 1px rgba(255,255,255,0.06) inset; padding:16px 20px; color:#fff; font-size:32px; border-right:1px solid #111; } .ioa-message.ioa-success .ioa-icon-area { color:#88ce3d; } .ioa-message.ioa-information .ioa-icon-area { color:#fff; } .ioa-message.ioa-warning .ioa-icon-area { color:#f1cd09; } .ioa-message.ioa-error .ioa-icon-area { color:#f10909; } .ioa-information-p { background:#fff; margin:0 30px 20px 30px; padding:20px; color:#fff; text-align: center; } .ioa-info-area { float: left; width: 255px; } .ioa-info-area h3 { color:#fff; font-size: 15px; margin:10px 0 0 0; padding:0px 0px 0px 20px; } .ioa-info-area p { color:#fff; font-size: 11px; margin:0; padding:4px 20px 0px 20px; } a.trigger-live-editor { position: fixed; bottom: 80px; right: 60px; padding: 15px; line-height: 1; color: #fff; font-size: 20px; font-weight: 700; border-radius: 3px; z-index: 9999; background:#222; box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, .3); } a.trigger-live-editor:hover { color:#D0A4E7; } a.trigger-live-editor.editor-is-active { font-weight: 400; color:#D0A4E7; } /* == Panel Stylings == */ div.visual-settings-pane > h4 { display: none; } ul.rad_options_trigger { padding: 0; margin: 0; background:#0f0f10; } ul.rad_options_trigger li { list-style:none; float: left; width: 49%; text-align: center; padding:10px 0; margin: 0; border-bottom:1px solid #27292b; } ul.rad_options_trigger li:first-child { border-right:1px solid #27292b; } ul.rad_options_trigger li.ui-state-active { background:#161718; border-bottom:1px solid #161718; } ul.rad_options_trigger li.ui-state-active a { color:#fff; } ul.rad_options_trigger li a { color:#fff; text-decoration: none; } #rad_live_panel { background:#161616; height: 45px; position: fixed; bottom:-50px; left:0; right:0; width: 100%; z-index:99996; box-shadow:0px -2px 10px rgba(0,0,0,0.2); display: none; } #rad_live_panel .skeleton > a { border-left:1px solid #0f0f0f; border-right:1px solid #2b2b2b; } a.rad_button_primary { text-decoration: none; background:#D0A4E7; padding: 17px 21px; color:#fff; text-transform:none; font-size: 12px; line-height: 1; font-weight: 600;-webkit-font-smoothing: subpixel-antialiased; } a.rad_button_secondary { text-decoration: none; background:#222; padding: 17px 21px; color:#fff; text-transform:none; font-size: 12px; line-height: 1; font-weight: 600; -webkit-font-smoothing: subpixel-antialiased;} a.rad_button_error { text-decoration: none; background:#222; padding: 17px 21px; color:#fff; text-transform:none; font-size: 12px; line-height: 1; font-weight: 600;-webkit-font-smoothing: subpixel-antialiased; } a.rad_button_menu { text-decoration: none; background:#222; padding: 17px 21px; color:#fff; text-transform:none; font-size: 12px; line-height: 1; font-weight: 600; display: inline-block; border-left:1px solid #0f0f0f; border-right:1px solid #2b2b2b; -webkit-font-smoothing: subpixel-antialiased;} a.rad_button_menu i { margin-right: 4px;-webkit-font-smoothing: subpixel-antialiased; } a.rad_button_primary:hover , a.rad_button_secondary:hover, a.rad_button_menu:hover, a.rad_button_error:hover, a.rad_add_section:hover { opacity:0.7; } div.uploader-editor { display: none; } div.rad-styler { display: none; } /** * RAD File Menu Stylings */ .rad_file_menu_wrap { position: relative; } ul.rad_file_sub_menu { padding:0 15px; background:#222; border-radius:2px; margin: 0; position: absolute; bottom:45px; left:-75px; width: 200px; display: none; -webkit-font-smoothing: subpixel-antialiased;} .rad_file_menu_wrap:hover ul.rad_file_sub_menu { display: block; } ul.rad_file_sub_menu li { list-style:none; padding: 7px 0; border-bottom:1px solid #333; } ul.rad_file_sub_menu li:last-child { border-bottom:none; } ul.rad_file_sub_menu li a { color:#fff; text-decoration: none; display: block;-webkit-font-smoothing: subpixel-antialiased;} ul.rad_file_sub_menu li a:hover { color:#D0A4E7; } /** * Add Row Button */ a.rad_add_section { background-color: #222; display: block; border-radius:3px; color: #fff!important; font-size: 20px; font-weight: normal; padding: 15px; text-align: center; text-decoration: none; margin: 25px auto; max-width:45%; } /** * Section Toolbar */ div.rad_section_toolbar { border-radius:4px; background:rgba(189,123,223,0.7); z-index:999; position: absolute; left:20px; top:50%; margin-top: -75px; display: none; } div.rad_section_toolbar a { border-top:1px solid #b171d2; text-decoration: none; color:#fff; text-decoration: none; display: block; padding: 12px; font-size: 12px; line-height: 1; } div.rad_section_toolbar a:first-child { border-top: none; } div.rad_section_toolbar a:hover { opacity:0.6; } div.rad_editable_section:hover div.rad-container { outline:#CCC dashed 1px; } div.rad_editable_section:hover div.rad-container:hover { outline:#111 dashed 1px; } div.rad_editable_section:hover { outline:#444444 solid 2px; } div.rad_editable_section:hover div.rad_section_toolbar { display: block; } div.rad_page_section.no-container .section-content { min-height:200px; } .section-sortable-handle { position: absolute; padding: 10px; line-height: 1; background:#222; border-radius: 3px; box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, .3); text-decoration: none; top:50%; color: #fff; right:20px; z-index:3; margin-top:-18px; cursor:move; } .section-sortable-handle:hover { color: #D0A4E7;} div.section-c-helper { height:30px!important; background:url(i/rp.jpg); } div.section-dropper-helper { position: absolute; display: none; top: 0; right: 0; left: 0; bottom:0; background:rgba(0,0,0,0.2); } div.section-dropper-helper h4 { color:#fff; text-align: center; margin: 0 auto; padding: 20px; border:2px solid #fff; border-radius:5px; width: 200px; position: absolute; left:50%; top:50%; margin: -30px 0 0 -100px; z-index:10; display: none; } div.rad_page_section.ui-sortable-placeholder { background:#222; visibility:visible!important; } div.rad-section-dropping div.section-dropper-helper { display: block; } div.container-dropper-helper { position: absolute; display: none; top: 0; right: 0; left: 0; bottom:0; background:rgba(0,0,0,0.2); } div.rad-container-dropping div.container-dropper-helper { display: block; } div.container-dropper-helper h4 { color:#fff; text-align: center; margin: 0 auto; padding: 20px; border:2px solid #fff; border-radius:5px; width: 200px; position: absolute; left:50%; top:50%; margin: -30px 0 0 -100px; z-index:10; display: none; } /** * Container Toolbar */ i.container-sortable-handle { position: absolute; bottom:10px; right:10px; background-color: #2c2c2c; color: #fff; font-weight: 400; box-shadow: 0px 1px 2px rgba(00,00,00,0.3); padding:6px; border-radius: 3px; font-size: 11px; line-height: 1; margin-top: -22px; cursor:move; display: none; z-index:3; } div.rad_container_toolbar { position: absolute; top:10px; display: none; right:10px; background-color: #2c2c2c; color: #fff; font-weight: 400; border-radius: 3px; box-shadow: 0px 1px 2px rgba(00,00,00,0.3); z-index:3; } div.rad_right_panel { float:left; } div.rad_right_panel a { border-left:1px solid #111; text-decoration: none; color:#fff; text-decoration: none; display: block; padding: 10px; font-size: 10px; line-height: 1; float: left; } div.rad_right_panel a:first-child { border-left: none; } div.rad_container_layout { float: left; border-right:1px solid #111; } div.rad_container_layout div.ioa_input { padding: 0; } div.rad_container_layout div.ioa_input label { display: none; } div.rad_container_layout div.ioa_input_holder div.ioa_select_wrap { overflow: hidden; height:31px; width: 42px; background: url(i/select-arrow.png) 91% 12px no-repeat; padding:0px 17px 0px 0; outline: none; font-size:12px; border:none; box-shadow: none; } div.rad_container_layout div.ioa_input_holder div.ioa_select_wrap select { -webkit-appearance: none; background: transparent!important; border: none; cursor: pointer; display: block; vertical-align: center; padding: 9px 0 9px 12px; height: 31px; color:#fff; width:90px; font-weight: 600; font-size: 11px; line-height: 1; } div.rad_container_layout div.ioa_select_wrap select option { color:#fff; background:#333; } div.rad_editable_container { position: relative; } div.rad_editable_container:hover div.rad_container_toolbar { display: block; } div.rad_editable_container:hover .container-sortable-handle { display: block; } div.rad_page_container.ui-sortable-placeholder { background:#222; visibility:visible!important; width:4px!important; outline:none!important; } div.rad_page_container.no-widget .rad-inner-container { min-height:100px; } /** * Widget Toolbar */ div.widget-toolbar { position: absolute; z-index:99; display: none; bottom: 10px; left:10px; background:#555; border-radius:3px; } div.rad_w_right_panel { float:left; } div.rad_w_right_panel > i.rad-widget-handle, div.rad_w_right_panel a { border-left:1px solid #4a4a4a; text-decoration: none; color:#fff; text-decoration: none; display: block; padding: 10px; font-size: 10px; line-height: 1; float: left; } div.rad_w_right_panel > i.rad-widget-handle { cursor:move; } div.rad_w_right_panel a:first-child { border-left: none; } div.rad_widget_layout { float: left; border-right:1px solid #4a4a4a; } div.rad_widget_layout div.ioa_input { padding: 0; } div.rad_widget_layout div.ioa_input label { display: none; } div.rad_widget_layout div.ioa_input_holder div.ioa_select_wrap { overflow: hidden; height:31px; width: 42px; background: url(i/select-arrow.png) 91% 12px no-repeat; padding:0px 17px 0px 0; outline: none; font-size:12px; border:none; } div.rad_widget_layout div.ioa_input_holder div.ioa_select_wrap select { -webkit-appearance: none; background: transparent!important; border: none; cursor: pointer; display: block; vertical-align: center; padding:9px 0 7px 4px; height: 31px; color:#fff; width:90px; font-weight: 600; font-size: 11px; line-height: 1; } div.rad_widget_layout div.ioa_select_wrap select option { color:#fff; background:#333; } div.rad_page_widget { position: relative; } div.rad_page_widget:hover div.widget-toolbar { display: block; } div.rad_widget_helper { background:rgba(0,0,0,0.8); width: 75px!important; height: 75px!important; z-index:99999; padding: 0; } div.default_rad_stub { background:rgba(0,0,0,0.8); padding: 20px; border-radius:4px; } h4.rad-s-title { text-align: center; color:#fff; margin: 0; } /** * Widgets Stylings */ a.rad_gallery_upload { padding: 15px; text-align: center; text-decoration: none; background:#D0A4E7; color:#fff; display: block; clear:both; margin-top: 5px; border-radius:2px;} ul.rad_gallery_thumbs { margin: 0; padding: 20px 0px; clear: both; } ul.rad_gallery_thumbs li { float: left; position: relative; margin: 0px; width: 33%; max-width:150px; list-style: none; overflow: hidden; } ul.rad_gallery_thumbs li img { max-width: 100%; display: block; } ul.rad_gallery_thumbs li a.close { background: url(i/cross.png); width: 16px; height: 16px; position: absolute; top: 1px; right: 1px; z-index: 3; } ul.rad_gallery_thumbs li.ui-sortable-placeholder { float: left; position: relative; margin: 0px; width: 73px; height: 73px; visibility: visible !important; background: #fafafa; border: 1px dashed #ddd; } div.rad-w-progress-bar { position: absolute; bottom:10px; left:10px; right:10px; height: 3px; background:#222; z-index:3; border-radius: 5px; } div.rad-w-progress-bar div { position: absolute; bottom:0px; left:0px; height: 3px; background:#D0A4E7; width: 0%; border-radius: 5px; } div.rad_live_widgets_container { position: absolute; right:0px; bottom:0px; border-top-left-radius:3px; border-top-right-radius:3px; background:#111; height:200px; width:613px; overflow:auto; visibility:hidden; opacity:0; transition: all 0.4s ease-in-out; } div.rad_inner_widgets_wrap { padding: 15px; } #rad_live_widgets { float: right; z-index:99996; display: none; } #rad_live_widgets:hover div.rad_live_widgets_container { display: block!important; visibility:visible; opacity:1; } #rad_live_widgets .jspVerticalBar { width: 10px; border-left:1px solid #2d3032; } #rad_live_widgets .jspTrack { background:#1b1c1e; } #rad_live_widgets .jspDrag { background:#36383a; border-radius:6px; } a.rad_widgets_trigger { background-color: #222; color: #fff; padding:17px 21px; line-height: 1; text-decoration: none; display: block; font-size: 12px; font-weight: 600; border-left: 1px solid #0f0f0f; border-right: 1px solid #2b2b2b; -webkit-font-smoothing: subpixel-antialiased; } a.rad_widgets_trigger:hover { opacity: 0.7; } .v-f-d { display: none; } div.rad-thumb { cursor: move; width: 70px; height: 70px; background: #111; float: left; margin: 1px 1px 0 0; position: relative; } div.rad-thumb span.label { font-size: 11px; font-weight: 700; text-align: center; color: #eee; letter-spacing: -0.5px; display: block; position: absolute; bottom: 0; left: 0; right: 0; padding: 5px 0; line-height: 1; } div.rad-thumb span.rad-icon { position: absolute; top: 0; left: 0; right: 0; text-align: center; display: block; width: 100%; margin-top: 20px; } div.rad-thumb span.rad-icon.ioa-front-icon { font-size: 18px; color:#eee; } .settings-bar { position: fixed; top:0; left:-330px; bottom:0; width: 250px; background:#222222; z-index: 99997; color:#fff; } .settings-bar .ui-resizable-e { position: absolute; top:50%; right:-16px; background:url(i/resize-icon.png); border-radius:100%; width: 33px; height: 33px; margin:-16px 0 0 -4px; } .ui-draggable-dragging { position: fixed!important; z-index:99998; } .admin-bar div.top-bar { margin-top: 30px; } div.top-bar { position: relative; padding:0px; z-index: 10; background:#D0A4E7; text-transform:uppercase; text-align: center; -webkit-font-smoothing: subpixel-antialiased;} div.top-bar a { border-left:1px solid rgba(255,255,255,0.2); } div.top-bar a:first-child { border-left: none; } div.top-bar a.cancel-settings { padding:14px 18px 15px;text-decoration: none; line-height: 1; right:0; float: left; color:#fff; } div.top-bar a.save-settings { padding:9px 26px; text-decoration: none; float: left;color:#fff;} div.top-bar a.preview-trigger{ color:#fff; text-decoration: none; float: left; padding:9px 25px; -webkit-font-smoothing: subpixel-antialiased; position: relative; } div.top-bar a.preview-trigger span { position: absolute; background:rgba(0,0,0,0.1); position: absolute; left: 0; top: 0; bottom:0; height: 100%; width: 0; } div.top-bar a:hover { opacity:0.7; } div.rad-widget-settings h4 { text-align: center; margin: 0; padding:10px 5px; border-bottom:1px solid #2d3032; color:#fff; } div.rad-widget-settings h4 span { display: block; font-size:9px; margin-top: 4px; text-transform:uppercase; color:#fff; } div.rad-widget-settings h4 span.widget-title { display: none; } div.rad-sidebar-panel-selector { background: url(i/select-arrow.png) 95% 15px no-repeat #333; border:1px solid #4a4a4a; box-shadow:1px 0px 1px #000; color:#fff; padding:0px 17px 0px 0; outline: none; color:#354146; font-size:13px; width: 199px; overflow:hidden; } div.rad-sidebar-panel-selector select { -webkit-appearance: none; background: transparent!important; border: none; cursor: pointer; display: block; vertical-align: center; padding:10px 0px 10px 10px; height: 40px; color:#fff; width: 233px; } div.rad-sidebar-panel-selector select option { color:#fff; border: 1px solid #4a4a4a; background:#333; } @-moz-document url-prefix() { div.rad-sidebar-panel-selector select { padding: 10px 0px 10px 5px; } } div.rad-input-panels { display: none; } div.input-section-tabs div.rad-input-panels:first-child { display:block; } div.input-section-tabs ul { margin: 0; padding: 0; } div.input-section-tabs>ul>li { list-style: none; margin: 0; padding:10px; background:#fafafa; font-size:11px; border-bottom:1px solid #ddd; } div.input-section-tabs>ul>li.ui-state-active { background:#444; color:#fff; border-bottom: 1px solid #444; } div.input-section-tabs>ul>li.ui-state-active a{ color:#fff; } div.input-section-tabs ul li a { text-align: center; text-decoration: none; color:#444; } div.input-section-tabs > div { position: relative; } a.input-val-delete { display: none; } a.section-reset { text-decoration: none; background: #D0A4E7; padding: 2px; color: #fff; -webkit-font-smoothing: subpixel-antialiased; /* text-transform: uppercase; */ font-size: 12px; line-height: 1; /* font-weight: 600; */ float: right; clear: both; margin-top: 15px; margin-bottom: 10px; margin-right: 7px; border-radius: 3px;} div.settings-body { overflow:auto; -webkit-font-smoothing: subpixel-antialiased; } div.inner-visual-settings-panel h3 { cursor:pointer; margin: 0; padding: 10px 15px;color: #fff;background: #292929;border-bottom: 1px solid #191919; font-size: 13px; font-weight: normal; position: relative; } div.inner-visual-settings-panel h3.ui-accordion-header-active { background: #D0A4E7; color:#fff; border-bottom:1px solid #000;outline: none; } div.sub-styler-section { padding: 15px;background: #151515;border-bottom: 1px solid #191919;} div.inner-visual-settings-panel h3 a { position: absolute;top:8px; right:8px; background:rgba(00, 00, 00, .45); color:#fff; padding: 2px; border-radius:2px; text-decoration: none; display: block; line-height: 1; font-size:10px;font-weight: bold; } div.settings-body .jspVerticalBar { width: 10px; border-left:1px solid #2d3032; } div.settings-body .jspTrack { background:#1b1c1e; } div.settings-body .jspDrag { background:#36383a; border-radius:6px; } div.settings-body .settings-pane .input-section-tabs { padding: 15px; } /** * Helper Editor Stylings */ div.rad-w-editor { position: fixed; z-index:99999; top:100px; left:100px; right:100px; bottom:100px; background:#fff; box-shadow:0px 0px 20px rgba(0,0,0,0.5); display: none; } div.rad-w-editor-footer { padding: 10px; position: absolute; bottom:0; left:0; right:0; background:#fafafa; border-top:1px solid #ddd; } div.rad-w-editor-footer a { float: left; margin-right: 10px; } div.rad-w-editor-footer a.set-rad-w-editor { text-decoration: none; background:#D0A4E7; padding: 17px 21px; color:#fff; text-transform:uppercase; font-size: 12px; line-height: 1; font-weight: 600; border-radius: 2px; } div.rad-w-editor-footer a.cancel-rad-w-editor { text-decoration: none; background:#222; padding: 17px 21px; color:#fff; text-transform:uppercase; font-size: 12px; line-height: 1; font-weight: 600;border-radius: 2px; } div.rad-w-editor-body { overflow:auto; position: absolute; top:0; left:0; width: 100%; bottom:67px; } div.rad-w-editor-body>div { margin: 20px; } #wp-rad_wp_editor-editor-container { border-left:1px solid #eee; border-right:1px solid #eee; } a.ioa-editor-trigger { background: #D0A4E7; text-decoration: none; color: #fff; margin-right: 7px; font-size: 11px; padding: 2px 13px; border-radius:2px; top:5px; right:-2px; position: absolute; } /** * BASIC INPUTS Stylings */ div.ioa_input { padding: 10px 0; position: relative; } div.ioa_input label { color: #fff;font-weight: normal;-webkit-font-smoothing: subpixel-antialiased;font-size: 12px;} div.ioa_input div.ioa_input_holder { width: 100%; } div.ioa_input input[type=text] , div.ioa_input textarea { border: 1px solid #444; color: #ddd; background: #333; padding:11px 9px; width: 197px; } div.ioa_input input[type=text].slider-input { width: 27px; } div.ioa_input textarea { height:250px; } } div.ioa_input div.image_upload_wrap input[type=text] { width: 128px; float: left; } div.ioa_input div.image_upload_wrap a.image_upload { text-decoration: none; background:#D0A4E7; padding: 14px 10px; color:#fff; text-transform:uppercase; font-size: 11px; line-height: 1; font-weight: 600; float: left; margin-right: 4px; position: absolute; top: 0px; left: 0; } div.ioa_input a.add-rad-icon { text-decoration: none; background:#D0A4E7; padding: 14px 10px; color:#fff; text-transform:uppercase; font-size: 11px; line-height: 1; font-weight: 600; margin-right: 4px; position: absolute; top:35px; left: 0; } div.ioa_input a.width-correction { text-decoration: none; background:#D0A4E7; padding: 14px 10px; color:#fff; text-transform:uppercase; font-size: 11px; line-height: 1; font-weight: 600; float: left; margin-right: 4px; position: absolute; top: 0; right:0px; } div.ioa_input a.icon-maker { text-decoration: none; background:#D0A4E7; padding: 14px 10px; color:#fff; text-transform:uppercase; font-size: 11px; line-height: 1; font-weight: 600; float: left; margin-right: 4px; position: absolute; top: 0; right:0px; } div.ioa_input a.query-maker { text-decoration: none; background:#D0A4E7; padding: 14px 10px; color:#fff; text-transform:uppercase; font-size: 11px; line-height: 1; font-weight: 600; float: left; margin-right: 4px; position: absolute; top: 0; right:0px; } div.image_upload_wrap { position: relative; } div.input-image-preview { clear:left; position: relative; margin-top: 10px; } div.input-image-preview img { max-width: 100%; display:block; margin: 0px auto 0 auto; } div.input-image-preview span.himage-remove { cursor: pointer; width: 16px; height: 16px; background: url(i/cross.png); display: block; position: absolute; top:0; right:0; z-index: 10;} div.ioa_input_holder div.ioa_select_wrap { overflow: hidden; background: url(i/select-arrow.png) 95% 15px no-repeat #333; border:1px solid #4a4a4a; color:#fff; padding:0px 17px 0px 0; outline: none; color:#354146; font-size:13px; width: 198px; } div.ioa_input_holder div.ioa_select_wrap select { -webkit-appearance: none; border: none; cursor: pointer; background:none; display: block; vertical-align: center;padding: 10px 0px 10px 10px; height: 40px; color:#fff; width: 233px; } div.ioa_input_holder div.ioa_select_wrap select option { color:#fff; border:none; background:#333; } @-moz-document url-prefix() { div.ioa_input_holder div.ioa_select_wrap select { padding: 10px 0px 10px 5px; } } .shortcode-extra-insert { font-size: 10px; color: #D0A4E7; font-weight: 700; position: absolute; top:0; right:0; } div.post-meta-panel { clear: both; padding: 15px; background: #708093; display: none; } div.post-meta-panel > div , div.post-meta-panel > a{ float: left; padding: 4px 14px; background: #fff; color: #444; font-size: 11px; text-decoration: none; margin: 2px; } /* == Slider behaviour ======================================== */ .slider-suffix { float:left; width:10px; font-size:11px; margin:9px 0px 0px 10px; padding-top:0; color:#999; } .ioa_input .ui-slider { float:left; } .ioa_input .ui-slider { position: relative; top:10px; text-align: left; box-shadow:0px 1px 2px rgba(0,0,0,0.2) inset; border-radius:2px; background:#333; margin-top:9px; width:100px; margin-left: 5px; margin-right:20px; } .ioa_input .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width:16px; height:16px; cursor: pointer; background:#D0A4E7; border-radius:100%; -webkit-transition: all 1s ease-in-out; transition: all 1s ease-in-out; transition-property:background-color; transition-duration: 200ms, 200ms; transition-delay: 0s; margin-top:0px;} .ioa_input .ui-slider:hover .ui-slider-handle { background-color:#fff; } .ioa_input .ui-slider .ui-slider-range { background:#bbb; position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; } .ioa_input .ui-slider-horizontal { height:6px; } .ioa_input .ui-slider-horizontal .ui-slider-handle { top: -7px; margin-left:-8px; } .ioa_input .ui-slider-horizontal .ui-slider-range { top:2px; bottom:1px; height:2px; border-radius:5px; } .ioa_input .ui-slider-horizontal .ui-slider-range-min { left: 0; } .ioa_input .ui-slider-horizontal .ui-slider-range-max { right: 0; } div.ioa_input_holder.medium input[type=text].slider-input { width:25px; float: left; margin-right: 5px;} div.groud-check-wrap { float: left; width: 100%; margin-right: 20px;} div.groud-check-wrap label { margin-left: 5px;font-size: 12px; font-weight: normal;} /** * Module Stylings */ div.ioa_module_container { margin-right:0px; clear:both; margin-top: 15px; } div.ioa_module_container_head { padding: 10px; background: #fafafa; } div.ioa_module_container_head > a.button-default, div.ioa_module_container_head > a.button-save { margin:2px 0 0 6px; float: right; background:#333; color:#fff; text-decoration: none; padding: 5px; font-size: 10px; } div.ioa_module_container_head span { color: #555; font-size: 13px; float: left; margin:2px 0 0 10px; } div.module_head { color: #fff; font-size: 11px; font-weight: 600; padding:20px 10px 20px 131px; background:#555; position: relative; } div.module_head a.delete-mod { width: 16px; height: 16px; background: url(i/cross.png); display: block; position: absolute; top:0; right:0; z-index: 10;} div.module_head a.edit-mod { color:#fff; display: block; position: absolute; padding: 24px 24px 23px 24px; background:#888888; top:0px; left:0px; z-index: 10;} div.module_head a.clone-mod { color:#fff; display: block; position: absolute; padding: 24px 24px 23px 24px; background:#888888; top:0px; left:60px; z-index: 10;} div.module_head > a { -webkit-transition: all 1s ease-in-out; transition: all 1s ease-in-out; transition-property:background-color; transition-duration: 200ms, 200ms; transition-delay: 0s; } div.module_head > a:hover { background:#444; } @-moz-document url-prefix() { div.module_head a.edit-mod , div.module_head a.clone-mod { padding: 24px; } } div.module_head> a.delete-mod { background: url(i/cross.png); } div.module_body { padding: 10px 0; display: none; } div.module_body div.ioa_input { border:none; padding:5px 15px ; margin: 0; } div.module_body input[type=text] { max-width: 80%; } div.ioa_module.hide { display: none; } a.save-ioa-module { float: right; display: none; } /** * Icon Engine */ .sc-tabbed-area { position:relative; } .sc-tabbed-area ul.icons-menu { background:#333; } .sc-tabbed-area ul.icons-menu li { float:left; list-style:none; } .sc-tabbed-area ul.icons-menu li a { padding:10px 15px; color:#eee; text-decoration: none; display:block; } .sc-tabbed-area ul.icons-menu li.ui-state-active a { background:#222; color:#fff; } ul.sicon-list { padding: 20px; } ul.sicon-list li { cursor: pointer; margin: 0; padding: 0; float: left; text-align: center; padding: 22px 12px; width: 38px; border: 1px solid #555; border-right: none; border-bottom: none; box-shadow:1px 1px 0px #444; list-style:none; } ul.sicon-list li.active, ul.sicon-list li:hover { z-index: 10; box-shadow: 0px 0px 20px #555; } ul.sicon-list li.active i, ul.sicon-list li:hover i { color: #D0A4E7; } ul.sicon-list li i { color: #eee; font-size: 16px; } .icon-search-panel { position: relative; border-bottom:1px solid #ddd; } .icon-search-panel input { padding: 15px; width: 90%; border:none; } .icon-search-panel i { position: absolute; top:15px; font-size: 16px; right:15px; } #sc-icon-import { position: absolute; top:0px; right:0px; text-decoration: none; padding: 10px 15px; background:#333; color:#fff; } div.image-icon-pane { padding: 20px; } ul.parent_dir { padding: 0; margin: 0; width: 250px; float: left; } ul.parent_dir li { padding: 0; margin: 0; list-style: none; } ul.parent_dir ul.child_list { padding: 0; margin: 0; list-style: none; } ul.parent_dir ul.child_list li { float: left; cursor:pointer; font-size: 18px; color:#888; box-shadow:1px 1px 0px #555; padding: 12px 12px 12px 11px; line-height: 1; } ul.parent_dir ul.child_list li:hover { color:#fff; } .sc-tabbed-area div.preview_pane { float: left; width: 400px; } .sc-tabbed-area div.preview_pane h4 { margin-bottom:0px; padding: 15px; background:#eee; font-size: 16px; font-weight: 300; } div.icon-canvas { padding: 15px; background:#fff; } div.icon-canvas { text-align: center; } div.icon-canvas span.icon-wrap { line-height: 1; border:1px solid transparent; } div.icon-canvas span.icon-wrap img { max-width: 100%; } div.icon-opts h3 { padding:6px 15px; cursor:pointer; background:#eee; font-size: 16px; font-weight: 300; margin: 0; border-bottom:1px solid #ddd; } div.icon-opts div.grouping { padding: 10px; display: none; } /* Lightbox Styling */ div.save-template-lightbox, div.page-import-area { position: fixed; display: none; top:50%; left:50%; width: 300px; padding: 20px; background:#fff; box-shadow:0px 0px 10px rgba(0,0,0,0.1); z-index:9999; margin:-50px 0 0 -150px; } div.save-template-lightbox input[type=text] { padding:8px; border:1px solid #eee; width: 165px; float: left; margin-right: 15px; } div.save-template-lightbox a.close-icon { text-decoration: none; font-size: 13px; position: absolute; top:7px; right:12px; color:#333; } div.save-template-lightbox h4 { margin-top: 0; } div.rad-lightbox { position: fixed; top:100px; left:100px; bottom:100px; right:100px; z-index: 99999; background: #fff; box-shadow:0 0 60px rgba(0, 0, 0, 0.3); display: none; } div.rad-l-head { padding: 20px; cursor:move; background:#444; } div.rad-l-head h4 { margin: 0; padding: 0 0 0px 0; color:#fff; } div.rad-l-body { height: 90%; background: #333; overflow: auto; } div.rad-l-footer { position: absolute; top:7px; right:0px; z-index:20; } div.rad-l-footer a { float: left; background:#111; color:#fff; padding: 6px 15px; margin:9px 15px 5px 0px; text-decoration: none; } div.rad-l-footer a.button-hprimary { background:#D0A4E7; } div.rad-l-footer a.button-default { padding: 10px 15px; } div.rad-l-footer a.button-save { margin-right:0px; } div.query_engine { padding: 20px; } /** * Colorpicker Stylings */ .ioa_input_holder { position: relative; } div.colorpicker-wrap { float: left; width: 99%; position: relative; } span.minicolors { float:left; } div.ioa_input_holder.medium div.colorpicker-wrap input[type=text] { width:162px; float:left; color: #fff; border-right:none; } a.picker-delete { position: absolute; top:2px; left:2px; z-index: 10; display: block; width: 16px; height: 16px; background: url(i/cross.png); } .minicolors { position: relative; z-index: 1; display: inline-block; } .minicolors-focus { z-index: 12; } .minicolors-focus a.picker-delete { z-index: 34; } .minicolors-theme-default.minicolors .minicolors-input { vertical-align: middle; outline: none; } .minicolors-theme-default.minicolors-swatch-left .minicolors-input { margin-right: auto; } .minicolors-theme-default.minicolors-focus .minicolors-input, .minicolors-theme-default.minicolors-focus .minicolors-swatch { } .minicolors-hidden { position: absolute; left: -9999em; } .minicolors-swatch { position: absolute; width: 36px; height: 38px; text-align: left; top:0; right:0; background:url(i/color-picker-bg.png); margin: 0; vertical-align: middle; display: inline-block; border-left:1px solid #C8D4D9; border-left: none; border-top-right-radius:2px; border-bottom-right-radius:2px; z-index:3; } .minicolors-swatch SPAN { position: absolute; width: 100%; height: 100%; background: none; display: inline-block; } /* Panel */ .minicolors-panel { position: absolute; top: 38px; left: 56px; width: 173px; height: 152px; background: white; border: solid 1px #CCC; box-shadow: 0 0 20px rgba(0, 0, 0, .2); display: none; } .minicolors-position-top .minicolors-panel { top: -156px; } .minicolors-position-left .minicolors-panel { left: 0px!important; } .minicolors-position-left.minicolors-with-opacity .minicolors-panel { left: -104px; } .minicolors-with-opacity .minicolors-panel { width: 194px; } .minicolors .minicolors-grid { position: absolute; top: 1px; left: 1px; width: 150px; height: 150px; background: url(i/jquery.minicolors.png) -120px 0; cursor: crosshair; } .minicolors .minicolors-grid-inner { position: absolute; top: 0; left: 0; width: 150px; height: 150px; background: none; } .minicolors-slider-saturation .minicolors-grid { background-position: -420px 0; } .minicolors-slider-saturation .minicolors-grid-inner { background: url(i/jquery.minicolors.png) -270px 0; } .minicolors-slider-brightness .minicolors-grid { background-position: -570px 0; } .minicolors-slider-brightness .minicolors-grid-inner { background: black; } .minicolors-slider-wheel .minicolors-grid { background-position: -720px 0; } .minicolors-slider, .minicolors-opacity-slider { position: absolute; top: 1px; left: 152px; width: 20px; height: 150px; background: white url(i/jquery.minicolors.png) 0 0; cursor: crosshair; } .minicolors-slider-saturation .minicolors-slider { background-position: -60px 0; } .minicolors-slider-brightness .minicolors-slider { background-position: -20px 0; } .minicolors-slider-wheel .minicolors-slider { background-position: -20px 0; } .minicolors-opacity-slider { left: 173px; background-position: -40px 0; display: none; } .minicolors-with-opacity .minicolors-opacity-slider { display: block; } /* Pickers */ .minicolors-grid .minicolors-picker { position: absolute; top: 70px; left: 70px; width: 10px; height: 10px; border: solid 1px black; border-radius: 10px; margin-top: -6px; margin-left: -6px; background: none; } .minicolors-grid .minicolors-picker SPAN { position: absolute; top: 0; left: 0; width: 6px; height: 6px; border-radius: 6px; border: solid 2px white; } .minicolors-picker { position: absolute; top: 0; left: 0; width: 18px; height: 2px; background: white; border: solid 1px black; margin-top: -2px; } /* Inline controls */ .minicolors-inline .minicolors-input, .minicolors-inline .minicolors-swatch { display: none; } .minicolors-inline .minicolors-panel { position: relative; top: auto; left: auto; display: inline-block; } /* Scroll bar */ .jspContainer { overflow: hidden; position: relative; } .jspPane { position: absolute; } .jspVerticalBar { position: absolute; top: 0; right: 0; width: 16px; height: 100%; background: red; } .jspHorizontalBar { position: absolute; bottom: 0; left: 0; width: 100%; height: 16px; background: red; } .jspCap { display: none; } .jspHorizontalBar .jspCap { float: left; } .jspTrack { background: #dde; position: relative; } .jspDrag { background: #bbd; position: relative; top: 0; left: 0; cursor: pointer; } .jspHorizontalBar .jspTrack, .jspHorizontalBar .jspDrag { float: left; height: 100%; } .jspArrow { background: #50506d; text-indent: -20000px; display: block; cursor: pointer; padding: 0; margin: 0; } .jspArrow.jspDisabled { cursor: default; background: #80808d; } .jspVerticalBar .jspArrow { height: 16px; } .jspHorizontalBar .jspArrow { width: 16px; float: left; height: 100%; } .jspVerticalBar .jspArrow:focus { outline: none; } .jspCorner { background: #eeeef4; float: left; height: 100%; }
resources/views/fronts/limitless257/Limitless/backend/rad_live_builder/css/live_builder.css
.r_left { float: left; } .r_right { float: right; } .ioa-message { box-shadow:0px 0px 20px rgba(0,0,0,0.1); border-radius:2px; width:330px; padding:0; background:#222; position:fixed; z-index:999; top:45px; left:45%; display: none; } .ioa-message .ioa-message-head { padding:8px 5px; margin:0; text-transform:uppercase; font-weight:bold; position:relative; font-size:15px; } .ioa-message .ioa-message-body { color:#fff; font-size:12px; line-height:1.6; padding:0px; } .ioa-icon-area { float: left; text-align: center; box-shadow:-1px 0px 1px rgba(255,255,255,0.06) inset; padding:16px 20px; color:#fff; font-size:32px; border-right:1px solid #111; } .ioa-message.ioa-success .ioa-icon-area { color:#88ce3d; } .ioa-message.ioa-information .ioa-icon-area { color:#fff; } .ioa-message.ioa-warning .ioa-icon-area { color:#f1cd09; } .ioa-message.ioa-error .ioa-icon-area { color:#f10909; } .ioa-information-p { background:#fff; margin:0 30px 20px 30px; padding:20px; color:#fff; text-align: center; } .ioa-info-area { float: left; width: 255px; } .ioa-info-area h3 { color:#fff; font-size: 15px; margin:10px 0 0 0; padding:0px 0px 0px 20px; } .ioa-info-area p { color:#fff; font-size: 11px; margin:0; padding:4px 20px 0px 20px; } a.trigger-live-editor { position: fixed; bottom: 80px; right: 60px; padding: 15px; line-height: 1; color: #fff; font-size: 20px; font-weight: 700; border-radius: 3px; z-index: 9999; background:#222; box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, .3); } a.trigger-live-editor:hover { color:#D0A4E7; } a.trigger-live-editor.editor-is-active { font-weight: 400; color:#D0A4E7; } /* == Panel Stylings == */ div.visual-settings-pane > h4 { display: none; } ul.rad_options_trigger { padding: 0; margin: 0; background:#0f0f10; } ul.rad_options_trigger li { list-style:none; float: left; width: 49%; text-align: center; padding:10px 0; margin: 0; border-bottom:1px solid #27292b; } ul.rad_options_trigger li:first-child { border-right:1px solid #27292b; } ul.rad_options_trigger li.ui-state-active { background:#161718; border-bottom:1px solid #161718; } ul.rad_options_trigger li.ui-state-active a { color:#fff; } ul.rad_options_trigger li a { color:#fff; text-decoration: none; } #rad_live_panel { background:#161616; height: 45px; position: fixed; bottom:-50px; left:0; right:0; width: 100%; z-index:99996; box-shadow:0px -2px 10px rgba(0,0,0,0.2); display: none; } #rad_live_panel .skeleton > a { border-left:1px solid #0f0f0f; border-right:1px solid #2b2b2b; } a.rad_button_primary { text-decoration: none; background:#D0A4E7; padding: 17px 21px; color:#fff; text-transform:none; font-size: 12px; line-height: 1; font-weight: 600;-webkit-font-smoothing: subpixel-antialiased; } a.rad_button_secondary { text-decoration: none; background:#222; padding: 17px 21px; color:#fff; text-transform:none; font-size: 12px; line-height: 1; font-weight: 600; -webkit-font-smoothing: subpixel-antialiased;} a.rad_button_error { text-decoration: none; background:#222; padding: 17px 21px; color:#fff; text-transform:none; font-size: 12px; line-height: 1; font-weight: 600;-webkit-font-smoothing: subpixel-antialiased; } a.rad_button_menu { text-decoration: none; background:#222; padding: 17px 21px; color:#fff; text-transform:none; font-size: 12px; line-height: 1; font-weight: 600; display: inline-block; border-left:1px solid #0f0f0f; border-right:1px solid #2b2b2b; -webkit-font-smoothing: subpixel-antialiased;} a.rad_button_menu i { margin-right: 4px;-webkit-font-smoothing: subpixel-antialiased; } a.rad_button_primary:hover , a.rad_button_secondary:hover, a.rad_button_menu:hover, a.rad_button_error:hover, a.rad_add_section:hover { opacity:0.7; } div.uploader-editor { display: none; } div.rad-styler { display: none; } /** * RAD File Menu Stylings */ .rad_file_menu_wrap { position: relative; } ul.rad_file_sub_menu { padding:0 15px; background:#222; border-radius:2px; margin: 0; position: absolute; bottom:45px; left:-75px; width: 200px; display: none; -webkit-font-smoothing: subpixel-antialiased;} .rad_file_menu_wrap:hover ul.rad_file_sub_menu { display: block; } ul.rad_file_sub_menu li { list-style:none; padding: 7px 0; border-bottom:1px solid #333; } ul.rad_file_sub_menu li:last-child { border-bottom:none; } ul.rad_file_sub_menu li a { color:#fff; text-decoration: none; display: block;-webkit-font-smoothing: subpixel-antialiased;} ul.rad_file_sub_menu li a:hover { color:#D0A4E7; } /** * Add Row Button */ a.rad_add_section { background-color: #222; display: block; border-radius:3px; color: #fff!important; font-size: 20px; font-weight: normal; padding: 15px; text-align: center; text-decoration: none; margin: 25px auto; max-width:45%; } /** * Section Toolbar */ div.rad_section_toolbar { border-radius:4px; background:rgba(189,123,223,0.7); z-index:999; position: absolute; left:20px; top:50%; margin-top: -75px; display: none; } div.rad_section_toolbar a { border-top:1px solid #b171d2; text-decoration: none; color:#fff; text-decoration: none; display: block; padding: 12px; font-size: 12px; line-height: 1; } div.rad_section_toolbar a:first-child { border-top: none; } div.rad_section_toolbar a:hover { opacity:0.6; } div.rad_editable_section:hover div.rad-container { outline:#CCC dashed 1px; } div.rad_editable_section:hover div.rad-container:hover { outline:#111 dashed 1px; } div.rad_editable_section:hover { outline:#444444 solid 2px; } div.rad_editable_section:hover div.rad_section_toolbar { display: block; } div.rad_page_section.no-container .section-content { min-height:200px; } .section-sortable-handle { position: absolute; padding: 10px; line-height: 1; background:#222; border-radius: 3px; box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, .3); text-decoration: none; top:50%; color: #fff; right:20px; z-index:3; margin-top:-18px; cursor:move; } .section-sortable-handle:hover { color: #D0A4E7;} div.section-c-helper { height:30px!important; background:url(i/rp.jpg); } div.section-dropper-helper { position: absolute; display: none; top: 0; right: 0; left: 0; bottom:0; background:rgba(0,0,0,0.2); } div.section-dropper-helper h4 { color:#fff; text-align: center; margin: 0 auto; padding: 20px; border:2px solid #fff; border-radius:5px; width: 200px; position: absolute; left:50%; top:50%; margin: -30px 0 0 -100px; z-index:10; display: none; } div.rad_page_section.ui-sortable-placeholder { background:#222; visibility:visible!important; } div.rad-section-dropping div.section-dropper-helper { display: block; } div.container-dropper-helper { position: absolute; display: none; top: 0; right: 0; left: 0; bottom:0; background:rgba(0,0,0,0.2); } div.rad-container-dropping div.container-dropper-helper { display: block; } div.container-dropper-helper h4 { color:#fff; text-align: center; margin: 0 auto; padding: 20px; border:2px solid #fff; border-radius:5px; width: 200px; position: absolute; left:50%; top:50%; margin: -30px 0 0 -100px; z-index:10; display: none; } /** * Container Toolbar */ i.container-sortable-handle { position: absolute; bottom:10px; right:10px; background-color: #2c2c2c; color: #fff; font-weight: 400; box-shadow: 0px 1px 2px rgba(00,00,00,0.3); padding:6px; border-radius: 3px; font-size: 11px; line-height: 1; margin-top: -22px; cursor:move; display: none; z-index:3; } div.rad_container_toolbar { position: absolute; top:10px; display: none; right:10px; background-color: #2c2c2c; color: #fff; font-weight: 400; border-radius: 3px; box-shadow: 0px 1px 2px rgba(00,00,00,0.3); z-index:3; } div.rad_right_panel { float:left; } div.rad_right_panel a { border-left:1px solid #111; text-decoration: none; color:#fff; text-decoration: none; display: block; padding: 10px; font-size: 10px; line-height: 1; float: left; } div.rad_right_panel a:first-child { border-left: none; } div.rad_container_layout { float: left; border-right:1px solid #111; } div.rad_container_layout div.ioa_input { padding: 0; } div.rad_container_layout div.ioa_input label { display: none; } div.rad_container_layout div.ioa_input_holder div.ioa_select_wrap { overflow: hidden; height:31px; width: 42px; background: url(i/select-arrow.png) 91% 12px no-repeat; padding:0px 17px 0px 0; outline: none; font-size:12px; border:none; box-shadow: none; } div.rad_container_layout div.ioa_input_holder div.ioa_select_wrap select { -webkit-appearance: none; background: transparent!important; border: none; cursor: pointer; display: block; vertical-align: center; padding: 9px 0 9px 12px; height: 31px; color:#fff; width:90px; font-weight: 600; font-size: 11px; line-height: 1; } div.rad_container_layout div.ioa_select_wrap select option { color:#fff; background:#333; } div.rad_editable_container { position: relative; } div.rad_editable_container:hover div.rad_container_toolbar { display: block; } div.rad_editable_container:hover .container-sortable-handle { display: block; } div.rad_page_container.ui-sortable-placeholder { background:#222; visibility:visible!important; width:4px!important; outline:none!important; } div.rad_page_container.no-widget .rad-inner-container { min-height:100px; } /** * Widget Toolbar */ div.widget-toolbar { position: absolute; z-index:99; display: none; bottom: 10px; left:10px; background:#555; border-radius:3px; } div.rad_w_right_panel { float:left; } div.rad_w_right_panel > i.rad-widget-handle, div.rad_w_right_panel a { border-left:1px solid #4a4a4a; text-decoration: none; color:#fff; text-decoration: none; display: block; padding: 10px; font-size: 10px; line-height: 1; float: left; } div.rad_w_right_panel > i.rad-widget-handle { cursor:move; } div.rad_w_right_panel a:first-child { border-left: none; } div.rad_widget_layout { float: left; border-right:1px solid #4a4a4a; } div.rad_widget_layout div.ioa_input { padding: 0; } div.rad_widget_layout div.ioa_input label { display: none; } div.rad_widget_layout div.ioa_input_holder div.ioa_select_wrap { overflow: hidden; height:31px; width: 42px; background: url(i/select-arrow.png) 91% 12px no-repeat; padding:0px 17px 0px 0; outline: none; font-size:12px; border:none; } div.rad_widget_layout div.ioa_input_holder div.ioa_select_wrap select { -webkit-appearance: none; background: transparent!important; border: none; cursor: pointer; display: block; vertical-align: center; padding:9px 0 7px 4px; height: 31px; color:#fff; width:90px; font-weight: 600; font-size: 11px; line-height: 1; } div.rad_widget_layout div.ioa_select_wrap select option { color:#fff; background:#333; } div.rad_page_widget { position: relative; } div.rad_page_widget:hover div.widget-toolbar { display: block; } div.rad_widget_helper { background:rgba(0,0,0,0.8); width: 75px!important; height: 75px!important; z-index:99999; padding: 0; } div.default_rad_stub { background:rgba(0,0,0,0.8); padding: 20px; border-radius:4px; } h4.rad-s-title { text-align: center; color:#fff; margin: 0; } /** * Widgets Stylings */ a.rad_gallery_upload { padding: 15px; text-align: center; text-decoration: none; background:#D0A4E7; color:#fff; display: block; clear:both; margin-top: 5px; border-radius:2px;} ul.rad_gallery_thumbs { margin: 0; padding: 20px 0px; clear: both; } ul.rad_gallery_thumbs li { float: left; position: relative; margin: 0px; width: 33%; max-width:150px; list-style: none; overflow: hidden; } ul.rad_gallery_thumbs li img { max-width: 100%; display: block; } ul.rad_gallery_thumbs li a.close { background: url(i/cross.png); width: 16px; height: 16px; position: absolute; top: 1px; right: 1px; z-index: 3; } ul.rad_gallery_thumbs li.ui-sortable-placeholder { float: left; position: relative; margin: 0px; width: 73px; height: 73px; visibility: visible !important; background: #fafafa; border: 1px dashed #ddd; } div.rad-w-progress-bar { position: absolute; bottom:10px; left:10px; right:10px; height: 3px; background:#222; z-index:3; border-radius: 5px; } div.rad-w-progress-bar div { position: absolute; bottom:0px; left:0px; height: 3px; background:#D0A4E7; width: 0%; border-radius: 5px; } div.rad_live_widgets_container { position: absolute; right:0px; bottom:0px; border-top-left-radius:3px; border-top-right-radius:3px; background:#111; height:200px; width:613px; overflow:auto; visibility:hidden; opacity:0; transition: all 0.4s ease-in-out; } div.rad_inner_widgets_wrap { padding: 15px; } #rad_live_widgets { float: right; z-index:99996; display: none; } #rad_live_widgets:hover div.rad_live_widgets_container { display: block!important; visibility:visible; opacity:1; } #rad_live_widgets .jspVerticalBar { width: 10px; border-left:1px solid #2d3032; } #rad_live_widgets .jspTrack { background:#1b1c1e; } #rad_live_widgets .jspDrag { background:#36383a; border-radius:6px; } a.rad_widgets_trigger { background-color: #222; color: #fff; padding:17px 21px; line-height: 1; text-decoration: none; display: block; font-size: 12px; font-weight: 600; border-left: 1px solid #0f0f0f; border-right: 1px solid #2b2b2b; -webkit-font-smoothing: subpixel-antialiased; } a.rad_widgets_trigger:hover { opacity: 0.7; } .v-f-d { display: none; } div.rad-thumb { cursor: move; width: 70px; height: 70px; background: #111; float: left; margin: 1px 1px 0 0; position: relative; } div.rad-thumb span.label { font-size: 11px; font-weight: 700; text-align: center; color: #eee; letter-spacing: -0.5px; display: block; position: absolute; bottom: 0; left: 0; right: 0; padding: 5px 0; line-height: 1; } div.rad-thumb span.rad-icon { position: absolute; top: 0; left: 0; right: 0; text-align: center; display: block; width: 100%; margin-top: 20px; } div.rad-thumb span.rad-icon.ioa-front-icon { font-size: 18px; color:#eee; } .settings-bar { position: fixed; top:0; left:-330px; bottom:0; width: 250px; background:#222222; z-index: 99997; color:#fff; } .settings-bar .ui-resizable-e { position: absolute; top:50%; right:-16px; background:url(i/resize-icon.png); border-radius:100%; width: 33px; height: 33px; margin:-16px 0 0 -4px; } .ui-draggable-dragging { position: fixed!important; z-index:99998; } .admin-bar div.top-bar { margin-top: 30px; } div.top-bar { position: relative; padding:0px; z-index: 10; background:#D0A4E7; text-transform:uppercase; text-align: center; -webkit-font-smoothing: subpixel-antialiased;} div.top-bar a { border-left:1px solid rgba(255,255,255,0.2); } div.top-bar a:first-child { border-left: none; } div.top-bar a.cancel-settings { padding:14px 18px 15px;text-decoration: none; line-height: 1; right:0; float: left; color:#fff; } div.top-bar a.save-settings { padding:9px 26px; text-decoration: none; float: left;color:#fff;} div.top-bar a.preview-trigger{ color:#fff; text-decoration: none; float: left; padding:9px 25px; -webkit-font-smoothing: subpixel-antialiased; position: relative; } div.top-bar a.preview-trigger span { position: absolute; background:rgba(0,0,0,0.1); position: absolute; left: 0; top: 0; bottom:0; height: 100%; width: 0; } div.top-bar a:hover { opacity:0.7; } div.rad-widget-settings h4 { text-align: center; margin: 0; padding:10px 5px; border-bottom:1px solid #2d3032; color:#fff; } div.rad-widget-settings h4 span { display: block; font-size:9px; margin-top: 4px; text-transform:uppercase; color:#fff; } div.rad-widget-settings h4 span.widget-title { display: none; } div.rad-sidebar-panel-selector { background: url(i/select-arrow.png) 95% 15px no-repeat #333; border:1px solid #4a4a4a; box-shadow:1px 0px 1px #000; color:#fff; padding:0px 17px 0px 0; outline: none; color:#354146; font-size:13px; width: 199px; overflow:hidden; } div.rad-sidebar-panel-selector select { -webkit-appearance: none; background: transparent!important; border: none; cursor: pointer; display: block; vertical-align: center; padding:10px 0px 10px 10px; height: 40px; color:#fff; width: 233px; } div.rad-sidebar-panel-selector select option { color:#fff; border: 1px solid #4a4a4a; background:#333; } @-moz-document url-prefix() { div.rad-sidebar-panel-selector select { padding: 10px 0px 10px 5px; } } div.rad-input-panels { display: none; } div.input-section-tabs div.rad-input-panels:first-child { display:block; } div.input-section-tabs ul { margin: 0; padding: 0; } div.input-section-tabs>ul>li { list-style: none; margin: 0; padding:10px; background:#fafafa; font-size:11px; border-bottom:1px solid #ddd; } div.input-section-tabs>ul>li.ui-state-active { background:#444; color:#fff; border-bottom: 1px solid #444; } div.input-section-tabs>ul>li.ui-state-active a{ color:#fff; } div.input-section-tabs ul li a { text-align: center; text-decoration: none; color:#444; } div.input-section-tabs > div { position: relative; } a.input-val-delete { display: none; } a.section-reset { text-decoration: none; background: #D0A4E7; padding: 2px; color: #fff; -webkit-font-smoothing: subpixel-antialiased; /* text-transform: uppercase; */ font-size: 12px; line-height: 1; /* font-weight: 600; */ float: right; clear: both; margin-top: 15px; margin-bottom: 10px; margin-right: 7px; border-radius: 3px;} div.settings-body { overflow:auto; -webkit-font-smoothing: subpixel-antialiased; } div.inner-visual-settings-panel h3 { cursor:pointer; margin: 0; padding: 10px 15px;color: #fff;background: #292929;border-bottom: 1px solid #191919; font-size: 13px; font-weight: normal; position: relative; } div.inner-visual-settings-panel h3.ui-accordion-header-active { background: #D0A4E7; color:#fff; border-bottom:1px solid #000;outline: none; } div.sub-styler-section { padding: 15px;background: #151515;border-bottom: 1px solid #191919;} div.inner-visual-settings-panel h3 a { position: absolute;top:8px; right:8px; background:rgba(00, 00, 00, .45); color:#fff; padding: 2px; border-radius:2px; text-decoration: none; display: block; line-height: 1; font-size:10px;font-weight: bold; } div.settings-body .jspVerticalBar { width: 10px; border-left:1px solid #2d3032; } div.settings-body .jspTrack { background:#1b1c1e; } div.settings-body .jspDrag { background:#36383a; border-radius:6px; } div.settings-body .settings-pane .input-section-tabs { padding: 15px; } /** * Helper Editor Stylings */ div.rad-w-editor { position: fixed; z-index:99999; top:100px; left:100px; right:100px; bottom:100px; background:#fff; box-shadow:0px 0px 20px rgba(0,0,0,0.5); display: none; } div.rad-w-editor-footer { padding: 10px; position: absolute; bottom:0; left:0; right:0; background:#fafafa; border-top:1px solid #ddd; } div.rad-w-editor-footer a { float: left; margin-right: 10px; } div.rad-w-editor-footer a.set-rad-w-editor { text-decoration: none; background:#D0A4E7; padding: 17px 21px; color:#fff; text-transform:uppercase; font-size: 12px; line-height: 1; font-weight: 600; border-radius: 2px; } div.rad-w-editor-footer a.cancel-rad-w-editor { text-decoration: none; background:#222; padding: 17px 21px; color:#fff; text-transform:uppercase; font-size: 12px; line-height: 1; font-weight: 600;border-radius: 2px; } div.rad-w-editor-body { overflow:auto; position: absolute; top:0; left:0; width: 100%; bottom:67px; } div.rad-w-editor-body>div { margin: 20px; } #wp-rad_wp_editor-editor-container { border-left:1px solid #eee; border-right:1px solid #eee; } a.ioa-editor-trigger { background: #D0A4E7; text-decoration: none; color: #fff; margin-right: 7px; font-size: 11px; padding: 2px 13px; border-radius:2px; top:5px; right:-2px; position: absolute; } /** * BASIC INPUTS Stylings */ div.ioa_input { padding: 10px 0; position: relative; } div.ioa_input label { color: #fff;font-weight: normal;-webkit-font-smoothing: subpixel-antialiased;font-size: 12px;} div.ioa_input div.ioa_input_holder { width: 100%; } div.ioa_input input[type=text] , div.ioa_input textarea { border: 1px solid #444; color: #ddd; background: #333; padding:11px 9px; width: 197px; } div.ioa_input input[type=text].slider-input { width: 27px; } div.ioa_input textarea { height:250px; } } div.ioa_input div.image_upload_wrap input[type=text] { width: 128px; float: left; } div.ioa_input div.image_upload_wrap a.image_upload { text-decoration: none; background:#D0A4E7; padding: 14px 10px; color:#fff; text-transform:uppercase; font-size: 11px; line-height: 1; font-weight: 600; float: left; margin-right: 4px; position: absolute; top: 0px; left: 0; } div.ioa_input a.add-rad-icon { text-decoration: none; background:#D0A4E7; padding: 14px 10px; color:#fff; text-transform:uppercase; font-size: 11px; line-height: 1; font-weight: 600; margin-right: 4px; position: absolute; top:35px; left: 0; } div.ioa_input a.width-correction { text-decoration: none; background:#D0A4E7; padding: 14px 10px; color:#fff; text-transform:uppercase; font-size: 11px; line-height: 1; font-weight: 600; float: left; margin-right: 4px; position: absolute; top: 0; right:0px; } div.ioa_input a.icon-maker { text-decoration: none; background:#D0A4E7; padding: 14px 10px; color:#fff; text-transform:uppercase; font-size: 11px; line-height: 1; font-weight: 600; float: left; margin-right: 4px; position: absolute; top: 0; right:0px; } div.ioa_input a.query-maker { text-decoration: none; background:#D0A4E7; padding: 14px 10px; color:#fff; text-transform:uppercase; font-size: 11px; line-height: 1; font-weight: 600; float: left; margin-right: 4px; position: absolute; top: 0; right:0px; } div.image_upload_wrap { position: relative; } div.input-image-preview { clear:left; position: relative; margin-top: 10px; } div.input-image-preview img { max-width: 100%; display:block; margin: 0px auto 0 auto; } div.input-image-preview span.himage-remove { cursor: pointer; width: 16px; height: 16px; background: url(i/cross.png); display: block; position: absolute; top:0; right:0; z-index: 10;} div.ioa_input_holder div.ioa_select_wrap { overflow: hidden; background: url(i/select-arrow.png) 95% 15px no-repeat #333; border:1px solid #4a4a4a; color:#fff; padding:0px 17px 0px 0; outline: none; color:#354146; font-size:13px; width: 198px; } div.ioa_input_holder div.ioa_select_wrap select { -webkit-appearance: none; border: none; cursor: pointer; background:none; display: block; vertical-align: center;padding: 10px 0px 10px 10px; height: 40px; color:#fff; width: 233px; } div.ioa_input_holder div.ioa_select_wrap select option { color:#fff; border:none; background:#333; } @-moz-document url-prefix() { div.ioa_input_holder div.ioa_select_wrap select { padding: 10px 0px 10px 5px; } } .shortcode-extra-insert { font-size: 10px; color: #D0A4E7; font-weight: 700; position: absolute; top:0; right:0; } div.post-meta-panel { clear: both; padding: 15px; background: #708093; display: none; } div.post-meta-panel > div , div.post-meta-panel > a{ float: left; padding: 4px 14px; background: #fff; color: #444; font-size: 11px; text-decoration: none; margin: 2px; } /* == Slider behaviour ======================================== */ .slider-suffix { float:left; width:10px; font-size:11px; margin:9px 0px 0px 10px; padding-top:0; color:#999; } .ioa_input .ui-slider { float:left; } .ioa_input .ui-slider { position: relative; top:10px; text-align: left; box-shadow:0px 1px 2px rgba(0,0,0,0.2) inset; border-radius:2px; background:#333; margin-top:9px; width:100px; margin-left: 5px; margin-right:20px; } .ioa_input .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width:16px; height:16px; cursor: pointer; background:#D0A4E7; border-radius:100%; -webkit-transition: all 1s ease-in-out; transition: all 1s ease-in-out; transition-property:background-color; transition-duration: 200ms, 200ms; transition-delay: 0s; margin-top:0px;} .ioa_input .ui-slider:hover .ui-slider-handle { background-color:#fff; } .ioa_input .ui-slider .ui-slider-range { background:#bbb; position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; } .ioa_input .ui-slider-horizontal { height:6px; } .ioa_input .ui-slider-horizontal .ui-slider-handle { top: -7px; margin-left:-8px; } .ioa_input .ui-slider-horizontal .ui-slider-range { top:2px; bottom:1px; height:2px; border-radius:5px; } .ioa_input .ui-slider-horizontal .ui-slider-range-min { left: 0; } .ioa_input .ui-slider-horizontal .ui-slider-range-max { right: 0; } div.ioa_input_holder.medium input[type=text].slider-input { width:25px; float: left; margin-right: 5px;} div.groud-check-wrap { float: left; width: 100%; margin-right: 20px;} div.groud-check-wrap label { margin-left: 5px;font-size: 12px; font-weight: normal;} /** * Module Stylings */ div.ioa_module_container { margin-right:0px; clear:both; margin-top: 15px; } div.ioa_module_container_head { padding: 10px; background: #fafafa; } div.ioa_module_container_head > a.button-default, div.ioa_module_container_head > a.button-save { margin:2px 0 0 6px; float: right; background:#333; color:#fff; text-decoration: none; padding: 5px; font-size: 10px; } div.ioa_module_container_head span { color: #555; font-size: 13px; float: left; margin:2px 0 0 10px; } div.module_head { color: #fff; font-size: 11px; font-weight: 600; padding:20px 10px 20px 131px; background:#555; position: relative; } div.module_head a.delete-mod { width: 16px; height: 16px; background: url(i/cross.png); display: block; position: absolute; top:0; right:0; z-index: 10;} div.module_head a.edit-mod { color:#fff; display: block; position: absolute; padding: 24px 24px 23px 24px; background:#888888; top:0px; left:0px; z-index: 10;} div.module_head a.clone-mod { color:#fff; display: block; position: absolute; padding: 24px 24px 23px 24px; background:#888888; top:0px; left:60px; z-index: 10;} div.module_head > a { -webkit-transition: all 1s ease-in-out; transition: all 1s ease-in-out; transition-property:background-color; transition-duration: 200ms, 200ms; transition-delay: 0s; } div.module_head > a:hover { background:#444; } @-moz-document url-prefix() { div.module_head a.edit-mod , div.module_head a.clone-mod { padding: 24px; } } div.module_head> a.delete-mod { background: url(i/cross.png); } div.module_body { padding: 10px 0; display: none; } div.module_body div.ioa_input { border:none; padding:5px 15px ; margin: 0; } div.module_body input[type=text] { max-width: 80%; } div.ioa_module.hide { display: none; } a.save-ioa-module { float: right; display: none; } /** * Icon Engine */ .sc-tabbed-area { position:relative; } .sc-tabbed-area ul.icons-menu { background:#333; } .sc-tabbed-area ul.icons-menu li { float:left; list-style:none; } .sc-tabbed-area ul.icons-menu li a { padding:10px 15px; color:#eee; text-decoration: none; display:block; } .sc-tabbed-area ul.icons-menu li.ui-state-active a { background:#222; color:#fff; } ul.sicon-list { padding: 20px; } ul.sicon-list li { cursor: pointer; margin: 0; padding: 0; float: left; text-align: center; padding: 22px 12px; width: 38px; border: 1px solid #555; border-right: none; border-bottom: none; box-shadow:1px 1px 0px #444; list-style:none; } ul.sicon-list li.active, ul.sicon-list li:hover { z-index: 10; box-shadow: 0px 0px 20px #555; } ul.sicon-list li.active i, ul.sicon-list li:hover i { color: #D0A4E7; } ul.sicon-list li i { color: #eee; font-size: 16px; } .icon-search-panel { position: relative; border-bottom:1px solid #ddd; } .icon-search-panel input { padding: 15px; width: 90%; border:none; } .icon-search-panel i { position: absolute; top:15px; font-size: 16px; right:15px; } #sc-icon-import { position: absolute; top:0px; right:0px; text-decoration: none; padding: 10px 15px; background:#333; color:#fff; } div.image-icon-pane { padding: 20px; } ul.parent_dir { padding: 0; margin: 0; width: 250px; float: left; } ul.parent_dir li { padding: 0; margin: 0; list-style: none; } ul.parent_dir ul.child_list { padding: 0; margin: 0; list-style: none; } ul.parent_dir ul.child_list li { float: left; cursor:pointer; font-size: 18px; color:#888; box-shadow:1px 1px 0px #555; padding: 12px 12px 12px 11px; line-height: 1; } ul.parent_dir ul.child_list li:hover { color:#fff; } .sc-tabbed-area div.preview_pane { float: left; width: 400px; } .sc-tabbed-area div.preview_pane h4 { margin-bottom:0px; padding: 15px; background:#eee; font-size: 16px; font-weight: 300; } div.icon-canvas { padding: 15px; background:#fff; } div.icon-canvas { text-align: center; } div.icon-canvas span.icon-wrap { line-height: 1; border:1px solid transparent; } div.icon-canvas span.icon-wrap img { max-width: 100%; } div.icon-opts h3 { padding:6px 15px; cursor:pointer; background:#eee; font-size: 16px; font-weight: 300; margin: 0; border-bottom:1px solid #ddd; } div.icon-opts div.grouping { padding: 10px; display: none; } /* Lightbox Styling */ div.save-template-lightbox, div.page-import-area { position: fixed; display: none; top:50%; left:50%; width: 300px; padding: 20px; background:#fff; box-shadow:0px 0px 10px rgba(0,0,0,0.1); z-index:9999; margin:-50px 0 0 -150px; } div.save-template-lightbox input[type=text] { padding:8px; border:1px solid #eee; width: 165px; float: left; margin-right: 15px; } div.save-template-lightbox a.close-icon { text-decoration: none; font-size: 13px; position: absolute; top:7px; right:12px; color:#333; } div.save-template-lightbox h4 { margin-top: 0; } div.rad-lightbox { position: fixed; top:100px; left:100px; bottom:100px; right:100px; z-index: 99999; background: #fff; box-shadow:0 0 60px rgba(0, 0, 0, 0.3); display: none; } div.rad-l-head { padding: 20px; cursor:move; background:#444; } div.rad-l-head h4 { margin: 0; padding: 0 0 0px 0; color:#fff; } div.rad-l-body { height: 90%; background: #333; overflow: auto; } div.rad-l-footer { position: absolute; top:7px; right:0px; z-index:20; } div.rad-l-footer a { float: left; background:#111; color:#fff; padding: 6px 15px; margin:9px 15px 5px 0px; text-decoration: none; } div.rad-l-footer a.button-hprimary { background:#D0A4E7; } div.rad-l-footer a.button-default { padding: 10px 15px; } div.rad-l-footer a.button-save { margin-right:0px; } div.query_engine { padding: 20px; } /** * Colorpicker Stylings */ .ioa_input_holder { position: relative; } div.colorpicker-wrap { float: left; width: 99%; position: relative; } span.minicolors { float:left; } div.ioa_input_holder.medium div.colorpicker-wrap input[type=text] { width:162px; float:left; color: #fff; border-right:none; } a.picker-delete { position: absolute; top:2px; left:2px; z-index: 10; display: block; width: 16px; height: 16px; background: url(i/cross.png); } .minicolors { position: relative; z-index: 1; display: inline-block; } .minicolors-focus { z-index: 12; } .minicolors-focus a.picker-delete { z-index: 34; } .minicolors-theme-default.minicolors .minicolors-input { vertical-align: middle; outline: none; } .minicolors-theme-default.minicolors-swatch-left .minicolors-input { margin-right: auto; } .minicolors-theme-default.minicolors-focus .minicolors-input, .minicolors-theme-default.minicolors-focus .minicolors-swatch { } .minicolors-hidden { position: absolute; left: -9999em; } .minicolors-swatch { position: absolute; width: 36px; height: 38px; text-align: left; top:0; right:0; background:url(i/color-picker-bg.png); margin: 0; vertical-align: middle; display: inline-block; border-left:1px solid #C8D4D9; border-left: none; border-top-right-radius:2px; border-bottom-right-radius:2px; z-index:3; } .minicolors-swatch SPAN { position: absolute; width: 100%; height: 100%; background: none; display: inline-block; } /* Panel */ .minicolors-panel { position: absolute; top: 38px; left: 56px; width: 173px; height: 152px; background: white; border: solid 1px #CCC; box-shadow: 0 0 20px rgba(0, 0, 0, .2); display: none; } .minicolors-position-top .minicolors-panel { top: -156px; } .minicolors-position-left .minicolors-panel { left: 0px!important; } .minicolors-position-left.minicolors-with-opacity .minicolors-panel { left: -104px; } .minicolors-with-opacity .minicolors-panel { width: 194px; } .minicolors .minicolors-grid { position: absolute; top: 1px; left: 1px; width: 150px; height: 150px; background: url(i/jquery.minicolors.png) -120px 0; cursor: crosshair; } .minicolors .minicolors-grid-inner { position: absolute; top: 0; left: 0; width: 150px; height: 150px; background: none; } .minicolors-slider-saturation .minicolors-grid { background-position: -420px 0; } .minicolors-slider-saturation .minicolors-grid-inner { background: url(i/jquery.minicolors.png) -270px 0; } .minicolors-slider-brightness .minicolors-grid { background-position: -570px 0; } .minicolors-slider-brightness .minicolors-grid-inner { background: black; } .minicolors-slider-wheel .minicolors-grid { background-position: -720px 0; } .minicolors-slider, .minicolors-opacity-slider { position: absolute; top: 1px; left: 152px; width: 20px; height: 150px; background: white url(i/jquery.minicolors.png) 0 0; cursor: crosshair; } .minicolors-slider-saturation .minicolors-slider { background-position: -60px 0; } .minicolors-slider-brightness .minicolors-slider { background-position: -20px 0; } .minicolors-slider-wheel .minicolors-slider { background-position: -20px 0; } .minicolors-opacity-slider { left: 173px; background-position: -40px 0; display: none; } .minicolors-with-opacity .minicolors-opacity-slider { display: block; } /* Pickers */ .minicolors-grid .minicolors-picker { position: absolute; top: 70px; left: 70px; width: 10px; height: 10px; border: solid 1px black; border-radius: 10px; margin-top: -6px; margin-left: -6px; background: none; } .minicolors-grid .minicolors-picker SPAN { position: absolute; top: 0; left: 0; width: 6px; height: 6px; border-radius: 6px; border: solid 2px white; } .minicolors-picker { position: absolute; top: 0; left: 0; width: 18px; height: 2px; background: white; border: solid 1px black; margin-top: -2px; } /* Inline controls */ .minicolors-inline .minicolors-input, .minicolors-inline .minicolors-swatch { display: none; } .minicolors-inline .minicolors-panel { position: relative; top: auto; left: auto; display: inline-block; } /* Scroll bar */ .jspContainer { overflow: hidden; position: relative; } .jspPane { position: absolute; } .jspVerticalBar { position: absolute; top: 0; right: 0; width: 16px; height: 100%; background: red; } .jspHorizontalBar { position: absolute; bottom: 0; left: 0; width: 100%; height: 16px; background: red; } .jspCap { display: none; } .jspHorizontalBar .jspCap { float: left; } .jspTrack { background: #dde; position: relative; } .jspDrag { background: #bbd; position: relative; top: 0; left: 0; cursor: pointer; } .jspHorizontalBar .jspTrack, .jspHorizontalBar .jspDrag { float: left; height: 100%; } .jspArrow { background: #50506d; text-indent: -20000px; display: block; cursor: pointer; padding: 0; margin: 0; } .jspArrow.jspDisabled { cursor: default; background: #80808d; } .jspVerticalBar .jspArrow { height: 16px; } .jspHorizontalBar .jspArrow { width: 16px; float: left; height: 100%; } .jspVerticalBar .jspArrow:focus { outline: none; } .jspCorner { background: #eeeef4; float: left; height: 100%; }
0.47317
0.200382
.technology { padding: 40px 0 50px; background: var(--background-section); } .technology__title { margin-bottom: 50px; } .technology__list { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; align-items: center; } .technology__item { width: 28%; margin-bottom: 40px; text-align: center; } .technology__img { width: 100%; height: auto; max-height: 30px; } .technology__img-js, .technology__img-redux, .technology__img-nest, .technology__img-mobx, .technology__img-docker, .technology__img-hapi, .technology__img-mongodb, .technology__img-mysql, .technology__img-kafka { max-height: 45px; } @media all and (min-width: 900px) { .technology { position: relative; padding: 70px 0 40px; &:before { position: absolute; top: 40%; content: ''; width: 300px; height: 200px; background-image: url('/images/bg-technology-left.svg'); background-size: contain; background-repeat: no-repeat; mix-blend-mode: multiply; } } .technology__title { margin-bottom: 80px; } .technology__item { width: 25%; } } @media all and (min-width: 1200px) { .technology { padding: 150px 0 60px; &:before { width: 600px; height: 500px; } &:after { position: absolute; top: 0; right: 0; content: ''; width: 455px; height: 100%; background-image: url('/images/bg-technology-right.svg'); background-size: contain; background-repeat: no-repeat; mix-blend-mode: multiply; } } .technology__item { width: 20%; margin-bottom: 100px; } .technology__img-js, .technology__img-redux, .technology__img-nest, .technology__img-mobx, .technology__img-docker, .technology__img-hapi, .technology__img-mongodb, .technology__img-mysql, .technology__img-kafka { max-height: 55px; } .technology__img-rabbit, .technology__img-postgresql { max-height: 22px; } .technology__img-kafka { max-height: 45px; } }
src/components/technology/technology.css
.technology { padding: 40px 0 50px; background: var(--background-section); } .technology__title { margin-bottom: 50px; } .technology__list { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; align-items: center; } .technology__item { width: 28%; margin-bottom: 40px; text-align: center; } .technology__img { width: 100%; height: auto; max-height: 30px; } .technology__img-js, .technology__img-redux, .technology__img-nest, .technology__img-mobx, .technology__img-docker, .technology__img-hapi, .technology__img-mongodb, .technology__img-mysql, .technology__img-kafka { max-height: 45px; } @media all and (min-width: 900px) { .technology { position: relative; padding: 70px 0 40px; &:before { position: absolute; top: 40%; content: ''; width: 300px; height: 200px; background-image: url('/images/bg-technology-left.svg'); background-size: contain; background-repeat: no-repeat; mix-blend-mode: multiply; } } .technology__title { margin-bottom: 80px; } .technology__item { width: 25%; } } @media all and (min-width: 1200px) { .technology { padding: 150px 0 60px; &:before { width: 600px; height: 500px; } &:after { position: absolute; top: 0; right: 0; content: ''; width: 455px; height: 100%; background-image: url('/images/bg-technology-right.svg'); background-size: contain; background-repeat: no-repeat; mix-blend-mode: multiply; } } .technology__item { width: 20%; margin-bottom: 100px; } .technology__img-js, .technology__img-redux, .technology__img-nest, .technology__img-mobx, .technology__img-docker, .technology__img-hapi, .technology__img-mongodb, .technology__img-mysql, .technology__img-kafka { max-height: 55px; } .technology__img-rabbit, .technology__img-postgresql { max-height: 22px; } .technology__img-kafka { max-height: 45px; } }
0.598077
0.095013
@-moz-document regexp("https?://wallpaperswide\\.com/.*") { #formCommentAdd { color: #b6b6b6; background-color: #2d2d2d; border: none; padding: 4px 6px; margin-top: 0; border-radius: 0; } #formCommentAddBox { background: #666; } .wallpaper-resolutions { border-bottom-color: #666; } /* Rules that affect all kind of containers */ body, #body, .container { background: #131313; } .container_inside, .content, .left-panel, .right-panel, .sidebox-head-l, .sidebox-head-r, .sidebox-head-c, .sidebox-head2-l, .sidebox-head2-r, .sidebox-head2-c, .sidebox-body-r, .sidebox-body-l, .sidebox-body-c, .sidebox-body-c2, .sidebox-foot-l, .sidebox-foot-r, .sidebox-foot-c, .screen-res { background: #1C1C1C; } div.resmod { border-bottom-color: #404040; } .wallpaper-2ads-separator { border-top-color: #404040; } .unit-rating { filter: invert(0.89); } .sidebox-head-cnt { color: unset; } #searchbox { color: #909090; background-color: #272727; } #searchbox:hover, #searchbox:focus, #searchbox:active { color: #9a9a9a; background-color: #313131; } #searchbtn { filter: invert(0.9) brightness(1.6); } #searchbtn:hover, #searchbtn:focus, #searchbtn:active { background: url("http://static.wallpaperswide.com/templates/custom/images/search/searchbt.jpg") no-repeat top left; filter: invert(0.9) brightness(2); } fieldset { border: none; } select { color: #909090; background-color: #272727; } select:hover, select:focus, select:active { color: #9a9a9a; background-color: #313131; } .ui-icon { filter: brightness(0.6); } .rss-image { background-color: #1C1C1C; } .thumb a, .picture_wrapper_details { overflow: hidden; } .thumb_img { transform: scale(1.3); top: 4px; position: relative; } .pxad { transform: scale(1.135); } .picture_wrapper_details { margin-top: 20px; margin-bottom: 15px; } .picture_wrapper_details:after, .picture_wrapper_details:before { content: ''; width: 18px; height: 100%; display: block; position: absolute; background: #1C1C1C; z-index: 10; top: 0; } .picture_wrapper_details:after { right: 182px; } .picture_wrapper_details:before { left: 183px; } .mini-hud h1 { color: #ebebeb; background: rgba(0, 0, 0, 0.55); width: 266px; padding: 4px 6px; } #hudvisits { width: auto; background: rgba(0, 0, 0, 0.55); height: 21px; left: 9px; top: 188px; } #hudvisits em { color: #ebebeb; } .mini-tags-2 { width: auto; padding-right: 4px; background-color: rgba(0, 0, 0, 0.55); } .mini-tags-text { color: #ebebeb; } .ratingblock-small { background: rgba(0, 0, 0, 0.55); height: 12px; padding: 4px 6px; right: 10px; top: 189px; } .unit-rating-small { background: none; } .unit-rating-small li.current-rating { filter: invert(1) brightness(1.6); } a, a:link, a:visited, #footer a:link { color: #c3c3c3; text-decoration: none; } a:hover, a:focus, a:active, a:link:hover, a:link:focus, a:link:active, a:visited:hover, a:visited:focus, a:visited:active, #footer a:link:hover, #footer a:link:focus, #footer a:link:active { color: #989898; text-decoration: none; } a[style="background-color: rgb(255, 40, 0); color: rgb(255, 255, 255); font-weight: bold; border-radius: 6px; padding-left: 5px; padding-right: 5px;"] { background-color: #970000 !important; } .logo-img { background: none; } ul.cssmenu li a, ul.cssmenu li a:visited { color: #c3c3c3 !important; background: #2c2c2c; text-shadow: none; display: flex; align-items: center; justify-content: center; } ul.cssmenu li a:hover, ul.cssmenu li a:active, ul.cssmenu li a:focus, ul.cssmenu li a:visited:hover, ul.cssmenu li a:visited:active, ul.cssmenu li a:visited:focus { color: #c3c3c3 !important; background: #272727; } #topmenu .displace { position: static; top: 0; } .pagination a { border: none; color: #d0d0d0; background-color: #3c3c3c; } .pagination a:hover, .pagination a:active, .pagination a:focus { border: none; color: #d0d0d0; background-color: #2d2d2d; } .pagination span.selected, .pagination span.disabled { border: none; color: #a2a2a2; background-color: #282828; opacity: 1; } body::-webkit-scrollbar { width: 10px; height: 10px; background-color: #131313; } body::-webkit-scrollbar-thumb { background-color: #272727; } body::-webkit-scrollbar-thumb:hover { background-color: #3b3b3b; } body::-webkit-scrollbar-corner { background-color: #1d1d1d; } input::-webkit-scrollbar, textarea::-webkit-scrollbar, .user-info .opis p.ramka::-webkit-scrollbar { width: 10px; height: 10px; background-color: #343434; } input::-webkit-scrollbar-thumb, textarea::-webkit-scrollbar-thumb, .user-info .opis p.ramka::-webkit-scrollbar-thumb { background-color: #4d4d4d; } input::-webkit-scrollbar-thumb:hover, textarea::-webkit-scrollbar-thumb:hover, .user-info .opis p.ramka::-webkit-scrollbar-thumb:hover { background-color: #626262; } input::-webkit-scrollbar-corner, textarea::-webkit-scrollbar-corner, .user-info .opis p.ramka::-webkit-scrollbar-corner { background-color: #434343; } ul.holder li.bit-box { background: #272727; } ul.holder li.bit-box a { color: #c3c3c3; } body { color: #909090; } .sidebox-head-cnt, .screen-res, .mini-hud h1, .hdl-ob.resmod > a { text-shadow: none !important; } }
dist/css/site.css
@-moz-document regexp("https?://wallpaperswide\\.com/.*") { #formCommentAdd { color: #b6b6b6; background-color: #2d2d2d; border: none; padding: 4px 6px; margin-top: 0; border-radius: 0; } #formCommentAddBox { background: #666; } .wallpaper-resolutions { border-bottom-color: #666; } /* Rules that affect all kind of containers */ body, #body, .container { background: #131313; } .container_inside, .content, .left-panel, .right-panel, .sidebox-head-l, .sidebox-head-r, .sidebox-head-c, .sidebox-head2-l, .sidebox-head2-r, .sidebox-head2-c, .sidebox-body-r, .sidebox-body-l, .sidebox-body-c, .sidebox-body-c2, .sidebox-foot-l, .sidebox-foot-r, .sidebox-foot-c, .screen-res { background: #1C1C1C; } div.resmod { border-bottom-color: #404040; } .wallpaper-2ads-separator { border-top-color: #404040; } .unit-rating { filter: invert(0.89); } .sidebox-head-cnt { color: unset; } #searchbox { color: #909090; background-color: #272727; } #searchbox:hover, #searchbox:focus, #searchbox:active { color: #9a9a9a; background-color: #313131; } #searchbtn { filter: invert(0.9) brightness(1.6); } #searchbtn:hover, #searchbtn:focus, #searchbtn:active { background: url("http://static.wallpaperswide.com/templates/custom/images/search/searchbt.jpg") no-repeat top left; filter: invert(0.9) brightness(2); } fieldset { border: none; } select { color: #909090; background-color: #272727; } select:hover, select:focus, select:active { color: #9a9a9a; background-color: #313131; } .ui-icon { filter: brightness(0.6); } .rss-image { background-color: #1C1C1C; } .thumb a, .picture_wrapper_details { overflow: hidden; } .thumb_img { transform: scale(1.3); top: 4px; position: relative; } .pxad { transform: scale(1.135); } .picture_wrapper_details { margin-top: 20px; margin-bottom: 15px; } .picture_wrapper_details:after, .picture_wrapper_details:before { content: ''; width: 18px; height: 100%; display: block; position: absolute; background: #1C1C1C; z-index: 10; top: 0; } .picture_wrapper_details:after { right: 182px; } .picture_wrapper_details:before { left: 183px; } .mini-hud h1 { color: #ebebeb; background: rgba(0, 0, 0, 0.55); width: 266px; padding: 4px 6px; } #hudvisits { width: auto; background: rgba(0, 0, 0, 0.55); height: 21px; left: 9px; top: 188px; } #hudvisits em { color: #ebebeb; } .mini-tags-2 { width: auto; padding-right: 4px; background-color: rgba(0, 0, 0, 0.55); } .mini-tags-text { color: #ebebeb; } .ratingblock-small { background: rgba(0, 0, 0, 0.55); height: 12px; padding: 4px 6px; right: 10px; top: 189px; } .unit-rating-small { background: none; } .unit-rating-small li.current-rating { filter: invert(1) brightness(1.6); } a, a:link, a:visited, #footer a:link { color: #c3c3c3; text-decoration: none; } a:hover, a:focus, a:active, a:link:hover, a:link:focus, a:link:active, a:visited:hover, a:visited:focus, a:visited:active, #footer a:link:hover, #footer a:link:focus, #footer a:link:active { color: #989898; text-decoration: none; } a[style="background-color: rgb(255, 40, 0); color: rgb(255, 255, 255); font-weight: bold; border-radius: 6px; padding-left: 5px; padding-right: 5px;"] { background-color: #970000 !important; } .logo-img { background: none; } ul.cssmenu li a, ul.cssmenu li a:visited { color: #c3c3c3 !important; background: #2c2c2c; text-shadow: none; display: flex; align-items: center; justify-content: center; } ul.cssmenu li a:hover, ul.cssmenu li a:active, ul.cssmenu li a:focus, ul.cssmenu li a:visited:hover, ul.cssmenu li a:visited:active, ul.cssmenu li a:visited:focus { color: #c3c3c3 !important; background: #272727; } #topmenu .displace { position: static; top: 0; } .pagination a { border: none; color: #d0d0d0; background-color: #3c3c3c; } .pagination a:hover, .pagination a:active, .pagination a:focus { border: none; color: #d0d0d0; background-color: #2d2d2d; } .pagination span.selected, .pagination span.disabled { border: none; color: #a2a2a2; background-color: #282828; opacity: 1; } body::-webkit-scrollbar { width: 10px; height: 10px; background-color: #131313; } body::-webkit-scrollbar-thumb { background-color: #272727; } body::-webkit-scrollbar-thumb:hover { background-color: #3b3b3b; } body::-webkit-scrollbar-corner { background-color: #1d1d1d; } input::-webkit-scrollbar, textarea::-webkit-scrollbar, .user-info .opis p.ramka::-webkit-scrollbar { width: 10px; height: 10px; background-color: #343434; } input::-webkit-scrollbar-thumb, textarea::-webkit-scrollbar-thumb, .user-info .opis p.ramka::-webkit-scrollbar-thumb { background-color: #4d4d4d; } input::-webkit-scrollbar-thumb:hover, textarea::-webkit-scrollbar-thumb:hover, .user-info .opis p.ramka::-webkit-scrollbar-thumb:hover { background-color: #626262; } input::-webkit-scrollbar-corner, textarea::-webkit-scrollbar-corner, .user-info .opis p.ramka::-webkit-scrollbar-corner { background-color: #434343; } ul.holder li.bit-box { background: #272727; } ul.holder li.bit-box a { color: #c3c3c3; } body { color: #909090; } .sidebox-head-cnt, .screen-res, .mini-hud h1, .hdl-ob.resmod > a { text-shadow: none !important; } }
0.550849
0.089973
@import url(https://fonts.googleapis.com/css?family=Roboto:400,700,100italic|Roboto+Mono:400,100italic,700); #logo { text-align: center; padding-bottom: 1%; } #logo img { width: 150px; position: absolute; right: 50px; } .question { margin: auto; width: 80%; padding-top: 7rem; position: relative; } h2.question-text { color: #024656; font-family: 'Roboto'; /*padding-top: 20%;*/ padding-bottom: 2%; font-size: 1.8em; font-weight: 100; font-style: italic; } textarea.fill-in { width: 100%; min-height: 20vh; background: #EEE; border: none; border-radius: 0; resize: none; border: none; overflow: auto; outline: none; padding: 1rem 1.5rem; color: #444; font-family: 'Roboto'; font-weight: 400; font-size: 1.2em; margin-bottom: 2rem; box-sizing: border-box; /* For IE and modern versions of Chrome */ -moz-box-sizing: border-box; /* For Firefox */ -webkit-box-sizing: border-box; /* For Safari */ } textarea.fill-in:active, textarea.fill-in:focus { outline: none; border: none; } button.fill-in-submit { display: inline-block; opacity: 1; position: absolute; right: 0; /*float: right;*/ z-index: 10; margin-top: 2em; } .btn-primary, .btn-primary:hover, .btn-primary:focus, .btn-primary:active { font-size: 1em; padding: 1em 2em; border-radius: 2.5px; color: #fff; cursor: pointer; -webkit-appearance: button; /*display: inline-block;*/ font-weight: 400; background: linear-gradient(to bottom right, #024656, #035767 50%); color: #fff; line-height: 0; border: none; letter-spacing: -0.05em; text-transform: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-transition: opacity 1s ease-in-out; -moz-transition: opacity 1s ease-in-out; -ms-transition: opacity 1s ease-in-out; -o-transition: opacity 1s ease-in-out; transition: opacity 1s ease-in-out; } .feedback { margin-top: 2em; opacity: 0; display: inline-block; position: absolute; left: 0; /*color: #c81900;*/ font-size: 1.2em; font-family: 'Roboto'; -webkit-transition: opacity 1s ease-in-out; -moz-transition: opacity 1s ease-in-out; -ms-transition: opacity 1s ease-in-out; -o-transition: opacity 1s ease-in-out; transition: opacity 1s ease-in-out; } .feedback.no-answer { padding-left: 20px; color: #035767; } .feedback.no-answer span { font-size: 3em; } .feedback.correct span { padding-left: 20px; color: green; font-size: 3em; } .feedback.incorrect span { padding-left: 20px; color: red; font-size: 3em; } .feedback p { height: 3.2em; display: table-cell; } .feedback p span { vertical-align: middle; } .hidden { opacity: 0; } .visible { opacity: 1; } .hidden-question { display: none; } .remove { display: none; } [type="radio"]:not(:checked), [type="radio"]:checked { position: absolute; left: -9999px; } input[type=radio] { display: inline; } [type="radio"]:not(:checked) + label::after, [type="radio"]:checked + label::after { background: #E42A54; position: absolute; top: 50%; left: 11px; width: 22px; height: 22px; border: 1px solid #F0F2F2; margin-top: -11px; } [type="radio"]:not(:checked) + label, [type="radio"]:checked + label { position: relative; padding-left: 42px; cursor: pointer; box-sizing: border-box; } [type="radio"]:not(:checked) + label::before, [type="radio"]:checked + label::before { content: ''; position: absolute; top: 50%; left: 12px; width: 20px; height: 20px; border: 1px solid #666; background: #f8f8f8; border-radius: 10px; border-radius: 50%; transform: translateY(-50%); box-sizing: border-box; } [type="radio"]:not(:checked) + label::before, [type="radio"]:checked + label::before { content: ''; position: absolute; top: 50%; left: 12px; width: 20px; height: 20px; border: 1px solid #666; background: #f8f8f8; border-radius: 10px; border-radius: 50%; transform: translateY(-50%); box-sizing: border-box; } label{ display: block; width: 100%; background: #F0F2F2; padding: .75em; margin: .25em 0; margin-top: 0; box-sizing: border-box; word-break: break-word; word-wrap: normal; -webkit-hyphens: auto; -moz-hyphens: auto; -ms-hyphens: auto; hyphens: auto; line-height: 1.75rem; font-family: 'Roboto'; font-size: 1.2em; font-weight: 600; } [type="radio"]:not(:checked) + label::after { opacity: 0; transform: scale(1.2); box-sizing: border-box; } [type="radio"]:not(:checked) + label::after, [type="radio"]:checked + label::after { content: ' '; background: #333; position: absolute; display: block; top: 50%; left: 15px; line-height: 0.8; width: 14px; height: 14px; border-radius: 7px; border-radius: 50%; -webkit-transition: all .3s; -moz-transition: all .3s; -ms-transition: all .3s; -o-transition: all .3s; transition: all .3s; margin-top: -7px; box-sizing: border-box; } [type="radio"]:checked + label::after { opacity: 1; transform: scale(1); box-sizing: border-box; } [type="radio"]:not(:checked) + label::after, [type="radio"]:checked + label::after { content: ' '; background: #333; position: absolute; display: block; top: 50%; left: 15px; line-height: 0.8; width: 14px; height: 14px; border-radius: 7px; border-radius: 50%; -webkit-transition: all .3s; -moz-transition: all .3s; -ms-transition: all .3s; -o-transition: all .3s; transition: all .3s; margin-top: -7px; box-sizing: border-box; } .navigation.btn-next, .navigation.btn-prev { position: absolute; /*background: #FFF; background: rgba(0, 0, 0, .5);*/ color: rgba(0, 0, 0, .5); border: none; font-size: 36px; line-height: 46px; text-align: center; width: 44px; height: 44px; bottom: 10px; right: 40px; top: auto; left: auto; cursor: pointer; /*-webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%;*/ -webkit-font-smoothing: antialiased; -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px; text-shadow: rgba(0, 0, 0, .01) 0 0 1px; -webkit-transition: background 200ms ease-in-out, opacity 200ms ease-in-out, color 200ms ease-in-out; -moz-transition: background 200ms ease-in-out, opacity 200ms ease-in-out, color 200ms ease-in-out; -ms-transition: background 200ms ease-in-out, opacity 200ms ease-in-out, color 200ms ease-in-out; -o-transition: background 200ms ease-in-out, opacity 200ms ease-in-out, color 200ms ease-in-out; transition: background 200ms ease-in-out, opacity 200ms ease-in-out, color 200ms ease-in-out; } .navigation.btn-next { margin-right: -28px; } .navigation.btn-prev { margin-right: 28px; }
_/example_and_exercise_files/OOP Project - start/project/css/main.css
@import url(https://fonts.googleapis.com/css?family=Roboto:400,700,100italic|Roboto+Mono:400,100italic,700); #logo { text-align: center; padding-bottom: 1%; } #logo img { width: 150px; position: absolute; right: 50px; } .question { margin: auto; width: 80%; padding-top: 7rem; position: relative; } h2.question-text { color: #024656; font-family: 'Roboto'; /*padding-top: 20%;*/ padding-bottom: 2%; font-size: 1.8em; font-weight: 100; font-style: italic; } textarea.fill-in { width: 100%; min-height: 20vh; background: #EEE; border: none; border-radius: 0; resize: none; border: none; overflow: auto; outline: none; padding: 1rem 1.5rem; color: #444; font-family: 'Roboto'; font-weight: 400; font-size: 1.2em; margin-bottom: 2rem; box-sizing: border-box; /* For IE and modern versions of Chrome */ -moz-box-sizing: border-box; /* For Firefox */ -webkit-box-sizing: border-box; /* For Safari */ } textarea.fill-in:active, textarea.fill-in:focus { outline: none; border: none; } button.fill-in-submit { display: inline-block; opacity: 1; position: absolute; right: 0; /*float: right;*/ z-index: 10; margin-top: 2em; } .btn-primary, .btn-primary:hover, .btn-primary:focus, .btn-primary:active { font-size: 1em; padding: 1em 2em; border-radius: 2.5px; color: #fff; cursor: pointer; -webkit-appearance: button; /*display: inline-block;*/ font-weight: 400; background: linear-gradient(to bottom right, #024656, #035767 50%); color: #fff; line-height: 0; border: none; letter-spacing: -0.05em; text-transform: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-transition: opacity 1s ease-in-out; -moz-transition: opacity 1s ease-in-out; -ms-transition: opacity 1s ease-in-out; -o-transition: opacity 1s ease-in-out; transition: opacity 1s ease-in-out; } .feedback { margin-top: 2em; opacity: 0; display: inline-block; position: absolute; left: 0; /*color: #c81900;*/ font-size: 1.2em; font-family: 'Roboto'; -webkit-transition: opacity 1s ease-in-out; -moz-transition: opacity 1s ease-in-out; -ms-transition: opacity 1s ease-in-out; -o-transition: opacity 1s ease-in-out; transition: opacity 1s ease-in-out; } .feedback.no-answer { padding-left: 20px; color: #035767; } .feedback.no-answer span { font-size: 3em; } .feedback.correct span { padding-left: 20px; color: green; font-size: 3em; } .feedback.incorrect span { padding-left: 20px; color: red; font-size: 3em; } .feedback p { height: 3.2em; display: table-cell; } .feedback p span { vertical-align: middle; } .hidden { opacity: 0; } .visible { opacity: 1; } .hidden-question { display: none; } .remove { display: none; } [type="radio"]:not(:checked), [type="radio"]:checked { position: absolute; left: -9999px; } input[type=radio] { display: inline; } [type="radio"]:not(:checked) + label::after, [type="radio"]:checked + label::after { background: #E42A54; position: absolute; top: 50%; left: 11px; width: 22px; height: 22px; border: 1px solid #F0F2F2; margin-top: -11px; } [type="radio"]:not(:checked) + label, [type="radio"]:checked + label { position: relative; padding-left: 42px; cursor: pointer; box-sizing: border-box; } [type="radio"]:not(:checked) + label::before, [type="radio"]:checked + label::before { content: ''; position: absolute; top: 50%; left: 12px; width: 20px; height: 20px; border: 1px solid #666; background: #f8f8f8; border-radius: 10px; border-radius: 50%; transform: translateY(-50%); box-sizing: border-box; } [type="radio"]:not(:checked) + label::before, [type="radio"]:checked + label::before { content: ''; position: absolute; top: 50%; left: 12px; width: 20px; height: 20px; border: 1px solid #666; background: #f8f8f8; border-radius: 10px; border-radius: 50%; transform: translateY(-50%); box-sizing: border-box; } label{ display: block; width: 100%; background: #F0F2F2; padding: .75em; margin: .25em 0; margin-top: 0; box-sizing: border-box; word-break: break-word; word-wrap: normal; -webkit-hyphens: auto; -moz-hyphens: auto; -ms-hyphens: auto; hyphens: auto; line-height: 1.75rem; font-family: 'Roboto'; font-size: 1.2em; font-weight: 600; } [type="radio"]:not(:checked) + label::after { opacity: 0; transform: scale(1.2); box-sizing: border-box; } [type="radio"]:not(:checked) + label::after, [type="radio"]:checked + label::after { content: ' '; background: #333; position: absolute; display: block; top: 50%; left: 15px; line-height: 0.8; width: 14px; height: 14px; border-radius: 7px; border-radius: 50%; -webkit-transition: all .3s; -moz-transition: all .3s; -ms-transition: all .3s; -o-transition: all .3s; transition: all .3s; margin-top: -7px; box-sizing: border-box; } [type="radio"]:checked + label::after { opacity: 1; transform: scale(1); box-sizing: border-box; } [type="radio"]:not(:checked) + label::after, [type="radio"]:checked + label::after { content: ' '; background: #333; position: absolute; display: block; top: 50%; left: 15px; line-height: 0.8; width: 14px; height: 14px; border-radius: 7px; border-radius: 50%; -webkit-transition: all .3s; -moz-transition: all .3s; -ms-transition: all .3s; -o-transition: all .3s; transition: all .3s; margin-top: -7px; box-sizing: border-box; } .navigation.btn-next, .navigation.btn-prev { position: absolute; /*background: #FFF; background: rgba(0, 0, 0, .5);*/ color: rgba(0, 0, 0, .5); border: none; font-size: 36px; line-height: 46px; text-align: center; width: 44px; height: 44px; bottom: 10px; right: 40px; top: auto; left: auto; cursor: pointer; /*-webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%;*/ -webkit-font-smoothing: antialiased; -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px; text-shadow: rgba(0, 0, 0, .01) 0 0 1px; -webkit-transition: background 200ms ease-in-out, opacity 200ms ease-in-out, color 200ms ease-in-out; -moz-transition: background 200ms ease-in-out, opacity 200ms ease-in-out, color 200ms ease-in-out; -ms-transition: background 200ms ease-in-out, opacity 200ms ease-in-out, color 200ms ease-in-out; -o-transition: background 200ms ease-in-out, opacity 200ms ease-in-out, color 200ms ease-in-out; transition: background 200ms ease-in-out, opacity 200ms ease-in-out, color 200ms ease-in-out; } .navigation.btn-next { margin-right: -28px; } .navigation.btn-prev { margin-right: 28px; }
0.437103
0.083965
body { background: url("images/cart-background.webp") rgb(212, 192, 147); background-size: 7%; font-family: fira; } #cart-order-area { padding-top: 200px; min-height: 1000px; } #submit-order { text-align: right; margin-bottom: 4%; } #submit-order-button{ padding: 1% 2% 1% 2%; font-family: vallkorn; font-size: 170%; background-color: rgb(219, 170, 79); border: 6px outset brown; color: rgb(165, 79, 79); text-decoration: none; } @media screen and (max-width: 800px) { #main-item { font-size: 80%; width: 70%; } } /* ordering form */ #submit-form { position: fixed; z-index: 2; top: 15%; left: 6%; text-align: center; padding: 3%; background-color: rgb(212, 192, 147); font-size: 260%; border: 10px dashed rgb(42, 165, 42); display: none; } /* open form */ #submit-form:target { display: flex; flex-direction: column; } #submit-form input { font-family: vallkorn; font-size: 60%; /* width: 40%; */ background-color: rgb(219, 170, 79); border: 4px outset brown; } .form-info { margin: 2%; border: 8px dotted brown; padding: 2%; background-color: rgb(219, 170, 79); } #form-ok, #form-cancel{ padding: 1% 2% 1% 2%; font-family: vallkorn; background-color: rgb(219, 170, 79); color: rgb(165, 79, 79); margin: 0 auto; } #form-ok { border: 10px outset brown; font-size: 170%; margin-bottom: 3%; /* margin: 3% auto; */ width: 45%; } #form-cancel { border: 4px outset brown; text-align: center; font-size: 60%; text-decoration: none; width: 40%; } .info-more { display: none; } /* disolay orientation */ @media screen and (max-width: 1300px) { #submit-form { top: 10%; left: 0%; } } @media screen and (max-width: 860px) { #submit-form { top: 7%; left: 0%; } } @media screen and (max-width: 620px) { #submit-form { top: 7%; left: 0%; } #cart-order-area { padding-top: 250px; } #submit-order { text-align: center; } } @font-face { font-family: vallkorn; src: url("fonts/Vollkorn-Black.ttf"); }
styles/cart.css
body { background: url("images/cart-background.webp") rgb(212, 192, 147); background-size: 7%; font-family: fira; } #cart-order-area { padding-top: 200px; min-height: 1000px; } #submit-order { text-align: right; margin-bottom: 4%; } #submit-order-button{ padding: 1% 2% 1% 2%; font-family: vallkorn; font-size: 170%; background-color: rgb(219, 170, 79); border: 6px outset brown; color: rgb(165, 79, 79); text-decoration: none; } @media screen and (max-width: 800px) { #main-item { font-size: 80%; width: 70%; } } /* ordering form */ #submit-form { position: fixed; z-index: 2; top: 15%; left: 6%; text-align: center; padding: 3%; background-color: rgb(212, 192, 147); font-size: 260%; border: 10px dashed rgb(42, 165, 42); display: none; } /* open form */ #submit-form:target { display: flex; flex-direction: column; } #submit-form input { font-family: vallkorn; font-size: 60%; /* width: 40%; */ background-color: rgb(219, 170, 79); border: 4px outset brown; } .form-info { margin: 2%; border: 8px dotted brown; padding: 2%; background-color: rgb(219, 170, 79); } #form-ok, #form-cancel{ padding: 1% 2% 1% 2%; font-family: vallkorn; background-color: rgb(219, 170, 79); color: rgb(165, 79, 79); margin: 0 auto; } #form-ok { border: 10px outset brown; font-size: 170%; margin-bottom: 3%; /* margin: 3% auto; */ width: 45%; } #form-cancel { border: 4px outset brown; text-align: center; font-size: 60%; text-decoration: none; width: 40%; } .info-more { display: none; } /* disolay orientation */ @media screen and (max-width: 1300px) { #submit-form { top: 10%; left: 0%; } } @media screen and (max-width: 860px) { #submit-form { top: 7%; left: 0%; } } @media screen and (max-width: 620px) { #submit-form { top: 7%; left: 0%; } #cart-order-area { padding-top: 250px; } #submit-order { text-align: center; } } @font-face { font-family: vallkorn; src: url("fonts/Vollkorn-Black.ttf"); }
0.419053
0.074871
.choice-title { width: 100%; } .choice-title, #preview-title, #code-title { position: relative; border-top: 1px solid #dedede; } .choice-title:after, #preview-title:after, #code-title:after { content: ""; display: block; position: absolute; top: 0px; left: 0; right: 0; border-top: 1px solid #FFF; } .choice-title span, #preview-title span, #code-title a { display: inline-block; margin-left: -1px; padding: 2px 10px; min-width: 80px; text-decoration: none; font-size: 13px; font-variant: small-caps; text-transform: lowercase; -webkit-border-radius: 0 0 3px 0; border-radius: 0 0 3px 0; margin-top: 1px; margin-bottom: -1px; white-space: normal; } .choice-title span, #code-title a { color: #333; background-color: #E6E6E6; } #code { background: #f5f2f0; } #preview-title span { background: #6D5491; color: #FFF; } #preview-title:hover span { cursor: default; } .selector, .choice { position: relative; padding: 10px 12px; margin: 0 4px 1rem; border: 1px solid transparent; cursor: pointer; } .form-inline { padding: 10px 12px; margin: 0 4px 1rem; border: 1px solid transparent; } .popover.show { opacity: 1 !important; visibility: visible !important; } .selector, .selector:before, #preview-content:not(.no-transition) * { -webkit-transition: all 200ms ease-in; -moz-transition: all 200ms ease-in; -ms-transition: all 200ms ease-in; -o-transition: all 200ms ease-in; transition: all 200ms ease-in; } .selector:hover, .selector.active { border: 1px dashed #999; } .selector:before { content: '\ea10'; position: absolute; top: 0; right: 0; padding: 3px 7px; color: green; opacity: 0; background-color: rgba(255, 255, 255, .9); } .selector:hover:before, .selector.active:before { opacity: 1; z-index: 1; } .selector button[data-prop="snippetName"]> :first-child, .selector button[data-prop="templateName"]> :first-child { pointer-events: none; } .selector button[data-prop="snippetName"]:focus, .selector button[data-prop="templateName"]:focus { box-shadow: none; } .togglable-wrapper { position: relative; } #snippets-wrapper .snippet-preview { overflow-y: auto; max-height: 250px; position: relative; } #snippets-wrapper .list-group-item.active { background-color: transparent !important; border-color: #DC3545 !important; } #snippets-wrapper .list-group-item.active h6 { background-color: #DC3545 !important; } #snippets-wrapper .snippet-preview>div.small :not(h6) { -moz-transform: scale(.95); -webkit-transform: scale(.95); -o-transform: scale(.95); -ms-transform: scale(.95); transform: scale(.95); } #snippets-wrapper .snippet-preview>div.small img { max-width: 100%; max-height: 100%; } @keyframes toggleOff { from { opacity: 1; transform: scale(1, 1); } 40% { opacity: 0; transform: scale(1, 0); } to { opacity: 0; transform: scale(1, 0); } } @keyframes toggleOn { from { opacity: 0; transform: scale(1, 0); } 60% { opacity: 0; transform: scale(1, 0); } to { opacity: 1; transform: scale(1, 1); } } .toggle.active { position: relative; z-index: 1; opacity: 1; transform: scale(1, 1); -webkit-animation-name: toggleOn; animation-name: toggleOn; animation-duration: .3s; transform-origin: center center; } .toggle:not(.active) { position: absolute; z-index: 0; opacity: 0; transform: scale(1, 0); -webkit-animation-name: toggleOff; animation-name: toggleOff; animation-duration: .3s; transform-origin: center center; } .d-none { display: none !important; } .list-group-item { width: 95%; margin: 1% !important; } .color-toggle.active { z-index: 2 !important; } @media (min-width: 576px) { .list-group-item { width: 47%; margin: 5px 1.5% !important; } } .template-preview .col, .template-preview [class*="col-"] { background: #FAF8F7; border-top: 1px solid #D1CFCD; border-bottom: 1px solid #D1CFCD; border-left: 1px solid #D1CFCD; } .template-preview .col:last-child, .template-preview [class*="col-"]:last-child { border-right: 1px solid #D1CFCD; } /*============================================= = icomoon = =============================================*/ @font-face { font-family: 'icomoon-tbp'; src: url('../fonts/icomoon-tbp.ttf?m7ewb4') format('truetype'), url('../fonts/icomoon-tbp.woff?m7ewb4') format('woff'), url('../fonts/icomoon-tbp.svg?m7ewb4#icomoon-tbp') format('svg'); font-weight: normal; font-style: normal; font-display: block; } [class^='bootstrap-'], [class*=' bootstrap-'], .selector:before { /* use !important to prevent issues with browser extensions that change fonts */ font-family: 'icomoon-tbp' !important; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; /* Better Font Rendering =========== */ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .bootstrap-icon-info:before { content: "\ea0c"; } .bootstrap-icon-cross:before { content: "\ea0f"; } .bootstrap-icon-circle-up:before { content: "\ea41"; } .bootstrap-icon-circle-right:before { content: "\ea42"; } .bootstrap-icon-circle-down:before { content: "\ea43"; } .bootstrap-icon-circle-left:before { content: "\ea44"; } .bootstrap-icon-bootstrap:before { content: "\e600"; } .bootstrap-icon-desktop:before { content: "\e601"; } .bootstrap-icon-mobile:before { content: "\e602"; } .bootstrap-icon-tablet:before { content: "\e603"; } .bootstrap-icon-tablet-horizontal:before { content: "\e604"; } .bootstrap-icon-btn:before { content: "\e605"; } .bootstrap-icon-icon:before { content: "\e606"; } .bootstrap-icon-card:before { content: "\e607"; } .bootstrap-icon-alert:before { content: "\e608"; } .bootstrap-icon-badge:before { content: "\e609"; } .bootstrap-icon-pager:before { content: "\e60a"; } .bootstrap-icon-pagination:before { content: "\e60b"; } .bootstrap-icon-breadcrumb:before { content: "\e60c"; } .bootstrap-icon-template:before { content: "\e60d"; } .bootstrap-icon-table:before { content: "\e60e"; } .bootstrap-icon-label:before { content: "\e60f"; } .bootstrap-icon-image:before { content: "\e90d"; } .bootstrap-icon-snippet:before { content: "\e9d9"; } .bootstrap-icon-plus:before { content: "\ea0a"; } .bootstrap-icon-minus:before { content: "\ea0b"; } .bootstrap-icon-check:before { content: "\ea10"; } /*============================================= = Modal = =============================================*/ .tbp-modal { position: fixed; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); opacity: 0; visibility: hidden; transform: scale(1.1); transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s; z-index: 9; } .tbp-modal-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); max-height: 95%; overflow-y: auto; background-color: white; padding: 1rem 1.5rem; width: 90%; border-radius: 0.5rem; } .tbp-close-button { float: right; width: 1.5rem; line-height: 1.5rem; text-align: center; cursor: pointer; border-radius: 0.25rem; background-color: lightgray; } .tbp-close-button:hover { background-color: darkgray; } .tbp-modal.show-modal { opacity: 1; visibility: visible; transform: scale(1.0); transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s; } /*============================================= = Table = =============================================*/ #table-builder { border-collapse: separate; border-spacing: 2px; } #table-builder td { width: 20px; height: 20px; min-width: 20px; min-height: 20px; border: 1px solid #999; } .table-icons { background: #fff !important; border: 1px solid #ccc; -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, .25); box-shadow: 0 0 20px 0 rgba(0, 0, 0, .2); } /*============================================= = popper - https://popper.js.org/ = =============================================*/ .popper { z-index: 999; } .popper .popper__arrow { width: 0; height: 0; border-style: solid; position: absolute; margin: 5px; } .popper .popper__arrow { border-color: #F8F9FA; } .popper[x-placement^="top"] { margin-bottom: 5px; } .popper[x-placement^="top"] .popper__arrow { border-width: 5px 5px 0 5px; border-left-color: transparent; border-right-color: transparent; border-bottom-color: transparent; bottom: -5px; left: calc(50% - 5px); margin-top: 0; margin-bottom: 0; } .popper[x-placement^="bottom"] { margin-top: 5px; } .popper[x-placement^="bottom"] .popper__arrow { border-width: 0 5px 5px 5px; top: -5px; border-color: transparent transparent #dee2e6 transparent; left: calc(50% - 5px); margin-top: 0; margin-bottom: 0; border-style: solid; border-width: 0 5px 5px 5px; } .popper[x-placement^="right"] { margin-left: 5px; } .popper[x-placement^="right"] .popper__arrow { border-width: 5px 5px 5px 0; border-left-color: transparent; border-top-color: transparent; border-bottom-color: transparent; left: -5px; top: calc(50% - 5px); margin-left: 0; margin-right: 0; } .popper[x-placement^="left"] { margin-right: 5px; } .popper[x-placement^="left"] .popper__arrow { border-width: 5px 0 5px 5px; border-top-color: transparent; border-right-color: transparent; border-bottom-color: transparent; right: -5px; top: calc(50% - 5px); margin-left: 0; margin-right: 0; } /*============================================= = File-tree = =============================================*/ #file-tree-wrapper { display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; } #ft-close-btn { position: absolute; display: block; right: 15px; top: 0; font-size: 24px; cursor: pointer; } .ft-tree, .ft-explorer { position: relative; width: 100%; padding-right: 15px; padding-left: 15px; } @media (min-width: 576px) { .ft-tree { -ms-flex: 0 0 33.333333%; flex: 0 0 33.333333%; max-width: 33.333333%; } .ft-explorer { -ms-flex: 0 0 66.666667%; flex: 0 0 66.666667%; max-width: 66.666667%; } }
src/Resources/private/js/plugins/bootstrap/assets/css/dialogs.css
.choice-title { width: 100%; } .choice-title, #preview-title, #code-title { position: relative; border-top: 1px solid #dedede; } .choice-title:after, #preview-title:after, #code-title:after { content: ""; display: block; position: absolute; top: 0px; left: 0; right: 0; border-top: 1px solid #FFF; } .choice-title span, #preview-title span, #code-title a { display: inline-block; margin-left: -1px; padding: 2px 10px; min-width: 80px; text-decoration: none; font-size: 13px; font-variant: small-caps; text-transform: lowercase; -webkit-border-radius: 0 0 3px 0; border-radius: 0 0 3px 0; margin-top: 1px; margin-bottom: -1px; white-space: normal; } .choice-title span, #code-title a { color: #333; background-color: #E6E6E6; } #code { background: #f5f2f0; } #preview-title span { background: #6D5491; color: #FFF; } #preview-title:hover span { cursor: default; } .selector, .choice { position: relative; padding: 10px 12px; margin: 0 4px 1rem; border: 1px solid transparent; cursor: pointer; } .form-inline { padding: 10px 12px; margin: 0 4px 1rem; border: 1px solid transparent; } .popover.show { opacity: 1 !important; visibility: visible !important; } .selector, .selector:before, #preview-content:not(.no-transition) * { -webkit-transition: all 200ms ease-in; -moz-transition: all 200ms ease-in; -ms-transition: all 200ms ease-in; -o-transition: all 200ms ease-in; transition: all 200ms ease-in; } .selector:hover, .selector.active { border: 1px dashed #999; } .selector:before { content: '\ea10'; position: absolute; top: 0; right: 0; padding: 3px 7px; color: green; opacity: 0; background-color: rgba(255, 255, 255, .9); } .selector:hover:before, .selector.active:before { opacity: 1; z-index: 1; } .selector button[data-prop="snippetName"]> :first-child, .selector button[data-prop="templateName"]> :first-child { pointer-events: none; } .selector button[data-prop="snippetName"]:focus, .selector button[data-prop="templateName"]:focus { box-shadow: none; } .togglable-wrapper { position: relative; } #snippets-wrapper .snippet-preview { overflow-y: auto; max-height: 250px; position: relative; } #snippets-wrapper .list-group-item.active { background-color: transparent !important; border-color: #DC3545 !important; } #snippets-wrapper .list-group-item.active h6 { background-color: #DC3545 !important; } #snippets-wrapper .snippet-preview>div.small :not(h6) { -moz-transform: scale(.95); -webkit-transform: scale(.95); -o-transform: scale(.95); -ms-transform: scale(.95); transform: scale(.95); } #snippets-wrapper .snippet-preview>div.small img { max-width: 100%; max-height: 100%; } @keyframes toggleOff { from { opacity: 1; transform: scale(1, 1); } 40% { opacity: 0; transform: scale(1, 0); } to { opacity: 0; transform: scale(1, 0); } } @keyframes toggleOn { from { opacity: 0; transform: scale(1, 0); } 60% { opacity: 0; transform: scale(1, 0); } to { opacity: 1; transform: scale(1, 1); } } .toggle.active { position: relative; z-index: 1; opacity: 1; transform: scale(1, 1); -webkit-animation-name: toggleOn; animation-name: toggleOn; animation-duration: .3s; transform-origin: center center; } .toggle:not(.active) { position: absolute; z-index: 0; opacity: 0; transform: scale(1, 0); -webkit-animation-name: toggleOff; animation-name: toggleOff; animation-duration: .3s; transform-origin: center center; } .d-none { display: none !important; } .list-group-item { width: 95%; margin: 1% !important; } .color-toggle.active { z-index: 2 !important; } @media (min-width: 576px) { .list-group-item { width: 47%; margin: 5px 1.5% !important; } } .template-preview .col, .template-preview [class*="col-"] { background: #FAF8F7; border-top: 1px solid #D1CFCD; border-bottom: 1px solid #D1CFCD; border-left: 1px solid #D1CFCD; } .template-preview .col:last-child, .template-preview [class*="col-"]:last-child { border-right: 1px solid #D1CFCD; } /*============================================= = icomoon = =============================================*/ @font-face { font-family: 'icomoon-tbp'; src: url('../fonts/icomoon-tbp.ttf?m7ewb4') format('truetype'), url('../fonts/icomoon-tbp.woff?m7ewb4') format('woff'), url('../fonts/icomoon-tbp.svg?m7ewb4#icomoon-tbp') format('svg'); font-weight: normal; font-style: normal; font-display: block; } [class^='bootstrap-'], [class*=' bootstrap-'], .selector:before { /* use !important to prevent issues with browser extensions that change fonts */ font-family: 'icomoon-tbp' !important; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; /* Better Font Rendering =========== */ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .bootstrap-icon-info:before { content: "\ea0c"; } .bootstrap-icon-cross:before { content: "\ea0f"; } .bootstrap-icon-circle-up:before { content: "\ea41"; } .bootstrap-icon-circle-right:before { content: "\ea42"; } .bootstrap-icon-circle-down:before { content: "\ea43"; } .bootstrap-icon-circle-left:before { content: "\ea44"; } .bootstrap-icon-bootstrap:before { content: "\e600"; } .bootstrap-icon-desktop:before { content: "\e601"; } .bootstrap-icon-mobile:before { content: "\e602"; } .bootstrap-icon-tablet:before { content: "\e603"; } .bootstrap-icon-tablet-horizontal:before { content: "\e604"; } .bootstrap-icon-btn:before { content: "\e605"; } .bootstrap-icon-icon:before { content: "\e606"; } .bootstrap-icon-card:before { content: "\e607"; } .bootstrap-icon-alert:before { content: "\e608"; } .bootstrap-icon-badge:before { content: "\e609"; } .bootstrap-icon-pager:before { content: "\e60a"; } .bootstrap-icon-pagination:before { content: "\e60b"; } .bootstrap-icon-breadcrumb:before { content: "\e60c"; } .bootstrap-icon-template:before { content: "\e60d"; } .bootstrap-icon-table:before { content: "\e60e"; } .bootstrap-icon-label:before { content: "\e60f"; } .bootstrap-icon-image:before { content: "\e90d"; } .bootstrap-icon-snippet:before { content: "\e9d9"; } .bootstrap-icon-plus:before { content: "\ea0a"; } .bootstrap-icon-minus:before { content: "\ea0b"; } .bootstrap-icon-check:before { content: "\ea10"; } /*============================================= = Modal = =============================================*/ .tbp-modal { position: fixed; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); opacity: 0; visibility: hidden; transform: scale(1.1); transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s; z-index: 9; } .tbp-modal-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); max-height: 95%; overflow-y: auto; background-color: white; padding: 1rem 1.5rem; width: 90%; border-radius: 0.5rem; } .tbp-close-button { float: right; width: 1.5rem; line-height: 1.5rem; text-align: center; cursor: pointer; border-radius: 0.25rem; background-color: lightgray; } .tbp-close-button:hover { background-color: darkgray; } .tbp-modal.show-modal { opacity: 1; visibility: visible; transform: scale(1.0); transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s; } /*============================================= = Table = =============================================*/ #table-builder { border-collapse: separate; border-spacing: 2px; } #table-builder td { width: 20px; height: 20px; min-width: 20px; min-height: 20px; border: 1px solid #999; } .table-icons { background: #fff !important; border: 1px solid #ccc; -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, .25); box-shadow: 0 0 20px 0 rgba(0, 0, 0, .2); } /*============================================= = popper - https://popper.js.org/ = =============================================*/ .popper { z-index: 999; } .popper .popper__arrow { width: 0; height: 0; border-style: solid; position: absolute; margin: 5px; } .popper .popper__arrow { border-color: #F8F9FA; } .popper[x-placement^="top"] { margin-bottom: 5px; } .popper[x-placement^="top"] .popper__arrow { border-width: 5px 5px 0 5px; border-left-color: transparent; border-right-color: transparent; border-bottom-color: transparent; bottom: -5px; left: calc(50% - 5px); margin-top: 0; margin-bottom: 0; } .popper[x-placement^="bottom"] { margin-top: 5px; } .popper[x-placement^="bottom"] .popper__arrow { border-width: 0 5px 5px 5px; top: -5px; border-color: transparent transparent #dee2e6 transparent; left: calc(50% - 5px); margin-top: 0; margin-bottom: 0; border-style: solid; border-width: 0 5px 5px 5px; } .popper[x-placement^="right"] { margin-left: 5px; } .popper[x-placement^="right"] .popper__arrow { border-width: 5px 5px 5px 0; border-left-color: transparent; border-top-color: transparent; border-bottom-color: transparent; left: -5px; top: calc(50% - 5px); margin-left: 0; margin-right: 0; } .popper[x-placement^="left"] { margin-right: 5px; } .popper[x-placement^="left"] .popper__arrow { border-width: 5px 0 5px 5px; border-top-color: transparent; border-right-color: transparent; border-bottom-color: transparent; right: -5px; top: calc(50% - 5px); margin-left: 0; margin-right: 0; } /*============================================= = File-tree = =============================================*/ #file-tree-wrapper { display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; } #ft-close-btn { position: absolute; display: block; right: 15px; top: 0; font-size: 24px; cursor: pointer; } .ft-tree, .ft-explorer { position: relative; width: 100%; padding-right: 15px; padding-left: 15px; } @media (min-width: 576px) { .ft-tree { -ms-flex: 0 0 33.333333%; flex: 0 0 33.333333%; max-width: 33.333333%; } .ft-explorer { -ms-flex: 0 0 66.666667%; flex: 0 0 66.666667%; max-width: 66.666667%; } }
0.525369
0.145085
@font-face{ font-family: "Cargo"; src: url('../fonts/GenBkBasR.ttf'); } @font-face{ font-family: "Cargo"; font-style: italic; src: url('../fonts/GenBkBasI.ttf'); } @font-face{ font-family: "Cargo"; font-weight: bold; src: url('../fonts/GenBkBasB.ttf'); } @font-face{ font-family: "Josefin"; src: url('../fonts/JosefinSans-Regular.ttf'); } @font-face{ font-family: "Josefin"; font-style: italic; src: url('../fonts/JosefinSans-Italic.ttf'); } @font-face{ font-family: "Josefin"; font-weight: bold; src: url('../fonts/JosefinSans-Bold.ttf'); } html,body{ height: 100%; } body{ font-family: "Josefin", Helvetica, Arial, sans-serif; background: url("/assets/img/enfant_bg.png") !important; } h1,h2,h3,h4,h5{ font-family: "Cargo", serif; } #login{ margin: 0; height: 100%; } #page-wrapper{ background-color: rgba(255,255,255,0.35); } .panel{ background-color: rgba(255,255,255,0.5); } nav.navbar{ background-color: #4e4e4e; } nav.navbar ul.navbar-top-links li a{ color: #fff; } nav.navbar ul.navbar-top-links li a:hover{ color: #4e4e4e; } .navbar-top-links li{ margin-top: 8px; margin-bottom: -7px; } .navbar-top-links li:last-child{ top:-7px; } a{ color: inherit; } .modalNic{ border-radius: 4px; background-color: #ffffff; max-height: 40%; text-align: center; } .navbar-brand{ padding: 3px 15px !important; } .toPop { border-radius: 4px; background-color: rgba(255,255,255,1); padding : 1.5em 2em 2em; max-height: 50%; overflow-y: scroll; display: none; } .toPop::-webkit-scrollbar-track{ -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); background-color: #F5F5F5; border-radius: 10px; } .toPop::-webkit-scrollbar{ width: 10px; background-color: #F5F5F5; } .toPop::-webkit-scrollbar-thumb{ border-radius: 10px; background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.44, rgb(122,153,217)), color-stop(0.72, rgb(73,125,189)), color-stop(0.86, rgb(28,58,148))); } .sidebar .fa-angle-right{ float: right; } textarea[name="actionDescription"], textarea[name="note"], textarea[name="commentaires"], textarea[name="bg"]{ height: 150px; resize: vertical; } /* MOBILE */ @media screen and (max-width: 576px){ .navbar-top-links li{ width: 100%; text-align: center; } .navbar-top-links li:nth-child(2){ background-color: #888; } .navbar-top-links li.logout{ text-align: right; } .navbar-top-links li form input { margin-top: 1em; width: 100%; } }
assets/css/style.css
@font-face{ font-family: "Cargo"; src: url('../fonts/GenBkBasR.ttf'); } @font-face{ font-family: "Cargo"; font-style: italic; src: url('../fonts/GenBkBasI.ttf'); } @font-face{ font-family: "Cargo"; font-weight: bold; src: url('../fonts/GenBkBasB.ttf'); } @font-face{ font-family: "Josefin"; src: url('../fonts/JosefinSans-Regular.ttf'); } @font-face{ font-family: "Josefin"; font-style: italic; src: url('../fonts/JosefinSans-Italic.ttf'); } @font-face{ font-family: "Josefin"; font-weight: bold; src: url('../fonts/JosefinSans-Bold.ttf'); } html,body{ height: 100%; } body{ font-family: "Josefin", Helvetica, Arial, sans-serif; background: url("/assets/img/enfant_bg.png") !important; } h1,h2,h3,h4,h5{ font-family: "Cargo", serif; } #login{ margin: 0; height: 100%; } #page-wrapper{ background-color: rgba(255,255,255,0.35); } .panel{ background-color: rgba(255,255,255,0.5); } nav.navbar{ background-color: #4e4e4e; } nav.navbar ul.navbar-top-links li a{ color: #fff; } nav.navbar ul.navbar-top-links li a:hover{ color: #4e4e4e; } .navbar-top-links li{ margin-top: 8px; margin-bottom: -7px; } .navbar-top-links li:last-child{ top:-7px; } a{ color: inherit; } .modalNic{ border-radius: 4px; background-color: #ffffff; max-height: 40%; text-align: center; } .navbar-brand{ padding: 3px 15px !important; } .toPop { border-radius: 4px; background-color: rgba(255,255,255,1); padding : 1.5em 2em 2em; max-height: 50%; overflow-y: scroll; display: none; } .toPop::-webkit-scrollbar-track{ -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); background-color: #F5F5F5; border-radius: 10px; } .toPop::-webkit-scrollbar{ width: 10px; background-color: #F5F5F5; } .toPop::-webkit-scrollbar-thumb{ border-radius: 10px; background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.44, rgb(122,153,217)), color-stop(0.72, rgb(73,125,189)), color-stop(0.86, rgb(28,58,148))); } .sidebar .fa-angle-right{ float: right; } textarea[name="actionDescription"], textarea[name="note"], textarea[name="commentaires"], textarea[name="bg"]{ height: 150px; resize: vertical; } /* MOBILE */ @media screen and (max-width: 576px){ .navbar-top-links li{ width: 100%; text-align: center; } .navbar-top-links li:nth-child(2){ background-color: #888; } .navbar-top-links li.logout{ text-align: right; } .navbar-top-links li form input { margin-top: 1em; width: 100%; } }
0.231527
0.051201
body { max-width: 750px; margin: 4px auto 0px auto; } .bf-ipt { width: 100%; display: block; } #pgr { resize: vertical; } .bf-tape { background-color: #ccc; padding: 1px; margin: 1px; min-height: 20px; } .bf-pgr { height: 200px; } .bf-tape-item { border: solid 1px #5fcf80; display: inline-block; margin: 4px; padding: 4px; min-width: 30px; text-align: center; height: 25px; line-height: 25px; background-color: #CFF0D8; transition: background-color 150ms, color 50ms; position: relative; } .bf-tape-item-hi { background-color: #fff; border: solid 1px #000; color: #D88569; } .bf-tape-item-cha { position: absolute; right: 0px; bottom: 0px; padding: 2px; color: #000; opacity: 0.7; font-size: 75%; line-height: 1; } a { text-decoration: inherit; color: #127EE1; } a:hover { color: #0c589d; } h1 { font-size: 210%; font-weight: lighter; } h2 { font-size: 115%; padding: 0; margin: 6px 0 6px 4px; font-weight: lighter; } h2:after { content: ":"; opacity: 0.6; font-size: 80%; } .man { float: right; padding: 0; margin: 0 10px 0 0; } .pg-dv { border-bottom: solid #ddd 1px; } .pg-dv h2 { display: inline; } .dh-alert { z-index: 999; box-shadow: 0 0 32px rgba(0, 0, 0, 0.6), 0 0 260px #000; font-size: 110%; position: fixed; left: 40px; right: 40px; top: 40%; height: auto; padding: 16px; background-color: #fff; text-align: center; } .dh-alert-close { font-size: 80%; color: #bbb; font-weight: bold; cursor: pointer; margin: 2px; } .dh-alert-close:hover { color: #888; } .dh-alert-bg { background-color: rgba(0,0,0,0.1); position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 998; } pre { border-left: solid #999 2px; margin: 8px; padding: 4px; background-color: #eee; font-size: 16px; } textarea { min-height: 60px; outline: 0; border: 0; font-size: 14px; color: #333; border-left: solid #999 2px; border-top: solid #e0e0e0 1px; border-bottom: solid #e0e0e0 1px; resize: none; } textarea:focus { background-color: #eee; } *::selection { background: rgba(18, 126, 225, 0.18); } #pgr::selection { color: #fff; background: rgba(0, 0, 0, 0.80); }
g.css
body { max-width: 750px; margin: 4px auto 0px auto; } .bf-ipt { width: 100%; display: block; } #pgr { resize: vertical; } .bf-tape { background-color: #ccc; padding: 1px; margin: 1px; min-height: 20px; } .bf-pgr { height: 200px; } .bf-tape-item { border: solid 1px #5fcf80; display: inline-block; margin: 4px; padding: 4px; min-width: 30px; text-align: center; height: 25px; line-height: 25px; background-color: #CFF0D8; transition: background-color 150ms, color 50ms; position: relative; } .bf-tape-item-hi { background-color: #fff; border: solid 1px #000; color: #D88569; } .bf-tape-item-cha { position: absolute; right: 0px; bottom: 0px; padding: 2px; color: #000; opacity: 0.7; font-size: 75%; line-height: 1; } a { text-decoration: inherit; color: #127EE1; } a:hover { color: #0c589d; } h1 { font-size: 210%; font-weight: lighter; } h2 { font-size: 115%; padding: 0; margin: 6px 0 6px 4px; font-weight: lighter; } h2:after { content: ":"; opacity: 0.6; font-size: 80%; } .man { float: right; padding: 0; margin: 0 10px 0 0; } .pg-dv { border-bottom: solid #ddd 1px; } .pg-dv h2 { display: inline; } .dh-alert { z-index: 999; box-shadow: 0 0 32px rgba(0, 0, 0, 0.6), 0 0 260px #000; font-size: 110%; position: fixed; left: 40px; right: 40px; top: 40%; height: auto; padding: 16px; background-color: #fff; text-align: center; } .dh-alert-close { font-size: 80%; color: #bbb; font-weight: bold; cursor: pointer; margin: 2px; } .dh-alert-close:hover { color: #888; } .dh-alert-bg { background-color: rgba(0,0,0,0.1); position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 998; } pre { border-left: solid #999 2px; margin: 8px; padding: 4px; background-color: #eee; font-size: 16px; } textarea { min-height: 60px; outline: 0; border: 0; font-size: 14px; color: #333; border-left: solid #999 2px; border-top: solid #e0e0e0 1px; border-bottom: solid #e0e0e0 1px; resize: none; } textarea:focus { background-color: #eee; } *::selection { background: rgba(18, 126, 225, 0.18); } #pgr::selection { color: #fff; background: rgba(0, 0, 0, 0.80); }
0.460532
0.125654
@charset "utf-8"; /* CSS Document */ /*121018-fbx*/ /* header */ /*#header{ height:80px; margin: 0 auto; position:relative; overflow:hidden; } #headerinside{background:url(http://pic2.58.com/n/images/h_bg.gif) repeat-x;height:60px} #login{ position:absolute; right:160px;top:50px;} #logintext{right:10px; top:50px; color:#666;} #logintext a{margin:0 14px; color:#666;} #logintext a:hover{ color:#ff0000; text-decoration:underline;}*/ #login-header{width:1000px;/*height:80px;*/height:70px; border:none; margin: 0 auto; position:relative; /*overflow:hidden;*/ z-index:1;} #logo,#cityname,#logintext,#hlr{position:absolute;} #logo{/*left:20px;top:17px;*/left:0;top:10px;margin:0;} #logo img{ display:block;} #cityname{ height:39px; /*top:30px; left:190px;*/ top:23px; left:170px; padding-left:15px;} #cityname .cityname{font:22px/1.8 "微软雅黑","黑体", sans-serif; color:#585858;} #cityname a{padding-left:10px;margin:0;float:none;} #hlr{top:40px;right:-8px;line-height:16px;} #hlr a{color:#666;float:left;display:inline;padding:0 8px;} #hlr span{float:left;color:#D9D9D9;} #login-header #login{position:absolute;top:40px;right:-8px;line-height:16px;padding: 0 8px;float:left;} /*#login a{color:#666;float:left;display:inline;padding:0 8px;} #login span{float:left;color:#D9D9D9;}*/ .gap{color: #CCCCCC;margin:0 6px;} /* footer */ .cb,#footer{width:1000px;margin:0 auto;clear:both;overflow:hidden;border:none;background:#fff;zoom:1;display:block;} .cb{margin-bottom:40px} #footer p,.copyright{width:1000px;margin:0 auto;text-align:center;/*line-height:24px; padding:10px 0; */border-top:1px solid #ccc;line-height:32px; font-size:12px;} a.fduihua{ padding-right:22px; margin-left:5px; background-image: url(../images/bgpic.gif); background-repeat: no-repeat; background-position: right -505px; } /*简历创建流程*/ #usernametr span,#passwordtr span{float:left;display:inline;width:80px;font-size:14px;height:40px;line-height:40px;color:#666;} .hire_flow{width:1000px;margin:0 auto;overflow:hidden;} .hire_flow ul{background-image:url(../images/jl.jpg);background-repeat:no-repeat;overflow:hidden;zoom:1;} .hire_flow .step1{background-position:0 0;} .hire_flow .step2{background-position:0 0;} .hire_flow .step3{background-position:0 0;} .hire_flow li{width:250px;height:35px;float:left;display:inline;font:bold 14px/35px Arial,Tahoma,"宋体",sans-serif;color:#585858;text-align:center;} /*.hire_flow ul .s_pre{color:#404040;}*/ .hire_flow .s_cur{color:#fff;} .hire_flow li .s_num{font-size:18px;font-family:"arial";font-weight:normal;padding-right:5px;vertical-align:top;*vertical-align:middle;_vertical-align:baseline;} .hire_flow li .resele{font-size:12px;font-weight:normal;color:#888;}
frontend/web/css/common.css
@charset "utf-8"; /* CSS Document */ /*121018-fbx*/ /* header */ /*#header{ height:80px; margin: 0 auto; position:relative; overflow:hidden; } #headerinside{background:url(http://pic2.58.com/n/images/h_bg.gif) repeat-x;height:60px} #login{ position:absolute; right:160px;top:50px;} #logintext{right:10px; top:50px; color:#666;} #logintext a{margin:0 14px; color:#666;} #logintext a:hover{ color:#ff0000; text-decoration:underline;}*/ #login-header{width:1000px;/*height:80px;*/height:70px; border:none; margin: 0 auto; position:relative; /*overflow:hidden;*/ z-index:1;} #logo,#cityname,#logintext,#hlr{position:absolute;} #logo{/*left:20px;top:17px;*/left:0;top:10px;margin:0;} #logo img{ display:block;} #cityname{ height:39px; /*top:30px; left:190px;*/ top:23px; left:170px; padding-left:15px;} #cityname .cityname{font:22px/1.8 "微软雅黑","黑体", sans-serif; color:#585858;} #cityname a{padding-left:10px;margin:0;float:none;} #hlr{top:40px;right:-8px;line-height:16px;} #hlr a{color:#666;float:left;display:inline;padding:0 8px;} #hlr span{float:left;color:#D9D9D9;} #login-header #login{position:absolute;top:40px;right:-8px;line-height:16px;padding: 0 8px;float:left;} /*#login a{color:#666;float:left;display:inline;padding:0 8px;} #login span{float:left;color:#D9D9D9;}*/ .gap{color: #CCCCCC;margin:0 6px;} /* footer */ .cb,#footer{width:1000px;margin:0 auto;clear:both;overflow:hidden;border:none;background:#fff;zoom:1;display:block;} .cb{margin-bottom:40px} #footer p,.copyright{width:1000px;margin:0 auto;text-align:center;/*line-height:24px; padding:10px 0; */border-top:1px solid #ccc;line-height:32px; font-size:12px;} a.fduihua{ padding-right:22px; margin-left:5px; background-image: url(../images/bgpic.gif); background-repeat: no-repeat; background-position: right -505px; } /*简历创建流程*/ #usernametr span,#passwordtr span{float:left;display:inline;width:80px;font-size:14px;height:40px;line-height:40px;color:#666;} .hire_flow{width:1000px;margin:0 auto;overflow:hidden;} .hire_flow ul{background-image:url(../images/jl.jpg);background-repeat:no-repeat;overflow:hidden;zoom:1;} .hire_flow .step1{background-position:0 0;} .hire_flow .step2{background-position:0 0;} .hire_flow .step3{background-position:0 0;} .hire_flow li{width:250px;height:35px;float:left;display:inline;font:bold 14px/35px Arial,Tahoma,"宋体",sans-serif;color:#585858;text-align:center;} /*.hire_flow ul .s_pre{color:#404040;}*/ .hire_flow .s_cur{color:#fff;} .hire_flow li .s_num{font-size:18px;font-family:"arial";font-weight:normal;padding-right:5px;vertical-align:top;*vertical-align:middle;_vertical-align:baseline;} .hire_flow li .resele{font-size:12px;font-weight:normal;color:#888;}
0.193185
0.042088
.button, .button:hover { text-decoration:none; } .play { width:20px; height:20px; display:block; float:left; background:url('/images/audiosource_new.gif') 0px 0px no-repeat; } .downloads { width:20px; height:20px; display:block; margin:0; background:url('/images/audiosource_new.gif') 0px -40px no-repeat; } .downloads:hover { background:url('/images/audiosource_new.gif') -20px -40px no-repeat; } .add { width:20px; height:20px; display:block; margin:0; background:url('http://socialzet.com/images/icons/plus1.gif') no-repeat; } .add:hover { background:url('http://socialzet.com/images/icons/plus2.gif') no-repeat; } .delete { width:20px; height:20px; display:block; margin:0; background:url('http://socialzet.com/images/icons/action_delete1.gif') no-repeat; } .delete:hover { background:url('http://socialzet.com/images/icons/action_delete2.gif') no-repeat; } .pause { width:20px; height:20px; display:block; float:left; background:url('/images/audiosource_new.gif') -20px 0px no-repeat; } .play:hover { background:url('/images/audiosource_new.gif') 0px -20px no-repeat; } .pause:hover { background:url('/images/audiosource_new.gif') -20px -20px no-repeat; } .time { text-align:right; color:#b7c9e2; } .spanel { border-top:1px solid #f0f0e7; } .spanel td { padding-top:8px; border-top:1px solid #f0f0e7; } .ppanel td { position:relative; padding:0 0 2px 0; margin:0; height:9px; } .ppanel td div.pb { position: absolute; border-top-width: 1px; border-top-style: dashed; border-top-color: #c5e3b2; width: 342px; height: 5px; margin-top: 5px; z-index: -100; float:left; } .ppanel td div.vb { width:55px; height:7px; margin:1px 0 0 0; display:block; position:relative; float:right; } .profile_ppanel td { position:relative; padding:0 0 2px 0; margin:0; height:9px; } .profile_ppanel td div.pb { position: absolute; border-top-width: 1px; width: 342px; height: 5px; margin-top: 5px; float:left; } .profile_ppanel td div.vb { width:55px; height:7px; margin:1px 0 0 0; display:block; position:relative; float:right; } .title { padding-top:6px; } .infotitle { border-bottom:1px dotted #09F; cursor:help; } .progressbar { width:235px; height:9px; margin:0; padding:0; display:block; position:relative; float:left; background:#c5e3fa url('/images/audiosource_new.gif') 0px -80px repeat-x; } .progressbar div { width:0%; height:9px; margin:0; padding:0; display:block; position:relative; background:#54b859 url('/images/audiosource_new.gif') 0px -89px repeat-x; cursor:pointer; } /**.progressbar b { width:9px; height:9px; display:block; position:relative; left:0%; margin:-8px 0 0 0; background:#0066bb url('/images/audiosource_new.gif') 0px -60px no-repeat; cursor:pointer; } **/ .progressbar b {display: block; position: relative; width: 15px; height: 6px; left: 0px; border: 0; padding: 0; margin: -4px 0 0 0; background-color: #54b859; -webkit-user-select: none; cursor: pointer; *position: absolute; *top: 7px;} .volumebar { width:55px; height:7px; margin:1px 0 0 0; display:block; position:relative; float:right; background:#c5e3fa url('/images/audiosource_new.gif') 0px -81px repeat-x; } .volumebar div { width:0%; height:7px; display:block; position:relative; background:#c5e3fa url('/images/audiosource_new.gif') 0px -81px repeat-x; cursor:pointer; } .volumebar b {border: 0; padding: 0; margin: -3px 0 0 0; display: block; width: 8px; height: 6px; position: relative; background-color: #54b859; cursor: pointer; -webkit-user-select: none; *position: absolute; *top: 7px; *overflow: hidden} /** .volumebar b { width:7px; height:7px; display:block; position:relative; left:0%; margin:-6px 0 0 0; background:#0066bb url('/images/audiosource_new.gif') -20px -60px no-repeat; cursor:pointer; } **/
css/musicstyle.css
.button, .button:hover { text-decoration:none; } .play { width:20px; height:20px; display:block; float:left; background:url('/images/audiosource_new.gif') 0px 0px no-repeat; } .downloads { width:20px; height:20px; display:block; margin:0; background:url('/images/audiosource_new.gif') 0px -40px no-repeat; } .downloads:hover { background:url('/images/audiosource_new.gif') -20px -40px no-repeat; } .add { width:20px; height:20px; display:block; margin:0; background:url('http://socialzet.com/images/icons/plus1.gif') no-repeat; } .add:hover { background:url('http://socialzet.com/images/icons/plus2.gif') no-repeat; } .delete { width:20px; height:20px; display:block; margin:0; background:url('http://socialzet.com/images/icons/action_delete1.gif') no-repeat; } .delete:hover { background:url('http://socialzet.com/images/icons/action_delete2.gif') no-repeat; } .pause { width:20px; height:20px; display:block; float:left; background:url('/images/audiosource_new.gif') -20px 0px no-repeat; } .play:hover { background:url('/images/audiosource_new.gif') 0px -20px no-repeat; } .pause:hover { background:url('/images/audiosource_new.gif') -20px -20px no-repeat; } .time { text-align:right; color:#b7c9e2; } .spanel { border-top:1px solid #f0f0e7; } .spanel td { padding-top:8px; border-top:1px solid #f0f0e7; } .ppanel td { position:relative; padding:0 0 2px 0; margin:0; height:9px; } .ppanel td div.pb { position: absolute; border-top-width: 1px; border-top-style: dashed; border-top-color: #c5e3b2; width: 342px; height: 5px; margin-top: 5px; z-index: -100; float:left; } .ppanel td div.vb { width:55px; height:7px; margin:1px 0 0 0; display:block; position:relative; float:right; } .profile_ppanel td { position:relative; padding:0 0 2px 0; margin:0; height:9px; } .profile_ppanel td div.pb { position: absolute; border-top-width: 1px; width: 342px; height: 5px; margin-top: 5px; float:left; } .profile_ppanel td div.vb { width:55px; height:7px; margin:1px 0 0 0; display:block; position:relative; float:right; } .title { padding-top:6px; } .infotitle { border-bottom:1px dotted #09F; cursor:help; } .progressbar { width:235px; height:9px; margin:0; padding:0; display:block; position:relative; float:left; background:#c5e3fa url('/images/audiosource_new.gif') 0px -80px repeat-x; } .progressbar div { width:0%; height:9px; margin:0; padding:0; display:block; position:relative; background:#54b859 url('/images/audiosource_new.gif') 0px -89px repeat-x; cursor:pointer; } /**.progressbar b { width:9px; height:9px; display:block; position:relative; left:0%; margin:-8px 0 0 0; background:#0066bb url('/images/audiosource_new.gif') 0px -60px no-repeat; cursor:pointer; } **/ .progressbar b {display: block; position: relative; width: 15px; height: 6px; left: 0px; border: 0; padding: 0; margin: -4px 0 0 0; background-color: #54b859; -webkit-user-select: none; cursor: pointer; *position: absolute; *top: 7px;} .volumebar { width:55px; height:7px; margin:1px 0 0 0; display:block; position:relative; float:right; background:#c5e3fa url('/images/audiosource_new.gif') 0px -81px repeat-x; } .volumebar div { width:0%; height:7px; display:block; position:relative; background:#c5e3fa url('/images/audiosource_new.gif') 0px -81px repeat-x; cursor:pointer; } .volumebar b {border: 0; padding: 0; margin: -3px 0 0 0; display: block; width: 8px; height: 6px; position: relative; background-color: #54b859; cursor: pointer; -webkit-user-select: none; *position: absolute; *top: 7px; *overflow: hidden} /** .volumebar b { width:7px; height:7px; display:block; position:relative; left:0%; margin:-6px 0 0 0; background:#0066bb url('/images/audiosource_new.gif') -20px -60px no-repeat; cursor:pointer; } **/
0.297062
0.073065
.home_page{ box-sizing: border-box; margin: 0; padding: 0; } .home_slide{ height: 100vh; display: flex; justify-content: center; align-items: center; } .img-slider{ position: relative; width: 100%; height: 93%; } .img-slider .slide{ z-index: 1; position: absolute; width: 100%; clip-path: circle(0% at 0 50%); } .img-slider .slide.active{ clip-path: circle(150% at 0 50%); transition: 2s; transition-property: clip-path; } .img-slider .slide img{ z-index: 1; width: 100%; height: 600px; border-radius: 5px; } .img-slider .slide_navigation{ z-index: 2; position: absolute; display: flex; bottom: 60px; left: 50%; transform: translateX(-50%); } .img-slider .slide_navigation .slide_btn{ background: gray; width: 18px; height: 18px; margin: 10px; border-radius: 50%; cursor: pointer; } .img-slider .slide_navigation .slide_btn.active{ background-color: rgb(50, 50, 53); box-shadow: 0 0 2px rgba(0, 0, 0, 0.5); } .side_announcement{ width: 30%; height: 550px; margin-top: 50px; background-color: rgba(27, 169, 248, 0.5); position: absolute; right: 100px; z-index: 1; } .home{ position: absolute; width: 90%; } .home_content{ margin-top: 90vh; } @media screen and (max-width:1000px){ .img-slider{ top: -20%; width: 95%; height: 55%; } .img-slider .slide img{ z-index: 1; width: 100%; height: 320px; border-radius: 5px; } .home_content{ margin-top: 50vh; } .side_announcement{ width: 80%; height: 265px; top: 10%; position: absolute; background-color: rgba(27, 169, 248, 0.5); right: 120px; z-index: 1; } } @media screen and (max-width:700px){ .img-slider{ top: -20%; width: 100%; height: 55%; margin-left: -25px; } .img-slider .slide img{ z-index: 1; width: 100%; height: 300px; border-radius: 5px; } .home_content{ margin-top: 50vh; } .side_announcement{ width: 85%; height: 250px; position: absolute; background-color: rgba(27, 169, 248, 0.5); right: 26px; z-index: 1; } h4{ font-size: 18px; } } .home_page{ box-sizing: border-box; margin: 0; padding: 0; } .home_slide{ height: 100vh; display: flex; justify-content: center; align-items: center; } .img-slider{ position: relative; width: 100%; height: 93%; } .img-slider .slide{ z-index: 1; position: absolute; width: 100%; clip-path: circle(0% at 0 50%); } .img-slider .slide.active{ clip-path: circle(150% at 0 50%); transition: 2s; transition-property: clip-path; } .img-slider .slide img{ z-index: 1; width: 100%; height: 600px; border-radius: 5px; } .img-slider .slide_navigation{ z-index: 2; position: absolute; display: flex; bottom: 60px; left: 50%; transform: translateX(-50%); } .img-slider .slide_navigation .slide_btn{ background: gray; width: 18px; height: 18px; margin: 10px; border-radius: 50%; cursor: pointer; } .img-slider .slide_navigation .slide_btn.active{ background-color: rgb(50, 50, 53); box-shadow: 0 0 2px rgba(0, 0, 0, 0.5); } .side_announcement{ width: 30%; height: 550px; margin-top: 50px; background-color: rgba(27, 169, 248, 0.5); position: absolute; right: 100px; z-index: 1; } .home{ position: absolute; width: 90%; } .home_content{ margin-top: 90vh; } .galleries{ padding: 10px; } .wrapper{ display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); grid-gap: 5px; } .image_gallery{ width: 100%; border-radius: 20px; } .box{ padding: 10px; } .box:hover{ transform: scale(1.1); } @media screen and (max-width:1000px){ .img-slider{ top: -20%; width: 95%; height: 55%; } .img-slider .slide img{ z-index: 1; width: 100%; height: 320px; border-radius: 5px; } .home_content{ margin-top: 50vh; } .side_announcement{ width: 80%; height: 265px; top: 10%; position: absolute; background-color: rgba(27, 169, 248, 0.5); right: 120px; z-index: 1; } } @media screen and (max-width:700px){ .img-slider{ top: -20%; width: 100%; height: 55%; margin-left: -25px; } .img-slider .slide img{ z-index: 1; width: 100%; height: 300px; border-radius: 5px; } .home_content{ margin-top: 50vh; } .side_announcement{ width: 85%; height: 250px; position: absolute; background-color: rgba(27, 169, 248, 0.5); right: 26px; z-index: 1; } h4{ font-size: 18px; } .galleries{ padding: 0; margin-left: -30px; } .box{ padding: 10px; width: 85%; } }
public/css/homepage.css
.home_page{ box-sizing: border-box; margin: 0; padding: 0; } .home_slide{ height: 100vh; display: flex; justify-content: center; align-items: center; } .img-slider{ position: relative; width: 100%; height: 93%; } .img-slider .slide{ z-index: 1; position: absolute; width: 100%; clip-path: circle(0% at 0 50%); } .img-slider .slide.active{ clip-path: circle(150% at 0 50%); transition: 2s; transition-property: clip-path; } .img-slider .slide img{ z-index: 1; width: 100%; height: 600px; border-radius: 5px; } .img-slider .slide_navigation{ z-index: 2; position: absolute; display: flex; bottom: 60px; left: 50%; transform: translateX(-50%); } .img-slider .slide_navigation .slide_btn{ background: gray; width: 18px; height: 18px; margin: 10px; border-radius: 50%; cursor: pointer; } .img-slider .slide_navigation .slide_btn.active{ background-color: rgb(50, 50, 53); box-shadow: 0 0 2px rgba(0, 0, 0, 0.5); } .side_announcement{ width: 30%; height: 550px; margin-top: 50px; background-color: rgba(27, 169, 248, 0.5); position: absolute; right: 100px; z-index: 1; } .home{ position: absolute; width: 90%; } .home_content{ margin-top: 90vh; } @media screen and (max-width:1000px){ .img-slider{ top: -20%; width: 95%; height: 55%; } .img-slider .slide img{ z-index: 1; width: 100%; height: 320px; border-radius: 5px; } .home_content{ margin-top: 50vh; } .side_announcement{ width: 80%; height: 265px; top: 10%; position: absolute; background-color: rgba(27, 169, 248, 0.5); right: 120px; z-index: 1; } } @media screen and (max-width:700px){ .img-slider{ top: -20%; width: 100%; height: 55%; margin-left: -25px; } .img-slider .slide img{ z-index: 1; width: 100%; height: 300px; border-radius: 5px; } .home_content{ margin-top: 50vh; } .side_announcement{ width: 85%; height: 250px; position: absolute; background-color: rgba(27, 169, 248, 0.5); right: 26px; z-index: 1; } h4{ font-size: 18px; } } .home_page{ box-sizing: border-box; margin: 0; padding: 0; } .home_slide{ height: 100vh; display: flex; justify-content: center; align-items: center; } .img-slider{ position: relative; width: 100%; height: 93%; } .img-slider .slide{ z-index: 1; position: absolute; width: 100%; clip-path: circle(0% at 0 50%); } .img-slider .slide.active{ clip-path: circle(150% at 0 50%); transition: 2s; transition-property: clip-path; } .img-slider .slide img{ z-index: 1; width: 100%; height: 600px; border-radius: 5px; } .img-slider .slide_navigation{ z-index: 2; position: absolute; display: flex; bottom: 60px; left: 50%; transform: translateX(-50%); } .img-slider .slide_navigation .slide_btn{ background: gray; width: 18px; height: 18px; margin: 10px; border-radius: 50%; cursor: pointer; } .img-slider .slide_navigation .slide_btn.active{ background-color: rgb(50, 50, 53); box-shadow: 0 0 2px rgba(0, 0, 0, 0.5); } .side_announcement{ width: 30%; height: 550px; margin-top: 50px; background-color: rgba(27, 169, 248, 0.5); position: absolute; right: 100px; z-index: 1; } .home{ position: absolute; width: 90%; } .home_content{ margin-top: 90vh; } .galleries{ padding: 10px; } .wrapper{ display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); grid-gap: 5px; } .image_gallery{ width: 100%; border-radius: 20px; } .box{ padding: 10px; } .box:hover{ transform: scale(1.1); } @media screen and (max-width:1000px){ .img-slider{ top: -20%; width: 95%; height: 55%; } .img-slider .slide img{ z-index: 1; width: 100%; height: 320px; border-radius: 5px; } .home_content{ margin-top: 50vh; } .side_announcement{ width: 80%; height: 265px; top: 10%; position: absolute; background-color: rgba(27, 169, 248, 0.5); right: 120px; z-index: 1; } } @media screen and (max-width:700px){ .img-slider{ top: -20%; width: 100%; height: 55%; margin-left: -25px; } .img-slider .slide img{ z-index: 1; width: 100%; height: 300px; border-radius: 5px; } .home_content{ margin-top: 50vh; } .side_announcement{ width: 85%; height: 250px; position: absolute; background-color: rgba(27, 169, 248, 0.5); right: 26px; z-index: 1; } h4{ font-size: 18px; } .galleries{ padding: 0; margin-left: -30px; } .box{ padding: 10px; width: 85%; } }
0.442637
0.080937
html, body { height: 100% !important; overflow-x: hidden; } .sidebar-offcanvas{ padding-top: 4em; color: white; background: black; display: flex; justify-content: center; padding-left: 40px; padding-bottom: 40px; font-size: 12px; } #sidebar .active{ color: cyan; font-weight: 600; } p.logo{ font-weight: bolder; font-size: 2em; margin-bottom: 1.8em; } .sidebar-offcanvas ul{ background: none !important; list-style: none; } .sidebar-offcanvas h4{ text-transform: uppercase; font-size: 16px; margin-bottom: 1.5em; font-weight: bolder; } .sidebar-cent{ display: flex; flex-direction: column; width: 50%; } .sidebar-cent input{ margin-right: 20px; margin-left: -40px; } .filter-list p, .filter-list label{ color: white; text-transform: uppercase; cursor: pointer; } .right-box{ background: #ccc; padding-top: 3em; padding-left: 2em; padding-right: 2em; } /*.pageTit{ margin-bottom: 0.5em; } .pageSubTitle{ margin-bottom: 1.5em; }*/ .sidebar-offcanvas hr{ background: #ccc; width: 100% !important; } .card-header{ background-color: #121d13; color: white; padding: 20px; font-size: 18px; } a.card{ color: #333; text-decoration: none; } .card{ margin-bottom: 10px; } .card-header span{ margin-right: 2em; } .card-footer{ background: white; border: 0px; font-size: 14px; color: #ccc; } .card-text{ font-size: 0.8em; } .col-md-3 .card{ padding: 1em; } #picksearch{ margin-bottom: 15px; } #picksearchLabels{ } label[for=searchstate], label[for=searchlga]{ font-size: 0.8em; color: #ccc; } #picksearch .searchinput{ position: absolute !important; bottom: 0px !important; right: 15px !important; } .brandlist .card-block{ padding: 0px !important; padding-top: 10px !important; } .brandlist .card{ border: 0px !important; padding-bottom: 0.5em !important; } .prev-btn{ padding: 10px; height: 55%; position: absolute; left: 0px; color: #464a4c !important; display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; text-decoration: none !important; } .prev-btn:hover i, .next-btn:hover i{ color: #aaa; } .next-btn{ padding: 10px; height: 55%; position: absolute; right: 0px; color: #464a4c !important; display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; text-decoration: none !important; } .custom-select { background: #fff url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj48cGF0aCBkPSJNMTYuMDAzIDE4LjYyNmw3LjA4MS03LjA4MUwyNSAxMy40NmwtOC45OTcgOC45OTgtOS4wMDMtOSAxLjkxNy0xLjkxNnoiLz48L3N2Zz4=') no-repeat right 0.75rem center; background-size: 15px 20px; } @media (max-width: 768px){ .filter-list p{ font-size: .714em; } .sidebar-cent input{ margin-left: 0px; } .sidebar-cent{ width: 100%; } .sidebar-offcanvas{ height: 100%; } .ModalPage{ width: 100% !important; height: 100% !important; max-height: 600px !important; } #otherAmount{ width: 65% !important; } } @media (max-width: 320px){ .sidebar-offcanvas{ width: 60% !important; padding-top: 2em; } .filter-list p{ font-size: .714em; } html,body{ overflow-x: scroll; } } .custom-control-input:checked~.custom-control-indicator { color: #fff; background-color: #5cb85c; } .custom-control-indicator{ background: rgba(0,0,0,0); border: 2px solid #5cb85c; } .filter-list .custom-control.custom-checkbox{ margin-left: -2em !important; } .filter-list .custom-control-indicator{ margin-left: -1em; margin-top: -0.3em; } .gmt{ color: #bbb; font-size: 1em; } /*View Modal Page Box*/ .viewModalPage{ display: flex; } .ModalPage{ background: white; padding: 2em; border: 1px solid #ccc; border-radius: 4px; position: relative; float: left; width: 50%; height: 600px; max-height: 600px; overflow-y: auto; z-index: 1000; } .ModalBrandName{ padding-top: 15px; color: #bbb; } .ModalBoxInfo{ padding-top: 15px; border-top: 1px solid #ccc; margin-top: 1em; } .ModalBoxInfo h6{ margin-bottom: 1.5rem !important; } .ModalBoxInfo .btn{ font-size: .95em; cursor: pointer; } .BrandAddress{ margin-bottom: .5rem; font-family: inherit; font-weight: 500; line-height: 1.1; color: inherit; font-size: 1rem; } .btn-ModalBox{ color: #fff; background: #121d13; border: 1px solid #121d13; border-bottom: 3px solid rgba(21,21,21, 0.3); } .btn-ModalBox:focus{ border-bottom: 1px solid #121d13; } .ModalBoxInfo .btn-secondary{ border-bottom: 3px solid rgba(21,21,21, 0.3); font-size: .6em !important; } .btn-ModalBox:hover{ background: rgba(18,29,19, 0.9); } .ModalBoxInfo input[type="radio"]{ display: none; } .ModalBoxInfo label{ border: 1px solid #ccc; padding: .5rem .75rem !important; font-size: .8rem; background: none; border-radius: 5px; cursor: pointer; margin-right: 0.5em; } .ModalBoxInfo label:hover{ background: #ccc; color: #fff; transition: 0.5s; } .ModalBoxInfo input[type="radio"]:checked label{ background: #ccc; color: #fff; } #otherAmount { width: 35%; float: right; margin-bottom: 1em; } .ModalBoxInfo .footerInfo{ font-size: .8em !important; color: #bbb; } .viewModalPage ng-component{ display: flex; justify-content: center; } .ModalBoxInfo .btn-ModalBox{ margin: 0px !important; } /*End View Modal Page Box*/ /*Delivery Details Styling*/ .delivery-details{ padding-left: 4.1rem; } .delivery-details .btn{ font-size: 0.7em; cursor: pointer; } .deliveryMethodInfo{ color: cyan; font-size: 0.8em; } .delivery-details .custom-control-indicator{ background: none; border: 1px solid #5cb85c; } .delivery-details .custom-control-input:checked~.custom-control-indicator{ background: #5cb85c; color: #fff !important; } .custom-control-indicator:hover, .custom-control-indicator:focus{ background: #5cb85c; } .giftorderLink{ margin-top: 1em; } .giftorderLink i{ margin-right: .5rem; color: #ccc; font-weight: lighter; } .giftorderLink:hover i{ color: #464a4c; } .deliveryBox .card-footer{ padding: 1em !important; border-top: 1px solid #ccc !important; padding-left: 4.1rem !important; color: #aaa; } .deliveryBox .card-footer .btn-link{ color: rgba(21,21,21, 1) } .cyan-text{ color: cyan; } /*End Delivery Details Styling*/ /* Compose Message Styling*/ .composeMessageBox .card-footer{ padding: 1em !important; border-top: 1px solid #ccc !important; padding-left: 4.1rem !important; color: #aaa; } .card-footer .btn-link{ color: rgba(21,21,21, 1); } .compose-message{ padding-left: 4.1rem; } .compose-message .col-form-label{ margin-left: .2em; margin-right: 1em; } .claim{ margin-top: 1.5em !important; margin-bottom: 1.5em !important; } /*End Compose Message Styling*/ /*Message Preview*/ .message-preview{ display: flex; } .messagePreview{ background: rgba(236, 238, 239, 0.5); padding: 2em; } .messagePreview .btn-link{ text-decoration: none; color: #121d13; } .messagePreview .btn-ModalBox{ font-size: 0.8em; } .miniMessagePreview{ padding: 1em; background: #fff; border: 1px solid #ccc; } .miniMessagePreview p{ font-size: 0.8em; } .messagePreviewBox .card-footer{ color: #121d13; } .messagePreviewBox .card-footer .logo{ font-weight: bolder; font-size: 1.5em; margin-left: .3em !important; } .MessagePreviewVoucherName { font-size: .76em; color: #aaa; } .MessagePreviewVoucherPrice{ font-weight: bolder; color: #0bc59c; } .voucherCodeTitle{ font-size: 0.8em; font-weight: bold; color: #ccc; margin-bottom: .4em !important; } .voucherCode{ font-size: 0.8em; font-weight: bold; margin-bottom: 1.4em; } .retailerTitle{ font-size: 0.8em; margin-bottom: 0em !important; } .retailerAddress{ font-size: 0.7em; font-weight: bold; color: #0bc59c; } /*End Message Preview*/ /*Place Order*/ .place-order{ display: flex; } .placeOrder { font-size: 0.8em; font-weight: bold; } .placeOrder .float-right{ color: #0bc59c; text-align: left; } .placeOrderTitle{ padding: 1em; background: #ccc; border: 1px solid #ccc; } .placeOrderFooter{ padding: 1em; background: #ccc; border: 1px solid #ccc; } .placeOrderBody{ padding: 1em; border: 1px solid #ccc; } .placeOrderBody .left-side{ width: 30px; max-width: 30px; } .placeOrderRow{ padding: 1em 0em; } .btn-link { color: #121d13; text-decoration: none; } .placeOrderBox .card-footer{ display: flex; } span.logo{ font-weight: bolder; font-size: 1.5em; margin-bottom: 1.8em; color: #121d13; margin-left: 0.4em; } /*End Place Order*/ /* End Voucher Buy Page */ /*Wishlist Page*/ /*Select Gift Voucher Page*/ .selectGiftVoucherBox .card-bottom{ padding: 2em; padding-left: 2em; background: #fff; border-top: 1px solid #ccc; } .card-bottom .card{ border: none; } .brandBtn{ padding: 0.5em 1em; border-radius: 20px; background: #5cb85c; color: #fff; font-size: 0.8em; text-align: center; position: absolute; bottom: 5px; left: 1em; } /*.brandlist .brandBtn { padding: 0.5em 1em; border-radius: 20px; background: #5cb85c; color: #fff; font-size: 0.8em; text-align: center; position: absolute; top: 0px !important; left: 2.2em; }*/ /* End Select Gift Voucher Page*/ /*Wishlist Customisation Styling*/ .pageTit{ margin-bottom: 0.5em; } .pageSubTitle{ margin-bottom: 1.7em; } .privacytext{ color: #bbb; font-size: .9em; } /*End Wishlist Customisation Styling*/ /*Wishlist Preview Styling*/ .wishlist-preview table img{ width: 50px; } .wishlist-preview table th{ text-align: center !important; } .wishlist-preview .brandish{ color: rgba(0,0,0,0); } .wishlist-preview{ display: flex; } .wishlist-preview table tr td:nth-of-type(4) { color: #4DB6AC; font-size: .8em; cursor: pointer; text-decoration: none; } .wishlist-preview table tr td{ vertical-align: middle; } .wishlistPreviewBox .card-footer{ padding: 2em; border-top: 1px solid #ccc; } /*End Wishlist Preview Styling*/ /* Share Wishlist Styling*/ .shareWishlistBox .card-footer{ padding: 1em; border-top: 1px solid #ccc; } .share-wishlist{ padding: 5em 2em; text-align: center; display: flex; } .share-wishlist input{ text-align: center; } .share-wishlist p i{ font-size: 2em; } /*End Share Wishlist Styling*/ /*End Wishlist Page*/ /*Miscellenous*/ .w-45{ max-width: 45% !important; } /*Input and Select with Search Icon*/ .center-block { float: none; margin-left: auto; margin-right: auto; } .input-group .icon-addon .form-control { border-radius: 0; } .icon-addon { position: relative; color: #555; display: block; } .icon-addon:after, .icon-addon:before { display: table; content: " "; } .icon-addon:after { clear: both; } .icon-addon.addon-md .glyphicon, .icon-addon .glyphicon, .icon-addon.addon-md .fa, .icon-addon .fa { position: absolute; z-index: 2; left: 10px; font-size: 14px; width: 20px; margin-left: -2.5px; text-align: center; padding: 10px 0; top: 1px } .icon-addon.addon-lg .form-control { line-height: 1.33; height: 46px; font-size: 0.7em; padding: 5px 16px 5px 40px; border: 0px; border-bottom: 1px solid rgba(0,0,0,0.15); } .icon-addon.addon-sm .form-control { height: 30px; padding: 5px 10px 5px 28px; font-size: 12px; line-height: 1.5; } .icon-addon.addon-lg .fa, .icon-addon.addon-lg .glyphicon { font-size: 18px; margin-left: 0; left: 11px; top: 4px; } .icon-addon.addon-md .form-control, .icon-addon .form-control { padding-left: 30px; float: left; font-weight: normal; } .icon-addon.addon-sm .fa, .icon-addon.addon-sm .glyphicon { margin-left: 0; font-size: 12px; left: 5px; top: -1px } .icon-addon .form-control:focus + .glyphicon, .icon-addon:hover .glyphicon, .icon-addon .form-control:focus + .fa, .icon-addon:hover .fa { color: #2580db; } /*Algolia Search*/ .ais-range-slider--tooltip { position: absolute; background: none !important; top: -22px; font-size: .8em; }
src/assets/assets/css/style.css
html, body { height: 100% !important; overflow-x: hidden; } .sidebar-offcanvas{ padding-top: 4em; color: white; background: black; display: flex; justify-content: center; padding-left: 40px; padding-bottom: 40px; font-size: 12px; } #sidebar .active{ color: cyan; font-weight: 600; } p.logo{ font-weight: bolder; font-size: 2em; margin-bottom: 1.8em; } .sidebar-offcanvas ul{ background: none !important; list-style: none; } .sidebar-offcanvas h4{ text-transform: uppercase; font-size: 16px; margin-bottom: 1.5em; font-weight: bolder; } .sidebar-cent{ display: flex; flex-direction: column; width: 50%; } .sidebar-cent input{ margin-right: 20px; margin-left: -40px; } .filter-list p, .filter-list label{ color: white; text-transform: uppercase; cursor: pointer; } .right-box{ background: #ccc; padding-top: 3em; padding-left: 2em; padding-right: 2em; } /*.pageTit{ margin-bottom: 0.5em; } .pageSubTitle{ margin-bottom: 1.5em; }*/ .sidebar-offcanvas hr{ background: #ccc; width: 100% !important; } .card-header{ background-color: #121d13; color: white; padding: 20px; font-size: 18px; } a.card{ color: #333; text-decoration: none; } .card{ margin-bottom: 10px; } .card-header span{ margin-right: 2em; } .card-footer{ background: white; border: 0px; font-size: 14px; color: #ccc; } .card-text{ font-size: 0.8em; } .col-md-3 .card{ padding: 1em; } #picksearch{ margin-bottom: 15px; } #picksearchLabels{ } label[for=searchstate], label[for=searchlga]{ font-size: 0.8em; color: #ccc; } #picksearch .searchinput{ position: absolute !important; bottom: 0px !important; right: 15px !important; } .brandlist .card-block{ padding: 0px !important; padding-top: 10px !important; } .brandlist .card{ border: 0px !important; padding-bottom: 0.5em !important; } .prev-btn{ padding: 10px; height: 55%; position: absolute; left: 0px; color: #464a4c !important; display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; text-decoration: none !important; } .prev-btn:hover i, .next-btn:hover i{ color: #aaa; } .next-btn{ padding: 10px; height: 55%; position: absolute; right: 0px; color: #464a4c !important; display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; text-decoration: none !important; } .custom-select { background: #fff url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj48cGF0aCBkPSJNMTYuMDAzIDE4LjYyNmw3LjA4MS03LjA4MUwyNSAxMy40NmwtOC45OTcgOC45OTgtOS4wMDMtOSAxLjkxNy0xLjkxNnoiLz48L3N2Zz4=') no-repeat right 0.75rem center; background-size: 15px 20px; } @media (max-width: 768px){ .filter-list p{ font-size: .714em; } .sidebar-cent input{ margin-left: 0px; } .sidebar-cent{ width: 100%; } .sidebar-offcanvas{ height: 100%; } .ModalPage{ width: 100% !important; height: 100% !important; max-height: 600px !important; } #otherAmount{ width: 65% !important; } } @media (max-width: 320px){ .sidebar-offcanvas{ width: 60% !important; padding-top: 2em; } .filter-list p{ font-size: .714em; } html,body{ overflow-x: scroll; } } .custom-control-input:checked~.custom-control-indicator { color: #fff; background-color: #5cb85c; } .custom-control-indicator{ background: rgba(0,0,0,0); border: 2px solid #5cb85c; } .filter-list .custom-control.custom-checkbox{ margin-left: -2em !important; } .filter-list .custom-control-indicator{ margin-left: -1em; margin-top: -0.3em; } .gmt{ color: #bbb; font-size: 1em; } /*View Modal Page Box*/ .viewModalPage{ display: flex; } .ModalPage{ background: white; padding: 2em; border: 1px solid #ccc; border-radius: 4px; position: relative; float: left; width: 50%; height: 600px; max-height: 600px; overflow-y: auto; z-index: 1000; } .ModalBrandName{ padding-top: 15px; color: #bbb; } .ModalBoxInfo{ padding-top: 15px; border-top: 1px solid #ccc; margin-top: 1em; } .ModalBoxInfo h6{ margin-bottom: 1.5rem !important; } .ModalBoxInfo .btn{ font-size: .95em; cursor: pointer; } .BrandAddress{ margin-bottom: .5rem; font-family: inherit; font-weight: 500; line-height: 1.1; color: inherit; font-size: 1rem; } .btn-ModalBox{ color: #fff; background: #121d13; border: 1px solid #121d13; border-bottom: 3px solid rgba(21,21,21, 0.3); } .btn-ModalBox:focus{ border-bottom: 1px solid #121d13; } .ModalBoxInfo .btn-secondary{ border-bottom: 3px solid rgba(21,21,21, 0.3); font-size: .6em !important; } .btn-ModalBox:hover{ background: rgba(18,29,19, 0.9); } .ModalBoxInfo input[type="radio"]{ display: none; } .ModalBoxInfo label{ border: 1px solid #ccc; padding: .5rem .75rem !important; font-size: .8rem; background: none; border-radius: 5px; cursor: pointer; margin-right: 0.5em; } .ModalBoxInfo label:hover{ background: #ccc; color: #fff; transition: 0.5s; } .ModalBoxInfo input[type="radio"]:checked label{ background: #ccc; color: #fff; } #otherAmount { width: 35%; float: right; margin-bottom: 1em; } .ModalBoxInfo .footerInfo{ font-size: .8em !important; color: #bbb; } .viewModalPage ng-component{ display: flex; justify-content: center; } .ModalBoxInfo .btn-ModalBox{ margin: 0px !important; } /*End View Modal Page Box*/ /*Delivery Details Styling*/ .delivery-details{ padding-left: 4.1rem; } .delivery-details .btn{ font-size: 0.7em; cursor: pointer; } .deliveryMethodInfo{ color: cyan; font-size: 0.8em; } .delivery-details .custom-control-indicator{ background: none; border: 1px solid #5cb85c; } .delivery-details .custom-control-input:checked~.custom-control-indicator{ background: #5cb85c; color: #fff !important; } .custom-control-indicator:hover, .custom-control-indicator:focus{ background: #5cb85c; } .giftorderLink{ margin-top: 1em; } .giftorderLink i{ margin-right: .5rem; color: #ccc; font-weight: lighter; } .giftorderLink:hover i{ color: #464a4c; } .deliveryBox .card-footer{ padding: 1em !important; border-top: 1px solid #ccc !important; padding-left: 4.1rem !important; color: #aaa; } .deliveryBox .card-footer .btn-link{ color: rgba(21,21,21, 1) } .cyan-text{ color: cyan; } /*End Delivery Details Styling*/ /* Compose Message Styling*/ .composeMessageBox .card-footer{ padding: 1em !important; border-top: 1px solid #ccc !important; padding-left: 4.1rem !important; color: #aaa; } .card-footer .btn-link{ color: rgba(21,21,21, 1); } .compose-message{ padding-left: 4.1rem; } .compose-message .col-form-label{ margin-left: .2em; margin-right: 1em; } .claim{ margin-top: 1.5em !important; margin-bottom: 1.5em !important; } /*End Compose Message Styling*/ /*Message Preview*/ .message-preview{ display: flex; } .messagePreview{ background: rgba(236, 238, 239, 0.5); padding: 2em; } .messagePreview .btn-link{ text-decoration: none; color: #121d13; } .messagePreview .btn-ModalBox{ font-size: 0.8em; } .miniMessagePreview{ padding: 1em; background: #fff; border: 1px solid #ccc; } .miniMessagePreview p{ font-size: 0.8em; } .messagePreviewBox .card-footer{ color: #121d13; } .messagePreviewBox .card-footer .logo{ font-weight: bolder; font-size: 1.5em; margin-left: .3em !important; } .MessagePreviewVoucherName { font-size: .76em; color: #aaa; } .MessagePreviewVoucherPrice{ font-weight: bolder; color: #0bc59c; } .voucherCodeTitle{ font-size: 0.8em; font-weight: bold; color: #ccc; margin-bottom: .4em !important; } .voucherCode{ font-size: 0.8em; font-weight: bold; margin-bottom: 1.4em; } .retailerTitle{ font-size: 0.8em; margin-bottom: 0em !important; } .retailerAddress{ font-size: 0.7em; font-weight: bold; color: #0bc59c; } /*End Message Preview*/ /*Place Order*/ .place-order{ display: flex; } .placeOrder { font-size: 0.8em; font-weight: bold; } .placeOrder .float-right{ color: #0bc59c; text-align: left; } .placeOrderTitle{ padding: 1em; background: #ccc; border: 1px solid #ccc; } .placeOrderFooter{ padding: 1em; background: #ccc; border: 1px solid #ccc; } .placeOrderBody{ padding: 1em; border: 1px solid #ccc; } .placeOrderBody .left-side{ width: 30px; max-width: 30px; } .placeOrderRow{ padding: 1em 0em; } .btn-link { color: #121d13; text-decoration: none; } .placeOrderBox .card-footer{ display: flex; } span.logo{ font-weight: bolder; font-size: 1.5em; margin-bottom: 1.8em; color: #121d13; margin-left: 0.4em; } /*End Place Order*/ /* End Voucher Buy Page */ /*Wishlist Page*/ /*Select Gift Voucher Page*/ .selectGiftVoucherBox .card-bottom{ padding: 2em; padding-left: 2em; background: #fff; border-top: 1px solid #ccc; } .card-bottom .card{ border: none; } .brandBtn{ padding: 0.5em 1em; border-radius: 20px; background: #5cb85c; color: #fff; font-size: 0.8em; text-align: center; position: absolute; bottom: 5px; left: 1em; } /*.brandlist .brandBtn { padding: 0.5em 1em; border-radius: 20px; background: #5cb85c; color: #fff; font-size: 0.8em; text-align: center; position: absolute; top: 0px !important; left: 2.2em; }*/ /* End Select Gift Voucher Page*/ /*Wishlist Customisation Styling*/ .pageTit{ margin-bottom: 0.5em; } .pageSubTitle{ margin-bottom: 1.7em; } .privacytext{ color: #bbb; font-size: .9em; } /*End Wishlist Customisation Styling*/ /*Wishlist Preview Styling*/ .wishlist-preview table img{ width: 50px; } .wishlist-preview table th{ text-align: center !important; } .wishlist-preview .brandish{ color: rgba(0,0,0,0); } .wishlist-preview{ display: flex; } .wishlist-preview table tr td:nth-of-type(4) { color: #4DB6AC; font-size: .8em; cursor: pointer; text-decoration: none; } .wishlist-preview table tr td{ vertical-align: middle; } .wishlistPreviewBox .card-footer{ padding: 2em; border-top: 1px solid #ccc; } /*End Wishlist Preview Styling*/ /* Share Wishlist Styling*/ .shareWishlistBox .card-footer{ padding: 1em; border-top: 1px solid #ccc; } .share-wishlist{ padding: 5em 2em; text-align: center; display: flex; } .share-wishlist input{ text-align: center; } .share-wishlist p i{ font-size: 2em; } /*End Share Wishlist Styling*/ /*End Wishlist Page*/ /*Miscellenous*/ .w-45{ max-width: 45% !important; } /*Input and Select with Search Icon*/ .center-block { float: none; margin-left: auto; margin-right: auto; } .input-group .icon-addon .form-control { border-radius: 0; } .icon-addon { position: relative; color: #555; display: block; } .icon-addon:after, .icon-addon:before { display: table; content: " "; } .icon-addon:after { clear: both; } .icon-addon.addon-md .glyphicon, .icon-addon .glyphicon, .icon-addon.addon-md .fa, .icon-addon .fa { position: absolute; z-index: 2; left: 10px; font-size: 14px; width: 20px; margin-left: -2.5px; text-align: center; padding: 10px 0; top: 1px } .icon-addon.addon-lg .form-control { line-height: 1.33; height: 46px; font-size: 0.7em; padding: 5px 16px 5px 40px; border: 0px; border-bottom: 1px solid rgba(0,0,0,0.15); } .icon-addon.addon-sm .form-control { height: 30px; padding: 5px 10px 5px 28px; font-size: 12px; line-height: 1.5; } .icon-addon.addon-lg .fa, .icon-addon.addon-lg .glyphicon { font-size: 18px; margin-left: 0; left: 11px; top: 4px; } .icon-addon.addon-md .form-control, .icon-addon .form-control { padding-left: 30px; float: left; font-weight: normal; } .icon-addon.addon-sm .fa, .icon-addon.addon-sm .glyphicon { margin-left: 0; font-size: 12px; left: 5px; top: -1px } .icon-addon .form-control:focus + .glyphicon, .icon-addon:hover .glyphicon, .icon-addon .form-control:focus + .fa, .icon-addon:hover .fa { color: #2580db; } /*Algolia Search*/ .ais-range-slider--tooltip { position: absolute; background: none !important; top: -22px; font-size: .8em; }
0.332527
0.065366
.App { text-align: center; overflow: hidden; } p, h1, h2, h3, h4, h5, h6 { user-select: none; } input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, textarea:-webkit-autofill, textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus, select:-webkit-autofill, select:-webkit-autofill:hover, select:-webkit-autofill:focus { border: none; -webkit-text-fill-color: white; -webkit-box-shadow: 0 0 0px 1000px #070707 inset; transition: background-color 5000s ease-in-out 0s; } /* ========================== SITE CONTAINERS */ .home-container { margin: 2.5% auto; width: 95%; } @media (max-width: 1440px) { .home-container { margin-left: 6vh; } } .popular-movies-container { margin-top: -4%; } .six-poster-container { width: 98%; height: 30vh; margin: 0 auto; display: flex; justify-content: space-between; } .cast-container { width: 98%; margin: 0 auto; display: flex; } .extras-container { width: max-content; margin-left: 1%; display: flex; justify-content: space-between; } .single-page-containter { width: 95%; margin: 2.5% auto; text-align: center; } .tv-select-container { margin-top: 1%; display: flex; align-items: center; } .seasons-flex { display: flex; flex-wrap: wrap; width: 100%; } .seasons-header { padding-left: 2%; width: max-content; } .seasons { margin-left: 1%; padding: 5px 10px; border-radius: 5px; background: rgb(36, 36, 36); cursor: pointer; transition: 0.1s ease-in-out; } .seasons:hover { background: rgb(73, 73, 73); } .reviews-container { width: 98%; margin: 0 auto; } .review-author { text-align: left; } .review-content { text-align: left; padding-bottom: 2%; border-bottom: 2px solid grey; } .episodes-container { display: flex; overflow-x: scroll; width: 98%; margin: 0 auto; margin-top: 0.5%; } .episodes-container::-webkit-scrollbar { height: 12px; background-color: #070707; } .episodes-container::-webkit-scrollbar-thumb { background-color: #1b1b1b; border-radius: 10px; } /* ========================== SECTIONS */ .section { display: flex; align-items: baseline; margin-left: 1%; margin-top: 1%; } .section-flex { padding-right: 2.5vh; width: 27vh; display: flex; flex-direction: column; } .title-image-section { width: 100%; height: 40vh; object-fit: cover; object-position: top; opacity: 0.4; border-radius: 6px; } .poster-info { text-align: left; width: 100%; font-size: 1.8vh; } .single-page-hero-info { position: absolute; z-index: 500; width: 90%; height: 35vh; display: flex; flex-direction: column; justify-content: space-evenly; margin-top: 10%; margin-left: 3%; text-align: left; filter: drop-shadow(0px 5px 8px rgba(0, 0, 0, 0.425)); } .movie-details { display: flex; align-items: center; justify-content: space-between; width: 30%; margin: 0; } .single-page-button-flex { display: flex; } .section-extras { margin-top: 12%; margin-left: 1%; } .tv-extras { margin-top: 3%; } .second-section { margin-top: 5%; } .full-page-container { width: 93.5%; margin: 2.5% auto; display: flex; flex-wrap: wrap; justify-content: space-between; align-content: space-between; } .search-container { width: 93.5%; margin: 2.5% auto; } .search-results { margin-top: 1%; display: flex; justify-content: space-between; flex-wrap: wrap; } .section-break-tite { position: absolute; z-index: 500; margin-top: 13%; margin-left: 2%; font-size: 8vh; filter: drop-shadow(0px 7px 5px rgba(0, 0, 0, 0.329)); } .section-break-desc { width: 70%; position: absolute; z-index: 500; margin-top: 18%; margin-left: 2%; font-size: 2vh; text-align: left; filter: drop-shadow(0px 7px 5px rgba(0, 0, 0, 0.329)); } .section-break-image { margin-top: 3%; width: 100%; height: 40vh; object-fit: cover; object-position: top; opacity: 0.8; } .episode-container { margin-right: 1%; } .episode-info-flex { display: flex; font-size: 1.8vh; } .episode-name { margin-left: 2%; user-select: none; } .page-buttons-flex { display: flex; justify-content: space-between; width: 100%; } /* ========================== TITLES AND TEXTS */ .section-header { text-align: left; margin-bottom: 20px; font-size: 3vh; font-weight: 500; } .single-page-hero-title-flex { display: flex; align-items: center; } .single-page-hero-title { text-align: left; font-size: 8vh; margin: 0; padding-right: 30px; } .single-page-hero-desc { width: 75%; text-align: left; font-size: 2vh; } .genre-header { position: absolute; z-index: 500; width: max-content; left: 0; right: 0; margin: 0 auto; font-size: 10vh; margin-top: 10%; text-transform: uppercase; user-select: none; } .movie-details-text { font-size: 2vh; margin-bottom: 0; margin-top: 0; } .line-breaks { font-size: 2vh; } .links { color: white; text-decoration: none; width: 100%; } .button-links { width: 14%; padding-right: 2%; } .image-section-header { position: absolute; z-index: 500; left: 0; right: 0; margin: 10% auto; filter: drop-shadow(0px 5px 20px rgba(0, 0, 0, 0.616)); } .extras-error-message { color: rgb(22, 22, 22); user-select: none; } /* ============================== POSTERS */ /* ============== GENERAL POSTER */ .posters { width: 20vh; height: 30vh; object-fit: cover; cursor: pointer; } .episode-photo { width: 40vh; height: 20vh; object-fit: cover; opacity: 0.7; cursor: pointer; transition: 0.2s ease-in-out; user-select: none; } .episode-photo:hover { opacity: 1; } .episodes-fade { display: block; width: 93.1%; height: 20vh; background: linear-gradient( 90deg, rgba(0, 0, 0, 0) 93%, rgba(0, 0, 0, 0.7455357142857143) 100% ); position: absolute; z-index: 400; left: 0; right: 0; margin: 0 auto; margin-top: 0.9vh; pointer-events: none; } .actors-page-posters { margin-bottom: 8%; } .genre-header-poster { margin-top: 2%; width: 93.5%; height: 40vh; object-fit: cover; opacity: 0.7; } .genre-page-posters { margin-bottom: 1%; } .genre-page-poster { position: relative; z-index: 0; margin-bottom: 1vh; width: 28vh; height: 40vh; object-fit: cover; cursor: pointer; opacity: 0.7; transition: 0.2s ease-in-out; } .genre-page-poster:hover { opacity: 1; transform: scale(1.08); z-index: 500; box-shadow: 0px 0px 30px black; } .search-header { width: 100%; height: 50vh; object-fit: cover; } .cast-posters { width: 27vh; height: 41vh; object-fit: cover; opacity: 0.8; cursor: pointer; transition: 0.2s ease-in-out; } .cast-posters:hover { opacity: 1; } .full-hero { width: 98%; height: 60vh; object-fit: cover; object-position: 0 20%; opacity: 0.7; margin: 0 auto; } .iframe-container { overflow: hidden; position: relative; width: 100%; height: 100vh; } iframe > .trailer { border: 0; height: 100%; left: 0; position: absolute; top: 0; width: 100%; } iframe > .movie { border: 0; height: 100%; left: 0; position: absolute; top: 0; width: 100%; user-select: all; } .movie { border: 0; height: 100%; left: 0; position: absolute; top: 0; width: 100%; user-select: all; } /* .react-player__play-icon { visibility: hidden; } */ .video { padding-right: 25px; } .trailer { overflow: hidden; opacity: 0.8; } /* ============================== ICONS / LOGOS */ .hero-back { position: absolute; top: 7%; left: 5.5%; z-index: 500; width: 2%; cursor: pointer; } .click-left { width: 4vh; position: absolute; z-index: 500; left: 9vh; margin-top: 5%; cursor: pointer; } .click-right { width: 4vh; position: absolute; z-index: 500; right: 9vh; margin-top: 5%; cursor: pointer; } .trailer-back { position: absolute; top: 15%; left: 0.8%; z-index: 500; width: 1.5%; cursor: pointer; } .hero-star { position: absolute; top: 7%; right: 5.5%; z-index: 500; width: 2%; cursor: pointer; } /* ============================== BUTTONS */ .watch-movie { padding: 5% 2%; width: 100%; border: 2px solid white; background: white; color: rgb(32, 32, 32); font-size: 1.7vh; font-weight: 500; cursor: pointer; transition: 0.2s ease-in-out; } .watch-movie:hover { border: 2px solid rgb(68, 255, 174); background: rgb(68, 255, 174); color: black; } .watch-trailer { margin-left: 2%; padding: 5% 2%; width: 100%; background: rgba(0, 0, 0, 0.11); color: white; border: 2px solid white; font-size: 1.7vh; font-weight: 500; cursor: pointer; transition: 0.2s ease-in-out; } .watch-trailer:hover { background: #070707; border: 2px solid #070707; color: white; } .next-episode { position: absolute; bottom: 8vh; right: 2vh; z-index: 600; padding: 1% 2%; width: 16%; background: white; border: none; color: black; font-size: 1.7vh; font-weight: 500; cursor: pointer; transition: 0.2s ease-in-out; outline: none; opacity: 1; } .next-episode:hover { background: rgb(68, 255, 174); } .prev-disabled { padding: 1% 2%; width: 16%; background: none; border: 4px solid rgb(22, 22, 22); color: rgb(22, 22, 22); font-size: 1.7vh; font-weight: 500; outline: none; opacity: 0.5; } .prev { padding: 1% 2%; width: 16%; background: rgb(22, 22, 22); border: none; color: white; font-size: 1.7vh; font-weight: 500; cursor: pointer; transition: 0.2s ease-in-out; outline: none; } .next { padding: 1% 2%; width: 16%; background: rgb(22, 22, 22); border: none; color: white; font-size: 1.7vh; font-weight: 500; cursor: pointer; transition: 0.2s ease-in-out; outline: none; } .next:hover { background: rgb(68, 255, 174); color: black; } .prev:hover { background: rgb(68, 255, 174); color: black; }
tvmv-react-app/src/App.css
.App { text-align: center; overflow: hidden; } p, h1, h2, h3, h4, h5, h6 { user-select: none; } input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, textarea:-webkit-autofill, textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus, select:-webkit-autofill, select:-webkit-autofill:hover, select:-webkit-autofill:focus { border: none; -webkit-text-fill-color: white; -webkit-box-shadow: 0 0 0px 1000px #070707 inset; transition: background-color 5000s ease-in-out 0s; } /* ========================== SITE CONTAINERS */ .home-container { margin: 2.5% auto; width: 95%; } @media (max-width: 1440px) { .home-container { margin-left: 6vh; } } .popular-movies-container { margin-top: -4%; } .six-poster-container { width: 98%; height: 30vh; margin: 0 auto; display: flex; justify-content: space-between; } .cast-container { width: 98%; margin: 0 auto; display: flex; } .extras-container { width: max-content; margin-left: 1%; display: flex; justify-content: space-between; } .single-page-containter { width: 95%; margin: 2.5% auto; text-align: center; } .tv-select-container { margin-top: 1%; display: flex; align-items: center; } .seasons-flex { display: flex; flex-wrap: wrap; width: 100%; } .seasons-header { padding-left: 2%; width: max-content; } .seasons { margin-left: 1%; padding: 5px 10px; border-radius: 5px; background: rgb(36, 36, 36); cursor: pointer; transition: 0.1s ease-in-out; } .seasons:hover { background: rgb(73, 73, 73); } .reviews-container { width: 98%; margin: 0 auto; } .review-author { text-align: left; } .review-content { text-align: left; padding-bottom: 2%; border-bottom: 2px solid grey; } .episodes-container { display: flex; overflow-x: scroll; width: 98%; margin: 0 auto; margin-top: 0.5%; } .episodes-container::-webkit-scrollbar { height: 12px; background-color: #070707; } .episodes-container::-webkit-scrollbar-thumb { background-color: #1b1b1b; border-radius: 10px; } /* ========================== SECTIONS */ .section { display: flex; align-items: baseline; margin-left: 1%; margin-top: 1%; } .section-flex { padding-right: 2.5vh; width: 27vh; display: flex; flex-direction: column; } .title-image-section { width: 100%; height: 40vh; object-fit: cover; object-position: top; opacity: 0.4; border-radius: 6px; } .poster-info { text-align: left; width: 100%; font-size: 1.8vh; } .single-page-hero-info { position: absolute; z-index: 500; width: 90%; height: 35vh; display: flex; flex-direction: column; justify-content: space-evenly; margin-top: 10%; margin-left: 3%; text-align: left; filter: drop-shadow(0px 5px 8px rgba(0, 0, 0, 0.425)); } .movie-details { display: flex; align-items: center; justify-content: space-between; width: 30%; margin: 0; } .single-page-button-flex { display: flex; } .section-extras { margin-top: 12%; margin-left: 1%; } .tv-extras { margin-top: 3%; } .second-section { margin-top: 5%; } .full-page-container { width: 93.5%; margin: 2.5% auto; display: flex; flex-wrap: wrap; justify-content: space-between; align-content: space-between; } .search-container { width: 93.5%; margin: 2.5% auto; } .search-results { margin-top: 1%; display: flex; justify-content: space-between; flex-wrap: wrap; } .section-break-tite { position: absolute; z-index: 500; margin-top: 13%; margin-left: 2%; font-size: 8vh; filter: drop-shadow(0px 7px 5px rgba(0, 0, 0, 0.329)); } .section-break-desc { width: 70%; position: absolute; z-index: 500; margin-top: 18%; margin-left: 2%; font-size: 2vh; text-align: left; filter: drop-shadow(0px 7px 5px rgba(0, 0, 0, 0.329)); } .section-break-image { margin-top: 3%; width: 100%; height: 40vh; object-fit: cover; object-position: top; opacity: 0.8; } .episode-container { margin-right: 1%; } .episode-info-flex { display: flex; font-size: 1.8vh; } .episode-name { margin-left: 2%; user-select: none; } .page-buttons-flex { display: flex; justify-content: space-between; width: 100%; } /* ========================== TITLES AND TEXTS */ .section-header { text-align: left; margin-bottom: 20px; font-size: 3vh; font-weight: 500; } .single-page-hero-title-flex { display: flex; align-items: center; } .single-page-hero-title { text-align: left; font-size: 8vh; margin: 0; padding-right: 30px; } .single-page-hero-desc { width: 75%; text-align: left; font-size: 2vh; } .genre-header { position: absolute; z-index: 500; width: max-content; left: 0; right: 0; margin: 0 auto; font-size: 10vh; margin-top: 10%; text-transform: uppercase; user-select: none; } .movie-details-text { font-size: 2vh; margin-bottom: 0; margin-top: 0; } .line-breaks { font-size: 2vh; } .links { color: white; text-decoration: none; width: 100%; } .button-links { width: 14%; padding-right: 2%; } .image-section-header { position: absolute; z-index: 500; left: 0; right: 0; margin: 10% auto; filter: drop-shadow(0px 5px 20px rgba(0, 0, 0, 0.616)); } .extras-error-message { color: rgb(22, 22, 22); user-select: none; } /* ============================== POSTERS */ /* ============== GENERAL POSTER */ .posters { width: 20vh; height: 30vh; object-fit: cover; cursor: pointer; } .episode-photo { width: 40vh; height: 20vh; object-fit: cover; opacity: 0.7; cursor: pointer; transition: 0.2s ease-in-out; user-select: none; } .episode-photo:hover { opacity: 1; } .episodes-fade { display: block; width: 93.1%; height: 20vh; background: linear-gradient( 90deg, rgba(0, 0, 0, 0) 93%, rgba(0, 0, 0, 0.7455357142857143) 100% ); position: absolute; z-index: 400; left: 0; right: 0; margin: 0 auto; margin-top: 0.9vh; pointer-events: none; } .actors-page-posters { margin-bottom: 8%; } .genre-header-poster { margin-top: 2%; width: 93.5%; height: 40vh; object-fit: cover; opacity: 0.7; } .genre-page-posters { margin-bottom: 1%; } .genre-page-poster { position: relative; z-index: 0; margin-bottom: 1vh; width: 28vh; height: 40vh; object-fit: cover; cursor: pointer; opacity: 0.7; transition: 0.2s ease-in-out; } .genre-page-poster:hover { opacity: 1; transform: scale(1.08); z-index: 500; box-shadow: 0px 0px 30px black; } .search-header { width: 100%; height: 50vh; object-fit: cover; } .cast-posters { width: 27vh; height: 41vh; object-fit: cover; opacity: 0.8; cursor: pointer; transition: 0.2s ease-in-out; } .cast-posters:hover { opacity: 1; } .full-hero { width: 98%; height: 60vh; object-fit: cover; object-position: 0 20%; opacity: 0.7; margin: 0 auto; } .iframe-container { overflow: hidden; position: relative; width: 100%; height: 100vh; } iframe > .trailer { border: 0; height: 100%; left: 0; position: absolute; top: 0; width: 100%; } iframe > .movie { border: 0; height: 100%; left: 0; position: absolute; top: 0; width: 100%; user-select: all; } .movie { border: 0; height: 100%; left: 0; position: absolute; top: 0; width: 100%; user-select: all; } /* .react-player__play-icon { visibility: hidden; } */ .video { padding-right: 25px; } .trailer { overflow: hidden; opacity: 0.8; } /* ============================== ICONS / LOGOS */ .hero-back { position: absolute; top: 7%; left: 5.5%; z-index: 500; width: 2%; cursor: pointer; } .click-left { width: 4vh; position: absolute; z-index: 500; left: 9vh; margin-top: 5%; cursor: pointer; } .click-right { width: 4vh; position: absolute; z-index: 500; right: 9vh; margin-top: 5%; cursor: pointer; } .trailer-back { position: absolute; top: 15%; left: 0.8%; z-index: 500; width: 1.5%; cursor: pointer; } .hero-star { position: absolute; top: 7%; right: 5.5%; z-index: 500; width: 2%; cursor: pointer; } /* ============================== BUTTONS */ .watch-movie { padding: 5% 2%; width: 100%; border: 2px solid white; background: white; color: rgb(32, 32, 32); font-size: 1.7vh; font-weight: 500; cursor: pointer; transition: 0.2s ease-in-out; } .watch-movie:hover { border: 2px solid rgb(68, 255, 174); background: rgb(68, 255, 174); color: black; } .watch-trailer { margin-left: 2%; padding: 5% 2%; width: 100%; background: rgba(0, 0, 0, 0.11); color: white; border: 2px solid white; font-size: 1.7vh; font-weight: 500; cursor: pointer; transition: 0.2s ease-in-out; } .watch-trailer:hover { background: #070707; border: 2px solid #070707; color: white; } .next-episode { position: absolute; bottom: 8vh; right: 2vh; z-index: 600; padding: 1% 2%; width: 16%; background: white; border: none; color: black; font-size: 1.7vh; font-weight: 500; cursor: pointer; transition: 0.2s ease-in-out; outline: none; opacity: 1; } .next-episode:hover { background: rgb(68, 255, 174); } .prev-disabled { padding: 1% 2%; width: 16%; background: none; border: 4px solid rgb(22, 22, 22); color: rgb(22, 22, 22); font-size: 1.7vh; font-weight: 500; outline: none; opacity: 0.5; } .prev { padding: 1% 2%; width: 16%; background: rgb(22, 22, 22); border: none; color: white; font-size: 1.7vh; font-weight: 500; cursor: pointer; transition: 0.2s ease-in-out; outline: none; } .next { padding: 1% 2%; width: 16%; background: rgb(22, 22, 22); border: none; color: white; font-size: 1.7vh; font-weight: 500; cursor: pointer; transition: 0.2s ease-in-out; outline: none; } .next:hover { background: rgb(68, 255, 174); color: black; } .prev:hover { background: rgb(68, 255, 174); color: black; }
0.417509
0.053775
@charset "utf-8"; @import url(http://fonts.googleapis.com/css?family=Raleway:800,700,400); @import url(http://fonts.googleapis.com/css?family=Signika:400,600); /* Reset ---------------------------------*/ ul { list-style: none; } .figure { margin: 0px; } img { max-width: 100%; } a, a:hover, a:active { outline: 0px !important; text-decoration:none; } .clear { clear: both; display: block; overflow: hidden; visibility: hidden; width: 0; height: 0; } .clearfix:before, .clearfix:after { content: '\0020'; display: block; overflow: hidden; visibility: hidden; width: 0; height: 0; } .clearfix:after { clear: both; } /* Common style */ .grid figure { position: relative; float: left; overflow: hidden; margin: 10px 1%; min-width: 320px; max-width: 480px; max-height: 360px; width: 48%; background: #3085a3; text-align: center; cursor: pointer; } .grid figure img { position: relative; display: block; min-height: 100%; max-width: 100%; opacity: 0.8; } .grid figure figcaption { padding: 2em; color: #fff; text-transform: uppercase; font-size: 1.25em; -webkit-backface-visibility: hidden; backface-visibility: hidden; } .grid figure figcaption::before, .grid figure figcaption::after { pointer-events: none; } .grid figure figcaption, .grid figure figcaption > a { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } /* Anchor will cover the whole item by default */ /* For some effects it will show as a button */ .grid figure figcaption > a { z-index: 1000; text-indent: 200%; white-space: nowrap; font-size: 0; opacity: 0; } .grid figure h2 { word-spacing: -0.15em; font-weight: 300; } .grid figure h2 span { font-weight: 800; } .grid figure h2, .grid figure p { margin: 0; } .grid figure p { letter-spacing: 1px; font-size: 68.5%; } /*---------------*/ /***** Oscar *****/ /*---------------*/ figure.effect-oscar { background: -webkit-linear-gradient(45deg, #22682a 0%, #9b4a1b 40%, #3a342a 100%); background: linear-gradient(45deg, #22682a 0%,#9b4a1b 40%,#3a342a 100%); } figure.effect-oscar img { opacity: 0.9; -webkit-transition: opacity 0.35s; transition: opacity 0.35s; } figure.effect-oscar figcaption { padding: 3em; background-color: rgba(58,52,42,0.7); -webkit-transition: background-color 0.35s; transition: background-color 0.35s; } figure.effect-oscar figcaption::before { position: absolute; top: 30px; right: 30px; bottom: 30px; left: 30px; border: 1px solid #fff; content: ''; } figure.effect-oscar h2 { margin: 20% 0 10px 0; -webkit-transition: -webkit-transform 0.35s; transition: transform 0.35s; -webkit-transform: translate3d(0,100%,0); transform: translate3d(0,100%,0); color:#A3A3A3; } figure.effect-oscar figcaption::before, figure.effect-oscar p { opacity: 0; -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; -webkit-transform: scale(0); transform: scale(0); } figure.effect-oscar:hover h2 { -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); color:#fff; } figure.effect-oscar:hover figcaption::before, figure.effect-oscar:hover p { opacity: 1; -webkit-transform: scale(1); transform: scale(1); color:#fff;+++++++ } figure.effect-oscar:hover figcaption { background-color: rgba(58,52,42,0); } figure.effect-oscar:hover img { opacity: 0.4; } /* Styles ---------------------------------*/ body { background: #fff; font-family: 'Open Sans', sans-serif; font-size: 14px; font-weight: normal; color: #888888; margin: 0; } h2 { font-size: 38px; color: #222222; font-family: 'Raleway', sans-serif; font-weight: normal; margin: 0px 0 25px 0; text-align: center; text-transform: uppercase; } h3 { font-family: 'Open Sans', sans-serif; font-weight: 600; color: #222222; font-size: 18px; margin: 0 0 5px 0; } h6 { font-size: 16px; color: #888888; font-family: 'Open Sans', sans-serif; font-weight: 400; text-align: center; margin: 0 0 60px 0; } p { line-height: 24px; margin: 0; } /* Header Styles ---------------------------------*/ #header_wrapper { background: #ffffff; padding: 20px 0px; border-top: bisque; box-shadow: 1px 1px 4px rgba(60, 60, 60, 0.44); border-bottom: 1px solid #D2D2D2; } .header_box { position: relative; } .logo { float: left; margin-top: 8px; position: relative; z-index: 2; } .res-nav_click { display: none; } /* Nav Styles ---------------------------------*/ .navbar-inverse { background-color: transparent; border-color: transparent; } .navbar { min-height: 40px; margin-bottom: 0px; } .navbar-inverse .navbar-nav > li > a { color: #222; } .navStyle { float: right; } .navStyle ul { list-style: none; padding: 0px; } .navStyle ul li { display: inline-block; margin: 0 5px; } .navStyle ul li:first-child { /*margin:0px;*/; } .navStyle ul li:last-child { margin: 0 0 0 23px; } .navStyle ul li a { display: block; font-size: 14px; color: #222222; font-family: 'Raleway', sans-serif; text-decoration: none; text-transform: uppercase; font-weight: 600; transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; -webkit-transition: all 0.2s ease-in-out; } .navStyle ul li a:hover { color: #ED5441; } .navStyle > li > a:hover, .nav > li > a:focus { text-decoration: none; color: #ED5441; background-color: transparent; } .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { color: #CA133A; background-color: transparent; } .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { color: #CB143B; background-color: transparent; } .navStyle > li.active > a, .navStyle > li.active > a:hover { text-decoration: none; color: #ED5441; background-color: transparent; } .borderLeft { border-left: 1px solid #DADADA; } .borderTop { margin-top: 30px; border-top: 1px solid #DADADA; } .mrgTop { margin-top: 30px; } /* Top_content ---------------------------------*/ .top_cont_outer { background: url(/img/progd.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; /* color: #fff; */ padding-bottom: 80px; /* background: #ED5441; background: #CE1139; */ position: relative; height:650px; } .hero_section { position: relative; padding-top: 72px; } .white_pad { position: relative; right: 0px; bottom: 0px; } .white_pad img { position: absolute; right: 0px; bottom: 0px; } .top_left_cont { padding: 110px 0; } .top_left_cont h3 { font-size: 16px; color: #f56eab; margin: 0 0 20px 0; text-align: left; font-weight: 700; } .top_left_cont h2 { font-size: 40px; color: #FFF; margin: 0 0 26px 0; font-family: 'Raleway', sans-serif; text-align: center; line-height: 70px; } .top_left_cont h2 strong { font-weight: 700; color: #FFE800; } .top_left_cont p { font-size: 18px; color: #FFFFFF; margin: 0 0 30px 0; line-height: 33px; text-align: center; font-weight: normal; font-size: 22px; /* font-weight: 300; */ text-align: center; letter-spacing: 1px; } a.read_more, a.read_more2 { font-family: 'Raleway', sans-serif; display: block; font-size: 16px; width: 178px; height: 46px; line-height: 46px; border-radius: 3px; text-align: center; text-transform: uppercase; font-weight: 600; transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; -webkit-transition: all 0.2s ease-in-out; background: transparent; color: #fff; border: 1px solid #fff; margin:0 auto; } a.read_more{ color: #3C3C3C; border: 1px solid #3C3C3C; } a.read_more2:hover, a.read_more:hover { background: #fff; color: #0593F9; border: 1px solid #fff; } a.read_more:hover { background: #fff; color: #ED5441; border: 1px solid #ED5441; } /* Services ---------------------------------*/ #service { padding: 60px 0px; padding: 0em 3em; /* background: #CE1139; */ } #service h2{ color: #fff; } .service_wrapper { padding: 40px 0 40px; } .service_section { } .service_block { text-align: center; padding-left: 15px; padding-right: 15px; position: relative; } .service_icon { width: 90px; height: 85px; margin: 0px auto 25px; } .service_icon span { background: transparent; display: block; height: 100%; width: 100%; border: 1px solid #fff; border-radius: 50%; } .service_icon i { color: #FFFFFF; font-size: 40px; margin-top: 0; position: relative; top: 20px; z-index: 20; display: block; text-align: center; } .service_block h3 { font-family: 'Raleway', sans-serif; font-weight: 600; font-size: 25px; color: #fff; margin: 35px 0 15px; } #service h6{ color:#fff; } .service_block p { font-size: 16px; color: #fff; margin: 0 0 35px 0; } /* Latest Work ---------------------------------*/ #work_outer { background: #f9f9f9; padding: 70px 0px; position: relative; } .work_pic { position: absolute; right: 0; top: 25%; width: 50%; } .inner_section { padding: 0px; } .service-list { padding: 0 0 0 0; font-size: 14px; margin-bottom: 40px; } .service-list-col1 { float: left; width: 60px; text-align: center; } .service-list-col1 i { display:; color: #888; font-size: 19px; font-style: normal; line-height: 20px; } .service-list-col2 { overflow: hidden; } .page_section.alabaster { background: #fafafa; } .work_bottom { padding: 20px 0 0 0px; } .work_bottom span { font-size: 18px; color: #333333; display: block; margin: 0 0 20px 0; } a.contact_btn { background: #fff; text-transform: uppercase; display: block; width: 176px; height: 49px; text-align: center; line-height: 49px; font-size: 16px; color: #ED5441; border-radius: 3px; font-family: 'Raleway', sans-serif; font-weight: 600; border: 2px solid #ED5441; transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; -webkit-transition: all 0.2s ease-in-out; } a.contact_btn:hover { background: #ED5441; color: #fff; } .input-text { background: transparent; } /* Portfolio ---------------------------------*/ #Portfolio { padding: 60px 0px; } .Portfolio-nav { padding: 0; margin: 0 0 45px 0; list-style: none; text-align: center; } .Portfolio-nav li { margin: 0 10px; display: inline; } .Portfolio-nav li a { display: inline-block; padding: 10px 22px; font-size: 12px; line-height: 20px; color: #222222; border-radius: 4px; text-transform: uppercase; background: #f7f7f7; margin-bottom: 5px; transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; } .Portfolio-nav li a:hover { background: #ED5441; color: #fff; text-decoration: none; } .portfolioContainer { margin: 0 auto; padding-left: 15px; width: auto !important; } .Portfolio-box { text-align: center; width: 350px; overflow: hidden; float: left; padding: 12px 0px; } .Portfolio-box img { transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; } .Portfolio-box img:hover { opacity: 0.6; } .Portfolio-nav li a.current { background: #ED5441; color: #fff; text-decoration: none; } img { max-width: 100%; } /* no transition on .isotope container */ .isotope .isotope-item { /* change duration value to whatever you like */ -webkit-transition-duration: 0.6s; -moz-transition-duration: 0.6s; transition-duration: 0.6s; } .isotope .isotope-item { -webkit-transition-property: -webkit-transform, opacity; -moz-transition-property: -moz-transform, opacity; transition-property: transform, opacity; } .page_section.paddind { padding-bottom: 60px; } /* Happy Clients ---------------------------------*/ #clients { padding: 60px 0px; } .client_area { width: 960px; margin: 0px auto; } .client_section { padding: 35px 0 0 0; } .client_section.btm { padding: 20px 0 0 0; } .client_profile { float: left; text-align: center; } .client_profile.flt { float: right; } .client_profile_pic { border-radius: 50%; border: 2px solid #f5f5f5; margin: 0 0 15px 0; width: 220px; height: 220px; } .client_profile_pic img { border-radius: 50%; border: 3px solid #f5f5f5; } .client_profile h3 { font-size: 18px; color: #49b5e7; margin: 0 0 0 0; } .client_profile span { display: block; font-size: 16px; color: #888888; } /* Clients ---------------------------------*/ .client_logos { /* background-image: url("/img/stacks/brands.jpg"); */ /* background: #443c3d; */ /* border-radius: 100px; */ /* padding: 60px 0; */ margin-bottom: -40px; margin-top: 20px; } .client_logos ul { padding: 0; margin: 0; list-style: none; text-align: center; } .client_logos ul li { display: inline; margin: 0 25px; } .client_logos ul a { display: inline-block; margin: 0 20px; } .page_section.team { padding: 60px 0; } .page_section.team h6 { margin-bottom: 40px; } /* About Us --------------------------- */ .aboutUs-container { background-repeat: no-repeat; background-position: right; background-size: auto 100%; background-position-y: 70px; } #about-us .read-more{ border: 1px solid #ED5441; color: #1a1a1a; } #about-us .read-more:hover{ background-color: #e74c3c; border: 1px solid #e74c3c; color: #fff; } .about-us-post-container{ background-repeat: no-repeat; background-position: right; background-size: auto 100%; } .about-us{ margin-top: 70px; margin-bottom: 50px; } .about-us h3{ font-size:28px; } .points{ margin-bottom: 10px; font-size:14px; padding-left:0px; } .about-us p{ /*font-size: 0.9375em;*/ line-height: 1.625em; padding: 15px 0; } .about-us .about-us-list{ list-style: none; margin-bottom: 20px; padding-left:0px; } .about-us .points{ position: relative; list-style-type: none; padding: 5px 0 5px 30px; } .about-us .points:before{ content: "\f058"; position: absolute; font-family: FontAwesome; font-size: 1.125em; color: #CE1139; left: 0px; top: 3px; } .about-us-link a:first-child{ margin-left: 0; } /* Team ---------------------------------*/ .team_section { max-width: 993px; margin: 0 auto; } .team_area { width: 30.66%; margin-right: 3.82979%; overflow: hidden; text-align: center; float: left; } .team_area span { margin-bottom: 24px; display: block; } .team_area:nth-of-type(3n+0) { margin: 0; } .team_box { width: auto; height: auto; position: relative; border-radius: 50%; margin: 0px 3px 25px 3px; } /* .team_box_shadow { transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; position: absolute; width: 100%; height: 26%; z-index: 10; bottom: 0px; } */ .team_box_shadow a { display: block; width: 100%; height: 100%; } .team_box:hover .team_box_shadow { box-shadow: inset 0px 0px 0px 148px rgba(17,17,17,0.80); } .team_box:hover ul { display: block; opacity: 1; } .team_box img { display: block; border-radius: 0%; width: 90%; margin: 0 auto; } .team_box ul { display: block; padding: 0; margin: 0; list-style: none; position: absolute; left: 0; top: 88%; width: 100%; text-align: center; margin-top: -14px; z-index: 15; transition: all 0.6s ease-in-out; -moz-transition: all 0.6s ease-in-out; -webkit-transition: all 0.6s ease-in-out; } .team_box ul li { display: inline-block; margin: 0 11px; width: 34px; border-radius: 50%; background: #fff; padding: 10px 0 4px; margin-bottom: 5px; } .team_box ul li a { display: inline-block; font-size: 18px; color: #232323; transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; } .team_box ul li a:hover, .team_box ul li a:focus { text-decoration: none; } .team_box ul li a.fa-twitter:hover { color: #55acee; } .team_box ul li a.fa-facebook:hover { color: #3b5998; } .team_box ul li a.fa-pinterest:hover { color: #cb2026; } .team_box ul li a.fa-google-plus:hover { color: #dd4b39; } .img-circle { border-radius: 50%; } .centered { text-align: center; } #team .fa { width: 30px; height: 30px; margin: 0 3px; border-radius: 100%; font-size: 15px; line-height: 30px; outline: 0; color: #CE1139; background-color: #fff; -webkit-transition: all .3s; -moz-transition: all .3s; transition: all .3s; border: 1px solid #CE1139; } #aboutUs { padding: 60px 0; background: #fff; } /* Contact ---------------------------------*/ .page_section.contact { padding: 90px 0 100px; } .contact_section { margin: 0 0 60px 0; } .contact_section h2 { font-size: 40px; color: #ffffff; margin: 0 0 50px 0; text-transform: uppercase; } .contact_block { text-align: center; } .contact_block_icon { border-radius: 50%; height: 85px; width: 85px; margin: 0px auto 20px; } .contact_block_icon.icon2 { border-color: #ED5441; } .contact_block_icon.icon3 { border-color: #49b5e7; } .contact_block_icon span { background: none repeat scroll 0 0 #f56eab; border: 5px solid #fff; border-radius: 50%; display: block; height: 100%; width: 100%; } .contact_block_icon.icon2 { border-color: #ED5441; } .contact_block_icon.icon2 span { background: #ED5441; } .contact_block_icon.icon3 { border-color: #49b5e7; } .contact_block_icon.icon3 span { background: #49b5e7; } .contact_block_icon i { color: #fff; font-size: 36px; margin-top: 0; position: relative; top: 26px; z-index: 20; } .contact_block span { display: block; font-size: 16px; color: #ffffff; line-height: 20px; } .contact_block span a { display: block; font-size: 16px; color: #ffffff; line-height: 20px; } .contact_info { font-size: 15px; margin: 0 0 0 20px; padding-left: 0; } .contact_info h3 { font-size: 24px; font-weight: 600; margin: 0 0 30px; color: #fff; } .contact_info p { line-height: 28px; display: block; font-size: 16px; color: #ffffff; margin: 0 0 30px; } .social_links { padding:0; margin: 0; display: block; overflow: hidden; list-style: none; } .social_links li { float: left; margin-right: 4px; } .social_links li a { display: block; width: 50px; height: 50px; text-align: center; line-height: 50px; font-size: 25px; color: #fff; } .social_links li a:hover, .social_links li a:focus { text-decoration: none; border-radius: 80px; } .twitter a:hover { color: #55acee; } .facebook a:hover { color: #3b5998; } .pinterest a:hover { color: #cb2026; } .gplus a:hover { color: #dd4b39; } .form { margin: 0 66px 0 30px; } .input-text { padding: 15px 16px; border: 1px solid #ccc; width: 100%; height: 50px; display: block; border-radius: 4px; font-size: 15px; color: #aaa; margin: 0 0 15px 0; transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; } .input-text:focus { border: 1px solid #fff; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(124, 197, 118, 0.3); -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(124, 197, 118, 0.3); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(124, 197, 118, 0.3); } .input-text.text-area { height: 230px; resize: none; overflow: auto; } .input-btn { width: 175px; height: 50px; letter-spacing: 0px; background: #CE1139; border-radius: 3px; color: #ffffff; font-size: 16px; text-transform: uppercase; font-weight: 600; border: 0px; transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; } .input-btn:hover { background: #fff; color: #222; } /* Footer ---------------------------------*/ .footer_wrapper { background: #232323; } .footer_bottom { border-top: 1px solid #3C3A3A; padding: 25px 0; } .footer_bottom span { display: block; font-size: 14px; color: #cccccc; text-align: center; } .footer_bottom span a { display: inline-block; color: #CE1139; font-size: 16px; transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; } .footer_bottom span a:hover { color: #fff; } /* Animation Timers ---------------------------------*/ .delay-02s { animation-delay: 0.2s; -webkit-animation-delay: 0.2s; } .delay-03s { animation-delay: 0.3s; -webkit-animation-delay: 0.3s; } .delay-04s { animation-delay: 0.4s; -webkit-animation-delay: 0.4s; } .delay-05s { animation-delay: 0.5s; -webkit-animation-delay: 0.5s; } .delay-06s { animation-delay: 0.6s; -webkit-animation-delay: 0.6s; } .delay-07s { animation-delay: 0.7s; -webkit-animation-delay: 0.7s; } .delay-08s { animation-delay: 0.8s; -webkit-animation-delay: 0.8s; } .delay-09s { animation-delay: 0.9s; -webkit-animation-delay: 0.9s; } .delay-1s { animation-delay: 1s; -webkit-animation-delay: 1s; } .delay-12s { animation-delay: 1.2s; -webkit-animation-delay: 1.2s; } /*new_profolio*/ /* Portfolio */ .container.portfolio_title { padding-bottom: 0px; } #portfolio { padding: 60px 0 40px; } /* Portfolio Filters */ #filters { margin-top: 10px; margin-bottom: 40px; text-align: center; display: block; float: none; z-index: 2; position: relative; } #filters ul li { display: inline-block; margin: 0 5px; } #filters ul li a { display: block; } #filters ul li a h5 { background: none repeat scroll 0 0 #f7f7f7; border-radius: 4px; display: inline-block; font-size: 12px; line-height: 20px; margin-bottom: 5px; padding: 10px 22px; text-transform: uppercase; transition: all 0.3s ease-in-out 0s; background: #fff; border: #C2C2C2 solid 1px; color: #7C7C7C; } #filters ul li a:hover h5, #filters ul li a.active h5 { background: #CE1139; color: #FFFFFF; text-decoration: none; border: #CE1139 solid 1px; } .section-title h2 { color: #222222; font-family: 'Raleway', sans-serif; font-size: 34px; letter-spacing: -1px; margin: 0 0 15px; text-align: center; text-transform: uppercase; } .section-title span { display: block; color: #888888; font-family: 'Open Sans',sans-serif; font-size: 16px; font-weight: 400; margin: 0 0 60px; text-align: center; } /* Portfolio Items */ #portfolio_wrapper { position: relative; padding: 0; width: 100%; margin: 0 auto; display: block; } #portfolio_wrapper .one-four { margin: 0!important; line-height: 0; width: 25%; padding: 0; position: relative; } .portfolio-item { padding: 0; position: relative; overflow: hidden; } .portfolio-item .portfolio_img { overflow: hidden; display: block; position: relative; } .portfolio-item .portfolio_img img { width: 100%; height: auto; } .portfolio-item:hover .item_overlay { opacity: 1; transition: all 0.4s ease 0s; -moz-transition: all 0.4s ease 0s; -webkit-transition: all 0.4s ease 0s; -ms-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; } .item_overlay { width: 100%; height: 100%; position: absolute; top: 0; left: 0; opacity: 0; transition: all 0.3s ease 0s; -moz-transition: all 0.3s ease 0s; -webkit-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; cursor: pointer; } .open-project-link { width: 100%; height: 100%; position: absolute; z-index: 100; } .item_overlay:hover { background:rgba(89, 89, 89, 0.7); } .item_info { position: absolute; height: 100px; width: 100%; top: 50%; margin-top: -50px; text-align: center; } .project_name { color: #fff; text-transform: uppercase; margin-top: 25px; opacity: 0; font-size: 18px; transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; -webkit-transition: all 0.2s ease 0s; -ms-transition: all 0.2s ease 0s; -o-transition: all 0.2s ease 0s; position: relative; z-index: 10; } .portfolio-item:hover .project_name { opacity: 1; -webkit-transition: opacity .1s .2s; -moz-transition: opacity .1s .2s; -ms-transition: opacity .1s .2s; -o-transition: opacity .1s .2s; transition: opacity .1s .2s; } .project_catg { font-size: 14px; color: #fff; opacity: 0; margin-top: 0px; transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; -webkit-transition: all 0.2s ease 0s; -ms-transition: all 0.2s ease 0s; -o-transition: all 0.2s ease 0s; } .portfolio-item:hover .project_catg { opacity: 0.8; -webkit-transition: opacity .1s .2s; -moz-transition: opacity .1s .2s; -ms-transition: opacity .1s .2s; -o-transition: opacity .1s .2s; transition: opacity .1s .2s; } .zoom-icon { left: 50%; margin-left: -20px; position: inherit; width: 40px; height: 40px; margin-top: 40px; opacity: 0; background: url(images/zoom.png); background-size: 40px 40px; transition: all 0.3s ease 0.1s; -moz-transition: all 0.3s ease 0.2s; -webkit-transition: all 0.3s ease 0.2s; -ms-transition: all 0.3s ease 0.2s; -o-transition: all 0.3s ease 0.2s; } .portfolio-item:hover .zoom-icon { opacity: 1; margin-top: 0px; -webkit-transition: opacity .3s .2s, margin-top .3s .2s; -moz-transition: opacity .3s .2s, margin-top .3s .2s; -ms-transition: opacity .3s .2s, margin-top .3s .2s; -o-transition: opacity .3s .2s, margin-top .3s .2s; transition: opacity .3s .2s, margin-top .3s .2s; } /* Portfolio Isotope Transitions */ .isotope, .isotope .isotope-item { -webkit-transition-duration: 0.8s; -moz-transition-duration: 0.8s; -ms-transition-duration: 0.8s; -o-transition-duration: 0.8s; transition-duration: 0.8s; } .isotope { -webkit-transition-property: height, width; -moz-transition-property: height, width; -ms-transition-property: height, width; -o-transition-property: height, width; transition-property: height, width; } .isotope .isotope-item { -webkit-transition-property: -webkit-transform, opacity; -moz-transition-property: -moz-transform, opacity; -ms-transition-property: -ms-transform, opacity; -o-transition-property: -o-transform, opacity; transition-property: transform, opacity; } .isotope.no-transition, .isotope.no-transition .isotope-item, .isotope .isotope-item.no-transition { -webkit-transition-duration: 0s; -moz-transition-duration: 0s; -ms-transition-duration: 0s; -o-transition-duration: 0s; transition-duration: 0s; } /* Portfolio Expander */ #project_container { display: none; background-color: #FFF; } #project-page-button-fullscreen { height: auto; z-index: 100; position: absolute; right: 30px; top: 30px; } #project-page-button-fullscreen li { display: inline-block; font-size: 30px; } #project-page-button-fullscreen li a { background: url(images/close.png) no-repeat #fff; background-size: 50px 50px; width: 50px; height: 50px; display: block; border-radius: 50px; opacity: 0.5; } #project-page-button-fullscreen li a:hover { opacity: 1; } #project-page-button { text-align: center; margin-bottom: 20px; height: auto; position: relative; z-index: 100; } #project-page-button li { display: inline-block; margin: 60px 10px 0px 10px; font-size: 30px; } #project_data { margin-bottom: 0px; } .project-section-title { text-align: center; margin-bottom: 40px; } .project-section-title h1 { margin-bottom: 5px!important; letter-spacing: 1px; font-family: 'Raleway', sans-serif; } .project-page { background-color: #FFF; width: 100%; height: auto; left: 0; padding-bottom: 40px; } /* Portfolio*/ .project-image-slider .bx-wrapper .bx-next { background: url("images/project_slider_right.png") no-repeat; background-size: 35px 65px; opacity: 0.3; right: -90px; } .project-image-slider .bx-wrapper .bx-prev { background: url("images/project_slider_left.png") no-repeat; background-size: 35px 65px; opacity: 0.3; left: -90px; } .project-image-slider .bx-wrapper .bx-next:hover, .project-image-slider .bx-wrapper .bx-prev:hover { opacity: 1; background-position: 0; } .project-image-slider .bx-wrapper .bx-controls-direction a { height: 65px; margin-top: -33px; outline: 0 none; position: absolute; text-indent: -9999px; top: 50%; width: 35px; z-index: 100; } /* Portfolio Normal Expander */ .project-description { margin-top: 40px; margin-bottom: 20px; width: 100%; height: auto; } .small-border { height: 2px; width: 50px; background-color: #ddd; margin-bottom: 15px; } .visit-project { width: 100%; text-align: center; border-top: 1px solid #ddd; margin-top: 20px; padding: 55px 0 20px 0; } .project-description h5 { color: #222222; text-transform: uppercase; margin-bottom: 5px; } /* Portfolio FullScreen Expander */ #cycle-loader { height: 32px; left: 50%; margin: -8px 0 0 -8px; position: absolute; top: 50%; width: 32px; z-index: 999; } #arrow_left { top: 50%; height: 60px; position: absolute; left: 30px; width: 32px; z-index: 1000; margin-top: -30px; } #arrow_right { top: 50%; height: 60px; position: absolute; right: 30px; width: 32px; z-index: 1000; margin-top: -30px; } #arrow_left:hover, #arrow_right:hover { margin-top: -28px; } #arrow_left:active, #arrow_right:active { margin-top: -28px; } div.mc-image { -webkit-transition: opacity 1s ease-in-out; -moz-transition: opacity 1s ease-in-out; -o-transition: opacity 1s ease-in-out; transition: opacity 1s ease-in-out; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; background-position: center center; background-repeat: no-repeat; height: 100%; overflow: hidden; width: 100%; } .in-slide-content div.info-slide { background: #FFF url(images/info.png) no-repeat left bottom; background-size: 46px 46px; position: absolute; top: 30px; left: 30px; width: 46px; height: 46px; margin: 0; display: block; text-indent: 10px; -moz-border-radius: 23px; -webkit-border-radius: 23px; border-radius: 23px; cursor: pointer; z-index: 1000; -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=50)"; filter: alpha(opacity=0.5); opacity: 0.5; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; -ms-transition: all 0.3s; transition: all 0.3s; } .in-slide-content div.info-slide:hover { width: 200px; background: #FFF; position: absolute; bottom: 40px; padding: 10px 20px; text-indent: 0px; moz-border-radius: 0px; -webkit-border-radius: 0px; border-radius: 0px; z-index: 1000; -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter: alpha(opacity=1); opacity: 1; } .in-slide-content h2, .in-slide-content p { padding: 0; margin: 0; font-size: 12px; line-height: 24px; } .in-slide-content h2 { font-size: 14px; color: #444; text-shadow: none; font-weight: normal; text-transform: uppercase; z-index: 1001; position: relative; white-space: nowrap; } .info-slide p { color: #aaa; font-size: 13px; text-shadow: none; z-index: 1001; position: relative; margin: 0; font-weight: normal; white-space: nowrap; } .in-slide-content div.info-slide h2 { display: none; padding: 10px 10px 0 10px; } .in-slide-content div.info-slide p { display: none; padding: 0px 10px 10px 10px; } .in-slide-content div.info-slide:hover h2, .in-slide-content div.info-slide:hover p { display: inherit; padding: 0; } /* Media Queries --------------------------- */ @media (min-width: 768px) and (max-width: 1200px) { .aboutUs-container { background-repeat: no-repeat; background-position: right; background-size: auto 59%; background-position-y: 150px; } } @media (max-width: 768px) { .navStyle { float: right; width: auto; text-align: center; } .aboutUs-container{ background-image:none; } p{ font-size:14px; } .top_cont_outer { height: 335px; } .hero_section { position: relative; padding-top: 10px; } .top_left_cont { padding: 38px 0; } .top_left_cont h2 { font-size: 25px; color: #FFF; line-height: 39px; margin: 0 0 9px 0; } .inner_section { padding: 20px 0 20px; } #aboutUs img{ margin-bottom:20px; } #aboutUs h3{ font-size:26px; line-height:22px; } .service_block h3 { font-size: 16px; } service_block p { font-size: 14px; margin: 0px; margin-bottom: 20px; } #filters ul{ padding-left:0px; } .form { margin: 0 18px; } .page_section.team{ padding: 40px 0; } , #clients { padding: 40px 0; } .client_logos ul li { display: inline; margin: 0 25px; padding: 11px 0; display: inline-block; } .social_links li { float: left; } .contact_section{ margin:0; } h2, .contact_section h2 { font-size: 30px; } .page_section.contact { padding: 60px 0 50px; } .navbar-inverse .navbar-toggle .icon-bar{ background:#ED5441; } .navbar-inverse .navbar-toggle { border-color: transparent; } .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus{ background:none; outline: none; } .navStyle ul li { display: block; } .navStyle { float: right; width: 100%; text-align:center; } .navbar { border: 0px solid #fff; min-height: 40px; margin-bottom: 0px; float: right; } .navStyle ul li { display: block; margin: 0px; } .navStyle ul li:last-child { margin: 0px; } .navbar-inverse .navbar-nav > li > a { color: #222; font-size:12px; padding: 10px 11px; } } @media (max-width: 480px){ .navStyle { float: left; width: 100%; text-align: left; } .navbar { border: 0px solid #fff; min-height: 40px; margin-bottom: 0px; float: initial; width: 100%; } .team_area { width: 99%; } .read_more2{ display:none; } } .rt-box { float: left; width: 70%; text-align: left; margin-left: 10px; } img.img.img-circle.lt-box { float: left; width: 60px; height: auto; } /*! * Author: <NAME> */ body { font-family: 'Open Sans', sans-serif; background-color: #f2f2f2; font-size: 16px; color: #222; font-weight: normal; letter-spacing: 0.03em; } a { color: #7447ae; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; transition: all 0.2s; } section { width: 100%; } a:hover, a:focus, a:active { text-decoration: none; outline: none; } ul { margin: 0; padding: 0; } ul li { list-style: none; } img { max-width: 100%; } .purple { color: #7447ae; } .pink { color: #ff2a75; } .blue { color: #37a7ff; } /* Hero Section */ header.hero { background: url(../assets/progd.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; color: #fff; padding-bottom: 80px; } header.hero .hero-text { margin-top: 20%; margin-bottom: 20%; } header.hero .row { position: relative; } a.menu { position: absolute; right: 0; top: 3em; } a.menu img { max-width: 40px; } a.menu:hover { transform: translateX(-5px); -webkit-transform: translateX(-5px); } header.hero h1 { font-family: 'Montserrat', sans-serif; font-size: 4.5em; font-weight: 600; line-height: 1.4em; } header.hero h1 span, header.hero h3 { font-weight: 300; } header.hero .btn { margin: 3em 0; } ul.social-links li { display: inline-block; } ul.social-links li a { padding: 5px; opacity: 0.6; } ul.social-links li.label { font-size: 20px; opacity: 0.6; font-weight: 400; } ul.social-links li a:hover { opacity: 1; } ul.social-links li a img { max-height: 30px; } /* Case study */ .case-study .col-md-12 { transform: translateY(-80px); -webkit-transform: translateY(-80px); padding: 5em 3em; background-color: #fff; box-shadow: 0 0 100px rgba(0, 0, 0, 0.15); } h4.sub-heading { text-transform: uppercase; font-family: 'Montserrat', sans-serif; font-weight: 400; color: #4e4c58; } h1.heading { font-family: 'Montserrat', sans-serif; font-weight: 400; color: #4e4c58; font-size: 3em; position: relative; padding-bottom: 10px; } h1.heading span { font-weight: 600; } h1.heading:after { content: ''; display: block; position: absolute; bottom: -10px; left: 0; height: 3px; width: 100px; } h1.heading.purple:after { background-color: #7447ae; } h1.heading.pink:after { background-color: #ff2a75; } .swiper-container { width: 100%; height: 100%; padding: 4em 1em; } .swiper-slide { font-size: 18px; background: #fff; } .client-box { background-color: #fff; box-shadow: 0 0 20px rgba(0, 0, 0, 0.03); padding: 3.5em 2em; border-radius: 5px; border: 1px solid #eee; text-align: center; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; transition: all 0.2s; } .client-box .client-logo { max-height: 120px; } .client-box h3.title { color: #4e4c58; margin-bottom: 2em; } .client-box p.tag { color: #7447ae; font-family: 'Montserrat', sans-serif; margin-bottom: 1em; } .client-box a { color: #333; font-style: italic; opacity: 0.5; } .client-box.swiper-slide-next { -ms-transform: scale(1.15); /* IE 9 */ -webkit-transform: scale(1.15); /* Safari */ transform: scale(1.15); box-shadow: 0 0 40px rgba(0, 0, 0, 0.1); z-index: 2; } .swiper-button-next, .swiper-button-prev { width: 80px; height: 80px; background-size: 80px 80px; box-shadow: 0 0 40px rgba(0, 0, 0, 0.05); border-radius: 5em; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; transition: all 0.2s; } .swiper-button-next:hover, .swiper-button-prev:hover { box-shadow: 0 0 40px rgba(0, 0, 0, 0.1); } .swiper-button-next, .swiper-container-rtl .swiper-button-prev { background-image: url(../img/arrow-right.png); right: -40px; } .swiper-button-prev, .swiper-container-rtl .swiper-button-next { background-image: url(../img/arrow-left.png); left: -40px; } /* Testimonial */ .testimonial-box { padding: 2em; color: #fff; border-radius: 5px; font-weight: 300; min-height: 400px; } .testimonial-box h1 { font-family: 'Montserrat', sans-serif; font-weight: 400; margin-top: 0; margin-bottom: 1em; } .testimonial-box p.name { font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 1.2em; margin-bottom: 0; } .testimonial-box p.designation { font-family: 'Montserrat', sans-serif; margin-bottom: 0; } .testimonial-box.yellow { background-color: #ffbe61; } .testimonial-box.purple { background-color: #7b32d5; } .testimonial-box.blue { background-color: #37a7ff; } .testimonial-box.pink { background-color: #ff2a75; } /* Statistics */ .stats { margin: 4em 0; } .stat-box { padding: 4em; margin-top: 4em; margin-bottom: 4em; } .stat-box h1 { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 5.6em; } .stat-box h3 { font-family: 'Montserrat', sans-serif; font-weight: 600; color: #4e4c58; font-size: 2em; } /* Contact Banner */ .contact-banner { background: url(../assets/bg-pat.png) #664fee repeat; color: #fff; padding: 6em; } .contact-banner h1 { font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 3em; margin-top: 0; margin-bottom: 1em; } /* Footer */ .footer { background-color: #37324b; padding: 5em; } .footer h1 { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 3em; color: #a3a1ac; margin-bottom: 2em; } .footer h1 span { color: #fff; font-weight: 300; } .footer h1:after { content: ''; width: 80px; height: 4px; background-color: #37a7ff; display: block; position: absolute; left: 50%; transform: translate(-40px, 10px); } .footer ul.social-links li a { padding-left: 12px; padding-right: 12px; } .footer ul.social-links li a img { max-height: 40px; } /* Sub-footer */ .sub-footer { background-color: #322e45; padding: 2em; color: #a3a1ac; font-family: 'Montserrat', sans-serif; font-weight: 300; } .sub-footer p { margin: 0; font-size: 1.2em; } .sub-footer p a { color: #fff; } .sub-footer p a:hover { opacity: 0.8; } /* Main navigation */ #menu-toggle { width: 40px; clear: both; float: right; } #menu-toggle span.line { display: block; height: 4px; width: 40px; background-color: #fff; transition: 0.25s ease-in-out; } #menu-toggle .hamburger span.line { margin-bottom: 0.45em; clear: both; float: right; } #menu-toggle .hamburger span.line:nth-child(1) { width: 30px; transition-delay: 0.25s; } #menu-toggle .hamburger span.line:nth-child(2) { transition-delay: 0.325s; } #menu-toggle .hamburger span.line:nth-child(3) { width: 20px; transition-delay: 0.475s; } #menu-toggle .cross span.line { width: 0px; position: absolute; top: 10px; right: 0; } #menu-toggle .cross span.line:nth-child(1) { transform: rotate(45deg); transition-delay: 0s; } #menu-toggle .cross span.line:nth-child(2) { transform: rotate(-45deg); transition-delay: 0.25s; } #menu-toggle.open .hamburger span.line { width: 0px; } #menu-toggle.open #hamburger span:nth-child(1) { transition-delay: 0s; } #menu-toggle.open #hamburger span:nth-child(2) { transition-delay: 0.125s; } #menu-toggle.open #hamburger span:nth-child(3) { transition-delay: 0.25s; } #menu-toggle.open .cross span.line:nth-child(1) { width: 40px; transition-delay: 1s; } #menu-toggle.open .cross span.line:nth-child(2) { width: 40px; transition-delay: 1.25s; } /* Let's optimise it for mobile devices */ @media (max-width: 720px) { .btn-lg { padding: 0.8em 3em; font-size: 0.8em; } h1.heading { font-size: 2em; } header.hero { text-align: center; padding-bottom: 0; } header.hero h1 { font-size: 2em; margin-top: 1.5em; } header.hero h3 { font-size: 1.2em; line-height: 1.6em; } ul.social-links li.label { display: block; font-size: 16px; margin-bottom: 1em; } ul.social-links li a { opacity: 1; } .testimonial { padding-top: 3rem; } .case-study .col-md-12 { padding-left: 15px; padding-right: 15px; } .case-study .col-md-12 { transform: translateY(0px); -webkit-transform: translateY(0px); } /*Swiper classes*/ .client-box.swiper-slide-next { -ms-transform: scale(1); -webkit-transform: scale(1); transform: scale(1); box-shadow: none; } .swiper-button-prev, .swiper-button-next { display: none; } .swiper-container { padding: 4em 0em; } .client-box { padding: 1em; text-align: center; } .stat-box { padding: 1em; margin-top: 1em; margin-bottom: 1em; } .stat-box h1 { font-size: 3.6em; } .stat-box h3 { font-size: 1.4em; } .contact-banner { padding: 2em; } .contact-banner h1 { font-size: 2em; } .footer { padding: 1em 0em; } } /*-- License: Creative Commons Attribution 3.0 Unported License URL: http://creativecommons.org/licenses/by/3.0/ --*/ .hovereffect { width: 300%; height: 100%; float: left; /*overflow: hidden;*/ position: relative; text-align: center; cursor: default; /*background: #42b078;*/ } .hovereffect:hover img { opacity: 0.4; filter: alpha(opacity=40); -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); } .hovereffect h2 { text-transform: uppercase; color: #fff; text-align: center; position: relative; font-size: 17px; overflow: hidden; padding: 0.5em 0; background-color: transparent; } .hovereffect h2:after { position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: #fff; content: ''; -webkit-transition: -webkit-transform 0.35s; transition: transform 0.35s; -webkit-transform: translate3d(-100%,0,0); transform: translate3d(-100%,0,0); } .hovereffect:hover h2:after { -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); } .hovereffect a, .hovereffect p { color: #FFF; opacity: 0; filter: alpha(opacity=0); -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; -webkit-transform: translate3d(100%,0,0); transform: translate3d(100%,0,0); } .hovereffect:hover a, .hovereffect:hover p { opacity: 1; filter: alpha(opacity=100); -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); } img { /*border-radius: 50%;*/ -webkit-transition: -webkit-transform .8s ease-in-out; transition: transform .8s ease-in-out; /* } img:hover { -webkit-transform: rotate(360deg); transform: rotate(360deg); } .me{ } */ /* .ton { border-radius: 4px; background-color: #5cb85c; border: none; color: #FFFFFF; text-align: center; font-size: 28px; padding: 7px; width: 250px; transition: all 0.5s; cursor: pointer; margin: 5px; } */ /* .ton span { cursor: pointer; display: inline-block; position: relative; transition: 0.5s; } */ /* .ton span:after { content: '\00bb'; position: absolute; opacity: 0; top: 0; right: -20px; transition: 0.5s; } .ton:hover span { padding-right: 25px; } .ton:hover span:after { opacity: 1; right: 0; } */ } /* Modal Content */ .modal-content { position: relative; background-color: #fefefe; margin: auto; padding: 0; border: 1px solid #888; width: 80%; box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19); -webkit-animation-name: animatetop; -webkit-animation-duration: 0.4s; animation-name: animatetop; animation-duration: 0.4s } /* Add Animation */ @-webkit-keyframes animatetop { from {top:-300px; opacity:0} to {top:0; opacity:1} } @keyframes animatetop { from {top:-300px; opacity:0} to {top:0; opacity:1} } /* The Close Button */ .close { color: white; float: right; font-size: 28px; font-weight: bold; } .close:hover, .close:focus { color: #000; text-decoration: none; cursor: pointer; } .modal-header { padding: 2px 16px; background-color: #5cb85c; color: white; } .modal-body {padding: 2px 16px;} .modal-footer { padding: 2px 16px; background-color: #5cb85c; color: white; } #myImg { border-radius: 5px; cursor: pointer; transition: 0.3s; } #myImg:hover {opacity: 0.7;} /* The Modal (background) */ .modal { display: none; /* Hidden by default */ position: fixed; /* Stay in place */ z-index: 1; /* Sit on top */ padding-top: 100px; /* Location of the box */ left: 0; top: 0; width: 100%; /* Full width */ height: 100%; /* Full height */ overflow: auto; /* Enable scroll if needed */ background-color: rgb(0,0,0); /* Fallback color */ background-color: rgba(0,0,0,0.9); /* Black w/ opacity */ } /* Modal Content (image) */ .modal-content { margin: auto; display: block; width: 80%; max-width: 700px; } /* Caption of Modal Image */ #caption { margin: auto; display: block; width: 80%; max-width: 700px; text-align: center; color: #ccc; padding: 10px 0; height: 150px; } /* Add Animation */ .modal-content, #caption { -webkit-animation-name: zoom; -webkit-animation-duration: 0.6s; animation-name: zoom; animation-duration: 0.6s; } @-webkit-keyframes zoom { from {-webkit-transform:scale(0)} to {-webkit-transform:scale(1)} } @keyframes zoom { from {transform:scale(0)} to {transform:scale(1)} } /* The Close Button */ .close { position: absolute; top: 5px; right: 5px; color: #000000; font-size: 40px; font-weight: bold; transition: 0.3s; } .close:hover, .close:focus { color: #bbb; text-decoration: none; cursor: pointer; } /* 100% Image Width on Smaller Screens */ @media only screen and (max-width: 700px){ .modal-content { width: 100%; } } .li { position:relative; float:left; padding:.25em 1em; margin:1.25em 1em; text-transform:uppercase; cursor:pointer; background:rgba(255, 255, 255, .8); text-align:center; border-radius:.75em; transition-duration: .3s; transition-timing-function: ease-in-out; transition-property: background, color, padding, border-radius; box-shadow: .1em -.1em 0 .1em rgba(0, 0, 0, .2), inset 0 0 0 .15em rgba(0, 0, 0, .4), -.1em .1em 0 .1em rgba(0, 0, 0, .2) ; &:after { position:absolute; z-index:-1; content:""; right:0; border-radius:50%; box-shadow: 1em 1em 0 2em rgba(255, 255, 255, .5) ; } &:last-child:after { box-shadow:none; } &:hover { background-color:rgba(251, 93, 0, .8); padding-left:3em; > a { color:#fff; } } > a { color:#333; text-decoration:none; font-size: 1.4em; transition:color .3s ease-in-out; } } } } /* small screens */ @media screen and (max-width: 50em) { body { margin:1.5em 0; } nav[role="full-horizontal"] { ul { padding:0 .5em; } ul > li { width:100%; padding:.45em .25em; margin:0 0 .55em 0; &:after { box-shadow:none; } } } } @font-face { font-family: 'Sail-Regular'; src:url(../fonts/Sail-Regular.ttf) format('truetype'); } @font-face { font-family: 'OpenSans-Regular'; src:url(../fonts/OpenSans-Regular.ttf) format('truetype'); } body a{ transition:0.5s all; -webkit-transition:0.5s all; -moz-transition:0.5s all; -o-transition:0.5s all; -ms-transition:0.5s all; } input[type="button"]{ transition:0.5s all; -webkit-transition:0.5s all; -moz-transition:0.5s all; -o-transition:0.5s all; -ms-transition:0.5s all; } h1,h2,h3,h4,h5,h6{ padding:0 0; margin:0 0; } p{ padding:0 0; margin:0 0; } ul{ padding:0 0; margin:0 0; } body{ padding:0 0; margin:0 0; font-family: 'OpenSans-Regular' } .header { background: url(../images/apple.jpg)no-repeat 0px 0px; background-size: cover; min-height: 920px; } .header-top { padding: 2em 0; background-color: transparent; } .navbar-brand { float: left; margin-left: 0.8em; } .navbar-nav { float: right; margin: 0; } .top-menu ul li { display: inline-block; margin: 0.8em 1em; } .navbar-brand h1 a { text-decoration: none; color:lightgray; font-size: 1.2em; font-family: Garamond; text-transform: capitalize; } .navbar-default .navbar-nav > li > a { color: lightgray; } .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { color: lightgray; background-color: transparent; } .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { color: #fff; background-color: grey; } .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { color: #222; text-decoration: none; background-color: #fff; } .navbar { position: relative; min-height: 50px; margin-bottom: 0; border: 1px solid transparent; } .navbar-brand { float: left; height: 0px; padding: 0px 15px; font-size: 18px; line-height: 20px; } .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { color: #fff; background-color: #652840; } .dropdown-menu > li > a { display: block; padding: 10px 20px; } .navbar-default { border-color: transparent; !important; background-color: black; .............. } .top-menu ul li a { font-size: 1.1em; text-transform: capitalize; text-decoration: none; color: #fff; } span.menu { display: none; } .slider { margin-top:15em; text-align: center; } .slider-info h3 { font-size: 5em; color:white; font-family: 'Sail-Regular'; } .slider-info p{ font-size: 1em; font-weight: 400; color: #fff; width: 36%; line-height: 1.8em; margin: 0 auto; } a.button1 { font-size: 1em; padding: 0.5em 1em; color: #fff; margin-right: 1em; text-decoration: none; text-transform: capitalize; display: inline-block; } a.button2 { font-size: 1em; padding: 0.5em 1em; color: #fff; text-decoration: none; text-transform: capitalize; display: inline-block; } .button { margin-top: 2em; } .banner-bottom { position: relative; } .banner-grids { position: absolute; top: 156px; left: 0; width: 100%; text-align: center; background-color: none; } .banner-grid h5 { font-size: 3em; color: #fff; margin: 0.5em 0 0; } .banner-grid p { font-size: 1.2em; color: #fff; padding: 1em 0; } /* Rectangle In */ .hvr-rectangle-in { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px rgba(0, 0, 0, 0); -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; background: black; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; } .hvr-rectangle-in:before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; background: silver; -webkit-transform: scale(1); transform: scale(1); -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-rectangle-in:hover, .hvr-rectangle-in:focus, .hvr-rectangle-in:active { color: white; } .hvr-rectangle-in:hover:before, .hvr-rectangle-in:focus:before, .hvr-rectangle-in:active:before { -webkit-transform: scale(0); transform: scale(0); } .about { padding: 4em 0; text-align: center; } .test1 { position:relative; overflow:hidden; } .test1 .textbox { width: 270px; height: 480px; position: absolute; top: 0px; left: 11px; margin-top: -466px; border-radius: 2px; padding: 8em 2em 0; } .test1:hover .textbox { margin-top:0; } .textbox p{ font-size: 1em; color: #fff; text-align: center; } .textbox h4 { font-size: 1.5em; text-align: center; margin-bottom:0.5em; color: #fff; font-weight: 600; text-transform: capitalize; } .textbox { -webkit-transition: all 0.7s ease; transition: all 0.7s ease; } .about-head h2 { font-size: 3.5em; color: #652840; font-family: 'Sail-Regular'; text-transform: capitalize; } .about-head p { font-size: 1em; color: #222; margin-top: 0.5em; } .about-grids { margin-top: 3em; } .hot-offer { text-align: center; padding: 4em 0; background-color: #BF9280; position: relative; } .hot-offer img { margin: 2em auto 0; border: 15px solid #fff; } .hot-offer h3 { font-size: 3.5em; color: #fff; font-family: 'Sail-Regular'; text-transform: capitalize; } .hot-offer h4 { font-size: 2.5em; color: #fff; text-transform: capitalize; margin-top: 0.2em; } .offer { background: url("../images/abs-1.png") no-repeat 0px 0px; width:159px; height: 159px; position: absolute; top: 34%; right: 28%; } .features { text-align: center; padding: 4em 0; background:#eee; } .feature { background: #fff; border: 1px solid #E9E9E9; } .features h3 { font-size: 3.5em; color: #652840; font-family: 'Sail-Regular'; text-transform: capitalize; } .feature2 p { font-size: 1em; line-height: 1.8em; color: #999; border-top: 5px solid #F2F2F2; padding: 1.5em; } .feature1 h4 { font-size: 1.5em; color: #222; padding: 1em 0 0.5em; text-transform: capitalize; } span.glyphicon.glyphicon-heart,span.glyphicon.glyphicon-camera,span.glyphicon.glyphicon-calendar,span.glyphicon.glyphicon-gift { border-radius: 4em; font-size: 3em; -webkit-border-radius: 4em; -moz-border-radius: 4em; -o-border-radius: 4em; border: 5px solid #FFF; box-shadow: 0px 0px 10px rgba(119, 119, 119, 0.25); -webkit-box-shadow: 0px 0px 10px rgba(119, 119, 119, 0.25); -moz-box-shadow: 0px 0px 10px rgba(119, 119, 119, 0.25); -o-box-shadow: 0px 0px 10px rgba(119, 119, 119, 0.25); display: inline-block; padding: 20px; background: #652840; background: -moz-linear-gradient(top, #03bcfd 0%, #019bd1 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#652840), color-stop(100%,#652840)); background: -webkit-linear-gradient(top, #652840 0%,#652840 100%); background: -o-linear-gradient(top, #03bcfd 0%,#019bd1 100%); background: -ms-linear-gradient(top, #03bcfd 0%,#019bd1 100%); background: linear-gradient(to bottom, #652840 0%,#652840 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#03bcfd', endColorstr='#019bd1',GradientType=0 ); cursor: pointer; transition: 0.5s ease; -moz-transition: 0.5s ease; -o-transition: 0.5s ease; -webkit-transition: 0.5s ease; color: #fff; } span.glyphicon.glyphicon-heart:hover { background-color: #bf9280; background-image: -moz-linear-gradient(top,#bf9280,#bf9280); background-image: -webkit-gradient(linear,0 0,0 100%,from(#bf9280),to(#bf9280)); background-image: -webkit-linear-gradient(top,#bf9280,#bf9280); background-image: -o-linear-gradient(top,#bf9280,#bf9280); background-image: linear-gradient(to bottom,#bf9280,#bf9280); background-repeat: repeat-x; } span.glyphicon.glyphicon-camera:hover{ background-color: #bf9280; background-image: -moz-linear-gradient(top,#bf9280,#bf9280); background-image: -webkit-gradient(linear,0 0,0 100%,from(#bf9280),to(#bf9280)); background-image: -webkit-linear-gradient(top,#bf9280,#bf9280); background-image: -o-linear-gradient(top,#bf9280,#bf9280); background-image: linear-gradient(to bottom,#bf9280,#bf9280); background-repeat: repeat-x; } span.glyphicon.glyphicon-calendar:hover{ background-color: #bf9280; background-image: -moz-linear-gradient(top,#bf9280,#bf9280); background-image: -webkit-gradient(linear,0 0,0 100%,from(#bf9280),to(#bf9280)); background-image: -webkit-linear-gradient(top,#bf9280,#bf9280); background-image: -o-linear-gradient(top,#bf9280,#bf9280); background-image: linear-gradient(to bottom,#bf9280,#bf9280); background-repeat: repeat-x; } span.glyphicon.glyphicon-gift:hover{ background-color: #bf9280; background-image: -moz-linear-gradient(top,#bf9280,#bf9280); background-image: -webkit-gradient(linear,0 0,0 100%,from(#bf9280),to(#bf9280)); background-image: -webkit-linear-gradient(top,#bf9280,#bf9280); background-image: -o-linear-gradient(top,#bf9280,#bf9280); background-image: linear-gradient(to bottom,#bf9280,#bf9280); background-repeat: repeat-x; } .features-grids { margin-top: 3em; } .feature1 { padding: 1.5em; } .wedding-news { padding: 4em 0; text-align: center; } .wedding-news h3 { font-size: 3.5em; color: #652840; font-family: 'Sail-Regular'; text-transform: capitalize; } .wedding-inner h5{ font-size: 1.2em; color: #222; padding:1em 0 } .wedding-inner p { font-size: 1em; color: #777; line-height:1.8em } .wedding-inner h4 a { text-decoration: none; font-size: 1em; color: #222; } .wedding-inner h4 a:hover { color: #652840; } .wedding-grid { margin-top: 3em; } .wedding-inner { margin-bottom: 2em; } a.mask { text-decoration: none; overflow: hidden; display: block; } img.zoom-img { -webkit-transform: scale(1, 1); -webkit-transition-timing-function: ease-out; -webkit-transition-duration: 250ms; -moz-transform: scale(1, 1); -moz-transition-timing-function: ease-out; -moz-transition-duration: 250ms; } img.zoom-img:hover { -webkit-transform: scale(1.1); -webkit-transition-timing-function: ease-out; -webkit-transition-duration: 750ms; -moz-transform: scale(1.1); -moz-transition-timing-function: ease-out; -moz-transition-duration: 750ms; overflow: hidden; } .indicate { padding: 4em 0; background-color: black; } span.glyphicon.glyphicon-map-marker { font-size: 2em; vertical-align: middle; margin-right: 0.5em; color:#fff; } span.glyphicon.glyphicon-earphone{ font-size: 2em; vertical-align: middle; margin-right: 0.5em; color:#fff; } span.glyphicon.glyphicon-envelope { font-size: 2em; vertical-align: middle; margin-right: 0.5em; color:#fff; } span.glyphicon.glyphicon-send { font-size: 2em; vertical-align: middle; margin-right: 0.5em; color:#fff; } .indicate-grid p a { color: #fff; text-decoration: none; } .indicate-grid p { font-size: 1em; color: #fff; } .footer-section{ padding:2em 0; text-align:center; background: black; ............................................................. } .footer-top p { font-size: 0.9em; color: #fff; font-weight: 400; } .footer-top a { font-size: 1em; color:#fff; font-weight: 400; text-transform: capitalize; } .footer-top a:hover { color: #fff; } .footer-top a { margin: 0 0.3em } /**about**/ .header.head-top { min-height: 108px; } .OurLove-grid iframe { width: 100%; height: 260px; } .OurLove-section h2 { font-size: 3.5em; color: none; font-family: 'Sail-Regular'; text-transform: capitalize; text-align: center; } .OurLove-grid1 h4 { font-size: 1.5em; color: none; } .OurLove-grid1 p { font-size: 1em; line-height: 1.8em; padding: 1em 0; color: #999; } .OurLove-grids { margin-top: 3em; } .OurLove-section { padding: 4em 0; } .team-grids { position: relative; } .team h3 { font-size: 3.5em; color: none; font-family: 'Sail-Regular'; text-transform: capitalize; } .team { padding:0em 0em 4em; text-align: center; } .team-info { margin-top: 3em; } .team-grids a { overflow: hidden; position: relative; display: block; } .captn h4 { color: #fff; margin: .1em 0 0.5em; font-size: 1.5em; } .captn p { color: #fff; font-size:1em; } .team-grids a .captn { display: inline-block; height: 100%; width: 100%; font-weight: 800; color: #ffffff; position: absolute; bottom: -80%; right: 2%; background-color: rgba(51, 51, 51, 0.68); padding: 5% 10%; text-align: center; -o-transition: all 1s ease; -moz-transition: all 1s ease; -ms-transition: all 1s ease; -webkit-transition: all 1s ease; transition: all 1s ease; } .team-grids a:hover .captn { width: 100%; bottom: 0%; padding: 40% 10%; right: 2%; } .why-choose { padding: 1em 0 4em; text-align: center; } .why-choose h3 { font-size: 3.5em; color: #652840; font-family: 'Sail-Regular'; text-transform: capitalize; } .choose-grid h4{ font-size: 1.5em; color: #bf9280; text-transform: capitalize; } .choose-grid p{ font-size:1em; line-height:1.8em; color:#999; margin:1em 0 0 } .choose-grids { margin-top: 3em; } /*-- gallery --*/ .wedding-section{ padding:4em 0; text-align:center; } .wedding-section h2 { font-size: 3.5em; color: #652840; font-family: 'Sail-Regular'; text-transform: capitalize; margin-bottom: 1em; } .gallery-grid{ border:1px solid #f4f4f4; } .gallery-grd{ padding:1em 0; position:relative; } .gallery-grd img{ width:100%; } .zoom-icon { position: absolute; opacity: 0; filter: alpha(opacity=0); -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=0)"; display: block; left: 0; top: 0px; width: 348px; height: 227px; background: rgba(101, 40, 64, 0.61)url(../images/zoom.png) center center no-repeat; cursor: pointer; transition: all .2s ease-in-out; -webkit-transition: all .2s ease-in-out; -moz-transition: all .2s ease-in-out; -o-transition: all .2s ease-in-out; } .gallery-grd.zoom-icon { top: -50px; width: 100%; height: 182px; } .gallery-grd a:hover .zoom-icon { top: 14%; opacity: 1; filter: alpha(opacity=99); -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=99)"; } .services { padding: 4em 0; text-align: center; } .services h2 { font-size: 3.5em; color: #652840; font-family: 'Sail-Regular'; text-transform: capitalize; text-align: center } .services p { font-size: 1em; color: #eee; line-height: 1.8em; } .services h4 { font-size: 1.5em; text-transform: capitalize; margin: 0.6em 0 0.4em; color: #fff; } .services-grids { margin-top: 3em; } .ser1 { background: #652840; padding: 2em; } .ser1:hover { background:#bf9280; } .professional{ padding:0em 0 4em ; } .professional h3 { font-size: 3.5em; color: #652840; font-family: 'Sail-Regular'; text-transform: capitalize; text-align: center } .professional-grid1 h4 { font-size: 1.5em; text-transform: capitalize; color: #bf9280; } .professional-grid1 p { font-size: 1em; padding: .5em 0; color: #999; line-height: 2em; } .professional-grids { margin-top: 3em; } .service-list { padding: 4em 0; background-color: #bf9280; } .service-list h3 { font-size: 3.5em; color: #fff; font-family: 'Sail-Regular'; text-transform: capitalize; text-align: center } .ser-list ul li{ list-style-type: none; } .ser-list ul li a { color: #eee; font-size: 1em; padding: 6px 24px; background: url(../images/list-arrow.png) no-repeat 0px 10px; line-height:2em; text-decoration:none; } .ser-list ul li a:hover { color: #652840; } .service-grids { margin-top: 3em; } /*-- services --*/ /*-- Typography --*/ h2.tittle { font-size: 3.5em; color: #652840; font-family: 'Sail-Regular'; text-transform: capitalize; text-align: center; } .typo { padding: 4em 0; } .show-grid [class^=col-] { background: #fff; text-align: center; margin-bottom: 10px; line-height: 2em; border: 10px solid #f0f0f0; } .show-grid [class*="col-"]:hover { background: #e0e0e0; } .grid_3{ margin-bottom:2em; } .xs h3, h3.m_1{ color:#000; font-size:1.7em; font-weight:300; margin-bottom: 1em; } .grid_3 p{ color: #777; font-size: 0.85em; margin-bottom: 1em; font-weight: 300; } .grid_4{ background:none; margin-top:50px; } .label { font-weight: 300 !important; border-radius:4px; } .grid_5 h3, .grid_5 h2, .grid_5 h1, .grid_5 h4, .grid_5 h5{ margin-bottom:1em; } .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td { border-top: none !important; } .tab-content > .active { display: block; visibility: visible; } /*--//Typography --*/ /**contact**/ .contact-map iframe { min-height:380px; width: 100%; border: none; } .contact { padding: 4em 0 } .contact_top { padding:4em 0 0em 0; } .contact h2 { font-size: 3.5em; /*color: #652840;*/ font-family: 'Sail-Regular'; text-transform: capitalize; text-align: center; } .contact-map { margin-top: 3em; } .contact-top h3 { font-size: 3.5em; /*color: #652840;*/ font-family: 'Sail-Regular'; text-transform: capitalize; } .contact_left p{ /*color:#999;*/ font-size:1em; line-height:1.8em; margin-bottom: 1em; } .form_details input[type="text"], .form_details textarea { padding: 11px; width: 51%; font-size: 1em; margin: 10px 0px; border:1px solid #bbb; color: #bbb; background: none; -webkit-appearance: none; float: left; outline: none; font-weight:400; border-radius: 0.3em; -webkit-border-radius: 0.3em; -o-border-radius: 0.3em; -moz-border-radius: 0.3em; } .form_details textarea { height:200px; resize:none; width:80%; } .form_details input[type="submit"] { margin-top:1em; color: #fff; font-size: 1em; padding: 0.7em 1em; -webkit-appearance:none; text-transform: uppercase; display: inline-block; -webkit-transition: all 0.3s ease-out; -moz-transition: all 0.3s ease-out; -ms-transition: all 0.3s ease-out; -o-transition: all 0.3s ease-out; transition: all 0.3s ease-out; font-weight:400; border: none; text-transform:uppercase; outline: none; cursor: pointer; width:20%; background:black; border-radius: 0.3em; -webkit-border-radius: 0.3em; -o-border-radius: 0.3em; -moz-border-radius: 0.3em; } .form_details input[type="submit"]:hover { text-decoration: none; color: #fff; background:#bf9280; } .sub-button { margin-bottom: 25px; } .contact_left h3,.company_ad h3 { font-size: 3.5em; color: #652840; font-family: 'Sail-Regular'; text-transform: capitalize; margin-bottom: .3em; } .company_ad p { font-size: 1em; color: #999; line-height: 1.8em; } .company_ad a { color: #999; } /**responsive**/ @media(max-width:1440px){ .offer { right: 25.2%; } } @media (max-width: 1366px){ .offer { right: 24.2%; } } @media (max-width: 1280px){ .offer { right: 22%; } } @media(max-width:1080px){ .slider-info h3 { font-size: 4em; } .slider-info p { font-size: 0.965em; width: 40% } .header.head-top { min-height: 108px; } .header { min-height: 465px; } .slider { margin-top: 7em; } .banner-grids { top: 95px; } .banner-grid h5 { font-size: 2.5em } .banner-grid p { font-size: 1em; } .about-head h2,.OurLove-section h2,.services h2,.wedding-section h2,.wedding-section h2 ,h2.tittle,.contact h2{ font-size: 3em; } .about-head p,.textbox p,.feature2 p,.wedding-inner p,.indicate-grid p,.OurLove-grid1 p,.captn p,.choose-grid p,.services p,.professional-grid1 p,.contact_left p,.company_ad p { font-size: 0.965em; } .textbox h4,.feature1 h4,.OurLove-grid1 h4,.captn h4,.choose-grid h4,.services h4,.professional-grid1 h4 { font-size: 1.4em; } .hot-offer h3,.features h3,.wedding-news h3,.team h3,.why-choose h3,.professional h3,.service-list h3,.contact_left h3, .company_ad h3 { font-size: 3em; } .hot-offer h4 { font-size: 2em; } .OurLove-grid iframe { width: 100%; height: 211px; } .offer { right: 15.3%; top: 32%; } .test1 .textbox { width: 238px; height: 480px; position: absolute; top: 0px; left: 0px; padding: 5em 2em 0; } .wedding-inner h5 { font-size: 1em; } span.glyphicon.glyphicon-map-marker { font-size: 1.5em; margin-right: 0.2em; } span.glyphicon.glyphicon-earphone{ font-size: 1.5em; margin-right: 0.2em; } span.glyphicon.glyphicon-envelope { font-size: 1.5em; margin-right: 0.2em; } span.glyphicon.glyphicon-send { font-size: 1.5em; margin-right: 0.2em; } .team-grids a .captn { right: 0%; } .team-grids a:hover .captn { right: 0%; } .ser-list ul li a { font-size: 0.965em; padding: 6px 17px; } .zoom-icon { width: 281px; height: 190px; } .form_details input[type="submit"] { width: 22%; } } @media (max-width: 991px){ .navbar-brand h1 a { font-size: 1em; } .nav > li > a { padding: 10px 10px; } .navbar-nav { margin:4px 0 0; } .navbar-brand { padding: 0px 30px; } .header-top { padding: 1.5em 0; } .slider-info h3 { font-size: 3.5em; } .slider-info p { font-size: 0.95em; width: 50%; } .button { margin-top: 1.5em; } a.button1 { font-size: 0.95em; } a.button2 { font-size: 0.95em; } .header { min-height: 440px; } .banner-grid { float: left; width: 25%; } .banner-grids { top: 66px; } .slider { margin-top: 5em; } .banner-grid h5 { font-size: 2em; } .banner-grid p { font-size: 0.95em; } .about,.hot-offer,.features,.wedding-news ,.indicate,.OurLove-section,.services,.service-list,.wedding-section,.typo,.contact{ padding: 3em 0; } .about-grid { float: left; width: 25%; } .about-head h2, .OurLove-section h2, .services h2, .wedding-section h2, .wedding-section h2, h2.tittle, .contact h2 { font-size: 2.5em; } .about-head p, .textbox p, .feature2 p, .wedding-inner p, .indicate-grid p, .OurLove-grid1 p, .captn p, .choose-grid p, .services p, .professional-grid1 p, .contact_left p, .company_ad p { font-size: 0.95em; } .textbox h4,.feature1 h4,.OurLove-grid1 h4,.captn h4,.choose-grid h4,.services h4 ,.professional-grid1 h4{ font-size: 1.3em; } .hot-offer h3,.features h3,.wedding-news h3,.team h3,.why-choose h3,.professional h3,.service-list h3,.contact_left h3, .company_ad h3 { font-size: 2.5em; } .test1 .textbox { width: 194px; height: 480px; position: absolute; top: 0px; left: -3px; padding: 2.5em 1.5em 0; } .hot-offer h4 { font-size: 1.5em; } .offer { right: 3.6%; top: 29.8%; } .feature-grid { float: left; width: 50%; } .feature-grid:nth-child(3) { margin-top: 1em; } .feature-grid:nth-child(4) { margin-top: 1em; } .weeding-new { float: left; width: 33.3%; } .header.head-top { min-height: 90px; } .indicate-grid { float: left; width: 50%; } .indicate-grid:nth-child(3) { margin-top: 1em; } .indicate-grid:nth-child(4) { margin-top: 1em; } .OurLove-grid { float: left; width: 40%; } .OurLove-grid iframe { width: 100%; height: 154px; } .OurLove-grid1 { float: left; width: 60%; } .team { padding: 0em 0em 3em; } .team-grids { float: left; width: 25%; } .team-grids a .captn { bottom: -74%; } .team-grids a:hover .captn { padding: 25% 10%; } .why-choose { padding: 1em 0 3em; } .choose-grid { float: left; width: 33.3%; } .services-grid { float: left; width: 33.3%; } .ser1 { background: #652840; padding: 1em; } .professional-grid { float: left; width: 40%; } .professional-grid1 { float: left; width: 60%; } .ser-list { float: left; width: 33.3%; } .ser-list ul li a { font-size: 0.9em; padding: 6px 1px; } .gallery-grid { float: left; width: 33.3%; } .zoom-icon { width: 207px; height: 142px; } .label { display: inline; padding: .2em .6em .3em; font-size: 61%; } .contact-map iframe { min-height: 300px; } .contact_left { float: left; width: 60%; } .contact_right { float: left; width: 40%; } .form_details input[type="text"], .form_details textarea { padding: 8px; width: 80%; font-size: 0.95em; } .form_details textarea { height: 150px; } .form_details input[type="submit"] { width: 30%; font-size: 0.95em; } .contact_top { padding: 3em 0 0em 0; } } @media (max-width: 768px){ .offer { right: 3.6%; top: 28.5%; } } @media (max-width: 640px){ .navbar-nav { float: none; margin: 0; width: 100%; text-align: center; } .navbar-default .navbar-collapse, .navbar-default .navbar-form { border-color: #652840; } .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { background-color: #652840; } .navbar-default .navbar-toggle { border-color: #fff; } .navbar-default .navbar-toggle .icon-bar { background-color: #fff; } .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { color: #fff; background-color: transparent; } .navbar-default .navbar-nav .open .dropdown-menu > li > a { color: #fff; } .header-top { padding: 1em 0; } .navbar-brand { padding: 0px 0px; } .header { min-height: 400px; } .slider-info h3 { font-size: 3em; } .slider-info p { width: 60%; } .slider { margin-top: 3em; } .banner-grids { position: inherit; } .OurLove-grid iframe { width: 100%; height: 313px; } .banner-grid h5 { font-size: 1.5em; } .about, .hot-offer, .features, .wedding-news, .indicate, .OurLove-section, .services, .service-list, .wedding-section, .typo, .contact { padding: 2em 0; } .hot-offer h3, .features h3, .wedding-news h3, .team h3, .why-choose h3, .professional h3, .service-list h3, .contact_left h3, .company_ad h3 { font-size: 2em; } .textbox h4, .feature1 h4, .OurLove-grid1 h4, .captn h4, .choose-grid h4, .services h4, .professional-grid1 h4 { font-size: 1.2em; } .about-grids,.features-grids,.wedding-grid,.OurLove-grids,.team-info,.choose-grids,.services-grids,.professional-grids,.service-grids,.contact-map { margin-top: 2em; } .professional { padding: 0em 0 2em; } .about-grid { float: left; width: 50%; } .test1 .textbox { width: 301px; height: 480px; position: absolute; top: 0px; left: 0px; padding: 9em 3em 0; } .about-grid:nth-child(3){ margin-top:1em } .about-grid:nth-child(4){ margin-top:1em } .hot-offer h4 { font-size: 1.3em; } .offer { right: 2.4%; top: 27.6%; } .wedding-inner h4 a { font-size: 0.85em; } span.glyphicon.glyphicon-heart, span.glyphicon.glyphicon-camera, span.glyphicon.glyphicon-calendar, span.glyphicon.glyphicon-gift { font-size: 2em; } .header.head-top { min-height: 80px; } .OurLove-grid { width: 100%; } .OurLove-grid1 { width: 100%; margin-top:1em; } .OurLove-grid1 p { padding: 0.5em 0; } .team-grids { float: left; width: 50%; } .team-grids a .captn { right: 6%; bottom: -83%; } .team-grids a:hover .captn { right: 6%; padding: 35% 10%; } .team-grids:nth-child(3) { margin-top: 1em; } .team-grids:nth-child(4) { margin-top: 1em; } .ser1 { background: #652840; padding: 0.55em; } .professional-grid { width: 100%; } .professional-grid img { margin: 0 auto; } .professional-grid1 { width: 100%; text-align: center; margin-top: 1em; } .ser-list { width: 100%; } .ser-list:nth-child(2) { margin-top: 1em; } .ser-list:nth-child(3) { margin-top: 1em; } .zoom-icon { width: 165px; height: 117px; } .label { display: inline; padding: .2em .6em .3em; font-size: 50%; } .pagination { margin: 10px 0; } .pagination-lg > li > a, .pagination-lg > li > span { padding: 10px 16px; font-size: 10px; } .grid_4 { background: none; margin-top: 25px; } .contact_top { padding: 2em 0 0em 0; } .form_details input[type="submit"] { width: 37%; } } @media (max-width: 480px){ .navbar-brand h1 a { font-size: 0.9em; } .header { background: url(../images/machine.jpg)no-repeat -90px 0px; background-size: cover; } .slider-info h3 { font-size: 2.5em; } .slider-info p { width: 80%; font-size: 0.92em; } .banner-grid { float: left; width: 50%; } .about{ padding:6em 0 2em; } .banner-grid p { font-size: 0.92em; } .banner-grid h5 { font-size: 1.2em; } .about-head h2, .OurLove-section h2, .services h2, .wedding-section h2, .wedding-section h2, h2.tittle, .contact h2 { font-size: 2em; } .hot-offer, .features, .wedding-news, .indicate, .OurLove-section, .services, .service-list, .wedding-section, .typo, .contact { padding: 1em 0; } .OurLove-grid iframe { width: 100%; height: 235px; } .test1 .textbox { width: 224px; height: 480px; position: absolute; top: 0px; left: 0px; padding: 4em 2em 0; } .about-head p, .textbox p, .feature2 p, .wedding-inner p, .indicate-grid p, .OurLove-grid1 p, .captn p, .choose-grid p, .services p, .professional-grid1 p, .contact_left p, .company_ad p { font-size: 0.92em; } .offer { display: none; } .hot-offer img { margin: 1em auto 0; border: 4px solid #fff; } .hot-offer h4 { font-size: 1.2em; } .weeding-new { width: 100%; } .wedding-inner { margin-bottom: 1em; } .weeding-new:nth-child(2) { margin-top: 1em; } .weeding-new:nth-child(3) { margin-top: 1em; } .wedding-inner h5 { font-size: 0.95em; padding: 0.8em; } .indicate-grid { width: 100%; } .indicate-grid:nth-child(2) { margin-top: 1em; } .indicate-grid:nth-child(3) { margin-top: 1em; } .indicate-grid:nth-child(4) { margin-top: 1em; } .footer-section { padding: 1em 0; } .header.head-top { background-size: cover; background: url(../images/banner.jpg)no-repeat 0px 0px; } .team-grids a .captn { right: 0%; bottom: -80%; } .team-grids a:hover .captn { right: 0%; } .team { padding: 0em 0em 1em; } .choose-grid { width: 100%; } .choose-grid:nth-child(2) { margin-top: 1em; } .choose-grid:nth-child(3) { margin-top: 1em; } .services-grid { width: 100%; } .services-grid:nth-child(2) { margin-top: 1em; } .services-grid:nth-child(3) { margin-top: 1em; } .professional { padding: 0em 0 1em; } .zoom-icon { width: 117px; height: 87px; } .typo h1 { font-size: 28px; } .typo h2 { font-size: 25px; } .grid_4 { margin-top: 20px; } .contact-map iframe { min-height: 250px; } .contact_left { width: 100%; } .contact_left { width: 100%; } .form_details input[type="text"], .form_details textarea { width: 100%; } address { margin-bottom: 5px; } } @media (max-width: 320px){ .navbar-brand h1 a { font-size: 0.8em; } .header-top { padding: 0.5em 0; } .slider-info p { width: 100%; font-size: 0.9em; } .button { margin-top: 1em; } a.button1 { font-size: 0.92em; } a.button2 { font-size: 0.92em; } .banner-grid h5 { font-size: 1.3em; } .banner-grid p { font-size: 0.9em; } .about-head h2, .OurLove-section h2, .services h2, .wedding-section h2, .wedding-section h2, h2.tittle, .contact h2 { font-size: 2.3em; } .about-grid { width: 100%; padding: 0; } .about-grid:nth-child(2) { margin-top: 1em; } .about-grid:nth-child(3) { margin-top: 1em; } .about-grid:nth-child(4) { margin-top: 1em; } .test1 .textbox { width: 274px; height: 480px; position: absolute; top: 0px; left: 0px; padding: 8em 2em 0; } .hot-offer h3, .features h3, .wedding-news h3, .team h3, .why-choose h3, .professional h3, .service-list h3, .contact_left h3, .company_ad h3 { font-size: 2.2em; } .feature-grid { width: 100%; } .feature-grid:nth-child(2) { margin-top: 1em; } .textbox h4, .feature1 h4, .OurLove-grid1 h4, .captn h4, .choose-grid h4, .services h4, .professional-grid1 h4 { font-size: 1.3em; } .about-grids, .features-grids, .wedding-grid, .OurLove-grids, .team-info, .choose-grids, .services-grids, .professional-grids, .service-grids, .contact-map { margin-top: 1em; } .feature-grid { padding: 0; } .weeding-new { padding: 0; } .OurLove-grid { padding: 0; } .OurLove-grid1 { padding: 0; } .team-grids { width: 100%; } .team-grids img { margin: 0 auto; } .team-grids:nth-child(2) { margin-top: 1em; } .team-grids a .captn { right: 0%; bottom: -82%; } .choose-grid { padding: 0; } .services-grid { padding: 0; } .professional-grid { padding: 0; } .professional-grid1 { padding: 0; } .gallery-grid { width: 100%; padding: 0; } .zoom-icon { width: 270px; height: 185px; } .wedding-section h2 { margin-bottom: 0.5em; } .header.head-top { min-height: 360px; } .contact_left { padding: 0; } .contact_right { padding: 0; } .form_details input[type="submit"] { width: 44%; } .OurLove-grid iframe { width: 100%; height: 150px; } } .worked{ width: 160px; }
css/style.css
@charset "utf-8"; @import url(http://fonts.googleapis.com/css?family=Raleway:800,700,400); @import url(http://fonts.googleapis.com/css?family=Signika:400,600); /* Reset ---------------------------------*/ ul { list-style: none; } .figure { margin: 0px; } img { max-width: 100%; } a, a:hover, a:active { outline: 0px !important; text-decoration:none; } .clear { clear: both; display: block; overflow: hidden; visibility: hidden; width: 0; height: 0; } .clearfix:before, .clearfix:after { content: '\0020'; display: block; overflow: hidden; visibility: hidden; width: 0; height: 0; } .clearfix:after { clear: both; } /* Common style */ .grid figure { position: relative; float: left; overflow: hidden; margin: 10px 1%; min-width: 320px; max-width: 480px; max-height: 360px; width: 48%; background: #3085a3; text-align: center; cursor: pointer; } .grid figure img { position: relative; display: block; min-height: 100%; max-width: 100%; opacity: 0.8; } .grid figure figcaption { padding: 2em; color: #fff; text-transform: uppercase; font-size: 1.25em; -webkit-backface-visibility: hidden; backface-visibility: hidden; } .grid figure figcaption::before, .grid figure figcaption::after { pointer-events: none; } .grid figure figcaption, .grid figure figcaption > a { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } /* Anchor will cover the whole item by default */ /* For some effects it will show as a button */ .grid figure figcaption > a { z-index: 1000; text-indent: 200%; white-space: nowrap; font-size: 0; opacity: 0; } .grid figure h2 { word-spacing: -0.15em; font-weight: 300; } .grid figure h2 span { font-weight: 800; } .grid figure h2, .grid figure p { margin: 0; } .grid figure p { letter-spacing: 1px; font-size: 68.5%; } /*---------------*/ /***** Oscar *****/ /*---------------*/ figure.effect-oscar { background: -webkit-linear-gradient(45deg, #22682a 0%, #9b4a1b 40%, #3a342a 100%); background: linear-gradient(45deg, #22682a 0%,#9b4a1b 40%,#3a342a 100%); } figure.effect-oscar img { opacity: 0.9; -webkit-transition: opacity 0.35s; transition: opacity 0.35s; } figure.effect-oscar figcaption { padding: 3em; background-color: rgba(58,52,42,0.7); -webkit-transition: background-color 0.35s; transition: background-color 0.35s; } figure.effect-oscar figcaption::before { position: absolute; top: 30px; right: 30px; bottom: 30px; left: 30px; border: 1px solid #fff; content: ''; } figure.effect-oscar h2 { margin: 20% 0 10px 0; -webkit-transition: -webkit-transform 0.35s; transition: transform 0.35s; -webkit-transform: translate3d(0,100%,0); transform: translate3d(0,100%,0); color:#A3A3A3; } figure.effect-oscar figcaption::before, figure.effect-oscar p { opacity: 0; -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; -webkit-transform: scale(0); transform: scale(0); } figure.effect-oscar:hover h2 { -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); color:#fff; } figure.effect-oscar:hover figcaption::before, figure.effect-oscar:hover p { opacity: 1; -webkit-transform: scale(1); transform: scale(1); color:#fff;+++++++ } figure.effect-oscar:hover figcaption { background-color: rgba(58,52,42,0); } figure.effect-oscar:hover img { opacity: 0.4; } /* Styles ---------------------------------*/ body { background: #fff; font-family: 'Open Sans', sans-serif; font-size: 14px; font-weight: normal; color: #888888; margin: 0; } h2 { font-size: 38px; color: #222222; font-family: 'Raleway', sans-serif; font-weight: normal; margin: 0px 0 25px 0; text-align: center; text-transform: uppercase; } h3 { font-family: 'Open Sans', sans-serif; font-weight: 600; color: #222222; font-size: 18px; margin: 0 0 5px 0; } h6 { font-size: 16px; color: #888888; font-family: 'Open Sans', sans-serif; font-weight: 400; text-align: center; margin: 0 0 60px 0; } p { line-height: 24px; margin: 0; } /* Header Styles ---------------------------------*/ #header_wrapper { background: #ffffff; padding: 20px 0px; border-top: bisque; box-shadow: 1px 1px 4px rgba(60, 60, 60, 0.44); border-bottom: 1px solid #D2D2D2; } .header_box { position: relative; } .logo { float: left; margin-top: 8px; position: relative; z-index: 2; } .res-nav_click { display: none; } /* Nav Styles ---------------------------------*/ .navbar-inverse { background-color: transparent; border-color: transparent; } .navbar { min-height: 40px; margin-bottom: 0px; } .navbar-inverse .navbar-nav > li > a { color: #222; } .navStyle { float: right; } .navStyle ul { list-style: none; padding: 0px; } .navStyle ul li { display: inline-block; margin: 0 5px; } .navStyle ul li:first-child { /*margin:0px;*/; } .navStyle ul li:last-child { margin: 0 0 0 23px; } .navStyle ul li a { display: block; font-size: 14px; color: #222222; font-family: 'Raleway', sans-serif; text-decoration: none; text-transform: uppercase; font-weight: 600; transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; -webkit-transition: all 0.2s ease-in-out; } .navStyle ul li a:hover { color: #ED5441; } .navStyle > li > a:hover, .nav > li > a:focus { text-decoration: none; color: #ED5441; background-color: transparent; } .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { color: #CA133A; background-color: transparent; } .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { color: #CB143B; background-color: transparent; } .navStyle > li.active > a, .navStyle > li.active > a:hover { text-decoration: none; color: #ED5441; background-color: transparent; } .borderLeft { border-left: 1px solid #DADADA; } .borderTop { margin-top: 30px; border-top: 1px solid #DADADA; } .mrgTop { margin-top: 30px; } /* Top_content ---------------------------------*/ .top_cont_outer { background: url(/img/progd.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; /* color: #fff; */ padding-bottom: 80px; /* background: #ED5441; background: #CE1139; */ position: relative; height:650px; } .hero_section { position: relative; padding-top: 72px; } .white_pad { position: relative; right: 0px; bottom: 0px; } .white_pad img { position: absolute; right: 0px; bottom: 0px; } .top_left_cont { padding: 110px 0; } .top_left_cont h3 { font-size: 16px; color: #f56eab; margin: 0 0 20px 0; text-align: left; font-weight: 700; } .top_left_cont h2 { font-size: 40px; color: #FFF; margin: 0 0 26px 0; font-family: 'Raleway', sans-serif; text-align: center; line-height: 70px; } .top_left_cont h2 strong { font-weight: 700; color: #FFE800; } .top_left_cont p { font-size: 18px; color: #FFFFFF; margin: 0 0 30px 0; line-height: 33px; text-align: center; font-weight: normal; font-size: 22px; /* font-weight: 300; */ text-align: center; letter-spacing: 1px; } a.read_more, a.read_more2 { font-family: 'Raleway', sans-serif; display: block; font-size: 16px; width: 178px; height: 46px; line-height: 46px; border-radius: 3px; text-align: center; text-transform: uppercase; font-weight: 600; transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; -webkit-transition: all 0.2s ease-in-out; background: transparent; color: #fff; border: 1px solid #fff; margin:0 auto; } a.read_more{ color: #3C3C3C; border: 1px solid #3C3C3C; } a.read_more2:hover, a.read_more:hover { background: #fff; color: #0593F9; border: 1px solid #fff; } a.read_more:hover { background: #fff; color: #ED5441; border: 1px solid #ED5441; } /* Services ---------------------------------*/ #service { padding: 60px 0px; padding: 0em 3em; /* background: #CE1139; */ } #service h2{ color: #fff; } .service_wrapper { padding: 40px 0 40px; } .service_section { } .service_block { text-align: center; padding-left: 15px; padding-right: 15px; position: relative; } .service_icon { width: 90px; height: 85px; margin: 0px auto 25px; } .service_icon span { background: transparent; display: block; height: 100%; width: 100%; border: 1px solid #fff; border-radius: 50%; } .service_icon i { color: #FFFFFF; font-size: 40px; margin-top: 0; position: relative; top: 20px; z-index: 20; display: block; text-align: center; } .service_block h3 { font-family: 'Raleway', sans-serif; font-weight: 600; font-size: 25px; color: #fff; margin: 35px 0 15px; } #service h6{ color:#fff; } .service_block p { font-size: 16px; color: #fff; margin: 0 0 35px 0; } /* Latest Work ---------------------------------*/ #work_outer { background: #f9f9f9; padding: 70px 0px; position: relative; } .work_pic { position: absolute; right: 0; top: 25%; width: 50%; } .inner_section { padding: 0px; } .service-list { padding: 0 0 0 0; font-size: 14px; margin-bottom: 40px; } .service-list-col1 { float: left; width: 60px; text-align: center; } .service-list-col1 i { display:; color: #888; font-size: 19px; font-style: normal; line-height: 20px; } .service-list-col2 { overflow: hidden; } .page_section.alabaster { background: #fafafa; } .work_bottom { padding: 20px 0 0 0px; } .work_bottom span { font-size: 18px; color: #333333; display: block; margin: 0 0 20px 0; } a.contact_btn { background: #fff; text-transform: uppercase; display: block; width: 176px; height: 49px; text-align: center; line-height: 49px; font-size: 16px; color: #ED5441; border-radius: 3px; font-family: 'Raleway', sans-serif; font-weight: 600; border: 2px solid #ED5441; transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; -webkit-transition: all 0.2s ease-in-out; } a.contact_btn:hover { background: #ED5441; color: #fff; } .input-text { background: transparent; } /* Portfolio ---------------------------------*/ #Portfolio { padding: 60px 0px; } .Portfolio-nav { padding: 0; margin: 0 0 45px 0; list-style: none; text-align: center; } .Portfolio-nav li { margin: 0 10px; display: inline; } .Portfolio-nav li a { display: inline-block; padding: 10px 22px; font-size: 12px; line-height: 20px; color: #222222; border-radius: 4px; text-transform: uppercase; background: #f7f7f7; margin-bottom: 5px; transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; } .Portfolio-nav li a:hover { background: #ED5441; color: #fff; text-decoration: none; } .portfolioContainer { margin: 0 auto; padding-left: 15px; width: auto !important; } .Portfolio-box { text-align: center; width: 350px; overflow: hidden; float: left; padding: 12px 0px; } .Portfolio-box img { transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; } .Portfolio-box img:hover { opacity: 0.6; } .Portfolio-nav li a.current { background: #ED5441; color: #fff; text-decoration: none; } img { max-width: 100%; } /* no transition on .isotope container */ .isotope .isotope-item { /* change duration value to whatever you like */ -webkit-transition-duration: 0.6s; -moz-transition-duration: 0.6s; transition-duration: 0.6s; } .isotope .isotope-item { -webkit-transition-property: -webkit-transform, opacity; -moz-transition-property: -moz-transform, opacity; transition-property: transform, opacity; } .page_section.paddind { padding-bottom: 60px; } /* Happy Clients ---------------------------------*/ #clients { padding: 60px 0px; } .client_area { width: 960px; margin: 0px auto; } .client_section { padding: 35px 0 0 0; } .client_section.btm { padding: 20px 0 0 0; } .client_profile { float: left; text-align: center; } .client_profile.flt { float: right; } .client_profile_pic { border-radius: 50%; border: 2px solid #f5f5f5; margin: 0 0 15px 0; width: 220px; height: 220px; } .client_profile_pic img { border-radius: 50%; border: 3px solid #f5f5f5; } .client_profile h3 { font-size: 18px; color: #49b5e7; margin: 0 0 0 0; } .client_profile span { display: block; font-size: 16px; color: #888888; } /* Clients ---------------------------------*/ .client_logos { /* background-image: url("/img/stacks/brands.jpg"); */ /* background: #443c3d; */ /* border-radius: 100px; */ /* padding: 60px 0; */ margin-bottom: -40px; margin-top: 20px; } .client_logos ul { padding: 0; margin: 0; list-style: none; text-align: center; } .client_logos ul li { display: inline; margin: 0 25px; } .client_logos ul a { display: inline-block; margin: 0 20px; } .page_section.team { padding: 60px 0; } .page_section.team h6 { margin-bottom: 40px; } /* About Us --------------------------- */ .aboutUs-container { background-repeat: no-repeat; background-position: right; background-size: auto 100%; background-position-y: 70px; } #about-us .read-more{ border: 1px solid #ED5441; color: #1a1a1a; } #about-us .read-more:hover{ background-color: #e74c3c; border: 1px solid #e74c3c; color: #fff; } .about-us-post-container{ background-repeat: no-repeat; background-position: right; background-size: auto 100%; } .about-us{ margin-top: 70px; margin-bottom: 50px; } .about-us h3{ font-size:28px; } .points{ margin-bottom: 10px; font-size:14px; padding-left:0px; } .about-us p{ /*font-size: 0.9375em;*/ line-height: 1.625em; padding: 15px 0; } .about-us .about-us-list{ list-style: none; margin-bottom: 20px; padding-left:0px; } .about-us .points{ position: relative; list-style-type: none; padding: 5px 0 5px 30px; } .about-us .points:before{ content: "\f058"; position: absolute; font-family: FontAwesome; font-size: 1.125em; color: #CE1139; left: 0px; top: 3px; } .about-us-link a:first-child{ margin-left: 0; } /* Team ---------------------------------*/ .team_section { max-width: 993px; margin: 0 auto; } .team_area { width: 30.66%; margin-right: 3.82979%; overflow: hidden; text-align: center; float: left; } .team_area span { margin-bottom: 24px; display: block; } .team_area:nth-of-type(3n+0) { margin: 0; } .team_box { width: auto; height: auto; position: relative; border-radius: 50%; margin: 0px 3px 25px 3px; } /* .team_box_shadow { transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; position: absolute; width: 100%; height: 26%; z-index: 10; bottom: 0px; } */ .team_box_shadow a { display: block; width: 100%; height: 100%; } .team_box:hover .team_box_shadow { box-shadow: inset 0px 0px 0px 148px rgba(17,17,17,0.80); } .team_box:hover ul { display: block; opacity: 1; } .team_box img { display: block; border-radius: 0%; width: 90%; margin: 0 auto; } .team_box ul { display: block; padding: 0; margin: 0; list-style: none; position: absolute; left: 0; top: 88%; width: 100%; text-align: center; margin-top: -14px; z-index: 15; transition: all 0.6s ease-in-out; -moz-transition: all 0.6s ease-in-out; -webkit-transition: all 0.6s ease-in-out; } .team_box ul li { display: inline-block; margin: 0 11px; width: 34px; border-radius: 50%; background: #fff; padding: 10px 0 4px; margin-bottom: 5px; } .team_box ul li a { display: inline-block; font-size: 18px; color: #232323; transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; } .team_box ul li a:hover, .team_box ul li a:focus { text-decoration: none; } .team_box ul li a.fa-twitter:hover { color: #55acee; } .team_box ul li a.fa-facebook:hover { color: #3b5998; } .team_box ul li a.fa-pinterest:hover { color: #cb2026; } .team_box ul li a.fa-google-plus:hover { color: #dd4b39; } .img-circle { border-radius: 50%; } .centered { text-align: center; } #team .fa { width: 30px; height: 30px; margin: 0 3px; border-radius: 100%; font-size: 15px; line-height: 30px; outline: 0; color: #CE1139; background-color: #fff; -webkit-transition: all .3s; -moz-transition: all .3s; transition: all .3s; border: 1px solid #CE1139; } #aboutUs { padding: 60px 0; background: #fff; } /* Contact ---------------------------------*/ .page_section.contact { padding: 90px 0 100px; } .contact_section { margin: 0 0 60px 0; } .contact_section h2 { font-size: 40px; color: #ffffff; margin: 0 0 50px 0; text-transform: uppercase; } .contact_block { text-align: center; } .contact_block_icon { border-radius: 50%; height: 85px; width: 85px; margin: 0px auto 20px; } .contact_block_icon.icon2 { border-color: #ED5441; } .contact_block_icon.icon3 { border-color: #49b5e7; } .contact_block_icon span { background: none repeat scroll 0 0 #f56eab; border: 5px solid #fff; border-radius: 50%; display: block; height: 100%; width: 100%; } .contact_block_icon.icon2 { border-color: #ED5441; } .contact_block_icon.icon2 span { background: #ED5441; } .contact_block_icon.icon3 { border-color: #49b5e7; } .contact_block_icon.icon3 span { background: #49b5e7; } .contact_block_icon i { color: #fff; font-size: 36px; margin-top: 0; position: relative; top: 26px; z-index: 20; } .contact_block span { display: block; font-size: 16px; color: #ffffff; line-height: 20px; } .contact_block span a { display: block; font-size: 16px; color: #ffffff; line-height: 20px; } .contact_info { font-size: 15px; margin: 0 0 0 20px; padding-left: 0; } .contact_info h3 { font-size: 24px; font-weight: 600; margin: 0 0 30px; color: #fff; } .contact_info p { line-height: 28px; display: block; font-size: 16px; color: #ffffff; margin: 0 0 30px; } .social_links { padding:0; margin: 0; display: block; overflow: hidden; list-style: none; } .social_links li { float: left; margin-right: 4px; } .social_links li a { display: block; width: 50px; height: 50px; text-align: center; line-height: 50px; font-size: 25px; color: #fff; } .social_links li a:hover, .social_links li a:focus { text-decoration: none; border-radius: 80px; } .twitter a:hover { color: #55acee; } .facebook a:hover { color: #3b5998; } .pinterest a:hover { color: #cb2026; } .gplus a:hover { color: #dd4b39; } .form { margin: 0 66px 0 30px; } .input-text { padding: 15px 16px; border: 1px solid #ccc; width: 100%; height: 50px; display: block; border-radius: 4px; font-size: 15px; color: #aaa; margin: 0 0 15px 0; transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; } .input-text:focus { border: 1px solid #fff; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(124, 197, 118, 0.3); -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(124, 197, 118, 0.3); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(124, 197, 118, 0.3); } .input-text.text-area { height: 230px; resize: none; overflow: auto; } .input-btn { width: 175px; height: 50px; letter-spacing: 0px; background: #CE1139; border-radius: 3px; color: #ffffff; font-size: 16px; text-transform: uppercase; font-weight: 600; border: 0px; transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; } .input-btn:hover { background: #fff; color: #222; } /* Footer ---------------------------------*/ .footer_wrapper { background: #232323; } .footer_bottom { border-top: 1px solid #3C3A3A; padding: 25px 0; } .footer_bottom span { display: block; font-size: 14px; color: #cccccc; text-align: center; } .footer_bottom span a { display: inline-block; color: #CE1139; font-size: 16px; transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; } .footer_bottom span a:hover { color: #fff; } /* Animation Timers ---------------------------------*/ .delay-02s { animation-delay: 0.2s; -webkit-animation-delay: 0.2s; } .delay-03s { animation-delay: 0.3s; -webkit-animation-delay: 0.3s; } .delay-04s { animation-delay: 0.4s; -webkit-animation-delay: 0.4s; } .delay-05s { animation-delay: 0.5s; -webkit-animation-delay: 0.5s; } .delay-06s { animation-delay: 0.6s; -webkit-animation-delay: 0.6s; } .delay-07s { animation-delay: 0.7s; -webkit-animation-delay: 0.7s; } .delay-08s { animation-delay: 0.8s; -webkit-animation-delay: 0.8s; } .delay-09s { animation-delay: 0.9s; -webkit-animation-delay: 0.9s; } .delay-1s { animation-delay: 1s; -webkit-animation-delay: 1s; } .delay-12s { animation-delay: 1.2s; -webkit-animation-delay: 1.2s; } /*new_profolio*/ /* Portfolio */ .container.portfolio_title { padding-bottom: 0px; } #portfolio { padding: 60px 0 40px; } /* Portfolio Filters */ #filters { margin-top: 10px; margin-bottom: 40px; text-align: center; display: block; float: none; z-index: 2; position: relative; } #filters ul li { display: inline-block; margin: 0 5px; } #filters ul li a { display: block; } #filters ul li a h5 { background: none repeat scroll 0 0 #f7f7f7; border-radius: 4px; display: inline-block; font-size: 12px; line-height: 20px; margin-bottom: 5px; padding: 10px 22px; text-transform: uppercase; transition: all 0.3s ease-in-out 0s; background: #fff; border: #C2C2C2 solid 1px; color: #7C7C7C; } #filters ul li a:hover h5, #filters ul li a.active h5 { background: #CE1139; color: #FFFFFF; text-decoration: none; border: #CE1139 solid 1px; } .section-title h2 { color: #222222; font-family: 'Raleway', sans-serif; font-size: 34px; letter-spacing: -1px; margin: 0 0 15px; text-align: center; text-transform: uppercase; } .section-title span { display: block; color: #888888; font-family: 'Open Sans',sans-serif; font-size: 16px; font-weight: 400; margin: 0 0 60px; text-align: center; } /* Portfolio Items */ #portfolio_wrapper { position: relative; padding: 0; width: 100%; margin: 0 auto; display: block; } #portfolio_wrapper .one-four { margin: 0!important; line-height: 0; width: 25%; padding: 0; position: relative; } .portfolio-item { padding: 0; position: relative; overflow: hidden; } .portfolio-item .portfolio_img { overflow: hidden; display: block; position: relative; } .portfolio-item .portfolio_img img { width: 100%; height: auto; } .portfolio-item:hover .item_overlay { opacity: 1; transition: all 0.4s ease 0s; -moz-transition: all 0.4s ease 0s; -webkit-transition: all 0.4s ease 0s; -ms-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; } .item_overlay { width: 100%; height: 100%; position: absolute; top: 0; left: 0; opacity: 0; transition: all 0.3s ease 0s; -moz-transition: all 0.3s ease 0s; -webkit-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; cursor: pointer; } .open-project-link { width: 100%; height: 100%; position: absolute; z-index: 100; } .item_overlay:hover { background:rgba(89, 89, 89, 0.7); } .item_info { position: absolute; height: 100px; width: 100%; top: 50%; margin-top: -50px; text-align: center; } .project_name { color: #fff; text-transform: uppercase; margin-top: 25px; opacity: 0; font-size: 18px; transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; -webkit-transition: all 0.2s ease 0s; -ms-transition: all 0.2s ease 0s; -o-transition: all 0.2s ease 0s; position: relative; z-index: 10; } .portfolio-item:hover .project_name { opacity: 1; -webkit-transition: opacity .1s .2s; -moz-transition: opacity .1s .2s; -ms-transition: opacity .1s .2s; -o-transition: opacity .1s .2s; transition: opacity .1s .2s; } .project_catg { font-size: 14px; color: #fff; opacity: 0; margin-top: 0px; transition: all 0.2s ease 0s; -moz-transition: all 0.2s ease 0s; -webkit-transition: all 0.2s ease 0s; -ms-transition: all 0.2s ease 0s; -o-transition: all 0.2s ease 0s; } .portfolio-item:hover .project_catg { opacity: 0.8; -webkit-transition: opacity .1s .2s; -moz-transition: opacity .1s .2s; -ms-transition: opacity .1s .2s; -o-transition: opacity .1s .2s; transition: opacity .1s .2s; } .zoom-icon { left: 50%; margin-left: -20px; position: inherit; width: 40px; height: 40px; margin-top: 40px; opacity: 0; background: url(images/zoom.png); background-size: 40px 40px; transition: all 0.3s ease 0.1s; -moz-transition: all 0.3s ease 0.2s; -webkit-transition: all 0.3s ease 0.2s; -ms-transition: all 0.3s ease 0.2s; -o-transition: all 0.3s ease 0.2s; } .portfolio-item:hover .zoom-icon { opacity: 1; margin-top: 0px; -webkit-transition: opacity .3s .2s, margin-top .3s .2s; -moz-transition: opacity .3s .2s, margin-top .3s .2s; -ms-transition: opacity .3s .2s, margin-top .3s .2s; -o-transition: opacity .3s .2s, margin-top .3s .2s; transition: opacity .3s .2s, margin-top .3s .2s; } /* Portfolio Isotope Transitions */ .isotope, .isotope .isotope-item { -webkit-transition-duration: 0.8s; -moz-transition-duration: 0.8s; -ms-transition-duration: 0.8s; -o-transition-duration: 0.8s; transition-duration: 0.8s; } .isotope { -webkit-transition-property: height, width; -moz-transition-property: height, width; -ms-transition-property: height, width; -o-transition-property: height, width; transition-property: height, width; } .isotope .isotope-item { -webkit-transition-property: -webkit-transform, opacity; -moz-transition-property: -moz-transform, opacity; -ms-transition-property: -ms-transform, opacity; -o-transition-property: -o-transform, opacity; transition-property: transform, opacity; } .isotope.no-transition, .isotope.no-transition .isotope-item, .isotope .isotope-item.no-transition { -webkit-transition-duration: 0s; -moz-transition-duration: 0s; -ms-transition-duration: 0s; -o-transition-duration: 0s; transition-duration: 0s; } /* Portfolio Expander */ #project_container { display: none; background-color: #FFF; } #project-page-button-fullscreen { height: auto; z-index: 100; position: absolute; right: 30px; top: 30px; } #project-page-button-fullscreen li { display: inline-block; font-size: 30px; } #project-page-button-fullscreen li a { background: url(images/close.png) no-repeat #fff; background-size: 50px 50px; width: 50px; height: 50px; display: block; border-radius: 50px; opacity: 0.5; } #project-page-button-fullscreen li a:hover { opacity: 1; } #project-page-button { text-align: center; margin-bottom: 20px; height: auto; position: relative; z-index: 100; } #project-page-button li { display: inline-block; margin: 60px 10px 0px 10px; font-size: 30px; } #project_data { margin-bottom: 0px; } .project-section-title { text-align: center; margin-bottom: 40px; } .project-section-title h1 { margin-bottom: 5px!important; letter-spacing: 1px; font-family: 'Raleway', sans-serif; } .project-page { background-color: #FFF; width: 100%; height: auto; left: 0; padding-bottom: 40px; } /* Portfolio*/ .project-image-slider .bx-wrapper .bx-next { background: url("images/project_slider_right.png") no-repeat; background-size: 35px 65px; opacity: 0.3; right: -90px; } .project-image-slider .bx-wrapper .bx-prev { background: url("images/project_slider_left.png") no-repeat; background-size: 35px 65px; opacity: 0.3; left: -90px; } .project-image-slider .bx-wrapper .bx-next:hover, .project-image-slider .bx-wrapper .bx-prev:hover { opacity: 1; background-position: 0; } .project-image-slider .bx-wrapper .bx-controls-direction a { height: 65px; margin-top: -33px; outline: 0 none; position: absolute; text-indent: -9999px; top: 50%; width: 35px; z-index: 100; } /* Portfolio Normal Expander */ .project-description { margin-top: 40px; margin-bottom: 20px; width: 100%; height: auto; } .small-border { height: 2px; width: 50px; background-color: #ddd; margin-bottom: 15px; } .visit-project { width: 100%; text-align: center; border-top: 1px solid #ddd; margin-top: 20px; padding: 55px 0 20px 0; } .project-description h5 { color: #222222; text-transform: uppercase; margin-bottom: 5px; } /* Portfolio FullScreen Expander */ #cycle-loader { height: 32px; left: 50%; margin: -8px 0 0 -8px; position: absolute; top: 50%; width: 32px; z-index: 999; } #arrow_left { top: 50%; height: 60px; position: absolute; left: 30px; width: 32px; z-index: 1000; margin-top: -30px; } #arrow_right { top: 50%; height: 60px; position: absolute; right: 30px; width: 32px; z-index: 1000; margin-top: -30px; } #arrow_left:hover, #arrow_right:hover { margin-top: -28px; } #arrow_left:active, #arrow_right:active { margin-top: -28px; } div.mc-image { -webkit-transition: opacity 1s ease-in-out; -moz-transition: opacity 1s ease-in-out; -o-transition: opacity 1s ease-in-out; transition: opacity 1s ease-in-out; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; background-position: center center; background-repeat: no-repeat; height: 100%; overflow: hidden; width: 100%; } .in-slide-content div.info-slide { background: #FFF url(images/info.png) no-repeat left bottom; background-size: 46px 46px; position: absolute; top: 30px; left: 30px; width: 46px; height: 46px; margin: 0; display: block; text-indent: 10px; -moz-border-radius: 23px; -webkit-border-radius: 23px; border-radius: 23px; cursor: pointer; z-index: 1000; -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=50)"; filter: alpha(opacity=0.5); opacity: 0.5; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; -ms-transition: all 0.3s; transition: all 0.3s; } .in-slide-content div.info-slide:hover { width: 200px; background: #FFF; position: absolute; bottom: 40px; padding: 10px 20px; text-indent: 0px; moz-border-radius: 0px; -webkit-border-radius: 0px; border-radius: 0px; z-index: 1000; -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter: alpha(opacity=1); opacity: 1; } .in-slide-content h2, .in-slide-content p { padding: 0; margin: 0; font-size: 12px; line-height: 24px; } .in-slide-content h2 { font-size: 14px; color: #444; text-shadow: none; font-weight: normal; text-transform: uppercase; z-index: 1001; position: relative; white-space: nowrap; } .info-slide p { color: #aaa; font-size: 13px; text-shadow: none; z-index: 1001; position: relative; margin: 0; font-weight: normal; white-space: nowrap; } .in-slide-content div.info-slide h2 { display: none; padding: 10px 10px 0 10px; } .in-slide-content div.info-slide p { display: none; padding: 0px 10px 10px 10px; } .in-slide-content div.info-slide:hover h2, .in-slide-content div.info-slide:hover p { display: inherit; padding: 0; } /* Media Queries --------------------------- */ @media (min-width: 768px) and (max-width: 1200px) { .aboutUs-container { background-repeat: no-repeat; background-position: right; background-size: auto 59%; background-position-y: 150px; } } @media (max-width: 768px) { .navStyle { float: right; width: auto; text-align: center; } .aboutUs-container{ background-image:none; } p{ font-size:14px; } .top_cont_outer { height: 335px; } .hero_section { position: relative; padding-top: 10px; } .top_left_cont { padding: 38px 0; } .top_left_cont h2 { font-size: 25px; color: #FFF; line-height: 39px; margin: 0 0 9px 0; } .inner_section { padding: 20px 0 20px; } #aboutUs img{ margin-bottom:20px; } #aboutUs h3{ font-size:26px; line-height:22px; } .service_block h3 { font-size: 16px; } service_block p { font-size: 14px; margin: 0px; margin-bottom: 20px; } #filters ul{ padding-left:0px; } .form { margin: 0 18px; } .page_section.team{ padding: 40px 0; } , #clients { padding: 40px 0; } .client_logos ul li { display: inline; margin: 0 25px; padding: 11px 0; display: inline-block; } .social_links li { float: left; } .contact_section{ margin:0; } h2, .contact_section h2 { font-size: 30px; } .page_section.contact { padding: 60px 0 50px; } .navbar-inverse .navbar-toggle .icon-bar{ background:#ED5441; } .navbar-inverse .navbar-toggle { border-color: transparent; } .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus{ background:none; outline: none; } .navStyle ul li { display: block; } .navStyle { float: right; width: 100%; text-align:center; } .navbar { border: 0px solid #fff; min-height: 40px; margin-bottom: 0px; float: right; } .navStyle ul li { display: block; margin: 0px; } .navStyle ul li:last-child { margin: 0px; } .navbar-inverse .navbar-nav > li > a { color: #222; font-size:12px; padding: 10px 11px; } } @media (max-width: 480px){ .navStyle { float: left; width: 100%; text-align: left; } .navbar { border: 0px solid #fff; min-height: 40px; margin-bottom: 0px; float: initial; width: 100%; } .team_area { width: 99%; } .read_more2{ display:none; } } .rt-box { float: left; width: 70%; text-align: left; margin-left: 10px; } img.img.img-circle.lt-box { float: left; width: 60px; height: auto; } /*! * Author: <NAME> */ body { font-family: 'Open Sans', sans-serif; background-color: #f2f2f2; font-size: 16px; color: #222; font-weight: normal; letter-spacing: 0.03em; } a { color: #7447ae; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; transition: all 0.2s; } section { width: 100%; } a:hover, a:focus, a:active { text-decoration: none; outline: none; } ul { margin: 0; padding: 0; } ul li { list-style: none; } img { max-width: 100%; } .purple { color: #7447ae; } .pink { color: #ff2a75; } .blue { color: #37a7ff; } /* Hero Section */ header.hero { background: url(../assets/progd.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; color: #fff; padding-bottom: 80px; } header.hero .hero-text { margin-top: 20%; margin-bottom: 20%; } header.hero .row { position: relative; } a.menu { position: absolute; right: 0; top: 3em; } a.menu img { max-width: 40px; } a.menu:hover { transform: translateX(-5px); -webkit-transform: translateX(-5px); } header.hero h1 { font-family: 'Montserrat', sans-serif; font-size: 4.5em; font-weight: 600; line-height: 1.4em; } header.hero h1 span, header.hero h3 { font-weight: 300; } header.hero .btn { margin: 3em 0; } ul.social-links li { display: inline-block; } ul.social-links li a { padding: 5px; opacity: 0.6; } ul.social-links li.label { font-size: 20px; opacity: 0.6; font-weight: 400; } ul.social-links li a:hover { opacity: 1; } ul.social-links li a img { max-height: 30px; } /* Case study */ .case-study .col-md-12 { transform: translateY(-80px); -webkit-transform: translateY(-80px); padding: 5em 3em; background-color: #fff; box-shadow: 0 0 100px rgba(0, 0, 0, 0.15); } h4.sub-heading { text-transform: uppercase; font-family: 'Montserrat', sans-serif; font-weight: 400; color: #4e4c58; } h1.heading { font-family: 'Montserrat', sans-serif; font-weight: 400; color: #4e4c58; font-size: 3em; position: relative; padding-bottom: 10px; } h1.heading span { font-weight: 600; } h1.heading:after { content: ''; display: block; position: absolute; bottom: -10px; left: 0; height: 3px; width: 100px; } h1.heading.purple:after { background-color: #7447ae; } h1.heading.pink:after { background-color: #ff2a75; } .swiper-container { width: 100%; height: 100%; padding: 4em 1em; } .swiper-slide { font-size: 18px; background: #fff; } .client-box { background-color: #fff; box-shadow: 0 0 20px rgba(0, 0, 0, 0.03); padding: 3.5em 2em; border-radius: 5px; border: 1px solid #eee; text-align: center; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; transition: all 0.2s; } .client-box .client-logo { max-height: 120px; } .client-box h3.title { color: #4e4c58; margin-bottom: 2em; } .client-box p.tag { color: #7447ae; font-family: 'Montserrat', sans-serif; margin-bottom: 1em; } .client-box a { color: #333; font-style: italic; opacity: 0.5; } .client-box.swiper-slide-next { -ms-transform: scale(1.15); /* IE 9 */ -webkit-transform: scale(1.15); /* Safari */ transform: scale(1.15); box-shadow: 0 0 40px rgba(0, 0, 0, 0.1); z-index: 2; } .swiper-button-next, .swiper-button-prev { width: 80px; height: 80px; background-size: 80px 80px; box-shadow: 0 0 40px rgba(0, 0, 0, 0.05); border-radius: 5em; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; transition: all 0.2s; } .swiper-button-next:hover, .swiper-button-prev:hover { box-shadow: 0 0 40px rgba(0, 0, 0, 0.1); } .swiper-button-next, .swiper-container-rtl .swiper-button-prev { background-image: url(../img/arrow-right.png); right: -40px; } .swiper-button-prev, .swiper-container-rtl .swiper-button-next { background-image: url(../img/arrow-left.png); left: -40px; } /* Testimonial */ .testimonial-box { padding: 2em; color: #fff; border-radius: 5px; font-weight: 300; min-height: 400px; } .testimonial-box h1 { font-family: 'Montserrat', sans-serif; font-weight: 400; margin-top: 0; margin-bottom: 1em; } .testimonial-box p.name { font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 1.2em; margin-bottom: 0; } .testimonial-box p.designation { font-family: 'Montserrat', sans-serif; margin-bottom: 0; } .testimonial-box.yellow { background-color: #ffbe61; } .testimonial-box.purple { background-color: #7b32d5; } .testimonial-box.blue { background-color: #37a7ff; } .testimonial-box.pink { background-color: #ff2a75; } /* Statistics */ .stats { margin: 4em 0; } .stat-box { padding: 4em; margin-top: 4em; margin-bottom: 4em; } .stat-box h1 { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 5.6em; } .stat-box h3 { font-family: 'Montserrat', sans-serif; font-weight: 600; color: #4e4c58; font-size: 2em; } /* Contact Banner */ .contact-banner { background: url(../assets/bg-pat.png) #664fee repeat; color: #fff; padding: 6em; } .contact-banner h1 { font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 3em; margin-top: 0; margin-bottom: 1em; } /* Footer */ .footer { background-color: #37324b; padding: 5em; } .footer h1 { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 3em; color: #a3a1ac; margin-bottom: 2em; } .footer h1 span { color: #fff; font-weight: 300; } .footer h1:after { content: ''; width: 80px; height: 4px; background-color: #37a7ff; display: block; position: absolute; left: 50%; transform: translate(-40px, 10px); } .footer ul.social-links li a { padding-left: 12px; padding-right: 12px; } .footer ul.social-links li a img { max-height: 40px; } /* Sub-footer */ .sub-footer { background-color: #322e45; padding: 2em; color: #a3a1ac; font-family: 'Montserrat', sans-serif; font-weight: 300; } .sub-footer p { margin: 0; font-size: 1.2em; } .sub-footer p a { color: #fff; } .sub-footer p a:hover { opacity: 0.8; } /* Main navigation */ #menu-toggle { width: 40px; clear: both; float: right; } #menu-toggle span.line { display: block; height: 4px; width: 40px; background-color: #fff; transition: 0.25s ease-in-out; } #menu-toggle .hamburger span.line { margin-bottom: 0.45em; clear: both; float: right; } #menu-toggle .hamburger span.line:nth-child(1) { width: 30px; transition-delay: 0.25s; } #menu-toggle .hamburger span.line:nth-child(2) { transition-delay: 0.325s; } #menu-toggle .hamburger span.line:nth-child(3) { width: 20px; transition-delay: 0.475s; } #menu-toggle .cross span.line { width: 0px; position: absolute; top: 10px; right: 0; } #menu-toggle .cross span.line:nth-child(1) { transform: rotate(45deg); transition-delay: 0s; } #menu-toggle .cross span.line:nth-child(2) { transform: rotate(-45deg); transition-delay: 0.25s; } #menu-toggle.open .hamburger span.line { width: 0px; } #menu-toggle.open #hamburger span:nth-child(1) { transition-delay: 0s; } #menu-toggle.open #hamburger span:nth-child(2) { transition-delay: 0.125s; } #menu-toggle.open #hamburger span:nth-child(3) { transition-delay: 0.25s; } #menu-toggle.open .cross span.line:nth-child(1) { width: 40px; transition-delay: 1s; } #menu-toggle.open .cross span.line:nth-child(2) { width: 40px; transition-delay: 1.25s; } /* Let's optimise it for mobile devices */ @media (max-width: 720px) { .btn-lg { padding: 0.8em 3em; font-size: 0.8em; } h1.heading { font-size: 2em; } header.hero { text-align: center; padding-bottom: 0; } header.hero h1 { font-size: 2em; margin-top: 1.5em; } header.hero h3 { font-size: 1.2em; line-height: 1.6em; } ul.social-links li.label { display: block; font-size: 16px; margin-bottom: 1em; } ul.social-links li a { opacity: 1; } .testimonial { padding-top: 3rem; } .case-study .col-md-12 { padding-left: 15px; padding-right: 15px; } .case-study .col-md-12 { transform: translateY(0px); -webkit-transform: translateY(0px); } /*Swiper classes*/ .client-box.swiper-slide-next { -ms-transform: scale(1); -webkit-transform: scale(1); transform: scale(1); box-shadow: none; } .swiper-button-prev, .swiper-button-next { display: none; } .swiper-container { padding: 4em 0em; } .client-box { padding: 1em; text-align: center; } .stat-box { padding: 1em; margin-top: 1em; margin-bottom: 1em; } .stat-box h1 { font-size: 3.6em; } .stat-box h3 { font-size: 1.4em; } .contact-banner { padding: 2em; } .contact-banner h1 { font-size: 2em; } .footer { padding: 1em 0em; } } /*-- License: Creative Commons Attribution 3.0 Unported License URL: http://creativecommons.org/licenses/by/3.0/ --*/ .hovereffect { width: 300%; height: 100%; float: left; /*overflow: hidden;*/ position: relative; text-align: center; cursor: default; /*background: #42b078;*/ } .hovereffect:hover img { opacity: 0.4; filter: alpha(opacity=40); -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); } .hovereffect h2 { text-transform: uppercase; color: #fff; text-align: center; position: relative; font-size: 17px; overflow: hidden; padding: 0.5em 0; background-color: transparent; } .hovereffect h2:after { position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: #fff; content: ''; -webkit-transition: -webkit-transform 0.35s; transition: transform 0.35s; -webkit-transform: translate3d(-100%,0,0); transform: translate3d(-100%,0,0); } .hovereffect:hover h2:after { -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); } .hovereffect a, .hovereffect p { color: #FFF; opacity: 0; filter: alpha(opacity=0); -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; -webkit-transform: translate3d(100%,0,0); transform: translate3d(100%,0,0); } .hovereffect:hover a, .hovereffect:hover p { opacity: 1; filter: alpha(opacity=100); -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); } img { /*border-radius: 50%;*/ -webkit-transition: -webkit-transform .8s ease-in-out; transition: transform .8s ease-in-out; /* } img:hover { -webkit-transform: rotate(360deg); transform: rotate(360deg); } .me{ } */ /* .ton { border-radius: 4px; background-color: #5cb85c; border: none; color: #FFFFFF; text-align: center; font-size: 28px; padding: 7px; width: 250px; transition: all 0.5s; cursor: pointer; margin: 5px; } */ /* .ton span { cursor: pointer; display: inline-block; position: relative; transition: 0.5s; } */ /* .ton span:after { content: '\00bb'; position: absolute; opacity: 0; top: 0; right: -20px; transition: 0.5s; } .ton:hover span { padding-right: 25px; } .ton:hover span:after { opacity: 1; right: 0; } */ } /* Modal Content */ .modal-content { position: relative; background-color: #fefefe; margin: auto; padding: 0; border: 1px solid #888; width: 80%; box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19); -webkit-animation-name: animatetop; -webkit-animation-duration: 0.4s; animation-name: animatetop; animation-duration: 0.4s } /* Add Animation */ @-webkit-keyframes animatetop { from {top:-300px; opacity:0} to {top:0; opacity:1} } @keyframes animatetop { from {top:-300px; opacity:0} to {top:0; opacity:1} } /* The Close Button */ .close { color: white; float: right; font-size: 28px; font-weight: bold; } .close:hover, .close:focus { color: #000; text-decoration: none; cursor: pointer; } .modal-header { padding: 2px 16px; background-color: #5cb85c; color: white; } .modal-body {padding: 2px 16px;} .modal-footer { padding: 2px 16px; background-color: #5cb85c; color: white; } #myImg { border-radius: 5px; cursor: pointer; transition: 0.3s; } #myImg:hover {opacity: 0.7;} /* The Modal (background) */ .modal { display: none; /* Hidden by default */ position: fixed; /* Stay in place */ z-index: 1; /* Sit on top */ padding-top: 100px; /* Location of the box */ left: 0; top: 0; width: 100%; /* Full width */ height: 100%; /* Full height */ overflow: auto; /* Enable scroll if needed */ background-color: rgb(0,0,0); /* Fallback color */ background-color: rgba(0,0,0,0.9); /* Black w/ opacity */ } /* Modal Content (image) */ .modal-content { margin: auto; display: block; width: 80%; max-width: 700px; } /* Caption of Modal Image */ #caption { margin: auto; display: block; width: 80%; max-width: 700px; text-align: center; color: #ccc; padding: 10px 0; height: 150px; } /* Add Animation */ .modal-content, #caption { -webkit-animation-name: zoom; -webkit-animation-duration: 0.6s; animation-name: zoom; animation-duration: 0.6s; } @-webkit-keyframes zoom { from {-webkit-transform:scale(0)} to {-webkit-transform:scale(1)} } @keyframes zoom { from {transform:scale(0)} to {transform:scale(1)} } /* The Close Button */ .close { position: absolute; top: 5px; right: 5px; color: #000000; font-size: 40px; font-weight: bold; transition: 0.3s; } .close:hover, .close:focus { color: #bbb; text-decoration: none; cursor: pointer; } /* 100% Image Width on Smaller Screens */ @media only screen and (max-width: 700px){ .modal-content { width: 100%; } } .li { position:relative; float:left; padding:.25em 1em; margin:1.25em 1em; text-transform:uppercase; cursor:pointer; background:rgba(255, 255, 255, .8); text-align:center; border-radius:.75em; transition-duration: .3s; transition-timing-function: ease-in-out; transition-property: background, color, padding, border-radius; box-shadow: .1em -.1em 0 .1em rgba(0, 0, 0, .2), inset 0 0 0 .15em rgba(0, 0, 0, .4), -.1em .1em 0 .1em rgba(0, 0, 0, .2) ; &:after { position:absolute; z-index:-1; content:""; right:0; border-radius:50%; box-shadow: 1em 1em 0 2em rgba(255, 255, 255, .5) ; } &:last-child:after { box-shadow:none; } &:hover { background-color:rgba(251, 93, 0, .8); padding-left:3em; > a { color:#fff; } } > a { color:#333; text-decoration:none; font-size: 1.4em; transition:color .3s ease-in-out; } } } } /* small screens */ @media screen and (max-width: 50em) { body { margin:1.5em 0; } nav[role="full-horizontal"] { ul { padding:0 .5em; } ul > li { width:100%; padding:.45em .25em; margin:0 0 .55em 0; &:after { box-shadow:none; } } } } @font-face { font-family: 'Sail-Regular'; src:url(../fonts/Sail-Regular.ttf) format('truetype'); } @font-face { font-family: 'OpenSans-Regular'; src:url(../fonts/OpenSans-Regular.ttf) format('truetype'); } body a{ transition:0.5s all; -webkit-transition:0.5s all; -moz-transition:0.5s all; -o-transition:0.5s all; -ms-transition:0.5s all; } input[type="button"]{ transition:0.5s all; -webkit-transition:0.5s all; -moz-transition:0.5s all; -o-transition:0.5s all; -ms-transition:0.5s all; } h1,h2,h3,h4,h5,h6{ padding:0 0; margin:0 0; } p{ padding:0 0; margin:0 0; } ul{ padding:0 0; margin:0 0; } body{ padding:0 0; margin:0 0; font-family: 'OpenSans-Regular' } .header { background: url(../images/apple.jpg)no-repeat 0px 0px; background-size: cover; min-height: 920px; } .header-top { padding: 2em 0; background-color: transparent; } .navbar-brand { float: left; margin-left: 0.8em; } .navbar-nav { float: right; margin: 0; } .top-menu ul li { display: inline-block; margin: 0.8em 1em; } .navbar-brand h1 a { text-decoration: none; color:lightgray; font-size: 1.2em; font-family: Garamond; text-transform: capitalize; } .navbar-default .navbar-nav > li > a { color: lightgray; } .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { color: lightgray; background-color: transparent; } .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { color: #fff; background-color: grey; } .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { color: #222; text-decoration: none; background-color: #fff; } .navbar { position: relative; min-height: 50px; margin-bottom: 0; border: 1px solid transparent; } .navbar-brand { float: left; height: 0px; padding: 0px 15px; font-size: 18px; line-height: 20px; } .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { color: #fff; background-color: #652840; } .dropdown-menu > li > a { display: block; padding: 10px 20px; } .navbar-default { border-color: transparent; !important; background-color: black; .............. } .top-menu ul li a { font-size: 1.1em; text-transform: capitalize; text-decoration: none; color: #fff; } span.menu { display: none; } .slider { margin-top:15em; text-align: center; } .slider-info h3 { font-size: 5em; color:white; font-family: 'Sail-Regular'; } .slider-info p{ font-size: 1em; font-weight: 400; color: #fff; width: 36%; line-height: 1.8em; margin: 0 auto; } a.button1 { font-size: 1em; padding: 0.5em 1em; color: #fff; margin-right: 1em; text-decoration: none; text-transform: capitalize; display: inline-block; } a.button2 { font-size: 1em; padding: 0.5em 1em; color: #fff; text-decoration: none; text-transform: capitalize; display: inline-block; } .button { margin-top: 2em; } .banner-bottom { position: relative; } .banner-grids { position: absolute; top: 156px; left: 0; width: 100%; text-align: center; background-color: none; } .banner-grid h5 { font-size: 3em; color: #fff; margin: 0.5em 0 0; } .banner-grid p { font-size: 1.2em; color: #fff; padding: 1em 0; } /* Rectangle In */ .hvr-rectangle-in { display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px rgba(0, 0, 0, 0); -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative; background: black; -webkit-transition-property: color; transition-property: color; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; } .hvr-rectangle-in:before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; background: silver; -webkit-transform: scale(1); transform: scale(1); -webkit-transition-property: transform; transition-property: transform; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; } .hvr-rectangle-in:hover, .hvr-rectangle-in:focus, .hvr-rectangle-in:active { color: white; } .hvr-rectangle-in:hover:before, .hvr-rectangle-in:focus:before, .hvr-rectangle-in:active:before { -webkit-transform: scale(0); transform: scale(0); } .about { padding: 4em 0; text-align: center; } .test1 { position:relative; overflow:hidden; } .test1 .textbox { width: 270px; height: 480px; position: absolute; top: 0px; left: 11px; margin-top: -466px; border-radius: 2px; padding: 8em 2em 0; } .test1:hover .textbox { margin-top:0; } .textbox p{ font-size: 1em; color: #fff; text-align: center; } .textbox h4 { font-size: 1.5em; text-align: center; margin-bottom:0.5em; color: #fff; font-weight: 600; text-transform: capitalize; } .textbox { -webkit-transition: all 0.7s ease; transition: all 0.7s ease; } .about-head h2 { font-size: 3.5em; color: #652840; font-family: 'Sail-Regular'; text-transform: capitalize; } .about-head p { font-size: 1em; color: #222; margin-top: 0.5em; } .about-grids { margin-top: 3em; } .hot-offer { text-align: center; padding: 4em 0; background-color: #BF9280; position: relative; } .hot-offer img { margin: 2em auto 0; border: 15px solid #fff; } .hot-offer h3 { font-size: 3.5em; color: #fff; font-family: 'Sail-Regular'; text-transform: capitalize; } .hot-offer h4 { font-size: 2.5em; color: #fff; text-transform: capitalize; margin-top: 0.2em; } .offer { background: url("../images/abs-1.png") no-repeat 0px 0px; width:159px; height: 159px; position: absolute; top: 34%; right: 28%; } .features { text-align: center; padding: 4em 0; background:#eee; } .feature { background: #fff; border: 1px solid #E9E9E9; } .features h3 { font-size: 3.5em; color: #652840; font-family: 'Sail-Regular'; text-transform: capitalize; } .feature2 p { font-size: 1em; line-height: 1.8em; color: #999; border-top: 5px solid #F2F2F2; padding: 1.5em; } .feature1 h4 { font-size: 1.5em; color: #222; padding: 1em 0 0.5em; text-transform: capitalize; } span.glyphicon.glyphicon-heart,span.glyphicon.glyphicon-camera,span.glyphicon.glyphicon-calendar,span.glyphicon.glyphicon-gift { border-radius: 4em; font-size: 3em; -webkit-border-radius: 4em; -moz-border-radius: 4em; -o-border-radius: 4em; border: 5px solid #FFF; box-shadow: 0px 0px 10px rgba(119, 119, 119, 0.25); -webkit-box-shadow: 0px 0px 10px rgba(119, 119, 119, 0.25); -moz-box-shadow: 0px 0px 10px rgba(119, 119, 119, 0.25); -o-box-shadow: 0px 0px 10px rgba(119, 119, 119, 0.25); display: inline-block; padding: 20px; background: #652840; background: -moz-linear-gradient(top, #03bcfd 0%, #019bd1 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#652840), color-stop(100%,#652840)); background: -webkit-linear-gradient(top, #652840 0%,#652840 100%); background: -o-linear-gradient(top, #03bcfd 0%,#019bd1 100%); background: -ms-linear-gradient(top, #03bcfd 0%,#019bd1 100%); background: linear-gradient(to bottom, #652840 0%,#652840 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#03bcfd', endColorstr='#019bd1',GradientType=0 ); cursor: pointer; transition: 0.5s ease; -moz-transition: 0.5s ease; -o-transition: 0.5s ease; -webkit-transition: 0.5s ease; color: #fff; } span.glyphicon.glyphicon-heart:hover { background-color: #bf9280; background-image: -moz-linear-gradient(top,#bf9280,#bf9280); background-image: -webkit-gradient(linear,0 0,0 100%,from(#bf9280),to(#bf9280)); background-image: -webkit-linear-gradient(top,#bf9280,#bf9280); background-image: -o-linear-gradient(top,#bf9280,#bf9280); background-image: linear-gradient(to bottom,#bf9280,#bf9280); background-repeat: repeat-x; } span.glyphicon.glyphicon-camera:hover{ background-color: #bf9280; background-image: -moz-linear-gradient(top,#bf9280,#bf9280); background-image: -webkit-gradient(linear,0 0,0 100%,from(#bf9280),to(#bf9280)); background-image: -webkit-linear-gradient(top,#bf9280,#bf9280); background-image: -o-linear-gradient(top,#bf9280,#bf9280); background-image: linear-gradient(to bottom,#bf9280,#bf9280); background-repeat: repeat-x; } span.glyphicon.glyphicon-calendar:hover{ background-color: #bf9280; background-image: -moz-linear-gradient(top,#bf9280,#bf9280); background-image: -webkit-gradient(linear,0 0,0 100%,from(#bf9280),to(#bf9280)); background-image: -webkit-linear-gradient(top,#bf9280,#bf9280); background-image: -o-linear-gradient(top,#bf9280,#bf9280); background-image: linear-gradient(to bottom,#bf9280,#bf9280); background-repeat: repeat-x; } span.glyphicon.glyphicon-gift:hover{ background-color: #bf9280; background-image: -moz-linear-gradient(top,#bf9280,#bf9280); background-image: -webkit-gradient(linear,0 0,0 100%,from(#bf9280),to(#bf9280)); background-image: -webkit-linear-gradient(top,#bf9280,#bf9280); background-image: -o-linear-gradient(top,#bf9280,#bf9280); background-image: linear-gradient(to bottom,#bf9280,#bf9280); background-repeat: repeat-x; } .features-grids { margin-top: 3em; } .feature1 { padding: 1.5em; } .wedding-news { padding: 4em 0; text-align: center; } .wedding-news h3 { font-size: 3.5em; color: #652840; font-family: 'Sail-Regular'; text-transform: capitalize; } .wedding-inner h5{ font-size: 1.2em; color: #222; padding:1em 0 } .wedding-inner p { font-size: 1em; color: #777; line-height:1.8em } .wedding-inner h4 a { text-decoration: none; font-size: 1em; color: #222; } .wedding-inner h4 a:hover { color: #652840; } .wedding-grid { margin-top: 3em; } .wedding-inner { margin-bottom: 2em; } a.mask { text-decoration: none; overflow: hidden; display: block; } img.zoom-img { -webkit-transform: scale(1, 1); -webkit-transition-timing-function: ease-out; -webkit-transition-duration: 250ms; -moz-transform: scale(1, 1); -moz-transition-timing-function: ease-out; -moz-transition-duration: 250ms; } img.zoom-img:hover { -webkit-transform: scale(1.1); -webkit-transition-timing-function: ease-out; -webkit-transition-duration: 750ms; -moz-transform: scale(1.1); -moz-transition-timing-function: ease-out; -moz-transition-duration: 750ms; overflow: hidden; } .indicate { padding: 4em 0; background-color: black; } span.glyphicon.glyphicon-map-marker { font-size: 2em; vertical-align: middle; margin-right: 0.5em; color:#fff; } span.glyphicon.glyphicon-earphone{ font-size: 2em; vertical-align: middle; margin-right: 0.5em; color:#fff; } span.glyphicon.glyphicon-envelope { font-size: 2em; vertical-align: middle; margin-right: 0.5em; color:#fff; } span.glyphicon.glyphicon-send { font-size: 2em; vertical-align: middle; margin-right: 0.5em; color:#fff; } .indicate-grid p a { color: #fff; text-decoration: none; } .indicate-grid p { font-size: 1em; color: #fff; } .footer-section{ padding:2em 0; text-align:center; background: black; ............................................................. } .footer-top p { font-size: 0.9em; color: #fff; font-weight: 400; } .footer-top a { font-size: 1em; color:#fff; font-weight: 400; text-transform: capitalize; } .footer-top a:hover { color: #fff; } .footer-top a { margin: 0 0.3em } /**about**/ .header.head-top { min-height: 108px; } .OurLove-grid iframe { width: 100%; height: 260px; } .OurLove-section h2 { font-size: 3.5em; color: none; font-family: 'Sail-Regular'; text-transform: capitalize; text-align: center; } .OurLove-grid1 h4 { font-size: 1.5em; color: none; } .OurLove-grid1 p { font-size: 1em; line-height: 1.8em; padding: 1em 0; color: #999; } .OurLove-grids { margin-top: 3em; } .OurLove-section { padding: 4em 0; } .team-grids { position: relative; } .team h3 { font-size: 3.5em; color: none; font-family: 'Sail-Regular'; text-transform: capitalize; } .team { padding:0em 0em 4em; text-align: center; } .team-info { margin-top: 3em; } .team-grids a { overflow: hidden; position: relative; display: block; } .captn h4 { color: #fff; margin: .1em 0 0.5em; font-size: 1.5em; } .captn p { color: #fff; font-size:1em; } .team-grids a .captn { display: inline-block; height: 100%; width: 100%; font-weight: 800; color: #ffffff; position: absolute; bottom: -80%; right: 2%; background-color: rgba(51, 51, 51, 0.68); padding: 5% 10%; text-align: center; -o-transition: all 1s ease; -moz-transition: all 1s ease; -ms-transition: all 1s ease; -webkit-transition: all 1s ease; transition: all 1s ease; } .team-grids a:hover .captn { width: 100%; bottom: 0%; padding: 40% 10%; right: 2%; } .why-choose { padding: 1em 0 4em; text-align: center; } .why-choose h3 { font-size: 3.5em; color: #652840; font-family: 'Sail-Regular'; text-transform: capitalize; } .choose-grid h4{ font-size: 1.5em; color: #bf9280; text-transform: capitalize; } .choose-grid p{ font-size:1em; line-height:1.8em; color:#999; margin:1em 0 0 } .choose-grids { margin-top: 3em; } /*-- gallery --*/ .wedding-section{ padding:4em 0; text-align:center; } .wedding-section h2 { font-size: 3.5em; color: #652840; font-family: 'Sail-Regular'; text-transform: capitalize; margin-bottom: 1em; } .gallery-grid{ border:1px solid #f4f4f4; } .gallery-grd{ padding:1em 0; position:relative; } .gallery-grd img{ width:100%; } .zoom-icon { position: absolute; opacity: 0; filter: alpha(opacity=0); -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=0)"; display: block; left: 0; top: 0px; width: 348px; height: 227px; background: rgba(101, 40, 64, 0.61)url(../images/zoom.png) center center no-repeat; cursor: pointer; transition: all .2s ease-in-out; -webkit-transition: all .2s ease-in-out; -moz-transition: all .2s ease-in-out; -o-transition: all .2s ease-in-out; } .gallery-grd.zoom-icon { top: -50px; width: 100%; height: 182px; } .gallery-grd a:hover .zoom-icon { top: 14%; opacity: 1; filter: alpha(opacity=99); -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=99)"; } .services { padding: 4em 0; text-align: center; } .services h2 { font-size: 3.5em; color: #652840; font-family: 'Sail-Regular'; text-transform: capitalize; text-align: center } .services p { font-size: 1em; color: #eee; line-height: 1.8em; } .services h4 { font-size: 1.5em; text-transform: capitalize; margin: 0.6em 0 0.4em; color: #fff; } .services-grids { margin-top: 3em; } .ser1 { background: #652840; padding: 2em; } .ser1:hover { background:#bf9280; } .professional{ padding:0em 0 4em ; } .professional h3 { font-size: 3.5em; color: #652840; font-family: 'Sail-Regular'; text-transform: capitalize; text-align: center } .professional-grid1 h4 { font-size: 1.5em; text-transform: capitalize; color: #bf9280; } .professional-grid1 p { font-size: 1em; padding: .5em 0; color: #999; line-height: 2em; } .professional-grids { margin-top: 3em; } .service-list { padding: 4em 0; background-color: #bf9280; } .service-list h3 { font-size: 3.5em; color: #fff; font-family: 'Sail-Regular'; text-transform: capitalize; text-align: center } .ser-list ul li{ list-style-type: none; } .ser-list ul li a { color: #eee; font-size: 1em; padding: 6px 24px; background: url(../images/list-arrow.png) no-repeat 0px 10px; line-height:2em; text-decoration:none; } .ser-list ul li a:hover { color: #652840; } .service-grids { margin-top: 3em; } /*-- services --*/ /*-- Typography --*/ h2.tittle { font-size: 3.5em; color: #652840; font-family: 'Sail-Regular'; text-transform: capitalize; text-align: center; } .typo { padding: 4em 0; } .show-grid [class^=col-] { background: #fff; text-align: center; margin-bottom: 10px; line-height: 2em; border: 10px solid #f0f0f0; } .show-grid [class*="col-"]:hover { background: #e0e0e0; } .grid_3{ margin-bottom:2em; } .xs h3, h3.m_1{ color:#000; font-size:1.7em; font-weight:300; margin-bottom: 1em; } .grid_3 p{ color: #777; font-size: 0.85em; margin-bottom: 1em; font-weight: 300; } .grid_4{ background:none; margin-top:50px; } .label { font-weight: 300 !important; border-radius:4px; } .grid_5 h3, .grid_5 h2, .grid_5 h1, .grid_5 h4, .grid_5 h5{ margin-bottom:1em; } .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td { border-top: none !important; } .tab-content > .active { display: block; visibility: visible; } /*--//Typography --*/ /**contact**/ .contact-map iframe { min-height:380px; width: 100%; border: none; } .contact { padding: 4em 0 } .contact_top { padding:4em 0 0em 0; } .contact h2 { font-size: 3.5em; /*color: #652840;*/ font-family: 'Sail-Regular'; text-transform: capitalize; text-align: center; } .contact-map { margin-top: 3em; } .contact-top h3 { font-size: 3.5em; /*color: #652840;*/ font-family: 'Sail-Regular'; text-transform: capitalize; } .contact_left p{ /*color:#999;*/ font-size:1em; line-height:1.8em; margin-bottom: 1em; } .form_details input[type="text"], .form_details textarea { padding: 11px; width: 51%; font-size: 1em; margin: 10px 0px; border:1px solid #bbb; color: #bbb; background: none; -webkit-appearance: none; float: left; outline: none; font-weight:400; border-radius: 0.3em; -webkit-border-radius: 0.3em; -o-border-radius: 0.3em; -moz-border-radius: 0.3em; } .form_details textarea { height:200px; resize:none; width:80%; } .form_details input[type="submit"] { margin-top:1em; color: #fff; font-size: 1em; padding: 0.7em 1em; -webkit-appearance:none; text-transform: uppercase; display: inline-block; -webkit-transition: all 0.3s ease-out; -moz-transition: all 0.3s ease-out; -ms-transition: all 0.3s ease-out; -o-transition: all 0.3s ease-out; transition: all 0.3s ease-out; font-weight:400; border: none; text-transform:uppercase; outline: none; cursor: pointer; width:20%; background:black; border-radius: 0.3em; -webkit-border-radius: 0.3em; -o-border-radius: 0.3em; -moz-border-radius: 0.3em; } .form_details input[type="submit"]:hover { text-decoration: none; color: #fff; background:#bf9280; } .sub-button { margin-bottom: 25px; } .contact_left h3,.company_ad h3 { font-size: 3.5em; color: #652840; font-family: 'Sail-Regular'; text-transform: capitalize; margin-bottom: .3em; } .company_ad p { font-size: 1em; color: #999; line-height: 1.8em; } .company_ad a { color: #999; } /**responsive**/ @media(max-width:1440px){ .offer { right: 25.2%; } } @media (max-width: 1366px){ .offer { right: 24.2%; } } @media (max-width: 1280px){ .offer { right: 22%; } } @media(max-width:1080px){ .slider-info h3 { font-size: 4em; } .slider-info p { font-size: 0.965em; width: 40% } .header.head-top { min-height: 108px; } .header { min-height: 465px; } .slider { margin-top: 7em; } .banner-grids { top: 95px; } .banner-grid h5 { font-size: 2.5em } .banner-grid p { font-size: 1em; } .about-head h2,.OurLove-section h2,.services h2,.wedding-section h2,.wedding-section h2 ,h2.tittle,.contact h2{ font-size: 3em; } .about-head p,.textbox p,.feature2 p,.wedding-inner p,.indicate-grid p,.OurLove-grid1 p,.captn p,.choose-grid p,.services p,.professional-grid1 p,.contact_left p,.company_ad p { font-size: 0.965em; } .textbox h4,.feature1 h4,.OurLove-grid1 h4,.captn h4,.choose-grid h4,.services h4,.professional-grid1 h4 { font-size: 1.4em; } .hot-offer h3,.features h3,.wedding-news h3,.team h3,.why-choose h3,.professional h3,.service-list h3,.contact_left h3, .company_ad h3 { font-size: 3em; } .hot-offer h4 { font-size: 2em; } .OurLove-grid iframe { width: 100%; height: 211px; } .offer { right: 15.3%; top: 32%; } .test1 .textbox { width: 238px; height: 480px; position: absolute; top: 0px; left: 0px; padding: 5em 2em 0; } .wedding-inner h5 { font-size: 1em; } span.glyphicon.glyphicon-map-marker { font-size: 1.5em; margin-right: 0.2em; } span.glyphicon.glyphicon-earphone{ font-size: 1.5em; margin-right: 0.2em; } span.glyphicon.glyphicon-envelope { font-size: 1.5em; margin-right: 0.2em; } span.glyphicon.glyphicon-send { font-size: 1.5em; margin-right: 0.2em; } .team-grids a .captn { right: 0%; } .team-grids a:hover .captn { right: 0%; } .ser-list ul li a { font-size: 0.965em; padding: 6px 17px; } .zoom-icon { width: 281px; height: 190px; } .form_details input[type="submit"] { width: 22%; } } @media (max-width: 991px){ .navbar-brand h1 a { font-size: 1em; } .nav > li > a { padding: 10px 10px; } .navbar-nav { margin:4px 0 0; } .navbar-brand { padding: 0px 30px; } .header-top { padding: 1.5em 0; } .slider-info h3 { font-size: 3.5em; } .slider-info p { font-size: 0.95em; width: 50%; } .button { margin-top: 1.5em; } a.button1 { font-size: 0.95em; } a.button2 { font-size: 0.95em; } .header { min-height: 440px; } .banner-grid { float: left; width: 25%; } .banner-grids { top: 66px; } .slider { margin-top: 5em; } .banner-grid h5 { font-size: 2em; } .banner-grid p { font-size: 0.95em; } .about,.hot-offer,.features,.wedding-news ,.indicate,.OurLove-section,.services,.service-list,.wedding-section,.typo,.contact{ padding: 3em 0; } .about-grid { float: left; width: 25%; } .about-head h2, .OurLove-section h2, .services h2, .wedding-section h2, .wedding-section h2, h2.tittle, .contact h2 { font-size: 2.5em; } .about-head p, .textbox p, .feature2 p, .wedding-inner p, .indicate-grid p, .OurLove-grid1 p, .captn p, .choose-grid p, .services p, .professional-grid1 p, .contact_left p, .company_ad p { font-size: 0.95em; } .textbox h4,.feature1 h4,.OurLove-grid1 h4,.captn h4,.choose-grid h4,.services h4 ,.professional-grid1 h4{ font-size: 1.3em; } .hot-offer h3,.features h3,.wedding-news h3,.team h3,.why-choose h3,.professional h3,.service-list h3,.contact_left h3, .company_ad h3 { font-size: 2.5em; } .test1 .textbox { width: 194px; height: 480px; position: absolute; top: 0px; left: -3px; padding: 2.5em 1.5em 0; } .hot-offer h4 { font-size: 1.5em; } .offer { right: 3.6%; top: 29.8%; } .feature-grid { float: left; width: 50%; } .feature-grid:nth-child(3) { margin-top: 1em; } .feature-grid:nth-child(4) { margin-top: 1em; } .weeding-new { float: left; width: 33.3%; } .header.head-top { min-height: 90px; } .indicate-grid { float: left; width: 50%; } .indicate-grid:nth-child(3) { margin-top: 1em; } .indicate-grid:nth-child(4) { margin-top: 1em; } .OurLove-grid { float: left; width: 40%; } .OurLove-grid iframe { width: 100%; height: 154px; } .OurLove-grid1 { float: left; width: 60%; } .team { padding: 0em 0em 3em; } .team-grids { float: left; width: 25%; } .team-grids a .captn { bottom: -74%; } .team-grids a:hover .captn { padding: 25% 10%; } .why-choose { padding: 1em 0 3em; } .choose-grid { float: left; width: 33.3%; } .services-grid { float: left; width: 33.3%; } .ser1 { background: #652840; padding: 1em; } .professional-grid { float: left; width: 40%; } .professional-grid1 { float: left; width: 60%; } .ser-list { float: left; width: 33.3%; } .ser-list ul li a { font-size: 0.9em; padding: 6px 1px; } .gallery-grid { float: left; width: 33.3%; } .zoom-icon { width: 207px; height: 142px; } .label { display: inline; padding: .2em .6em .3em; font-size: 61%; } .contact-map iframe { min-height: 300px; } .contact_left { float: left; width: 60%; } .contact_right { float: left; width: 40%; } .form_details input[type="text"], .form_details textarea { padding: 8px; width: 80%; font-size: 0.95em; } .form_details textarea { height: 150px; } .form_details input[type="submit"] { width: 30%; font-size: 0.95em; } .contact_top { padding: 3em 0 0em 0; } } @media (max-width: 768px){ .offer { right: 3.6%; top: 28.5%; } } @media (max-width: 640px){ .navbar-nav { float: none; margin: 0; width: 100%; text-align: center; } .navbar-default .navbar-collapse, .navbar-default .navbar-form { border-color: #652840; } .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { background-color: #652840; } .navbar-default .navbar-toggle { border-color: #fff; } .navbar-default .navbar-toggle .icon-bar { background-color: #fff; } .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { color: #fff; background-color: transparent; } .navbar-default .navbar-nav .open .dropdown-menu > li > a { color: #fff; } .header-top { padding: 1em 0; } .navbar-brand { padding: 0px 0px; } .header { min-height: 400px; } .slider-info h3 { font-size: 3em; } .slider-info p { width: 60%; } .slider { margin-top: 3em; } .banner-grids { position: inherit; } .OurLove-grid iframe { width: 100%; height: 313px; } .banner-grid h5 { font-size: 1.5em; } .about, .hot-offer, .features, .wedding-news, .indicate, .OurLove-section, .services, .service-list, .wedding-section, .typo, .contact { padding: 2em 0; } .hot-offer h3, .features h3, .wedding-news h3, .team h3, .why-choose h3, .professional h3, .service-list h3, .contact_left h3, .company_ad h3 { font-size: 2em; } .textbox h4, .feature1 h4, .OurLove-grid1 h4, .captn h4, .choose-grid h4, .services h4, .professional-grid1 h4 { font-size: 1.2em; } .about-grids,.features-grids,.wedding-grid,.OurLove-grids,.team-info,.choose-grids,.services-grids,.professional-grids,.service-grids,.contact-map { margin-top: 2em; } .professional { padding: 0em 0 2em; } .about-grid { float: left; width: 50%; } .test1 .textbox { width: 301px; height: 480px; position: absolute; top: 0px; left: 0px; padding: 9em 3em 0; } .about-grid:nth-child(3){ margin-top:1em } .about-grid:nth-child(4){ margin-top:1em } .hot-offer h4 { font-size: 1.3em; } .offer { right: 2.4%; top: 27.6%; } .wedding-inner h4 a { font-size: 0.85em; } span.glyphicon.glyphicon-heart, span.glyphicon.glyphicon-camera, span.glyphicon.glyphicon-calendar, span.glyphicon.glyphicon-gift { font-size: 2em; } .header.head-top { min-height: 80px; } .OurLove-grid { width: 100%; } .OurLove-grid1 { width: 100%; margin-top:1em; } .OurLove-grid1 p { padding: 0.5em 0; } .team-grids { float: left; width: 50%; } .team-grids a .captn { right: 6%; bottom: -83%; } .team-grids a:hover .captn { right: 6%; padding: 35% 10%; } .team-grids:nth-child(3) { margin-top: 1em; } .team-grids:nth-child(4) { margin-top: 1em; } .ser1 { background: #652840; padding: 0.55em; } .professional-grid { width: 100%; } .professional-grid img { margin: 0 auto; } .professional-grid1 { width: 100%; text-align: center; margin-top: 1em; } .ser-list { width: 100%; } .ser-list:nth-child(2) { margin-top: 1em; } .ser-list:nth-child(3) { margin-top: 1em; } .zoom-icon { width: 165px; height: 117px; } .label { display: inline; padding: .2em .6em .3em; font-size: 50%; } .pagination { margin: 10px 0; } .pagination-lg > li > a, .pagination-lg > li > span { padding: 10px 16px; font-size: 10px; } .grid_4 { background: none; margin-top: 25px; } .contact_top { padding: 2em 0 0em 0; } .form_details input[type="submit"] { width: 37%; } } @media (max-width: 480px){ .navbar-brand h1 a { font-size: 0.9em; } .header { background: url(../images/machine.jpg)no-repeat -90px 0px; background-size: cover; } .slider-info h3 { font-size: 2.5em; } .slider-info p { width: 80%; font-size: 0.92em; } .banner-grid { float: left; width: 50%; } .about{ padding:6em 0 2em; } .banner-grid p { font-size: 0.92em; } .banner-grid h5 { font-size: 1.2em; } .about-head h2, .OurLove-section h2, .services h2, .wedding-section h2, .wedding-section h2, h2.tittle, .contact h2 { font-size: 2em; } .hot-offer, .features, .wedding-news, .indicate, .OurLove-section, .services, .service-list, .wedding-section, .typo, .contact { padding: 1em 0; } .OurLove-grid iframe { width: 100%; height: 235px; } .test1 .textbox { width: 224px; height: 480px; position: absolute; top: 0px; left: 0px; padding: 4em 2em 0; } .about-head p, .textbox p, .feature2 p, .wedding-inner p, .indicate-grid p, .OurLove-grid1 p, .captn p, .choose-grid p, .services p, .professional-grid1 p, .contact_left p, .company_ad p { font-size: 0.92em; } .offer { display: none; } .hot-offer img { margin: 1em auto 0; border: 4px solid #fff; } .hot-offer h4 { font-size: 1.2em; } .weeding-new { width: 100%; } .wedding-inner { margin-bottom: 1em; } .weeding-new:nth-child(2) { margin-top: 1em; } .weeding-new:nth-child(3) { margin-top: 1em; } .wedding-inner h5 { font-size: 0.95em; padding: 0.8em; } .indicate-grid { width: 100%; } .indicate-grid:nth-child(2) { margin-top: 1em; } .indicate-grid:nth-child(3) { margin-top: 1em; } .indicate-grid:nth-child(4) { margin-top: 1em; } .footer-section { padding: 1em 0; } .header.head-top { background-size: cover; background: url(../images/banner.jpg)no-repeat 0px 0px; } .team-grids a .captn { right: 0%; bottom: -80%; } .team-grids a:hover .captn { right: 0%; } .team { padding: 0em 0em 1em; } .choose-grid { width: 100%; } .choose-grid:nth-child(2) { margin-top: 1em; } .choose-grid:nth-child(3) { margin-top: 1em; } .services-grid { width: 100%; } .services-grid:nth-child(2) { margin-top: 1em; } .services-grid:nth-child(3) { margin-top: 1em; } .professional { padding: 0em 0 1em; } .zoom-icon { width: 117px; height: 87px; } .typo h1 { font-size: 28px; } .typo h2 { font-size: 25px; } .grid_4 { margin-top: 20px; } .contact-map iframe { min-height: 250px; } .contact_left { width: 100%; } .contact_left { width: 100%; } .form_details input[type="text"], .form_details textarea { width: 100%; } address { margin-bottom: 5px; } } @media (max-width: 320px){ .navbar-brand h1 a { font-size: 0.8em; } .header-top { padding: 0.5em 0; } .slider-info p { width: 100%; font-size: 0.9em; } .button { margin-top: 1em; } a.button1 { font-size: 0.92em; } a.button2 { font-size: 0.92em; } .banner-grid h5 { font-size: 1.3em; } .banner-grid p { font-size: 0.9em; } .about-head h2, .OurLove-section h2, .services h2, .wedding-section h2, .wedding-section h2, h2.tittle, .contact h2 { font-size: 2.3em; } .about-grid { width: 100%; padding: 0; } .about-grid:nth-child(2) { margin-top: 1em; } .about-grid:nth-child(3) { margin-top: 1em; } .about-grid:nth-child(4) { margin-top: 1em; } .test1 .textbox { width: 274px; height: 480px; position: absolute; top: 0px; left: 0px; padding: 8em 2em 0; } .hot-offer h3, .features h3, .wedding-news h3, .team h3, .why-choose h3, .professional h3, .service-list h3, .contact_left h3, .company_ad h3 { font-size: 2.2em; } .feature-grid { width: 100%; } .feature-grid:nth-child(2) { margin-top: 1em; } .textbox h4, .feature1 h4, .OurLove-grid1 h4, .captn h4, .choose-grid h4, .services h4, .professional-grid1 h4 { font-size: 1.3em; } .about-grids, .features-grids, .wedding-grid, .OurLove-grids, .team-info, .choose-grids, .services-grids, .professional-grids, .service-grids, .contact-map { margin-top: 1em; } .feature-grid { padding: 0; } .weeding-new { padding: 0; } .OurLove-grid { padding: 0; } .OurLove-grid1 { padding: 0; } .team-grids { width: 100%; } .team-grids img { margin: 0 auto; } .team-grids:nth-child(2) { margin-top: 1em; } .team-grids a .captn { right: 0%; bottom: -82%; } .choose-grid { padding: 0; } .services-grid { padding: 0; } .professional-grid { padding: 0; } .professional-grid1 { padding: 0; } .gallery-grid { width: 100%; padding: 0; } .zoom-icon { width: 270px; height: 185px; } .wedding-section h2 { margin-bottom: 0.5em; } .header.head-top { min-height: 360px; } .contact_left { padding: 0; } .contact_right { padding: 0; } .form_details input[type="submit"] { width: 44%; } .OurLove-grid iframe { width: 100%; height: 150px; } } .worked{ width: 160px; }
0.264833
0.054525
.template-iquest-announcement { width: 1920px; height: 1080px; position: relative; padding-top: 135px; padding-left: 105px; color: #444; font-family: 'Segoe UI', sans-serif; cursor: default; display: flex; flex-flow: column; } .template-iquest-announcement .announcement-picture-container .announcement-picture { top: 0; right: 55px; height: 1080px; position: absolute; z-index: -2; } .template-iquest-announcement .announcement-picture-container .announcement-picture-cut-left { top: -5px; right: 600px; width: 10000px; height: 1090px; background: #fff; position: absolute; z-index: -1; transform: skewX(-10deg); } .template-iquest-announcement .announcement-picture-container .announcement-picture-cut-right { top: -5px; left: 1770px; width: 10000px; height: 1090px; background: #fff; position: absolute; z-index: -1; transform: skewX(-10deg); } .template-iquest-announcement .announcement-title { width: 1260px; font-size: 80px; font-weight: 500; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; margin-bottom: 70px; } .template-iquest-announcement .announcement-body { width: 1080px; display: flex; flex-flow: column; flex: 1; } .template-iquest-announcement .announcement-body a { color: #0095d6; text-decoration: none; } .template-iquest-announcement .announcement-body .announcement-audience { margin-bottom: 50px; } .template-iquest-announcement .announcement-body .announcement-audience .announcement-audience-label { font-size: 30px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .template-iquest-announcement .announcement-body .announcement-audience .announcement-audience-text { color: #0095d6; font-size: 45px; font-weight: 500; letter-spacing: 3px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .template-iquest-announcement .announcement-body .announcement-content { font-size: 36px; font-weight: 200; word-wrap: break-word; overflow: hidden; } .template-iquest-announcement .announcement-body .announcement-responsible .announcement-responsible-label { margin-top: 50px; font-size: 30px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .template-iquest-announcement .announcement-body .announcement-responsible .announcement-responsible-name { color: #0095d6; font-size: 45px; font-weight: 500; letter-spacing: 3px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .template-iquest-announcement .announcement-body .announcement-responsible .announcement-responsible-desc { font-size: 30px; font-weight: 500; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .template-iquest-announcement .announcement-body .announcement-responsible .announcement-responsible-contact { margin-top: 50px; font-size: 30px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .template-iquest-announcement .announcement-qr-logo { right: 15px; bottom: 15px; width: 140px; position: absolute; } .template-iquest-announcement .announcement-qr-logo .announcement-qr { display: block; width: 100px; height: 100px; margin: 20px auto; } .template-iquest-announcement .announcement-qr-logo .announcement-logo { display: block; width: 125px; height: 31px; margin: 0 auto; background-image: url("[RELATIVE-PATH]/logo.png"); background-size: cover; }
public/modules/slideshows/slideTemplates/iQuestAnnouncement/slide.css
.template-iquest-announcement { width: 1920px; height: 1080px; position: relative; padding-top: 135px; padding-left: 105px; color: #444; font-family: 'Segoe UI', sans-serif; cursor: default; display: flex; flex-flow: column; } .template-iquest-announcement .announcement-picture-container .announcement-picture { top: 0; right: 55px; height: 1080px; position: absolute; z-index: -2; } .template-iquest-announcement .announcement-picture-container .announcement-picture-cut-left { top: -5px; right: 600px; width: 10000px; height: 1090px; background: #fff; position: absolute; z-index: -1; transform: skewX(-10deg); } .template-iquest-announcement .announcement-picture-container .announcement-picture-cut-right { top: -5px; left: 1770px; width: 10000px; height: 1090px; background: #fff; position: absolute; z-index: -1; transform: skewX(-10deg); } .template-iquest-announcement .announcement-title { width: 1260px; font-size: 80px; font-weight: 500; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; margin-bottom: 70px; } .template-iquest-announcement .announcement-body { width: 1080px; display: flex; flex-flow: column; flex: 1; } .template-iquest-announcement .announcement-body a { color: #0095d6; text-decoration: none; } .template-iquest-announcement .announcement-body .announcement-audience { margin-bottom: 50px; } .template-iquest-announcement .announcement-body .announcement-audience .announcement-audience-label { font-size: 30px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .template-iquest-announcement .announcement-body .announcement-audience .announcement-audience-text { color: #0095d6; font-size: 45px; font-weight: 500; letter-spacing: 3px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .template-iquest-announcement .announcement-body .announcement-content { font-size: 36px; font-weight: 200; word-wrap: break-word; overflow: hidden; } .template-iquest-announcement .announcement-body .announcement-responsible .announcement-responsible-label { margin-top: 50px; font-size: 30px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .template-iquest-announcement .announcement-body .announcement-responsible .announcement-responsible-name { color: #0095d6; font-size: 45px; font-weight: 500; letter-spacing: 3px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .template-iquest-announcement .announcement-body .announcement-responsible .announcement-responsible-desc { font-size: 30px; font-weight: 500; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .template-iquest-announcement .announcement-body .announcement-responsible .announcement-responsible-contact { margin-top: 50px; font-size: 30px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .template-iquest-announcement .announcement-qr-logo { right: 15px; bottom: 15px; width: 140px; position: absolute; } .template-iquest-announcement .announcement-qr-logo .announcement-qr { display: block; width: 100px; height: 100px; margin: 20px auto; } .template-iquest-announcement .announcement-qr-logo .announcement-logo { display: block; width: 125px; height: 31px; margin: 0 auto; background-image: url("[RELATIVE-PATH]/logo.png"); background-size: cover; }
0.502197
0.073563
body { background-color: #Eae9eb; font-family: 'Roboto'; font-size: 15px; } .header { display: flex; background-color: rgb(85, 85, 85, 0.6); height: 50px; margin-top: -1%; } .logo { display: flex; margin-left: 3%; padding: 10px; } .logo h5 { margin-top: 6px; margin-left: 10%; } .list ul { display: flex; list-style: none; margin-left: 85%; margin-top: -1%; } li { padding: 0px 27px; height: 40px; padding-top: 20px; } .premium { color: white; margin-left: 5%; padding: 40px; } .premium h2 button { background-color: #F19201; border: none; margin-top: 5%; width: 90px; height: 23px; color: white; } .section1 { background-image: url("images/image2.png"); background-size: cover; height: 400px; } .service { text-align: center; } #Order { display: flex; margin-left: 21%; height: 200px; } .one { border: solid grey; text-align: center; margin: 1%; background-color: white; width: 230px; } .BTN { background-color: #F19201; font-size: 30px; color: white; border-radius: 50%; margin-top: 7%; border: none; height: 40px; width: 40px; } .section3 { display: flex; padding-top: 5%; } #wood { text-align: center; } .Food { border: solid grey; display: flex; margin: 3%; margin-top: -2px; padding: 2%; background-color: white; } #menu1 { display: flex; } #menu2 { display: flex; } .Menu { margin-left: 20%; padding-top: 60px; } .meal { padding-left: 4%; margin-top: -8%; } .Review { padding-left: 2%; text-align: center; background-color: black; color: white; width: 655px; padding-top: 2%; } .section4 { margin-top: 5%; } .section5 { background-image: url(images/image8\ \(2\).png); background-size: cover; color: white; height: 300px; width: 1280px; text-align: center; margin-top: 4%; padding-top: 10%; } .section5 button { background-color: transparent; color: white; border: solid white; border-width: 1px; width: 100px; height: 25px; } .hello { text-align: center; background-color: black; color: white; margin-top: -10px; height: 50px; padding-top: 10px; font-style: italic; }
index.css
body { background-color: #Eae9eb; font-family: 'Roboto'; font-size: 15px; } .header { display: flex; background-color: rgb(85, 85, 85, 0.6); height: 50px; margin-top: -1%; } .logo { display: flex; margin-left: 3%; padding: 10px; } .logo h5 { margin-top: 6px; margin-left: 10%; } .list ul { display: flex; list-style: none; margin-left: 85%; margin-top: -1%; } li { padding: 0px 27px; height: 40px; padding-top: 20px; } .premium { color: white; margin-left: 5%; padding: 40px; } .premium h2 button { background-color: #F19201; border: none; margin-top: 5%; width: 90px; height: 23px; color: white; } .section1 { background-image: url("images/image2.png"); background-size: cover; height: 400px; } .service { text-align: center; } #Order { display: flex; margin-left: 21%; height: 200px; } .one { border: solid grey; text-align: center; margin: 1%; background-color: white; width: 230px; } .BTN { background-color: #F19201; font-size: 30px; color: white; border-radius: 50%; margin-top: 7%; border: none; height: 40px; width: 40px; } .section3 { display: flex; padding-top: 5%; } #wood { text-align: center; } .Food { border: solid grey; display: flex; margin: 3%; margin-top: -2px; padding: 2%; background-color: white; } #menu1 { display: flex; } #menu2 { display: flex; } .Menu { margin-left: 20%; padding-top: 60px; } .meal { padding-left: 4%; margin-top: -8%; } .Review { padding-left: 2%; text-align: center; background-color: black; color: white; width: 655px; padding-top: 2%; } .section4 { margin-top: 5%; } .section5 { background-image: url(images/image8\ \(2\).png); background-size: cover; color: white; height: 300px; width: 1280px; text-align: center; margin-top: 4%; padding-top: 10%; } .section5 button { background-color: transparent; color: white; border: solid white; border-width: 1px; width: 100px; height: 25px; } .hello { text-align: center; background-color: black; color: white; margin-top: -10px; height: 50px; padding-top: 10px; font-style: italic; }
0.31363
0.083628
.about-description { padding: 50px 0; } .about-description img { width: 100%; height: 600px; object-fit: cover; } @media (max-width: 992px) { .about-description img { height: 250px; margin-top: 15px; } } .about-description .text { margin-right: 35px; } @media (max-width: 992px) { .about-description .text { margin-right: 0; } } .about-description .text h4 { color: #707070; font-size: 25px; font-weight: 500; margin-bottom: 20px; } .about-description .text p { color: #707070; font-weight: 500; } .about-lightbox { padding: 50px 0 0 0; } .about-lightbox a { display: block; } .about-lightbox a img { width: 100%; height: 350px; object-fit: cover; border: 1px solid #0EA15F; padding: 10px; } @media (max-width: 992px) { .about-lightbox a img { height: 250px; } } .about-mission { background-color: #0EA15F; } .about-mission .text { border-right: 3px solid #fff; padding: 25px; text-align: center; } .about-mission .text.last { border-right: none; } .about-mission .text h4 { color: #fff; font-size: 30px; font-weight: 700; text-transform: uppercase; position: relative; display: inline-block; margin-bottom: 15px; } .about-mission .text h4::before { content: ""; width: 70%; height: 1px; background-color: #fff; display: block; position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%); } .about-mission .text p { color: #fff; font-size: 14px; font-weight: 300; } .about-count { padding: 30px 0; } .about-count .item { display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; } @media (max-width: 992px) { .about-count .item { margin-bottom: 15px; } } .about-count .item h4 { color: #0EA15F; font-size: 45px; font-weight: 600; } .about-count .item p { color: #0EA15F; font-size: 16px; font-weight: 400; text-transform: uppercase; margin: 0; } .about-section-01 { position: relative; padding: 80px 0; } .about-section-01 .bg { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; z-index: -1; } .about-section-01 .item { background-color: #fff; padding: 25px 25px 15px 25px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-direction: column; min-height: 250px; position: relative; } @media (max-width: 992px) { .about-section-01 .item { margin-bottom: 15px; } } .about-section-01 .item.second { background-color: #000; } .about-section-01 .item.second .info h4 { color: #fff; } .about-section-01 .item.second .info p { color: #fff; } .about-section-01 .item.second .button { color: #fff; border-color: #fff; } .about-section-01 .item .text { display: flex; align-items: center; justify-content: center; } @media (max-width: 992px) { .about-section-01 .item .text { flex-direction: column; } } .about-section-01 .item .text img { width: 80px; height: 80px; object-fit: contain; margin-right: 20px; } @media (max-width: 992px) { .about-section-01 .item .text img { margin-bottom: 15px; } } .about-section-01 .item .text .info h4 { font-size: 18px; font-weight: 500; margin-bottom: 5px; } .about-section-01 .item .text .info p { font-weight: 400; font-size: 14px; max-width: 500px; } @media (max-width: 992px) { .about-section-01 .item .text .info p { margin-bottom: 20px; } } .about-section-01 .item .button { display: table; margin-left: auto; position: absolute; bottom: 20px; right: 20px; color: #000; border-bottom: 1px solid #000; transition: all ease-in-out 300ms; } .about-section-01 .item .button:hover i { margin-left: 15px; } .about-section-01 .item .button i { margin-left: 7px; transition: all ease-in-out 300ms; } .home-title { position: relative; display: flex; align-items: center; justify-content: center; } .home-title.about .title h4 { color: #707070; font-size: 30px; } .home-title img { width: 100%; height: 300px; object-fit: cover; } .home-title .title { position: absolute; text-align: center; } .home-title .title h4 { color: #000; font-size: 45px; font-weight: 700; margin-bottom: 20px; } @media (max-width: 992px) { .home-title .title h4 { font-size: 25px; } } .home-title .title p { color: #707070; font-size: 18px; font-weight: 500; max-width: 500px; margin: 0 auto; } @media (max-width: 992px) { .home-title .title p { font-size: 14px; } } .color-need{ color: #0EA15F !important; } /* consultancy */ .consultancy { padding:20px ; } .consultancy .title h2{ text-align:left !important; font-size: 45px; font-weight: 700; letter-spacing: -1px; color:#0EA15F; margin-bottom: 30px; text-transform: uppercase; } .consultancy picture { width: 100%; height: 100%; display: block; position: relative; margin-bottom: 35px; } .consultancy picture::before { content: ""; width: 100%; height: 100%; display: block; position: absolute; top: 0; left: 0; } .consultancy picture img { width: 100%; height: 230px; object-fit: cover; } .consultancy .text { text-align: center; } .consultancy .text img { height: 120px; } .consultancy .text p { color: #707070; font-weight: 500; } /* consultancy ends */ /*construction starts here */ .construction img { width: 100%; height: 400px; object-fit: cover; } @media (max-width: 992px) { .construction img { height: 250px; margin-bottom: 15px; } } .construction .text { margin-left: 45px; } @media (max-width: 992px) { .construction .text { margin-left: 0; } } .construction .text h4 { color: #009382; font-size: 25px; font-weight: 500; margin-bottom: 15px; } .construction .text p { color: #707070; font-size: 14px; font-weight: 500; } /* construction ends here */ /* global-banner */ .global-banner { position: relative; margin-top: -130px; z-index: -1; } .global-banner::before { content: ""; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); display: block; position: absolute; top: 0; left: 0; } .global-banner img { width: 100%; height: 400px; object-fit: cover; } .global-banner h2 { position: absolute; top: 50%; left: 0; right: 0; width: 100%; font-size: 55px; color: #fff; } /* global-banner ends */ /* Real Estate starts from here */ .estates-detail { padding: 70px 0; } .estates-detail img { width: 100%; height: 400px; object-fit: cover; } @media (max-width: 992px) { .estates-detail img { height: 250px; margin-bottom: 15px; } } .estates-detail .text { margin-left:auto; margin-right:auto; } @media (max-width: 992px) { .estates-detail .text { margin-left: 0; } } .estates-detail .text h4 { color: #009382; font-size: 25px; font-weight: 500; margin-bottom: 15px; } .estates-detail .text p { color: #707070; font-size: 14px; font-weight: 500; margin-bottom: 20px; } .estates-detail .text ul li { color: #707070; font-size: 14px; font-weight: 500; margin-bottom: 10px; } .estates-detail .text ul li i { color: #009382; font-size: 18px; margin-right: 7px; } /* Real Estate ends here */ /* Affiliate Starts from here */ .affiliate { background: black; } .affiliate .text { margin-right: 45px; } @media (max-width: 992px) { .affiliate .text { margin-right: 0; } } .affiliate .text h4 { font-size: 35px; font-weight: 700; color: #333; margin-bottom: 25px; } .affiliate .text ul li { margin-bottom: 10px; list-style-type: disc; color: #707070; font-size: 16px; font-weight: 500; } @media (max-width: 992px) { .affiliate .text ul li { list-style-type: none; margin-bottom: 15px; } } @media (max-width: 992px) { .affiliate .text ul li br { display: none; } } .affiliate .text ul li a { color: #333; font-weight: 700; } .affiliate .text h2 { color: #000; font-size: 65px; font-weight: 700; margin-top: 70px; position: relative; } .affiliate .text h2::before { content: ""; width: 15%; height: 7px; background-color: #000; display: block; position: absolute; bottom: -15px; left: 5px; } @media (max-width: 992px) { .affiliate .text h2 { font-size: 45px; margin-bottom: 30px; margin-top: 30px; } } .affiliate form label { color: #333; font-size: 14px; font-weight: 500; margin-bottom: 5px; } .affiliate form input{ width: 100%; border: none; border: 3px solid black; border-radius: 0px 0px 5px 5px; height: 40px; padding: 0 12px; margin-bottom: 15px; } .affiliate form textarea{ width: 100%; border: none; border: 3px solid black; height: 120px; padding: 12px; margin-bottom: 15px; resize: none; } .affiliate-button { height: 40px; width: 60%; background-color:#0EA15F; border: none; color: #fff; font-weight: 500; } /* Affiliate Ends here */ /* Application form*/ .info p { text-align:center; color: #999; text-transform:none; font-weight:600; font-size:15px; margin-top:2px } .info i { color:#F6AA93; } .application-form h3 { font-size: 18px; background: #0EA15F none repeat scroll 0% 0%; color: rgb(255, 255, 255); padding: 22px 25px; border-radius: 5px 5px 0px 0px; margin: auto; text-shadow: none; text-align:center; } .application-form { border-radius: 5px; max-width:700px; width:100%; margin: 5% auto; background-color: #FFFFFF; overflow: hidden; } p span { color: #F00; } p { margin: 0px; font-weight: 500; line-height: 2; color:#333; } input{ border-radius: 0px 5px 5px 0px; border: 1.5px solid black; margin-bottom: 15px; width: 75%; height: 40px; justify-content: center; padding: 0px 15px; } select { border-radius: 0px 5px 5px 0px; border: 1.5px solid black; margin-bottom: 15px; width: 75% !important; height: 40px !important; justify-content: center; padding: 0px 15px; } a { text-decoration:inherit } .form-group { overflow: hidden; clear: both; } .icon-case { width: 35px; float: left; border-radius: 5px 0px 0px 5px; background:#eeeeee; border: 1.4px solid black; height:42px; position: relative; text-align: center; line-height:40px; } i { color:#0EA15F; } .contentform { padding: 40px 30px; } .bouton-contact{ background-color: #0EA15F; color: #FFF; text-align: center; width: 100%; border:0; padding: 17px 25px; border-radius: 0px 0px 5px 5px; cursor: pointer; margin-top: 40px; font-size: 18px; } .leftcontact { width:49.5%; float:left; border-right: 1px dotted #CCC; box-sizing: border-box; padding: 0px 15px 0px 0px; } .rightcontact { width:49.5%; float:right; box-sizing: border-box; padding: 0px 0px 0px 15px; } .validation { display:none; margin: 0 0 10px; font-weight:400; font-size:13px; color: #DE5959; } /*Application Form ends here*/ /* book-inspection */ .consultants-form .title { display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; margin-bottom: 20px; } .consultants-form .title h4 { color: #009382; font-size: 35px; font-weight: 700; margin-bottom: 15px; } .consultants-form .title p { color: #707070; max-width: 550px; } .consultants-form .title p span { color: red; } .consultants-form form label { display: block; margin-bottom: 5px; color: #333; font-size: 14px; font-weight: 500; text-transform: uppercase; } .consultants-form form label span { color: red; } .consultants-form form input[type=text], .consultants-form form input[type=email], .consultants-form form input[type=date] { width: 100%; height: 40px; padding: 0 12px; border: none; border: 1px solid #ccc; margin-bottom: 15px; } .consultants-form form textarea { width: 100%; height: 120px; padding: 12px; border: none; border: 1px solid #ccc; resize: none; margin-bottom: 15px; } .consultants-form form .button { width: 100%; height: 45px; background-color: #009382; color: #fff; border: none; font-size: 18px; font-weight: 500; text-align: center; max-width: 150px; cursor: pointer !important; margin-top: 15px; pointer-events: inherit !important; } .consultants-form form .alt-title { font-size: 14px; font-weight: 500; color: #333; margin: 25px 0 10px 0; } .consultants-form form .alt-title span { color: red; } .consultants-form form .second-title { text-align: center; color: #009382; font-size: 25px; padding: 25px 0; } .consultants-form form .input-checkbox { display: flex; align-items: center; } .consultants-form form .input-checkbox input { margin-right: 10px; } .consultants-form form .input-checkbox label { font-size: 12px; margin-bottom: 0; } .consultants-form form .input-radio-status { display: flex; align-items: center; padding-bottom: 25px; } .consultants-form form .input-radio-status h4 { font-size: 14px; font-weight: 400; color: #333; margin-right: 25px; min-width: 220px; } .consultants-form form .input-radio-status .item { display: flex; align-items: center; margin-right: 10px; margin-bottom: 30px; } .consultants-form form .input-radio-status .item label { margin: 0; cursor: pointer; white-space: nowrap; } .consultants-form form .input-radio-status .item input { margin-left: 8px; } .consultants-form form .input-title { font-weight: 700; font-size: 20px; color: #333; margin: 0; margin: 15px 0; } .consultants-form form .input-status { display: flex; align-items: center; } @media (max-width: 992px) { .consultants-form form .input-status { width: 100%; flex-wrap: wrap; } } .consultants-form form .input-status .item { display: flex; align-items: center; margin-right: 15px; margin-bottom: 30px; } @media (max-width: 992px) { .consultants-form form .input-status .item { margin-right: 10px; } } .consultants-form form .input-status .item label { margin: 0; cursor: pointer; } @media (max-width: 992px) { .consultants-form form .input-status .item label { font-size: 14px; white-space: nowrap; } } .consultants-form form .input-status .item input { margin-left: 8px; } .consultants-form .accordion { margin-top: 55px; } .consultants-form .accordion .terms { font-size: 20px; font-weight: 500; color: #009382; margin-bottom: 25px; } .consultants-form .accordion .accordion-item { border: none; border-bottom: 1px solid #ddd; padding: 10px 0; } @media (max-width: 992px) { .consultants-form .accordion .accordion-item { padding: 5px 0; } } .consultants-form .accordion .accordion-item .accordion-header button { background-color: transparent !important; box-shadow: none; font-weight: 700; font-size: 16px; transition: all ease-in-out 300ms; padding: 10px 0 !important; color: #000; } @media (max-width: 992px) { .consultants-form .accordion .accordion-item .accordion-header button { font-size: 14px; } } .consultants-form .accordion .accordion-item .accordion-header button:focus { color: #009382; border-color: #009382; } .consultants-form .accordion .accordion-item .accordion-body { margin-bottom: 10px; font-size: 14px; font-weight: 400; color: #333; } @media (max-width: 992px) { .consultants-form .accordion .accordion-item .accordion-body { font-size: 14px; } } /* book inspection ends */ /* Blog starts here */ .blog { padding: 70px 0; } .blog .item { display: flex; flex-direction: column; margin-bottom: 25px; transition: all ease-in-out 300ms; box-shadow: 0 4px 5px 3px rgba(0, 0, 0, 0.1); padding: 25px; } .blog .item:hover { transform: scale(1.03); } .blog .item img { width: 100%; height: 250px; object-fit: cover; margin-bottom: 15px; } .blog .item .text h4 { font-size: 20px; font-weight: 500; color: #333; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; } .blog .item .text p { color: #707070; font-size: 14px; font-weight: 500; margin: 0; margin-bottom: 25px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; } .blog .item .text .button { background-color: #0EA15F; color: #fff; padding: 8px 16px; min-width: 120px; text-align: center; margin-top: auto; display: table; font-weight: 500; } .blog .item .text .button:hover i { margin-left: 15px; } .blog .item .text .button i { margin-left: 7px; transition: all ease-in-out 300ms; } .blog-detail { padding: 70px 0; } .blog-detail img { width: 100%; height: 350px; object-fit: cover; } @media (max-width: 992px) { .blog-detail img { height: 250px; margin-bottom: 15px; } } .blog-detail .text { margin-left: 45px; } @media (max-width: 992px) { .blog-detail .text { margin-left: 0; } } .blog-detail .text h4 { color: #009382; font-size: 25px; font-weight: 700; margin-bottom: 15px; } .blog-detail .text p { color: #707070; font-size: 14px; font-weight: 500; margin: 0; } /* blog ends here */ /* Our Work */ .our-works .row.mt70 { margin-top: 40px !important; } .our-works img { width: 100%; height: 400px; object-fit: cover; } @media (max-width: 992px) { .our-works img { height: 250px; margin-bottom: 15px; } } .our-works .text { margin-left: 45px; } @media (max-width: 992px) { .our-works .text { margin-left: 0; } } @media (max-width: 992px) { .our-works .text.mr45 { margin-right: 0 !important; } } .our-works .text h3 { color: #0EA15F; font-size: 25px; font-weight: 500; margin-bottom: 15px; } .our-works .text p { color: black; font-size: 14px; font-weight: 500; margin-bottom: 20px; } .our-works .text ul li { color: black; font-size: 14px; font-weight: 500; margin-bottom: 10px; } .our-works .text ul li i { color:black; font-size: 18px; margin-right: 7px; } /* Our work ends here */ /*estate-detail*/ .our-estates { padding: 70px 0; } .our-estates .row.mt70 { margin-top: 40px !important; } .our-estates img { width: 100%; height: 400px; object-fit: cover; } @media (max-width: 992px) { .our-estates img { height: 250px; margin-bottom: 15px; } } .our-estates .text { margin-left: 45px; } @media (max-width: 992px) { .our-estates .text { margin-left: 0; } } @media (max-width: 992px) { .our-estates .text.mr45 { margin-right: 0 !important; } } .our-estates .text h4 { color: #0EA15F; font-size: 25px; font-weight: 500; margin-bottom: 15px; } .our-estates .text p { color: #707070; font-size: 14px; font-weight: 500; margin-bottom: 20px; } .our-estates .text ul li { color: #707070; font-size: 14px; font-weight: 500; margin-bottom: 10px; } .our-estates .text ul li i { color: #009382; font-size: 18px; margin-right: 7px; } .our-estates .text .button { background-color: #0EA15F; padding: 8px 26px; border-radius: 5px; color: #fff; font-weight: 500; text-transform: uppercase; min-width: 120px; text-align: center; display: table; margin-top: 25px; } .our-estates .text .button i { margin-left: 7px; } .estates-detail { padding: 70px 0; } .estates-detail img { width: 100%; height: 400px; object-fit: cover; } @media (max-width: 992px) { .estates-detail img { height: 250px; margin-bottom: 15px; } } .estates-detail .text { margin-left: 45px; } @media (max-width: 992px) { .estates-detail .text { margin-left: 0; } } .estates-detail .text h4 { color: black; font-size: 25px; font-weight: 500; margin-bottom: 15px; } .estates-detail .text p { color: black; font-size: 14px; font-weight: 500; margin-bottom: 20px; } .estates-detail .text ul li { color: black; font-size: 14px; font-weight: 500; margin-bottom: 10px; } .estates-detail .text ul li i { color: black; font-size: 18px; margin-right: 7px; } /*estate detail ends here */ /* Our career design starts here */ .careers { padding: 70px 0; } .careers .title { font-size: 35px; font-weight: 700; color: #0EA15F; margin-bottom: 35px; } .careers .item { width: 100%; box-shadow: 0 4px 5px 3px rgba(0, 0, 0, 0.1); padding: 25px; min-height: 120px; display: flex; align-items: center; margin-bottom: 25px; } .careers .item h4 { color:black; font-size: 20px; font-weight: 600; margin: 0; position: relative; letter-spacing: 2px; } .careers .item h4::before { content: ""; width: 55px; height: 4px; background-color: #0EA15F; display: block; position: absolute; bottom: -15px; left: 0; } /* Our career Design ends here */ /* Contact */ .contact { padding: 50px 0 0 0; } .contact address { color: #333; font-size: 30px; font-weight: 500; letter-spacing: 2px; margin-bottom: 35px; } @media (max-width: 992px) { .contact address { font-size: 18px; } } @media (max-width: 992px) { .contact .item { margin-bottom: 15px; } } .contact .item h4 { color: #333; font-size: 20px; font-weight: 500; margin-bottom: 15px; } .contact .item a { display: block; color: #707070; margin-bottom: 5px; } .contact .social-media { display: flex; align-items: center; margin-top: 15px; } .contact .social-media li { margin-right: 15px; } .contact .social-media li:hover a i.facebook { color: #3b5998; } .contact .social-media li:hover a i.twitter { color: #1da1f2; } .contact .social-media li:hover a i.instagram { color: #e1306c; } .contact .social-media li:hover a i.linkedin { color: #0077b5; } .contact .social-media li a { color: #707070; font-size: 18px; } .contact .social-media li a i { transition: all ease-in-out 300ms; } .contact form { padding: 25px; border-radius: 5px; background-color: #0EA15F; } @media (max-width: 992px) { .contact form { margin-top: 25px; } } .contact form h4 { color: #fff; font-size: 25px; font-weight: 500; margin-bottom: 25px; } .contact form label { display: block; font-size: 14px; font-weight: 500; color: #fff; margin-bottom: 5px; } .contact form input { width: 100%; height: 45px; background-color: transparent; border: none; border: 1px solid #ddd; border-radius: 5px; padding: 0 12px; margin-bottom: 15px; caret-color: #fff; color: #fff; } .contact form textarea { width: 100%; height: 120px; background-color: transparent; border: none; border: 1px solid #ddd; border-radius: 5px; padding: 12px; margin-bottom: 15px; resize: none; caret-color: #fff; color: #fff; } .contact form .button { display: table; margin-left: auto; border: none; background-color:black; color: #0EA15F; padding: 8px 26px; border-radius: 5px; min-width: 150px; text-align: center; font-weight: 600; } .contact iframe { width: 100%; height: 400px; margin-top: 50px; margin-bottom: -15px; } @media (max-width: 992px) { .contact iframe { height: 250px; } } /*End of contact*/ /* second testimony css */ .home-slider { padding: 50px 0; position: relative; } .home-slider .bg { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; z-index: -1; } .home-slider .title { display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; margin-bottom: 30px; } .home-slider .title h4 { font-size: 55px; font-weight: 700; color: #0EA15F; margin-bottom: 15px; } @media (max-width: 992px) { .home-slider .title h4 { font-size: 35px; } } .home-slider .title p { color:black; font-size: 16px; font-weight: 500; max-width: 550px; } .home-slider .container { display: flex; align-items: center; width: 100%; } @media (max-width: 992px) { .home-slider .container .btn { display: none; } } .home-slider .testimonial { width: calc(100% - 120px); } @media (max-width: 992px) { .home-slider .testimonial { width: 100%; } } .home-slider .testimonial .testimonial-slider .slick-dots { display: none !important; } @media (max-width: 992px) { .home-slider .testimonial .testimonial-slider .slick-dots { display: flex !important; } } .home-slider .testimonial .testimonial-slider .item { display: flex; align-items: center; justify-content: center; } @media (max-width: 992px) { .home-slider .testimonial .testimonial-slider .item { flex-direction: column; } } .home-slider .testimonial .testimonial-slider .item img { width: 200px; height: 200px; object-fit: cover; border-radius: 50%; margin-right: 25px; } @media (max-width: 992px) { .home-slider .testimonial .testimonial-slider .item img { margin-right: 0; margin-bottom: 10px; } } .home-slider .testimonial .testimonial-slider .item .text { border-left: 1px solid #000; padding-left: 25px; position: relative; } .home-slider .testimonial .testimonial-slider .item .text::before { content: ""; width: 25px; height: 25px; background: url("/assets/img/icon/pause.png") no-repeat; background-size: contain; display: block; position: absolute; top: -40px; left: 25px; } .home-slider .testimonial .testimonial-slider .item .text::after { content: ""; width: 25px; height: 25px; background: url("/assets/img/icon/pause.png") no-repeat; background-size: contain; display: block; position: absolute; bottom: -40px; right: 25px; } .home-slider .testimonial .testimonial-slider .item .text p { max-width: 600px; color:black; font-size: 18px; } /* end of second testimony design */
public/assets/css/style2.css
.about-description { padding: 50px 0; } .about-description img { width: 100%; height: 600px; object-fit: cover; } @media (max-width: 992px) { .about-description img { height: 250px; margin-top: 15px; } } .about-description .text { margin-right: 35px; } @media (max-width: 992px) { .about-description .text { margin-right: 0; } } .about-description .text h4 { color: #707070; font-size: 25px; font-weight: 500; margin-bottom: 20px; } .about-description .text p { color: #707070; font-weight: 500; } .about-lightbox { padding: 50px 0 0 0; } .about-lightbox a { display: block; } .about-lightbox a img { width: 100%; height: 350px; object-fit: cover; border: 1px solid #0EA15F; padding: 10px; } @media (max-width: 992px) { .about-lightbox a img { height: 250px; } } .about-mission { background-color: #0EA15F; } .about-mission .text { border-right: 3px solid #fff; padding: 25px; text-align: center; } .about-mission .text.last { border-right: none; } .about-mission .text h4 { color: #fff; font-size: 30px; font-weight: 700; text-transform: uppercase; position: relative; display: inline-block; margin-bottom: 15px; } .about-mission .text h4::before { content: ""; width: 70%; height: 1px; background-color: #fff; display: block; position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%); } .about-mission .text p { color: #fff; font-size: 14px; font-weight: 300; } .about-count { padding: 30px 0; } .about-count .item { display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; } @media (max-width: 992px) { .about-count .item { margin-bottom: 15px; } } .about-count .item h4 { color: #0EA15F; font-size: 45px; font-weight: 600; } .about-count .item p { color: #0EA15F; font-size: 16px; font-weight: 400; text-transform: uppercase; margin: 0; } .about-section-01 { position: relative; padding: 80px 0; } .about-section-01 .bg { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; z-index: -1; } .about-section-01 .item { background-color: #fff; padding: 25px 25px 15px 25px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-direction: column; min-height: 250px; position: relative; } @media (max-width: 992px) { .about-section-01 .item { margin-bottom: 15px; } } .about-section-01 .item.second { background-color: #000; } .about-section-01 .item.second .info h4 { color: #fff; } .about-section-01 .item.second .info p { color: #fff; } .about-section-01 .item.second .button { color: #fff; border-color: #fff; } .about-section-01 .item .text { display: flex; align-items: center; justify-content: center; } @media (max-width: 992px) { .about-section-01 .item .text { flex-direction: column; } } .about-section-01 .item .text img { width: 80px; height: 80px; object-fit: contain; margin-right: 20px; } @media (max-width: 992px) { .about-section-01 .item .text img { margin-bottom: 15px; } } .about-section-01 .item .text .info h4 { font-size: 18px; font-weight: 500; margin-bottom: 5px; } .about-section-01 .item .text .info p { font-weight: 400; font-size: 14px; max-width: 500px; } @media (max-width: 992px) { .about-section-01 .item .text .info p { margin-bottom: 20px; } } .about-section-01 .item .button { display: table; margin-left: auto; position: absolute; bottom: 20px; right: 20px; color: #000; border-bottom: 1px solid #000; transition: all ease-in-out 300ms; } .about-section-01 .item .button:hover i { margin-left: 15px; } .about-section-01 .item .button i { margin-left: 7px; transition: all ease-in-out 300ms; } .home-title { position: relative; display: flex; align-items: center; justify-content: center; } .home-title.about .title h4 { color: #707070; font-size: 30px; } .home-title img { width: 100%; height: 300px; object-fit: cover; } .home-title .title { position: absolute; text-align: center; } .home-title .title h4 { color: #000; font-size: 45px; font-weight: 700; margin-bottom: 20px; } @media (max-width: 992px) { .home-title .title h4 { font-size: 25px; } } .home-title .title p { color: #707070; font-size: 18px; font-weight: 500; max-width: 500px; margin: 0 auto; } @media (max-width: 992px) { .home-title .title p { font-size: 14px; } } .color-need{ color: #0EA15F !important; } /* consultancy */ .consultancy { padding:20px ; } .consultancy .title h2{ text-align:left !important; font-size: 45px; font-weight: 700; letter-spacing: -1px; color:#0EA15F; margin-bottom: 30px; text-transform: uppercase; } .consultancy picture { width: 100%; height: 100%; display: block; position: relative; margin-bottom: 35px; } .consultancy picture::before { content: ""; width: 100%; height: 100%; display: block; position: absolute; top: 0; left: 0; } .consultancy picture img { width: 100%; height: 230px; object-fit: cover; } .consultancy .text { text-align: center; } .consultancy .text img { height: 120px; } .consultancy .text p { color: #707070; font-weight: 500; } /* consultancy ends */ /*construction starts here */ .construction img { width: 100%; height: 400px; object-fit: cover; } @media (max-width: 992px) { .construction img { height: 250px; margin-bottom: 15px; } } .construction .text { margin-left: 45px; } @media (max-width: 992px) { .construction .text { margin-left: 0; } } .construction .text h4 { color: #009382; font-size: 25px; font-weight: 500; margin-bottom: 15px; } .construction .text p { color: #707070; font-size: 14px; font-weight: 500; } /* construction ends here */ /* global-banner */ .global-banner { position: relative; margin-top: -130px; z-index: -1; } .global-banner::before { content: ""; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); display: block; position: absolute; top: 0; left: 0; } .global-banner img { width: 100%; height: 400px; object-fit: cover; } .global-banner h2 { position: absolute; top: 50%; left: 0; right: 0; width: 100%; font-size: 55px; color: #fff; } /* global-banner ends */ /* Real Estate starts from here */ .estates-detail { padding: 70px 0; } .estates-detail img { width: 100%; height: 400px; object-fit: cover; } @media (max-width: 992px) { .estates-detail img { height: 250px; margin-bottom: 15px; } } .estates-detail .text { margin-left:auto; margin-right:auto; } @media (max-width: 992px) { .estates-detail .text { margin-left: 0; } } .estates-detail .text h4 { color: #009382; font-size: 25px; font-weight: 500; margin-bottom: 15px; } .estates-detail .text p { color: #707070; font-size: 14px; font-weight: 500; margin-bottom: 20px; } .estates-detail .text ul li { color: #707070; font-size: 14px; font-weight: 500; margin-bottom: 10px; } .estates-detail .text ul li i { color: #009382; font-size: 18px; margin-right: 7px; } /* Real Estate ends here */ /* Affiliate Starts from here */ .affiliate { background: black; } .affiliate .text { margin-right: 45px; } @media (max-width: 992px) { .affiliate .text { margin-right: 0; } } .affiliate .text h4 { font-size: 35px; font-weight: 700; color: #333; margin-bottom: 25px; } .affiliate .text ul li { margin-bottom: 10px; list-style-type: disc; color: #707070; font-size: 16px; font-weight: 500; } @media (max-width: 992px) { .affiliate .text ul li { list-style-type: none; margin-bottom: 15px; } } @media (max-width: 992px) { .affiliate .text ul li br { display: none; } } .affiliate .text ul li a { color: #333; font-weight: 700; } .affiliate .text h2 { color: #000; font-size: 65px; font-weight: 700; margin-top: 70px; position: relative; } .affiliate .text h2::before { content: ""; width: 15%; height: 7px; background-color: #000; display: block; position: absolute; bottom: -15px; left: 5px; } @media (max-width: 992px) { .affiliate .text h2 { font-size: 45px; margin-bottom: 30px; margin-top: 30px; } } .affiliate form label { color: #333; font-size: 14px; font-weight: 500; margin-bottom: 5px; } .affiliate form input{ width: 100%; border: none; border: 3px solid black; border-radius: 0px 0px 5px 5px; height: 40px; padding: 0 12px; margin-bottom: 15px; } .affiliate form textarea{ width: 100%; border: none; border: 3px solid black; height: 120px; padding: 12px; margin-bottom: 15px; resize: none; } .affiliate-button { height: 40px; width: 60%; background-color:#0EA15F; border: none; color: #fff; font-weight: 500; } /* Affiliate Ends here */ /* Application form*/ .info p { text-align:center; color: #999; text-transform:none; font-weight:600; font-size:15px; margin-top:2px } .info i { color:#F6AA93; } .application-form h3 { font-size: 18px; background: #0EA15F none repeat scroll 0% 0%; color: rgb(255, 255, 255); padding: 22px 25px; border-radius: 5px 5px 0px 0px; margin: auto; text-shadow: none; text-align:center; } .application-form { border-radius: 5px; max-width:700px; width:100%; margin: 5% auto; background-color: #FFFFFF; overflow: hidden; } p span { color: #F00; } p { margin: 0px; font-weight: 500; line-height: 2; color:#333; } input{ border-radius: 0px 5px 5px 0px; border: 1.5px solid black; margin-bottom: 15px; width: 75%; height: 40px; justify-content: center; padding: 0px 15px; } select { border-radius: 0px 5px 5px 0px; border: 1.5px solid black; margin-bottom: 15px; width: 75% !important; height: 40px !important; justify-content: center; padding: 0px 15px; } a { text-decoration:inherit } .form-group { overflow: hidden; clear: both; } .icon-case { width: 35px; float: left; border-radius: 5px 0px 0px 5px; background:#eeeeee; border: 1.4px solid black; height:42px; position: relative; text-align: center; line-height:40px; } i { color:#0EA15F; } .contentform { padding: 40px 30px; } .bouton-contact{ background-color: #0EA15F; color: #FFF; text-align: center; width: 100%; border:0; padding: 17px 25px; border-radius: 0px 0px 5px 5px; cursor: pointer; margin-top: 40px; font-size: 18px; } .leftcontact { width:49.5%; float:left; border-right: 1px dotted #CCC; box-sizing: border-box; padding: 0px 15px 0px 0px; } .rightcontact { width:49.5%; float:right; box-sizing: border-box; padding: 0px 0px 0px 15px; } .validation { display:none; margin: 0 0 10px; font-weight:400; font-size:13px; color: #DE5959; } /*Application Form ends here*/ /* book-inspection */ .consultants-form .title { display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; margin-bottom: 20px; } .consultants-form .title h4 { color: #009382; font-size: 35px; font-weight: 700; margin-bottom: 15px; } .consultants-form .title p { color: #707070; max-width: 550px; } .consultants-form .title p span { color: red; } .consultants-form form label { display: block; margin-bottom: 5px; color: #333; font-size: 14px; font-weight: 500; text-transform: uppercase; } .consultants-form form label span { color: red; } .consultants-form form input[type=text], .consultants-form form input[type=email], .consultants-form form input[type=date] { width: 100%; height: 40px; padding: 0 12px; border: none; border: 1px solid #ccc; margin-bottom: 15px; } .consultants-form form textarea { width: 100%; height: 120px; padding: 12px; border: none; border: 1px solid #ccc; resize: none; margin-bottom: 15px; } .consultants-form form .button { width: 100%; height: 45px; background-color: #009382; color: #fff; border: none; font-size: 18px; font-weight: 500; text-align: center; max-width: 150px; cursor: pointer !important; margin-top: 15px; pointer-events: inherit !important; } .consultants-form form .alt-title { font-size: 14px; font-weight: 500; color: #333; margin: 25px 0 10px 0; } .consultants-form form .alt-title span { color: red; } .consultants-form form .second-title { text-align: center; color: #009382; font-size: 25px; padding: 25px 0; } .consultants-form form .input-checkbox { display: flex; align-items: center; } .consultants-form form .input-checkbox input { margin-right: 10px; } .consultants-form form .input-checkbox label { font-size: 12px; margin-bottom: 0; } .consultants-form form .input-radio-status { display: flex; align-items: center; padding-bottom: 25px; } .consultants-form form .input-radio-status h4 { font-size: 14px; font-weight: 400; color: #333; margin-right: 25px; min-width: 220px; } .consultants-form form .input-radio-status .item { display: flex; align-items: center; margin-right: 10px; margin-bottom: 30px; } .consultants-form form .input-radio-status .item label { margin: 0; cursor: pointer; white-space: nowrap; } .consultants-form form .input-radio-status .item input { margin-left: 8px; } .consultants-form form .input-title { font-weight: 700; font-size: 20px; color: #333; margin: 0; margin: 15px 0; } .consultants-form form .input-status { display: flex; align-items: center; } @media (max-width: 992px) { .consultants-form form .input-status { width: 100%; flex-wrap: wrap; } } .consultants-form form .input-status .item { display: flex; align-items: center; margin-right: 15px; margin-bottom: 30px; } @media (max-width: 992px) { .consultants-form form .input-status .item { margin-right: 10px; } } .consultants-form form .input-status .item label { margin: 0; cursor: pointer; } @media (max-width: 992px) { .consultants-form form .input-status .item label { font-size: 14px; white-space: nowrap; } } .consultants-form form .input-status .item input { margin-left: 8px; } .consultants-form .accordion { margin-top: 55px; } .consultants-form .accordion .terms { font-size: 20px; font-weight: 500; color: #009382; margin-bottom: 25px; } .consultants-form .accordion .accordion-item { border: none; border-bottom: 1px solid #ddd; padding: 10px 0; } @media (max-width: 992px) { .consultants-form .accordion .accordion-item { padding: 5px 0; } } .consultants-form .accordion .accordion-item .accordion-header button { background-color: transparent !important; box-shadow: none; font-weight: 700; font-size: 16px; transition: all ease-in-out 300ms; padding: 10px 0 !important; color: #000; } @media (max-width: 992px) { .consultants-form .accordion .accordion-item .accordion-header button { font-size: 14px; } } .consultants-form .accordion .accordion-item .accordion-header button:focus { color: #009382; border-color: #009382; } .consultants-form .accordion .accordion-item .accordion-body { margin-bottom: 10px; font-size: 14px; font-weight: 400; color: #333; } @media (max-width: 992px) { .consultants-form .accordion .accordion-item .accordion-body { font-size: 14px; } } /* book inspection ends */ /* Blog starts here */ .blog { padding: 70px 0; } .blog .item { display: flex; flex-direction: column; margin-bottom: 25px; transition: all ease-in-out 300ms; box-shadow: 0 4px 5px 3px rgba(0, 0, 0, 0.1); padding: 25px; } .blog .item:hover { transform: scale(1.03); } .blog .item img { width: 100%; height: 250px; object-fit: cover; margin-bottom: 15px; } .blog .item .text h4 { font-size: 20px; font-weight: 500; color: #333; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; } .blog .item .text p { color: #707070; font-size: 14px; font-weight: 500; margin: 0; margin-bottom: 25px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; } .blog .item .text .button { background-color: #0EA15F; color: #fff; padding: 8px 16px; min-width: 120px; text-align: center; margin-top: auto; display: table; font-weight: 500; } .blog .item .text .button:hover i { margin-left: 15px; } .blog .item .text .button i { margin-left: 7px; transition: all ease-in-out 300ms; } .blog-detail { padding: 70px 0; } .blog-detail img { width: 100%; height: 350px; object-fit: cover; } @media (max-width: 992px) { .blog-detail img { height: 250px; margin-bottom: 15px; } } .blog-detail .text { margin-left: 45px; } @media (max-width: 992px) { .blog-detail .text { margin-left: 0; } } .blog-detail .text h4 { color: #009382; font-size: 25px; font-weight: 700; margin-bottom: 15px; } .blog-detail .text p { color: #707070; font-size: 14px; font-weight: 500; margin: 0; } /* blog ends here */ /* Our Work */ .our-works .row.mt70 { margin-top: 40px !important; } .our-works img { width: 100%; height: 400px; object-fit: cover; } @media (max-width: 992px) { .our-works img { height: 250px; margin-bottom: 15px; } } .our-works .text { margin-left: 45px; } @media (max-width: 992px) { .our-works .text { margin-left: 0; } } @media (max-width: 992px) { .our-works .text.mr45 { margin-right: 0 !important; } } .our-works .text h3 { color: #0EA15F; font-size: 25px; font-weight: 500; margin-bottom: 15px; } .our-works .text p { color: black; font-size: 14px; font-weight: 500; margin-bottom: 20px; } .our-works .text ul li { color: black; font-size: 14px; font-weight: 500; margin-bottom: 10px; } .our-works .text ul li i { color:black; font-size: 18px; margin-right: 7px; } /* Our work ends here */ /*estate-detail*/ .our-estates { padding: 70px 0; } .our-estates .row.mt70 { margin-top: 40px !important; } .our-estates img { width: 100%; height: 400px; object-fit: cover; } @media (max-width: 992px) { .our-estates img { height: 250px; margin-bottom: 15px; } } .our-estates .text { margin-left: 45px; } @media (max-width: 992px) { .our-estates .text { margin-left: 0; } } @media (max-width: 992px) { .our-estates .text.mr45 { margin-right: 0 !important; } } .our-estates .text h4 { color: #0EA15F; font-size: 25px; font-weight: 500; margin-bottom: 15px; } .our-estates .text p { color: #707070; font-size: 14px; font-weight: 500; margin-bottom: 20px; } .our-estates .text ul li { color: #707070; font-size: 14px; font-weight: 500; margin-bottom: 10px; } .our-estates .text ul li i { color: #009382; font-size: 18px; margin-right: 7px; } .our-estates .text .button { background-color: #0EA15F; padding: 8px 26px; border-radius: 5px; color: #fff; font-weight: 500; text-transform: uppercase; min-width: 120px; text-align: center; display: table; margin-top: 25px; } .our-estates .text .button i { margin-left: 7px; } .estates-detail { padding: 70px 0; } .estates-detail img { width: 100%; height: 400px; object-fit: cover; } @media (max-width: 992px) { .estates-detail img { height: 250px; margin-bottom: 15px; } } .estates-detail .text { margin-left: 45px; } @media (max-width: 992px) { .estates-detail .text { margin-left: 0; } } .estates-detail .text h4 { color: black; font-size: 25px; font-weight: 500; margin-bottom: 15px; } .estates-detail .text p { color: black; font-size: 14px; font-weight: 500; margin-bottom: 20px; } .estates-detail .text ul li { color: black; font-size: 14px; font-weight: 500; margin-bottom: 10px; } .estates-detail .text ul li i { color: black; font-size: 18px; margin-right: 7px; } /*estate detail ends here */ /* Our career design starts here */ .careers { padding: 70px 0; } .careers .title { font-size: 35px; font-weight: 700; color: #0EA15F; margin-bottom: 35px; } .careers .item { width: 100%; box-shadow: 0 4px 5px 3px rgba(0, 0, 0, 0.1); padding: 25px; min-height: 120px; display: flex; align-items: center; margin-bottom: 25px; } .careers .item h4 { color:black; font-size: 20px; font-weight: 600; margin: 0; position: relative; letter-spacing: 2px; } .careers .item h4::before { content: ""; width: 55px; height: 4px; background-color: #0EA15F; display: block; position: absolute; bottom: -15px; left: 0; } /* Our career Design ends here */ /* Contact */ .contact { padding: 50px 0 0 0; } .contact address { color: #333; font-size: 30px; font-weight: 500; letter-spacing: 2px; margin-bottom: 35px; } @media (max-width: 992px) { .contact address { font-size: 18px; } } @media (max-width: 992px) { .contact .item { margin-bottom: 15px; } } .contact .item h4 { color: #333; font-size: 20px; font-weight: 500; margin-bottom: 15px; } .contact .item a { display: block; color: #707070; margin-bottom: 5px; } .contact .social-media { display: flex; align-items: center; margin-top: 15px; } .contact .social-media li { margin-right: 15px; } .contact .social-media li:hover a i.facebook { color: #3b5998; } .contact .social-media li:hover a i.twitter { color: #1da1f2; } .contact .social-media li:hover a i.instagram { color: #e1306c; } .contact .social-media li:hover a i.linkedin { color: #0077b5; } .contact .social-media li a { color: #707070; font-size: 18px; } .contact .social-media li a i { transition: all ease-in-out 300ms; } .contact form { padding: 25px; border-radius: 5px; background-color: #0EA15F; } @media (max-width: 992px) { .contact form { margin-top: 25px; } } .contact form h4 { color: #fff; font-size: 25px; font-weight: 500; margin-bottom: 25px; } .contact form label { display: block; font-size: 14px; font-weight: 500; color: #fff; margin-bottom: 5px; } .contact form input { width: 100%; height: 45px; background-color: transparent; border: none; border: 1px solid #ddd; border-radius: 5px; padding: 0 12px; margin-bottom: 15px; caret-color: #fff; color: #fff; } .contact form textarea { width: 100%; height: 120px; background-color: transparent; border: none; border: 1px solid #ddd; border-radius: 5px; padding: 12px; margin-bottom: 15px; resize: none; caret-color: #fff; color: #fff; } .contact form .button { display: table; margin-left: auto; border: none; background-color:black; color: #0EA15F; padding: 8px 26px; border-radius: 5px; min-width: 150px; text-align: center; font-weight: 600; } .contact iframe { width: 100%; height: 400px; margin-top: 50px; margin-bottom: -15px; } @media (max-width: 992px) { .contact iframe { height: 250px; } } /*End of contact*/ /* second testimony css */ .home-slider { padding: 50px 0; position: relative; } .home-slider .bg { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; z-index: -1; } .home-slider .title { display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; margin-bottom: 30px; } .home-slider .title h4 { font-size: 55px; font-weight: 700; color: #0EA15F; margin-bottom: 15px; } @media (max-width: 992px) { .home-slider .title h4 { font-size: 35px; } } .home-slider .title p { color:black; font-size: 16px; font-weight: 500; max-width: 550px; } .home-slider .container { display: flex; align-items: center; width: 100%; } @media (max-width: 992px) { .home-slider .container .btn { display: none; } } .home-slider .testimonial { width: calc(100% - 120px); } @media (max-width: 992px) { .home-slider .testimonial { width: 100%; } } .home-slider .testimonial .testimonial-slider .slick-dots { display: none !important; } @media (max-width: 992px) { .home-slider .testimonial .testimonial-slider .slick-dots { display: flex !important; } } .home-slider .testimonial .testimonial-slider .item { display: flex; align-items: center; justify-content: center; } @media (max-width: 992px) { .home-slider .testimonial .testimonial-slider .item { flex-direction: column; } } .home-slider .testimonial .testimonial-slider .item img { width: 200px; height: 200px; object-fit: cover; border-radius: 50%; margin-right: 25px; } @media (max-width: 992px) { .home-slider .testimonial .testimonial-slider .item img { margin-right: 0; margin-bottom: 10px; } } .home-slider .testimonial .testimonial-slider .item .text { border-left: 1px solid #000; padding-left: 25px; position: relative; } .home-slider .testimonial .testimonial-slider .item .text::before { content: ""; width: 25px; height: 25px; background: url("/assets/img/icon/pause.png") no-repeat; background-size: contain; display: block; position: absolute; top: -40px; left: 25px; } .home-slider .testimonial .testimonial-slider .item .text::after { content: ""; width: 25px; height: 25px; background: url("/assets/img/icon/pause.png") no-repeat; background-size: contain; display: block; position: absolute; bottom: -40px; right: 25px; } .home-slider .testimonial .testimonial-slider .item .text p { max-width: 600px; color:black; font-size: 18px; } /* end of second testimony design */
0.489503
0.096535
body { background: url('../../Resources/Images/background.jpg'); background-size: cover; font-family: "Arial", "Helvetica", sans-serif; font-size: 20px; } #wrapper { width: 800px; height: 500px; margin: 10px auto; padding-top: 20px; background-color: rgba(255, 255, 255, 0.2); border-radius: 50px; } /************* Header style *************/ header { width: 700px; margin: 0 auto; } header > ul { padding: 5px; } header > ul > li { display: inline-block; padding: 2px; width: 23%; height: 50px; text-align: center; color: #1a6dae; font-weight: bold; border-radius: 10px; } header > ul > li:first-child, header > ul > li:hover { background-color: rgba(26, 109, 174, 0.5); } header > ul > li > img { vertical-align: middle; } /************* Main style *************/ main { width: 700px; margin: 10px auto; } /************* Form style *************/ form { margin-left: 2px; } fieldset { display: inline-block; vertical-align: top; width: 49%; height: 250px; border: 2px solid rgba(26, 109, 174, 1); border-radius: 20px; padding-top: 50px; padding-bottom: 50px; } legend { padding-left: 5px; padding-right: 5px; text-align: center; } input, select, label, legend { outline: none; color: #1a6dae; } #personal-info > input { width: 90%; height: 40px; box-sizing: border-box; margin: 10px 0 10px 0; background-color: rgba(255, 255, 255, 0.4); font-size: 1.1em; text-align: center; border-radius: 20px; border: 1px solid #1a6dae; } input::-webkit-input-placeholder { color: rgba(26, 109, 174, 0.5); } span { display: inline-block; width: 20px; height: 20px; position: relative; top: 3px; left: 35px; } #name-icon { background: url('../../Resources/Images/user1.png'); } #tel-icon { background: url('../../Resources/Images/phone.png'); } #email-icon { background: url('../../Resources/Images/email.png'); } #radio-buttons { text-align: center; margin: 10px auto; } #flight-info > label { display: block; text-align: center; } #flight-info > input[type=date] { display: block; width: 90%; height: 40px; box-sizing: border-box; margin: 10px auto; background-color: rgba(255, 255, 255, 0.4); font-size: 1.1em; text-align: center; border-radius: 20px; border: 1px solid #1a6dae; } select { display: block; width: 90%; margin: 10px auto; height: 50px; font-size: 1em; background: rgba(255, 255, 255, 0.4); border: 1px solid #1a6dae; border-radius: 20px; } #Bg, #rest { color: #1a6dae; background-color: #BEE1E9; font-size: 0.7em; } #buttons { margin: 10px auto; text-align: right; } input[type=submit], input[type=reset] { width: 100px; height: 50px; font-size: 1.2em; border-radius: 20px; font-weight: bold; } input[type=submit] { border: 1px solid #00ff00; background-color: transparent; color: #00FF00; } input[type=reset] { border: 1px solid #ff0000; background-color: transparent; color: #FF0000; } input[type=submit]:hover { background-color: rgb(0, 178, 0); color: #FFFFFF; } input[type=reset]:hover { background-color: rgb(180, 0, 0); color: #FFFFFF; }
ExamPreparationOld/Problem03-Extreme-Reservation/Solution/styles/style.css
body { background: url('../../Resources/Images/background.jpg'); background-size: cover; font-family: "Arial", "Helvetica", sans-serif; font-size: 20px; } #wrapper { width: 800px; height: 500px; margin: 10px auto; padding-top: 20px; background-color: rgba(255, 255, 255, 0.2); border-radius: 50px; } /************* Header style *************/ header { width: 700px; margin: 0 auto; } header > ul { padding: 5px; } header > ul > li { display: inline-block; padding: 2px; width: 23%; height: 50px; text-align: center; color: #1a6dae; font-weight: bold; border-radius: 10px; } header > ul > li:first-child, header > ul > li:hover { background-color: rgba(26, 109, 174, 0.5); } header > ul > li > img { vertical-align: middle; } /************* Main style *************/ main { width: 700px; margin: 10px auto; } /************* Form style *************/ form { margin-left: 2px; } fieldset { display: inline-block; vertical-align: top; width: 49%; height: 250px; border: 2px solid rgba(26, 109, 174, 1); border-radius: 20px; padding-top: 50px; padding-bottom: 50px; } legend { padding-left: 5px; padding-right: 5px; text-align: center; } input, select, label, legend { outline: none; color: #1a6dae; } #personal-info > input { width: 90%; height: 40px; box-sizing: border-box; margin: 10px 0 10px 0; background-color: rgba(255, 255, 255, 0.4); font-size: 1.1em; text-align: center; border-radius: 20px; border: 1px solid #1a6dae; } input::-webkit-input-placeholder { color: rgba(26, 109, 174, 0.5); } span { display: inline-block; width: 20px; height: 20px; position: relative; top: 3px; left: 35px; } #name-icon { background: url('../../Resources/Images/user1.png'); } #tel-icon { background: url('../../Resources/Images/phone.png'); } #email-icon { background: url('../../Resources/Images/email.png'); } #radio-buttons { text-align: center; margin: 10px auto; } #flight-info > label { display: block; text-align: center; } #flight-info > input[type=date] { display: block; width: 90%; height: 40px; box-sizing: border-box; margin: 10px auto; background-color: rgba(255, 255, 255, 0.4); font-size: 1.1em; text-align: center; border-radius: 20px; border: 1px solid #1a6dae; } select { display: block; width: 90%; margin: 10px auto; height: 50px; font-size: 1em; background: rgba(255, 255, 255, 0.4); border: 1px solid #1a6dae; border-radius: 20px; } #Bg, #rest { color: #1a6dae; background-color: #BEE1E9; font-size: 0.7em; } #buttons { margin: 10px auto; text-align: right; } input[type=submit], input[type=reset] { width: 100px; height: 50px; font-size: 1.2em; border-radius: 20px; font-weight: bold; } input[type=submit] { border: 1px solid #00ff00; background-color: transparent; color: #00FF00; } input[type=reset] { border: 1px solid #ff0000; background-color: transparent; color: #FF0000; } input[type=submit]:hover { background-color: rgb(0, 178, 0); color: #FFFFFF; } input[type=reset]:hover { background-color: rgb(180, 0, 0); color: #FFFFFF; }
0.352648
0.11358
@import url("https://www.google.com/fonts#UsePlace:use/Collection:Vollkorn"); body { margin: 0; padding: 0; } section { width: 1000px; margin: 0 auto; } .title { font-size: 40px; font-family:'Vollkorn', serif; color: #778495; text-align: center; text-transform: uppercase; } article { width: 300px; display: inline-block; vertical-align: top; margin-right: 25px; border: 2px solid #f8f9fb; cursor: pointer; } article h2 { text-transform: capitalize; font-size: 30px; font-family:'Vollkorn', serif; background-color: #ebeff2; text-align: center; color: #6e768b; margin-top: 0px; padding: 40px 0px; } article h3 { font-family: 'Vollkorn', serif; font-size: 60px; text-align: center; color: #7f8d98; } article h4 { color: #897f7e; border-bottom: 1px solid #f1f3f2; padding-bottom: 5px; font-family: Tahoma, sans-serif; font-size: 16px; margin-left: 28px; } .small { color: #897f7e; border-bottom: 1px solid #f1f3f2; padding-bottom: 5px; font-family: Tahoma, sans-serif; font-size: 16px; margin-bottom: 159px; margin-left: 28px; } .medium { color: #897f7e; border-bottom: 1px solid #f1f3f2; padding-bottom: 5px; font-family: Tahoma, sans-serif; font-size: 16px; margin-bottom: 113px; margin-left: 28px; } article button { color: #fafbfd; background-color: #dddddd; padding: 25px 75px; border: none; border-radius: 15%; text-transform: capitalize; font-family: Tahoma, sans-serif; font-size: 16px; margin-top: 50px; margin-bottom: 20px; margin-left: 25px; } article:hover h2 { text-transform: capitalize; font-size: 30px; font-family:'Vollkorn', serif; background-color: #65d3e2; text-align: center; color: #6e768b; margin-top: 0px; padding: 40px 0px; cursor: pointer; } article:hover h3 { font-family: 'Vollkorn', serif; font-size: 60px; text-align: center; color: #65d3e2; } article:hover button { color: #fafbfd; background-color: #65d3e2; padding: 25px 75px; border: none; border-radius: 15%; text-transform: capitalize; font-family: Tahoma, sans-serif; font-size: 16px; margin-top: 50px; margin-bottom: 20px; margin-left: 25px; }
WebBasics/Softuni-Web-Basics-Homework2017/08. CSSPresentationandPositioning/P06_PricingList/pricing-list.css
@import url("https://www.google.com/fonts#UsePlace:use/Collection:Vollkorn"); body { margin: 0; padding: 0; } section { width: 1000px; margin: 0 auto; } .title { font-size: 40px; font-family:'Vollkorn', serif; color: #778495; text-align: center; text-transform: uppercase; } article { width: 300px; display: inline-block; vertical-align: top; margin-right: 25px; border: 2px solid #f8f9fb; cursor: pointer; } article h2 { text-transform: capitalize; font-size: 30px; font-family:'Vollkorn', serif; background-color: #ebeff2; text-align: center; color: #6e768b; margin-top: 0px; padding: 40px 0px; } article h3 { font-family: 'Vollkorn', serif; font-size: 60px; text-align: center; color: #7f8d98; } article h4 { color: #897f7e; border-bottom: 1px solid #f1f3f2; padding-bottom: 5px; font-family: Tahoma, sans-serif; font-size: 16px; margin-left: 28px; } .small { color: #897f7e; border-bottom: 1px solid #f1f3f2; padding-bottom: 5px; font-family: Tahoma, sans-serif; font-size: 16px; margin-bottom: 159px; margin-left: 28px; } .medium { color: #897f7e; border-bottom: 1px solid #f1f3f2; padding-bottom: 5px; font-family: Tahoma, sans-serif; font-size: 16px; margin-bottom: 113px; margin-left: 28px; } article button { color: #fafbfd; background-color: #dddddd; padding: 25px 75px; border: none; border-radius: 15%; text-transform: capitalize; font-family: Tahoma, sans-serif; font-size: 16px; margin-top: 50px; margin-bottom: 20px; margin-left: 25px; } article:hover h2 { text-transform: capitalize; font-size: 30px; font-family:'Vollkorn', serif; background-color: #65d3e2; text-align: center; color: #6e768b; margin-top: 0px; padding: 40px 0px; cursor: pointer; } article:hover h3 { font-family: 'Vollkorn', serif; font-size: 60px; text-align: center; color: #65d3e2; } article:hover button { color: #fafbfd; background-color: #65d3e2; padding: 25px 75px; border: none; border-radius: 15%; text-transform: capitalize; font-family: Tahoma, sans-serif; font-size: 16px; margin-top: 50px; margin-bottom: 20px; margin-left: 25px; }
0.25618
0.081301
div.directs.bygportal .value>div:not(.value) { padding: 0; background-image: none; margin: 0; } div#bygmapcnt { padding: 24px; background: #fff; color: #212121; line-height: 20px; font-size: 14px; overflow-x: hidden; } div#bygmap { height: 250px; width: 100%; } .toNobreakLine, div.directs.bygportal .value>div:not(.value).toNobreakLine{ display: inline; white-space: nowrap; padding-right:14px } .toNobreakLine, div.directs.bygportal .value>div:not(.value).toNobreakLine span{ font-weight: 300; color:#ccc } /* map cluster */ .marker-cluster-small { background-color: rgba(181, 226, 140, 0.6); } .marker-cluster-small div { background-color: rgba(110, 204, 57, 0.6); } .marker-cluster-medium { background-color: rgba(241, 211, 87, 0.6); } .marker-cluster-medium div { background-color: rgba(240, 194, 12, 0.6); } .marker-cluster-large { background-color: rgba(253, 156, 115, 0.6); } .marker-cluster-large div { background-color: rgba(241, 128, 23, 0.6); } /* IE 6-8 fallback colors */ .leaflet-oldie .marker-cluster-small { background-color: rgb(181, 226, 140); } .leaflet-oldie .marker-cluster-small div { background-color: rgb(110, 204, 57); } .leaflet-oldie .marker-cluster-medium { background-color: rgb(241, 211, 87); } .leaflet-oldie .marker-cluster-medium div { background-color: rgb(240, 194, 12); } .leaflet-oldie .marker-cluster-large { background-color: rgb(253, 156, 115); } .leaflet-oldie .marker-cluster-large div { background-color: rgb(241, 128, 23); } .marker-cluster { background-clip: padding-box; border-radius: 20px; } .marker-cluster div { width: 30px; height: 30px; margin-left: 5px; margin-top: 5px; text-align: center; border-radius: 15px; font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif; } .marker-cluster span { line-height: 30px; } .leaflet-cluster-anim .leaflet-marker-icon,.leaflet-cluster-anim .leaflet-marker-shadow { -webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in; -moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in; -o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in; transition: transform 0.3s ease-out, opacity 0.3s ease-in; } .prevArrow { display: inline-block; width: 12px; height: 14px; margin-left: 16px; background-position: -45px 3px; } .nextArrow { display: inline-block; width: 12px; height: 14px; margin-left: 8px; background-position: -60px 3px; } footer { background-image: url(../img/byg.portal/patternBygleTransparent.png); background-position: bottom left; background-size: 2500px 1768px; height:260px; } @media ( -webkit-min-device-pixel-ratio : 2) , ( min-resolution : 192dpi) { footer { background-image: url(../img/byg.portal/[email protected]); } } /**/ div.directs { padding: 24px; background: #fff; color: #212121; line-height: 20px; font-size: 14px; overflow-x: hidden; } div.directs .value a span.derivedTitle{ font-weight: 300; } div.directs .value>div:not(.value) { padding-bottom: 12px; margin-top: 12px; background-image: url(../img/separatoreCorto.png); background-repeat: no-repeat; background-size: 16px 1px; background-position: bottom left; } div.directs .value>div:not(.value):first-child{ margin-top: 0; } div.directs .value>div:not(.value):last-child { padding: 0; background: none; } div.directs label { padding: 0 24px 0 0; } div.directs label a { color: #212121; } div.directs label a span { color: #212121; } div.directs .dType { font-size: 14px; font-weight: 300; color: #9e9e9e; position: absolute; right: 24px; text-align: right; padding-left: 16px; background-color: #fff; } div.directs span.clang { display: inline-block; text-transform: uppercase; letter-spacing: .7; margin-right: 5px; cursor: pointer; margin-bottom: 12px; } div.directs span.clang.sel{ text-decoration: underline; } div.directs .value a, div.directs .valuecnt a{ font-weight: 300; font-size: 14px; color: #212121; } div.directs .value a span{ font-weight: 500; color: #212121; } div.directs .value a:hover, div.directs .valuecnt a:hover{ text-decoration: underline; } div.directs .c2, div.directs .c4 { border-bottom: 1px solid #dbdbdb; padding-bottom: 12px; padding-top: 12px; } div.directs .c2:last-child, div.directs .c4:last-child { border-bottom: 0; padding-bottom: 0; padding-top: 12px; } div.directs label:nth-child(1) { padding-top: 0; } div.directs label { padding-top: 12px; } div.directs .c2:nth-child(2), div.directs .c4:nth-child(2){ padding-top: 0; } .directs.empty { padding: 0; min-height: 10px; } div.directs .value>div.lang { background: none; padding-bottom: 0; margin-top: 0 }
src/main/webapp/resources/css/bygle-portal.css
div.directs.bygportal .value>div:not(.value) { padding: 0; background-image: none; margin: 0; } div#bygmapcnt { padding: 24px; background: #fff; color: #212121; line-height: 20px; font-size: 14px; overflow-x: hidden; } div#bygmap { height: 250px; width: 100%; } .toNobreakLine, div.directs.bygportal .value>div:not(.value).toNobreakLine{ display: inline; white-space: nowrap; padding-right:14px } .toNobreakLine, div.directs.bygportal .value>div:not(.value).toNobreakLine span{ font-weight: 300; color:#ccc } /* map cluster */ .marker-cluster-small { background-color: rgba(181, 226, 140, 0.6); } .marker-cluster-small div { background-color: rgba(110, 204, 57, 0.6); } .marker-cluster-medium { background-color: rgba(241, 211, 87, 0.6); } .marker-cluster-medium div { background-color: rgba(240, 194, 12, 0.6); } .marker-cluster-large { background-color: rgba(253, 156, 115, 0.6); } .marker-cluster-large div { background-color: rgba(241, 128, 23, 0.6); } /* IE 6-8 fallback colors */ .leaflet-oldie .marker-cluster-small { background-color: rgb(181, 226, 140); } .leaflet-oldie .marker-cluster-small div { background-color: rgb(110, 204, 57); } .leaflet-oldie .marker-cluster-medium { background-color: rgb(241, 211, 87); } .leaflet-oldie .marker-cluster-medium div { background-color: rgb(240, 194, 12); } .leaflet-oldie .marker-cluster-large { background-color: rgb(253, 156, 115); } .leaflet-oldie .marker-cluster-large div { background-color: rgb(241, 128, 23); } .marker-cluster { background-clip: padding-box; border-radius: 20px; } .marker-cluster div { width: 30px; height: 30px; margin-left: 5px; margin-top: 5px; text-align: center; border-radius: 15px; font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif; } .marker-cluster span { line-height: 30px; } .leaflet-cluster-anim .leaflet-marker-icon,.leaflet-cluster-anim .leaflet-marker-shadow { -webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in; -moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in; -o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in; transition: transform 0.3s ease-out, opacity 0.3s ease-in; } .prevArrow { display: inline-block; width: 12px; height: 14px; margin-left: 16px; background-position: -45px 3px; } .nextArrow { display: inline-block; width: 12px; height: 14px; margin-left: 8px; background-position: -60px 3px; } footer { background-image: url(../img/byg.portal/patternBygleTransparent.png); background-position: bottom left; background-size: 2500px 1768px; height:260px; } @media ( -webkit-min-device-pixel-ratio : 2) , ( min-resolution : 192dpi) { footer { background-image: url(../img/byg.portal/[email protected]); } } /**/ div.directs { padding: 24px; background: #fff; color: #212121; line-height: 20px; font-size: 14px; overflow-x: hidden; } div.directs .value a span.derivedTitle{ font-weight: 300; } div.directs .value>div:not(.value) { padding-bottom: 12px; margin-top: 12px; background-image: url(../img/separatoreCorto.png); background-repeat: no-repeat; background-size: 16px 1px; background-position: bottom left; } div.directs .value>div:not(.value):first-child{ margin-top: 0; } div.directs .value>div:not(.value):last-child { padding: 0; background: none; } div.directs label { padding: 0 24px 0 0; } div.directs label a { color: #212121; } div.directs label a span { color: #212121; } div.directs .dType { font-size: 14px; font-weight: 300; color: #9e9e9e; position: absolute; right: 24px; text-align: right; padding-left: 16px; background-color: #fff; } div.directs span.clang { display: inline-block; text-transform: uppercase; letter-spacing: .7; margin-right: 5px; cursor: pointer; margin-bottom: 12px; } div.directs span.clang.sel{ text-decoration: underline; } div.directs .value a, div.directs .valuecnt a{ font-weight: 300; font-size: 14px; color: #212121; } div.directs .value a span{ font-weight: 500; color: #212121; } div.directs .value a:hover, div.directs .valuecnt a:hover{ text-decoration: underline; } div.directs .c2, div.directs .c4 { border-bottom: 1px solid #dbdbdb; padding-bottom: 12px; padding-top: 12px; } div.directs .c2:last-child, div.directs .c4:last-child { border-bottom: 0; padding-bottom: 0; padding-top: 12px; } div.directs label:nth-child(1) { padding-top: 0; } div.directs label { padding-top: 12px; } div.directs .c2:nth-child(2), div.directs .c4:nth-child(2){ padding-top: 0; } .directs.empty { padding: 0; min-height: 10px; } div.directs .value>div.lang { background: none; padding-bottom: 0; margin-top: 0 }
0.267887
0.10697
@import url(http://fonts.googleapis.com/css?family=Merriweather:400,300,300italic,400italic,700,700italic,900,900italic); @import url(//netdna.bootstrapcdn.com/font-awesome/3.0/css/font-awesome.css); /* normalize.css v3.0.1 | MIT License | git.io/normalize */ /* line 9, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ html { font-family: sans-serif; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; } /* line 19, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ body { margin: 0; } /* line 43, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { display: block; } /* line 55, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ audio, canvas, progress, video { display: inline-block; vertical-align: baseline; } /* line 65, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ audio:not([controls]) { display: none; height: 0; } /* line 76, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ [hidden], template { display: none; } /* line 87, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ a { background: transparent; } /* line 96, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ a:active, a:hover { outline: 0; } /* line 107, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ abbr[title] { border-bottom: 1px dotted; } /* line 116, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ b, strong { font-weight: bold; } /* line 124, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ dfn { font-style: italic; } /* line 133, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ h1 { font-size: 2em; margin: 0.67em 0; } /* line 142, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ mark { background: #ff0; color: #000; } /* line 151, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ small { font-size: 80%; } /* line 160, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } /* line 167, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ sup { top: -0.5em; } /* line 171, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ sub { bottom: -0.25em; } /* line 182, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ img { border: 0; } /* line 190, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ svg:not(:root) { overflow: hidden; } /* line 201, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ figure { margin: 1em 40px; } /* line 209, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ hr { -moz-box-sizing: content-box; box-sizing: content-box; height: 0; } /* line 219, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ pre { overflow: auto; } /* line 230, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; } /* line 254, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ button, input, optgroup, select, textarea { color: inherit; font: inherit; margin: 0; } /* line 264, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ button { overflow: visible; } /* line 276, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ button, select { text-transform: none; } /* line 291, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; } /* line 301, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ button[disabled], html input[disabled] { cursor: default; } /* line 310, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } /* line 320, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ input { line-height: normal; } /* line 333, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; } /* line 345, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; } /* line 355, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; } /* line 369, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } /* line 377, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; } /* line 388, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ legend { border: 0; padding: 0; } /* line 397, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ textarea { overflow: auto; } /* line 406, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ optgroup { font-weight: bold; } /* line 417, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ table { border-collapse: collapse; border-spacing: 0; } /* line 423, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ td, th { padding: 0; } @media print { /* line 8, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ * { text-shadow: none !important; color: #000 !important; background: transparent !important; box-shadow: none !important; } /* line 16, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ a, a:visited { text-decoration: underline; } /* line 20, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ a[href]:after { content: " (" attr(href) ")"; } /* line 24, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ abbr[title]:after { content: " (" attr(title) ")"; } /* line 30, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ thead { display: table-header-group; } /* line 45, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ tr, img { page-break-inside: avoid; } /* line 49, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ img { max-width: 100% !important; } /* line 55, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ p, h2, h3 { orphans: 3; widows: 3; } /* line 61, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ h2, h3 { page-break-after: avoid; } /* line 67, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ select { background: #fff !important; } /* line 72, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ .navbar { display: none; } /* line 77, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ .table td, .table th { background-color: #fff !important; } /* line 83, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ .btn > .caret, .dropup > .btn > .caret { border-top-color: #000 !important; } /* line 87, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ .label { border: 1px solid #000; } /* line 91, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ .table { border-collapse: collapse !important; } /* line 96, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ .table-bordered th, .table-bordered td { border: 1px solid #ddd !important; } } /* line 11, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } /* line 22, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ html { font-size: 10px; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } /* line 27, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ body { font-family: "Merriweather", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1; color: #333333; background-color: white; } /* line 39, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ input, button, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; } /* line 48, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ a { color: #bd6100; text-decoration: none; } /* line 53, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ a:hover, a:focus { color: #713a00; text-decoration: underline; } /* line 58, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ a:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } /* line 69, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ figure { margin: 0; } /* line 76, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ img { vertical-align: middle; } /* line 81, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ .img-responsive { display: block; width: 100% \9; max-width: 100%; height: auto; } /* line 86, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ .img-rounded { border-radius: 6px; } /* line 93, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ .img-thumbnail { padding: 4px; line-height: 1; background-color: white; border: 1px solid #dddddd; border-radius: 4px; -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; display: inline-block; width: 100% \9; max-width: 100%; height: auto; } /* line 106, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ .img-circle { border-radius: 50%; } /* line 113, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ hr { margin-top: 14px; margin-bottom: 14px; border: 0; border-top: 1px solid #ededed; } /* line 125, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ .sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; } /* line 142, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ .sr-only-focusable:active, .sr-only-focusable:focus { position: static; width: auto; height: auto; margin: 0; overflow: visible; clip: auto; } /* line 10, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_grid.scss */ .container { margin-right: auto; margin-left: auto; padding-left: 0px; padding-right: 0px; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .container:before, .container:after { content: " "; display: table; } /* line 19, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .container:after { clear: both; } @media (min-width: 768px) { /* line 10, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_grid.scss */ .container { width: 720px; } } @media (min-width: 992px) { /* line 10, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_grid.scss */ .container { width: 940px; } } @media (min-width: 1200px) { /* line 10, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_grid.scss */ .container { width: 1140px; } } /* line 30, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_grid.scss */ .container-fluid { margin-right: auto; margin-left: auto; padding-left: 0px; padding-right: 0px; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .container-fluid:before, .container-fluid:after { content: " "; display: table; } /* line 19, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .container-fluid:after { clear: both; } /* line 39, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_grid.scss */ .row { margin-left: 0px; margin-right: 0px; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .row:before, .row:after { content: " "; display: table; } /* line 19, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .row:after { clear: both; } /* line 11, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { position: relative; min-height: 1px; padding-left: 0px; padding-right: 0px; } /* line 27, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { float: left; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-1 { width: 8.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-2 { width: 16.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-3 { width: 25%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-4 { width: 33.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-5 { width: 41.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-6 { width: 50%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-7 { width: 58.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-8 { width: 66.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-9 { width: 75%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-10 { width: 83.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-11 { width: 91.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-12 { width: 100%; } /* line 55, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-pull-0 { right: auto; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-pull-1 { right: 8.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-pull-2 { right: 16.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-pull-3 { right: 25%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-pull-4 { right: 33.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-pull-5 { right: 41.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-pull-6 { right: 50%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-pull-7 { right: 58.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-pull-8 { right: 66.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-pull-9 { right: 75%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-pull-10 { right: 83.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-pull-11 { right: 91.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-pull-12 { right: 100%; } /* line 45, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-push-0 { left: auto; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-push-1 { left: 8.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-push-2 { left: 16.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-push-3 { left: 25%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-push-4 { left: 33.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-push-5 { left: 41.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-push-6 { left: 50%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-push-7 { left: 58.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-push-8 { left: 66.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-push-9 { left: 75%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-push-10 { left: 83.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-push-11 { left: 91.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-push-12 { left: 100%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-offset-0 { margin-left: 0%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-offset-1 { margin-left: 8.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-offset-2 { margin-left: 16.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-offset-3 { margin-left: 25%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-offset-4 { margin-left: 33.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-offset-5 { margin-left: 41.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-offset-6 { margin-left: 50%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-offset-7 { margin-left: 58.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-offset-8 { margin-left: 66.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-offset-9 { margin-left: 75%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-offset-10 { margin-left: 83.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-offset-11 { margin-left: 91.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-offset-12 { margin-left: 100%; } @media (min-width: 768px) { /* line 27, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { float: left; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-1 { width: 8.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-2 { width: 16.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-3 { width: 25%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-4 { width: 33.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-5 { width: 41.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-6 { width: 50%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-7 { width: 58.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-8 { width: 66.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-9 { width: 75%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-10 { width: 83.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-11 { width: 91.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-12 { width: 100%; } /* line 55, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-pull-0 { right: auto; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-pull-1 { right: 8.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-pull-2 { right: 16.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-pull-3 { right: 25%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-pull-4 { right: 33.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-pull-5 { right: 41.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-pull-6 { right: 50%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-pull-7 { right: 58.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-pull-8 { right: 66.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-pull-9 { right: 75%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-pull-10 { right: 83.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-pull-11 { right: 91.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-pull-12 { right: 100%; } /* line 45, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-push-0 { left: auto; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-push-1 { left: 8.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-push-2 { left: 16.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-push-3 { left: 25%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-push-4 { left: 33.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-push-5 { left: 41.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-push-6 { left: 50%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-push-7 { left: 58.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-push-8 { left: 66.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-push-9 { left: 75%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-push-10 { left: 83.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-push-11 { left: 91.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-push-12 { left: 100%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-offset-0 { margin-left: 0%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-offset-1 { margin-left: 8.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-offset-2 { margin-left: 16.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-offset-3 { margin-left: 25%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-offset-4 { margin-left: 33.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-offset-5 { margin-left: 41.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-offset-6 { margin-left: 50%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-offset-7 { margin-left: 58.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-offset-8 { margin-left: 66.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-offset-9 { margin-left: 75%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-offset-10 { margin-left: 83.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-offset-11 { margin-left: 91.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-offset-12 { margin-left: 100%; } } @media (min-width: 992px) { /* line 27, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { float: left; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-1 { width: 8.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-2 { width: 16.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-3 { width: 25%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-4 { width: 33.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-5 { width: 41.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-6 { width: 50%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-7 { width: 58.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-8 { width: 66.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-9 { width: 75%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-10 { width: 83.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-11 { width: 91.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-12 { width: 100%; } /* line 55, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-pull-0 { right: auto; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-pull-1 { right: 8.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-pull-2 { right: 16.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-pull-3 { right: 25%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-pull-4 { right: 33.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-pull-5 { right: 41.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-pull-6 { right: 50%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-pull-7 { right: 58.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-pull-8 { right: 66.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-pull-9 { right: 75%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-pull-10 { right: 83.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-pull-11 { right: 91.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-pull-12 { right: 100%; } /* line 45, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-push-0 { left: auto; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-push-1 { left: 8.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-push-2 { left: 16.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-push-3 { left: 25%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-push-4 { left: 33.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-push-5 { left: 41.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-push-6 { left: 50%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-push-7 { left: 58.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-push-8 { left: 66.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-push-9 { left: 75%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-push-10 { left: 83.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-push-11 { left: 91.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-push-12 { left: 100%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-offset-0 { margin-left: 0%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-offset-1 { margin-left: 8.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-offset-2 { margin-left: 16.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-offset-3 { margin-left: 25%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-offset-4 { margin-left: 33.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-offset-5 { margin-left: 41.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-offset-6 { margin-left: 50%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-offset-7 { margin-left: 58.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-offset-8 { margin-left: 66.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-offset-9 { margin-left: 75%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-offset-10 { margin-left: 83.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-offset-11 { margin-left: 91.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-offset-12 { margin-left: 100%; } } @media (min-width: 1200px) { /* line 27, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { float: left; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-1 { width: 8.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-2 { width: 16.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-3 { width: 25%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-4 { width: 33.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-5 { width: 41.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-6 { width: 50%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-7 { width: 58.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-8 { width: 66.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-9 { width: 75%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-10 { width: 83.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-11 { width: 91.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-12 { width: 100%; } /* line 55, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-pull-0 { right: auto; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-pull-1 { right: 8.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-pull-2 { right: 16.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-pull-3 { right: 25%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-pull-4 { right: 33.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-pull-5 { right: 41.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-pull-6 { right: 50%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-pull-7 { right: 58.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-pull-8 { right: 66.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-pull-9 { right: 75%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-pull-10 { right: 83.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-pull-11 { right: 91.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-pull-12 { right: 100%; } /* line 45, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-push-0 { left: auto; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-push-1 { left: 8.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-push-2 { left: 16.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-push-3 { left: 25%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-push-4 { left: 33.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-push-5 { left: 41.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-push-6 { left: 50%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-push-7 { left: 58.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-push-8 { left: 66.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-push-9 { left: 75%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-push-10 { left: 83.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-push-11 { left: 91.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-push-12 { left: 100%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-offset-0 { margin-left: 0%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-offset-1 { margin-left: 8.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-offset-2 { margin-left: 16.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-offset-3 { margin-left: 25%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-offset-4 { margin-left: 33.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-offset-5 { margin-left: 41.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-offset-6 { margin-left: 50%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-offset-7 { margin-left: 58.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-offset-8 { margin-left: 66.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-offset-9 { margin-left: 75%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-offset-10 { margin-left: 83.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-offset-11 { margin-left: 91.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-offset-12 { margin-left: 100%; } } /* line 6, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ table { background-color: transparent; } /* line 9, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ th { text-align: left; } /* line 16, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table { width: 100%; max-width: 100%; margin-bottom: 14px; } /* line 26, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table > thead > tr > th, .table > thead > tr > td, .table > tbody > tr > th, .table > tbody > tr > td, .table > tfoot > tr > th, .table > tfoot > tr > td { padding: 8px; line-height: 1; vertical-align: top; border-top: 1px solid #dddddd; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table > thead > tr > th { vertical-align: bottom; border-bottom: 2px solid #dddddd; } /* line 45, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table > caption + thead > tr:first-child > th, .table > caption + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > td, .table > thead:first-child > tr:first-child > th, .table > thead:first-child > tr:first-child > td { border-top: 0; } /* line 51, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table > tbody + tbody { border-top: 2px solid #dddddd; } /* line 56, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table .table { background-color: white; } /* line 70, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table-condensed > thead > tr > th, .table-condensed > thead > tr > td, .table-condensed > tbody > tr > th, .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > th, .table-condensed > tfoot > tr > td { padding: 5px; } /* line 82, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table-bordered { border: 1px solid #dddddd; } /* line 89, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table-bordered > thead > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > th, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > th, .table-bordered > tfoot > tr > td { border: 1px solid #dddddd; } /* line 96, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table-bordered > thead > tr > th, .table-bordered > thead > tr > td { border-bottom-width: 2px; } /* line 110, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table-striped > tbody > tr:nth-child(odd) > td, .table-striped > tbody > tr:nth-child(odd) > th { background-color: #f9f9f9; } /* line 124, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table-hover > tbody > tr:hover > td, .table-hover > tbody > tr:hover > th { background-color: whitesmoke; } /* line 135, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ table col[class*="col-"] { position: static; float: none; display: table-column; } /* line 143, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ table td[class*="col-"], table th[class*="col-"] { position: static; float: none; display: table-cell; } /* line 12, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table > thead > tr > td.active, .table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th, .table > tbody > tr > td.active, .table > tbody > tr > th.active, .table > tbody > tr.active > td, .table > tbody > tr.active > th, .table > tfoot > tr > td.active, .table > tfoot > tr > th.active, .table > tfoot > tr.active > td, .table > tfoot > tr.active > th { background-color: whitesmoke; } /* line 24, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th { background-color: #e8e8e8; } /* line 12, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table > thead > tr > td.success, .table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr > td.success, .table > tbody > tr > th.success, .table > tbody > tr.success > td, .table > tbody > tr.success > th, .table > tfoot > tr > td.success, .table > tfoot > tr > th.success, .table > tfoot > tr.success > td, .table > tfoot > tr.success > th { background-color: #dff0d8; } /* line 24, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th { background-color: #d0e9c6; } /* line 12, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table > thead > tr > td.info, .table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr > td.info, .table > tbody > tr > th.info, .table > tbody > tr.info > td, .table > tbody > tr.info > th, .table > tfoot > tr > td.info, .table > tfoot > tr > th.info, .table > tfoot > tr.info > td, .table > tfoot > tr.info > th { background-color: #d9edf7; } /* line 24, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th { background-color: #c4e3f3; } /* line 12, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table > thead > tr > td.warning, .table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr > td.warning, .table > tbody > tr > th.warning, .table > tbody > tr.warning > td, .table > tbody > tr.warning > th, .table > tfoot > tr > td.warning, .table > tfoot > tr > th.warning, .table > tfoot > tr.warning > td, .table > tfoot > tr.warning > th { background-color: #fcf8e3; } /* line 24, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th { background-color: #faf2cc; } /* line 12, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table > thead > tr > td.danger, .table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr > td.danger, .table > tbody > tr > th.danger, .table > tbody > tr.danger > td, .table > tbody > tr.danger > th, .table > tfoot > tr > td.danger, .table > tfoot > tr > th.danger, .table > tfoot > tr.danger > td, .table > tfoot > tr.danger > th { background-color: #f2dede; } /* line 24, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th { background-color: #ebcccc; } @media screen and (max-width: 767px) { /* line 171, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive { width: 100%; margin-bottom: 0px; overflow-y: hidden; overflow-x: auto; -ms-overflow-style: -ms-autohiding-scrollbar; border: 1px solid #dddddd; -webkit-overflow-scrolling: touch; } /* line 182, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive > .table { margin-bottom: 0; } /* line 191, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive > .table > thead > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > tfoot > tr > td { white-space: nowrap; } /* line 199, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive > .table-bordered { border: 0; } /* line 208, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive > .table-bordered > thead > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; } /* line 212, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive > .table-bordered > thead > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; } /* line 225, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > td { border-bottom: 0; } } /* line 10, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ fieldset { padding: 0; margin: 0; border: 0; min-width: 0; } /* line 20, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ legend { display: block; width: 100%; padding: 0; margin-bottom: 14px; font-size: 14px; line-height: inherit; color: #333333; border: 0; border-bottom: 1px solid #e5e5e5; } /* line 32, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ label { display: inline-block; max-width: 100%; margin-bottom: 5px; font-weight: bold; } /* line 47, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ input[type="search"] { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } /* line 53, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ input[type="radio"], input[type="checkbox"] { margin: 4px 0 0; margin-top: 1px \9; line-height: normal; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ input[type="file"] { display: block; } /* line 65, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ input[type="range"] { display: block; width: 100%; } /* line 72, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ select[multiple], select[size] { height: auto; } /* line 79, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } /* line 84, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ output { display: block; padding-top: 7px; font-size: 14px; line-height: 1; color: #545454; } /* line 115, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-control { display: block; width: 100%; height: 28px; padding: 6px 12px; font-size: 14px; line-height: 1; color: #545454; background-color: white; background-image: none; border: 1px solid #cccccc; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0); -webkit-transition: border-color ease-in-out 0.15s, 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; } /* line 53, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .form-control:focus { border-color: #66afe9; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 8px rgba(102, 175, 233, 0); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 8px rgba(102, 175, 233, 0); } /* line 102, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */ .form-control::-moz-placeholder { color: #757575; opacity: 1; } /* line 104, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */ .form-control:-ms-input-placeholder { color: #757575; } /* line 105, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */ .form-control::-webkit-input-placeholder { color: #757575; } /* line 143, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { cursor: not-allowed; background-color: #ededed; opacity: 1; } /* line 153, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ textarea.form-control { height: auto; } /* line 165, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ input[type="search"] { -webkit-appearance: none; } /* line 181, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"] { line-height: 28px; line-height: 1 \0; } /* line 186, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ input[type="date"].input-sm, .form-horizontal .form-group-sm input[type="date"].form-control, input[type="time"].input-sm, .form-horizontal .form-group-sm input[type="time"].form-control, input[type="datetime-local"].input-sm, .form-horizontal .form-group-sm input[type="datetime-local"].form-control, input[type="month"].input-sm, .form-horizontal .form-group-sm input[type="month"].form-control { line-height: 12px; } /* line 189, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ input[type="date"].input-lg, .form-horizontal .form-group-lg input[type="date"].form-control, input[type="time"].input-lg, .form-horizontal .form-group-lg input[type="time"].form-control, input[type="datetime-local"].input-lg, .form-horizontal .form-group-lg input[type="datetime-local"].form-control, input[type="month"].input-lg, .form-horizontal .form-group-lg input[type="month"].form-control { line-height: 36px; } /* line 200, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-group { margin-bottom: 15px; } /* line 210, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .radio, .checkbox { position: relative; display: block; min-height: 14px; margin-top: 10px; margin-bottom: 10px; } /* line 217, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .radio label, .checkbox label { padding-left: 20px; margin-bottom: 0; font-weight: normal; cursor: pointer; } /* line 227, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] { position: absolute; margin-left: -20px; margin-top: 4px \9; } /* line 234, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .radio + .radio, .checkbox + .checkbox { margin-top: -5px; } /* line 240, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .radio-inline, .checkbox-inline { display: inline-block; padding-left: 20px; margin-bottom: 0; vertical-align: middle; font-weight: normal; cursor: pointer; } /* line 249, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline { margin-top: 0; margin-left: 10px; } /* line 262, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ input[type="radio"][disabled], input[type="radio"].disabled, fieldset[disabled] input[type="radio"], input[type="checkbox"][disabled], input[type="checkbox"].disabled, fieldset[disabled] input[type="checkbox"] { cursor: not-allowed; } /* line 270, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .radio-inline.disabled, fieldset[disabled] .radio-inline, .checkbox-inline.disabled, fieldset[disabled] .checkbox-inline { cursor: not-allowed; } /* line 279, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .radio.disabled label, fieldset[disabled] .radio label, .checkbox.disabled label, fieldset[disabled] .checkbox label { cursor: not-allowed; } /* line 291, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-control-static { padding-top: 7px; padding-bottom: 7px; margin-bottom: 0; } /* line 299, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-control-static.input-lg, .form-horizontal .form-group-lg .form-control-static.form-control, .form-control-static.input-sm, .form-horizontal .form-group-sm .form-control-static.form-control { padding-left: 0; padding-right: 0; } /* line 67, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .input-sm, .form-horizontal .form-group-sm .form-control { height: 12px; padding: 5px 10px; font-size: 0px; line-height: 1; border-radius: 3px; } /* line 75, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ select.input-sm, .form-horizontal .form-group-sm select.form-control { height: 12px; line-height: 12px; } /* line 81, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ textarea.input-sm, .form-horizontal .form-group-sm textarea.form-control, select[multiple].input-sm, .form-horizontal .form-group-sm select[multiple].form-control { height: auto; } /* line 67, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .input-lg, .form-horizontal .form-group-lg .form-control { height: 36px; padding: 10px 16px; font-size: 14px; line-height: 1; border-radius: 6px; } /* line 75, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ select.input-lg, .form-horizontal .form-group-lg select.form-control { height: 36px; line-height: 36px; } /* line 81, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ textarea.input-lg, .form-horizontal .form-group-lg textarea.form-control, select[multiple].input-lg, .form-horizontal .form-group-lg select[multiple].form-control { height: auto; } /* line 320, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .has-feedback { position: relative; } /* line 325, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .has-feedback .form-control { padding-right: 28px; } /* line 330, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-control-feedback { position: absolute; top: 19px; right: 0; z-index: 2; display: block; width: 28px; height: 28px; line-height: 28px; text-align: center; } /* line 341, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .input-lg + .form-control-feedback, .form-horizontal .form-group-lg .form-control + .form-control-feedback { width: 36px; height: 36px; line-height: 36px; } /* line 346, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .input-sm + .form-control-feedback, .form-horizontal .form-group-sm .form-control + .form-control-feedback { width: 12px; height: 12px; line-height: 12px; } /* line 13, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline { color: #3c763d; } /* line 17, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-success .form-control { border-color: #3c763d; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0); } /* line 20, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-success .form-control:focus { border-color: #2b542c; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 6px #67b168; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 6px #67b168; } /* line 27, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-success .input-group-addon { color: #3c763d; border-color: #3c763d; background-color: #dff0d8; } /* line 33, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-success .form-control-feedback { color: #3c763d; } /* line 13, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline { color: #8a6d3b; } /* line 17, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-warning .form-control { border-color: #8a6d3b; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0); } /* line 20, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-warning .form-control:focus { border-color: #66512c; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 6px #c0a16b; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 6px #c0a16b; } /* line 27, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-warning .input-group-addon { color: #8a6d3b; border-color: #8a6d3b; background-color: #fcf8e3; } /* line 33, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-warning .form-control-feedback { color: #8a6d3b; } /* line 13, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline { color: #a94442; } /* line 17, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-error .form-control { border-color: #a94442; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0); } /* line 20, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-error .form-control:focus { border-color: #843534; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 6px #ce8483; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 6px #ce8483; } /* line 27, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-error .input-group-addon { color: #a94442; border-color: #a94442; background-color: #f2dede; } /* line 33, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-error .form-control-feedback { color: #a94442; } /* line 365, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .has-feedback label.sr-only ~ .form-control-feedback { top: 0; } /* line 375, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .help-block { display: block; margin-top: 5px; margin-bottom: 10px; color: #737373; } @media (min-width: 768px) { /* line 400, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .form-group { display: inline-block; margin-bottom: 0; vertical-align: middle; } /* line 407, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .form-control { display: inline-block; width: auto; vertical-align: middle; } /* line 413, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .input-group { display: inline-table; vertical-align: middle; } /* line 419, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn, .form-inline .input-group .form-control { width: auto; } /* line 425, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .input-group > .form-control { width: 100%; } /* line 429, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .control-label { margin-bottom: 0; vertical-align: middle; } /* line 438, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .radio, .form-inline .checkbox { display: inline-block; margin-top: 0; margin-bottom: 0; vertical-align: middle; } /* line 444, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .radio label, .form-inline .checkbox label { padding-left: 0; } /* line 449, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] { position: relative; margin-left: 0; } /* line 458, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .has-feedback .form-control-feedback { top: 0; } } /* line 478, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline { margin-top: 0; margin-bottom: 0; padding-top: 7px; } /* line 486, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-horizontal .radio, .form-horizontal .checkbox { min-height: 21px; } /* line 491, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-horizontal .form-group { margin-left: 0px; margin-right: 0px; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .form-horizontal .form-group:before, .form-horizontal .form-group:after { content: " "; display: table; } /* line 19, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .form-horizontal .form-group:after { clear: both; } @media (min-width: 768px) { /* line 498, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-horizontal .control-label { text-align: right; margin-bottom: 0; padding-top: 7px; } } /* line 509, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-horizontal .has-feedback .form-control-feedback { top: 0; right: 0px; } @media (min-width: 768px) { /* line 520, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-horizontal .form-group-lg .control-label { padding-top: 11px; } } @media (min-width: 768px) { /* line 530, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-horizontal .form-group-sm .control-label { padding-top: 6px; } } /* line 9, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn { display: inline-block; margin-bottom: 0; font-weight: normal; text-align: center; vertical-align: middle; cursor: pointer; background-image: none; border: 1px solid transparent; white-space: nowrap; padding: 6px 12px; font-size: 14px; line-height: 1; border-radius: 4px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } /* line 25, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn:focus, .btn:active:focus, .btn.active:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } /* line 31, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn:hover, .btn:focus { color: #333333; text-decoration: none; } /* line 37, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn:active, .btn.active { outline: 0; background-image: none; -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0); box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0); } /* line 45, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn.disabled, .btn[disabled], fieldset[disabled] .btn { cursor: not-allowed; pointer-events: none; opacity: 0; filter: alpha(opacity=0); -webkit-box-shadow: none; box-shadow: none; } /* line 57, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-default { color: #333333; background-color: white; border-color: #cccccc; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle { color: #333333; background-color: #e6e6e6; border-color: #adadad; } /* line 22, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle { background-image: none; } /* line 32, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled]:active, .btn-default[disabled].active, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active { background-color: white; border-color: #cccccc; } /* line 38, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-default .badge { color: white; background-color: #333333; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-primary { color: white; background-color: #bd6100; border-color: #a45400; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle { color: white; background-color: #8a4700; border-color: #663500; } /* line 22, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle { background-image: none; } /* line 32, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled]:active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active { background-color: #bd6100; border-color: #a45400; } /* line 38, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-primary .badge { color: #bd6100; background-color: white; } /* line 64, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-success { color: white; background-color: #5cb85c; border-color: #4cae4c; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle { color: white; background-color: #449d44; border-color: #398439; } /* line 22, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle { background-image: none; } /* line 32, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled]:active, .btn-success[disabled].active, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active { background-color: #5cb85c; border-color: #4cae4c; } /* line 38, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-success .badge { color: #5cb85c; background-color: white; } /* line 68, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-info { color: white; background-color: #5bc0de; border-color: #46b8da; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle { color: white; background-color: #31b0d5; border-color: #269abc; } /* line 22, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle { background-image: none; } /* line 32, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled]:active, .btn-info[disabled].active, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active { background-color: #5bc0de; border-color: #46b8da; } /* line 38, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-info .badge { color: #5bc0de; background-color: white; } /* line 72, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-warning { color: white; background-color: #f0ad4e; border-color: #eea236; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle { color: white; background-color: #ec971f; border-color: #d58512; } /* line 22, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle { background-image: none; } /* line 32, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled]:active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active { background-color: #f0ad4e; border-color: #eea236; } /* line 38, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-warning .badge { color: #f0ad4e; background-color: white; } /* line 76, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-danger { color: white; background-color: #d9534f; border-color: #d43f3a; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle { color: white; background-color: #c9302c; border-color: #ac2925; } /* line 22, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle { background-image: none; } /* line 32, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled]:active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active { background-color: #d9534f; border-color: #d43f3a; } /* line 38, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-danger .badge { color: #d9534f; background-color: white; } /* line 85, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-link { color: #bd6100; font-weight: normal; cursor: pointer; border-radius: 0; } /* line 94, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-link, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link { background-color: transparent; -webkit-box-shadow: none; box-shadow: none; } /* line 101, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { border-color: transparent; } /* line 105, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-link:hover, .btn-link:focus { color: #713a00; text-decoration: underline; background-color: transparent; } /* line 113, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus { color: #757575; text-decoration: none; } /* line 124, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-lg, .btn-group-lg > .btn { padding: 10px 16px; font-size: 14px; line-height: 1; border-radius: 6px; } /* line 128, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-sm, .btn-group-sm > .btn { padding: 5px 10px; font-size: 0px; line-height: 1; border-radius: 3px; } /* line 132, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-xs, .btn-group-xs > .btn { padding: 1px 5px; font-size: 0px; line-height: 1; border-radius: 3px; } /* line 140, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-block { display: block; width: 100%; } /* line 146, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-block + .btn-block { margin-top: 5px; } /* line 154, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block { width: 100%; } /* line 10, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_component-animations.scss */ .fade { opacity: 0; -webkit-transition: opacity 0.15s linear; -o-transition: opacity 0.15s linear; transition: opacity 0.15s linear; } /* line 13, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_component-animations.scss */ .fade.in { opacity: 1; } /* line 18, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_component-animations.scss */ .collapse { display: none; } /* line 21, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_component-animations.scss */ .collapse.in { display: block; } /* line 26, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_component-animations.scss */ tr.collapse.in { display: table-row; } /* line 28, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_component-animations.scss */ tbody.collapse.in { display: table-row-group; } /* line 30, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_component-animations.scss */ .collapsing { position: relative; height: 0; overflow: hidden; -webkit-transition: height 0.35s ease; -o-transition: height 0.35s ease; transition: height 0.35s ease; } /* line 7, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group, .btn-group-vertical { position: relative; display: inline-block; vertical-align: middle; } /* line 11, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group > .btn, .btn-group-vertical > .btn { position: relative; float: left; } /* line 18, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn:hover, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn.active { z-index: 2; } /* line 21, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group > .btn:focus, .btn-group-vertical > .btn:focus { outline: 0; } /* line 33, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group { margin-left: -1px; } /* line 39, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-toolbar { margin-left: -5px; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .btn-toolbar:before, .btn-toolbar:after { content: " "; display: table; } /* line 19, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .btn-toolbar:after { clear: both; } /* line 44, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-toolbar .btn-group, .btn-toolbar .input-group { float: left; } /* line 49, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group { margin-left: 5px; } /* line 54, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { border-radius: 0; } /* line 59, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group > .btn:first-child { margin-left: 0; } /* line 61, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { border-bottom-right-radius: 0; border-top-right-radius: 0; } /* line 67, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) { border-bottom-left-radius: 0; border-top-left-radius: 0; } /* line 72, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group > .btn-group { float: left; } /* line 75, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } /* line 80, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group > .btn-group:first-child > .btn:last-child, .btn-group > .btn-group:first-child > .dropdown-toggle { border-bottom-right-radius: 0; border-top-right-radius: 0; } /* line 84, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group > .btn-group:last-child > .btn:first-child { border-bottom-left-radius: 0; border-top-left-radius: 0; } /* line 90, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { outline: 0; } /* line 108, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group > .btn + .dropdown-toggle { padding-left: 8px; padding-right: 8px; } /* line 112, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle { padding-left: 12px; padding-right: 12px; } /* line 119, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group.open .dropdown-toggle { -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0); box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0); } /* line 123, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group.open .dropdown-toggle.btn-link { -webkit-box-shadow: none; box-shadow: none; } /* line 130, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn .caret { margin-left: 0; } /* line 134, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-lg .caret, .btn-group-lg > .btn .caret { border-width: 5px 5px 0; border-bottom-width: 0; } /* line 139, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret { border-width: 0 5px 5px; } /* line 150, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn { display: block; float: none; width: 100%; max-width: 100%; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after { content: " "; display: table; } /* line 19, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .btn-group-vertical > .btn-group:after { clear: both; } /* line 160, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group-vertical > .btn-group > .btn { float: none; } /* line 168, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group { margin-top: -1px; margin-left: 0; } /* line 175, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group-vertical > .btn:not(:first-child):not(:last-child) { border-radius: 0; } /* line 178, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group-vertical > .btn:first-child:not(:last-child) { border-top-right-radius: 4px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } /* line 182, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group-vertical > .btn:last-child:not(:first-child) { border-bottom-left-radius: 4px; border-top-right-radius: 0; border-top-left-radius: 0; } /* line 187, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } /* line 192, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } /* line 196, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { border-top-right-radius: 0; border-top-left-radius: 0; } /* line 205, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group-justified { display: table; width: 100%; table-layout: fixed; border-collapse: separate; } /* line 211, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group-justified > .btn, .btn-group-justified > .btn-group { float: none; display: table-cell; width: 1%; } /* line 216, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group-justified > .btn-group .btn { width: 100%; } /* line 220, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group-justified > .btn-group .dropdown-menu { left: auto; } /* line 236, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ [data-toggle="buttons"] > .btn > input[type="radio"], [data-toggle="buttons"] > .btn > input[type="checkbox"] { position: absolute; z-index: -1; opacity: 0; filter: alpha(opacity=0); } /* line 9, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav { margin-bottom: 0; padding-left: 0; list-style: none; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .nav:before, .nav:after { content: " "; display: table; } /* line 19, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .nav:after { clear: both; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav > li { position: relative; display: block; } /* line 19, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav > li > a { position: relative; display: block; padding: 10px 15px; } /* line 24, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav > li > a:hover, .nav > li > a:focus { text-decoration: none; background-color: #ededed; } /* line 31, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav > li.disabled > a { color: #757575; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav > li.disabled > a:hover, .nav > li.disabled > a:focus { color: #757575; text-decoration: none; background-color: transparent; cursor: not-allowed; } /* line 48, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav .open > a, .nav .open > a:hover, .nav .open > a:focus { background-color: #ededed; border-color: #bd6100; } /* line 59, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav .nav-divider { height: 1px; margin: 6px 0; overflow: hidden; background-color: #e5e5e5; } /* line 66, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav > li > a > img { max-width: none; } /* line 76, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-tabs { border-bottom: 1px solid #dddddd; } /* line 78, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-tabs > li { float: left; margin-bottom: -1px; } /* line 84, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-tabs > li > a { margin-right: 2px; line-height: 1; border: 1px solid transparent; border-radius: 4px 4px 0 0; } /* line 89, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-tabs > li > a:hover { border-color: #ededed #ededed #dddddd; } /* line 98, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { color: #545454; background-color: white; border: 1px solid #dddddd; border-bottom-color: transparent; cursor: default; } /* line 118, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-pills > li { float: left; } /* line 122, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-pills > li > a { border-radius: 4px; } /* line 125, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-pills > li + li { margin-left: 2px; } /* line 133, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { color: white; background-color: #bd6100; } /* line 144, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-stacked > li { float: none; } /* line 146, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-stacked > li + li { margin-top: 2px; margin-left: 0; } /* line 160, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-justified, .nav-tabs.nav-justified { width: 100%; } /* line 163, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-justified > li, .nav-tabs.nav-justified > li { float: none; } /* line 165, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-justified > li > a, .nav-tabs.nav-justified > li > a { text-align: center; margin-bottom: 5px; } /* line 171, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-justified > .dropdown .dropdown-menu { top: auto; left: auto; } @media (min-width: 768px) { /* line 177, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-justified > li, .nav-tabs.nav-justified > li { display: table-cell; width: 1%; } /* line 180, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-justified > li > a, .nav-tabs.nav-justified > li > a { margin-bottom: 0; } } /* line 190, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-tabs-justified, .nav-tabs.nav-justified { border-bottom: 0; } /* line 193, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { margin-right: 0; border-radius: 4px; } /* line 201, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus { border: 1px solid #dddddd; } @media (min-width: 768px) { /* line 206, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { border-bottom: 1px solid #dddddd; border-radius: 4px 4px 0 0; } /* line 212, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus { border-bottom-color: white; } } /* line 224, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .tab-content > .tab-pane { display: none; } /* line 227, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .tab-content > .active { display: block; } /* line 237, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-tabs .dropdown-menu { margin-top: -1px; border-top-right-radius: 0; border-top-left-radius: 0; } /* line 5, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-embed.scss */ .embed-responsive { position: relative; display: block; height: 0; padding: 0; overflow: hidden; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-embed.scss */ .embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object { position: absolute; top: 0; left: 0; bottom: 0; height: 100%; width: 100%; border: 0; } /* line 26, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-embed.scss */ .embed-responsive.embed-responsive-16by9 { padding-bottom: 56.25%; } /* line 31, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-embed.scss */ .embed-responsive.embed-responsive-4by3 { padding-bottom: 75%; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .clearfix:before, .clearfix:after { content: " "; display: table; } /* line 19, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .clearfix:after { clear: both; } /* line 12, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_utilities.scss */ .center-block { display: block; margin-left: auto; margin-right: auto; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_utilities.scss */ .pull-right { float: right !important; } /* line 18, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_utilities.scss */ .pull-left { float: left !important; } /* line 27, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_utilities.scss */ .hide { display: none !important; } /* line 30, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_utilities.scss */ .show { display: block !important; } /* line 33, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_utilities.scss */ .invisible { visibility: hidden; } /* line 36, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_utilities.scss */ .text-hide { font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0; } /* line 45, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_utilities.scss */ .hidden { display: none !important; visibility: hidden !important; } /* line 54, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_utilities.scss */ .affix { position: fixed; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } @-ms-viewport { width: device-width; } /* line 18, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ .visible-xs, .visible-sm, .visible-md, .visible-lg { display: none !important; } /* line 42, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block { display: none !important; } @media (max-width: 767px) { /* line 7, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ .visible-xs { display: block !important; } /* line 10, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ table.visible-xs { display: table; } /* line 11, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ tr.visible-xs { display: table-row !important; } /* line 13, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ th.visible-xs, td.visible-xs { display: table-cell !important; } } @media (max-width: 767px) { /* line 49, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-xs-block { display: block !important; } } @media (max-width: 767px) { /* line 54, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-xs-inline { display: inline !important; } } @media (max-width: 767px) { /* line 59, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-xs-inline-block { display: inline-block !important; } } @media (min-width: 768px) and (max-width: 991px) { /* line 7, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ .visible-sm { display: block !important; } /* line 10, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ table.visible-sm { display: table; } /* line 11, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ tr.visible-sm { display: table-row !important; } /* line 13, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ th.visible-sm, td.visible-sm { display: table-cell !important; } } @media (min-width: 768px) and (max-width: 991px) { /* line 68, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-sm-block { display: block !important; } } @media (min-width: 768px) and (max-width: 991px) { /* line 73, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-sm-inline { display: inline !important; } } @media (min-width: 768px) and (max-width: 991px) { /* line 78, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-sm-inline-block { display: inline-block !important; } } @media (min-width: 992px) and (max-width: 1199px) { /* line 7, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ .visible-md { display: block !important; } /* line 10, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ table.visible-md { display: table; } /* line 11, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ tr.visible-md { display: table-row !important; } /* line 13, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ th.visible-md, td.visible-md { display: table-cell !important; } } @media (min-width: 992px) and (max-width: 1199px) { /* line 87, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-md-block { display: block !important; } } @media (min-width: 992px) and (max-width: 1199px) { /* line 92, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-md-inline { display: inline !important; } } @media (min-width: 992px) and (max-width: 1199px) { /* line 97, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-md-inline-block { display: inline-block !important; } } @media (min-width: 1200px) { /* line 7, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ .visible-lg { display: block !important; } /* line 10, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ table.visible-lg { display: table; } /* line 11, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ tr.visible-lg { display: table-row !important; } /* line 13, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ th.visible-lg, td.visible-lg { display: table-cell !important; } } @media (min-width: 1200px) { /* line 106, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-lg-block { display: block !important; } } @media (min-width: 1200px) { /* line 111, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-lg-inline { display: inline !important; } } @media (min-width: 1200px) { /* line 116, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-lg-inline-block { display: inline-block !important; } } @media (max-width: 767px) { /* line 18, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ .hidden-xs { display: none !important; } } @media (min-width: 768px) and (max-width: 991px) { /* line 18, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ .hidden-sm { display: none !important; } } @media (min-width: 992px) and (max-width: 1199px) { /* line 18, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ .hidden-md { display: none !important; } } @media (min-width: 1200px) { /* line 18, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ .hidden-lg { display: none !important; } } /* line 18, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ .visible-print { display: none !important; } @media print { /* line 7, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ .visible-print { display: block !important; } /* line 10, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ table.visible-print { display: table; } /* line 11, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ tr.visible-print { display: table-row !important; } /* line 13, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ th.visible-print, td.visible-print { display: table-cell !important; } } /* line 150, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-print-block { display: none !important; } @media print { /* line 150, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-print-block { display: block !important; } } /* line 157, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-print-inline { display: none !important; } @media print { /* line 157, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-print-inline { display: inline !important; } } /* line 164, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-print-inline-block { display: none !important; } @media print { /* line 164, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-print-inline-block { display: inline-block !important; } } @media print { /* line 18, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ .hidden-print { display: none !important; } } /* line 1, ../scss/_ribbon.scss */ a:hover { cursor: pointer; text-decoration: none; } /* line 4, ../scss/_ribbon.scss */ a:hover .ribbon { width: 100%; background: #d76e00; } /* line 9, ../scss/_ribbon.scss */ .ribbon { margin-left: 50px; text-align: center; font-size: 1em; transition: all 0.3s; /* This ribbon is based on a 16px font side and a 24px vertical rhythm. I've used em's to position each element for scalability. If you want to use a different font size you may have to play with the position of the ribbon elements */ width: 95%; position: relative; background: #bd6100; color: #fff; text-align: center; padding: 1em 2em; /* Adjust to suit */ margin: 2em auto 3em; /* Based on 24px vertical rhythm. 48px bottom margin - normally 24 but the ribbon 'graphics' take up 24px themselves so we double it. */ } /* line 23, ../scss/_ribbon.scss */ .ribbon:before, .ribbon:after { content: ""; position: absolute; display: block; bottom: -1em; border: 1.5em solid #8a4700; z-index: -1; } /* line 31, ../scss/_ribbon.scss */ .ribbon:before { left: -2em; border-right-width: 1.5em; border-left-color: transparent; } /* line 36, ../scss/_ribbon.scss */ .ribbon:after { right: -2em; border-left-width: 1.5em; border-right-color: transparent; } /* line 41, ../scss/_ribbon.scss */ .ribbon .ribbon-content:before, .ribbon .ribbon-content:after { content: ""; position: absolute; display: block; border-style: solid; border-color: #572d00 transparent transparent transparent; bottom: -1em; } /* line 49, ../scss/_ribbon.scss */ .ribbon .ribbon-content:before { left: 0; border-width: 1em 0 0 1em; } /* line 53, ../scss/_ribbon.scss */ .ribbon .ribbon-content:after { right: 0; border-width: 1em 1em 0 0; } /* line 1, ../scss/_hexagon.scss */ .hexagon { position: relative; width: 70px; height: 40.41px; margin: 20.21px 20.21px; margin-bottom: 40px; margin-top: 40px; background-size: auto 80.8290px; background-position: center; } /* line 13, ../scss/_hexagon.scss */ .hexTop, .hexBottom { position: absolute; z-index: 1; width: 49.50px; height: 49.50px; overflow: hidden; -webkit-transform: scaleY(0.5774) rotate(-45deg); -ms-transform: scaleY(0.5774) rotate(-45deg); transform: scaleY(0.5774) rotate(-45deg); background: inherit; left: 10.25px; } /*counter transform the bg image on the caps*/ /* line 28, ../scss/_hexagon.scss */ .hexTop:after, .hexBottom:after { content: ""; position: absolute; width: 70.0000px; height: 40.414518843273804px; -webkit-transform: rotate(45deg) scaleY(1.7321) translateY(-20.2073px); -ms-transform: rotate(45deg) scaleY(1.7321) translateY(-20.2073px); transform: rotate(45deg) scaleY(1.7321) translateY(-20.2073px); -webkit-transform-origin: 0 0; -ms-transform-origin: 0 0; transform-origin: 0 0; background: inherit; } /* line 42, ../scss/_hexagon.scss */ .hexTop { top: -24.7487px; } /* line 46, ../scss/_hexagon.scss */ .hexTop:after { background-position: center top; } /* line 50, ../scss/_hexagon.scss */ .hexBottom { bottom: -24.7487px; } /* line 54, ../scss/_hexagon.scss */ .hexBottom:after { background-position: center bottom; } /* line 58, ../scss/_hexagon.scss */ .hexagon:after { content: ""; position: absolute; top: 0.0000px; left: 0; width: 70.0000px; height: 40.4145px; z-index: 2; background: inherit; } /* line 10, ../scss/main.scss */ * { margin: 0; } /* line 13, ../scss/main.scss */ html, body { height: 100%; } /* line 17, ../scss/main.scss */ body { background-image: url('/img/background.jpg?1414437371'); background-size: cover; } /* line 21, ../scss/main.scss */ ::selection { background-color: #ffad57; color: #333333; } /* line 25, ../scss/main.scss */ ::-moz-selection { background-color: #ffad57; color: #333333; } /* line 30, ../scss/main.scss */ h1, h2, h3, h4 { color: #bd6100; -webkit-font-smoothing: antialiased; } @media screen and (max-width: 770px) { /* line 30, ../scss/main.scss */ h1, h2, h3, h4 { color: black; } } /* line 37, ../scss/main.scss */ p { margin: 20px; display: block; text-align: justify; width: 90%; -webkit-margin-before: 1em; -webkit-margin-after: 1em; -webkit-margin-start: 0px; -webkit-margin-end: 0px; line-height: 1.7em; -webkit-font-smoothing: antialiased; font-weight: normal !important; } /* line 51, ../scss/main.scss */ #homelink { text-decoration: none; } /* line 55, ../scss/main.scss */ .headernav a { float: right; color: #757575; text-decoration: none; display: block; margin: 20px; transition: all 0.5s ease; } /* line 62, ../scss/main.scss */ .headernav a:hover { color: #bd6100; text-decoration: none; } /* line 69, ../scss/main.scss */ .header-unit { height: 70%; border-right: none; border-left: none; position: absolute; top: 65px; left: 0%; width: 100%; } /* line 78, ../scss/main.scss */ #video-container { position: absolute; top: 0%; left: 0%; height: 100%; max-height: 100%; width: 100%; overflow: hidden; } /* line 88, ../scss/main.scss */ video { position: absolute; z-index: 0; min-width: 100%; } /* line 95, ../scss/main.scss */ #videocontent { z-index: 40; margin: auto; position: absolute; top: 0; left: 0; bottom: 0; right: 0; text-align: center; background-color: rgba(128, 72, 0, 0); } /* line 103, ../scss/main.scss */ #videocontent h1 { margin: auto; margin-top: 20%; z-index: 60; color: white; } /* line 110, ../scss/main.scss */ #logincontainer, #registercontainer, #jobcreatecontainer { z-index: 100; position: fixed; bottom: 0; top: 0; left: 0; right: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0); } /* line 122, ../scss/main.scss */ #login, #register, #jobcreate { z-index: 200; background-image: url('/img/background.jpg?1414437371'); background-size: cover; text-align: center; background-color: white; position: fixed; margin: auto; top: 0; bottom: 0; left: 0; right: 0; width: 50%; height: 400px; } /* line 123, ../scss/main.scss */ #login ul, #register ul, #jobcreate ul { list-style: none; color: #d9534f; } /* line 138, ../scss/main.scss */ .button, .buttonapply, .buttoncancel, .buttoncontact { text-align: center; text-decoration: none; background-color: #4a91d4; color: white; padding: 10px; margin: 20px; width: 15%; border: none; cursor: pointer; display: inline-block; outline: none; position: relative; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; transition: all 0.3s; } /* line 154, ../scss/main.scss */ .button:hover, .buttonapply:hover, .buttoncancel:hover, .buttoncontact:hover { text-align: center; text-decoration: none; background-color: #437fb7; color: white; width: 21%; margin: 20px; } /* line 164, ../scss/main.scss */ .buttonapply { float: right; background-color: #5cb85c; } /* line 167, ../scss/main.scss */ .buttonapply:hover { text-align: center; background-color: #76d176; } /* line 173, ../scss/main.scss */ .buttoncontact { float: right; } /* line 176, ../scss/main.scss */ .buttoncancel { float: right; background-color: #d9534f; } /* line 179, ../scss/main.scss */ .buttoncancel:hover { text-align: center; background-color: #c9302c; } /* line 186, ../scss/main.scss */ p.jobtextinfo { font-size: 11px; } /* line 190, ../scss/main.scss */ #loginlink { cursor: pointer; } /* line 194, ../scss/main.scss */ #searchbar, #searchbarin { z-index: 5; box-shadow: 0px 5px 20px #888888; background-color: white; position: absolute; padding: 0.55em 50px 0.55em 3em; } /* line 200, ../scss/main.scss */ #searchbar #search-input, #searchbarin #search-input { line-height: normal; padding: 0.55em 0 0.55em 3em; border: 0; width: 100%; margin: 0px; color: #000; outline: none; background: inherit; box-sizing: border-box; -webkit-appearance: textfield; -webkit-rtl-ordering: logical; -webkit-user-select: text; cursor: auto; } /* line 215, ../scss/main.scss */ #searchbar i, #searchbarin i { position: inherit; padding: 0.55em 0 0.55em 1.5em; z-index: 5; } /* line 222, ../scss/main.scss */ #searchbarin { margin-top: 65px; width: 100%; border-top: 1px solid #ededed; } /* line 228, ../scss/main.scss */ #register { height: 700px; } /* line 232, ../scss/main.scss */ #jobcreate { height: 800px; } /* line 236, ../scss/main.scss */ #header { z-index: 80; background-color: white; } /* line 239, ../scss/main.scss */ #header .row { margin-left: 50px; margin-right: 50px; } /* line 244, ../scss/main.scss */ label { display: inline; width: 23%; margin: 1%; margin-left: 20px; } /* line 250, ../scss/main.scss */ input[type=checkbox] { display: none; } /* line 255, ../scss/main.scss */ input[type=checkbox] + label { background-color: #fafafa; border: 1px solid #cacece; box-shadow: 0 1px 2px rgba(0, 0, 0, 0), inset 0px -15px 10px -12px rgba(0, 0, 0, 0); padding: 9px; border-radius: 3px; display: inline-block; position: relative; } /* line 265, ../scss/main.scss */ input[type=checkbox] + label:active, input[type=checkbox]:checked + label:active { box-shadow: 0 1px 2px rgba(0, 0, 0, 0), inset 0px 1px 3px rgba(0, 0, 0, 0); } /* line 269, ../scss/main.scss */ input[type=checkbox]:checked + label { background-color: #e9ecee; border: 1px solid #adb8c0; box-shadow: 0 1px 2px rgba(0, 0, 0, 0), inset 0px -15px 10px -12px rgba(0, 0, 0, 0), inset 15px 10px -12px rgba(255, 255, 255, 0); color: #99a1a7; } /* line 276, ../scss/main.scss */ input[type=checkbox]:checked + label:after { content: '\2714'; font-size: 14px; position: absolute; top: 0px; left: 3px; color: #99a1a7; } /* line 287, ../scss/main.scss */ input { width: 80%; margin: 20px; padding: 10px; margin: 20px; width: 50%; border: none; display: inline-block; outline: none; position: relative; } /* line 298, ../scss/main.scss */ input[type=submit] { background-color: #4a91d4; color: white; padding: 10px; margin: 20px; width: 50%; border: none; cursor: pointer; display: inline-block; outline: none; position: relative; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; transition: all 0.3s; } /* line 312, ../scss/main.scss */ input[type=submit]:hover { text-align: center; background-color: #437fb7; width: 51%; } /* line 317, ../scss/main.scss */ input[type=submit] input[type=file] { width: 100%; } /* line 321, ../scss/main.scss */ .icon-remove-sign { cursor: pointer; float: right; margin-right: -3px; margin-top: -3px; z-index: 81; background-color: white; border-radius: 1000px; overflow: hidden; } /* line 332, ../scss/main.scss */ .registration { text-align: center; } /* line 335, ../scss/main.scss */ .commentitem { margin: 25px; margin-left: 20px; padding: 10px; border-bottom: 1px solid #757575; } /* line 341, ../scss/main.scss */ .comment { margin-top: 100px; border-top: 1px solid #757575; } /* line 346, ../scss/main.scss */ #profile p { background-color: #ededed; padding: 20px; border: 1px solid #757575; } /* line 352, ../scss/main.scss */ #profileedit input, input[type=submit], textarea { width: 50%; border: 1px solid #ededed; margin: 20px; padding: 10px; max-width: 80%; } /* line 360, ../scss/main.scss */ .jobstyle { border-left: solid 5px #bd6100; } /* line 362, ../scss/main.scss */ .jobstyle h1, .jobstyle p { margin-left: 25px; } /* line 367, ../scss/main.scss */ .profilestyle { border-left: solid 5px #bd6100; padding: 20px; } /* line 373, ../scss/main.scss */ .it { color: #d44a4a; } /* line 377, ../scss/main.scss */ .cat { cursor: pointer; } /* line 381, ../scss/main.scss */ section.it { color: black; border-left: solid 5px #d44a4a; } /* line 386, ../scss/main.scss */ .language { color: #d44a9e; } /* line 390, ../scss/main.scss */ section.language { color: black; border-left: solid 5px #d44a9e; } /* line 395, ../scss/main.scss */ .finances { color: #614ad4; } /* line 399, ../scss/main.scss */ section.finances { color: black; border-left: solid 5px #614ad4; } /* line 404, ../scss/main.scss */ .repairs { color: #4a91d4; } /* line 408, ../scss/main.scss */ section.repairs { color: black; border-left: solid 5px #4a91d4; } /* line 413, ../scss/main.scss */ .math { color: #66d8a4; } /* line 417, ../scss/main.scss */ section.math { color: black; border-left: solid 5px #66d8a4; } /* line 422, ../scss/main.scss */ .art { color: #a4d658; } /* line 426, ../scss/main.scss */ section.art { color: black; border-left: solid 5px #a4d658; } /* line 431, ../scss/main.scss */ .cooking { color: #d4a84a; } /* line 435, ../scss/main.scss */ section.cooking { color: black; border-left: solid 5px #d4a84a; } /* line 440, ../scss/main.scss */ .programming { color: #d4844a; } /* line 444, ../scss/main.scss */ section.programming { color: black; border-left: solid 5px #d4844a; } /* line 450, ../scss/main.scss */ #pagination { width: 100%; margin: 0 auto; text-align: center; } /* line 454, ../scss/main.scss */ #pagination a { font-size: 18px; padding: 5px; } /* line 460, ../scss/main.scss */ .biospecialist { padding-left: 80px; margin-top: -80px; margin-bottom: 80px; } /* line 466, ../scss/main.scss */ #category { max-width: 50%; } /* line 468, ../scss/main.scss */ #category p:nth-child(2n) { text-align: right; margin-top: -35px; } /* line 474, ../scss/main.scss */ .aboutus { text-indent: 110px; margin-top: -40px; } /* line 479, ../scss/main.scss */ .candidatetext { text-align: left; padding: 20px; display: block; font-size: 16px; background-color: #5cb85c; color: white; } /* line 488, ../scss/main.scss */ #footer { background-color: #bd6100; } /* line 490, ../scss/main.scss */ #footer h1, #footer small { color: white; } /* line 493, ../scss/main.scss */ #footer .copyright { text-align: center; padding: 25px; font-size: 15px; } /* line 499, ../scss/main.scss */ .page-wrap:after { height: 100px; } /* line 502, ../scss/main.scss */ #footer { height: 80px; } /* line 506, ../scss/main.scss */ .page-wrap { min-height: 100%; /* equal to footer height */ margin-bottom: -80px; } /* line 511, ../scss/main.scss */ .page-wrap:after { content: ""; display: block; } /* line 516, ../scss/main.scss */ .rating { font-size: 20px; unicode-bidi: bidi-override; text-align: left; direction: rtl; padding: 20px 0; } /* line 523, ../scss/main.scss */ .rating > span { display: inline-block; position: relative; width: 1.1em; } /* line 529, ../scss/main.scss */ .rating > span:hover:before, .rating > span:hover ~ span:before, .highlight { color: #bd6100; content: "\2605"; position: absolute; } /* line 535, ../scss/main.scss */ #searchresult { display: none; } /* line 537, ../scss/main.scss */ #searchresult div a { color: black; } /* line 542, ../scss/main.scss */ .comment h3 { margin-top: 10px; }
public/css/main.css
@import url(http://fonts.googleapis.com/css?family=Merriweather:400,300,300italic,400italic,700,700italic,900,900italic); @import url(//netdna.bootstrapcdn.com/font-awesome/3.0/css/font-awesome.css); /* normalize.css v3.0.1 | MIT License | git.io/normalize */ /* line 9, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ html { font-family: sans-serif; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; } /* line 19, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ body { margin: 0; } /* line 43, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { display: block; } /* line 55, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ audio, canvas, progress, video { display: inline-block; vertical-align: baseline; } /* line 65, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ audio:not([controls]) { display: none; height: 0; } /* line 76, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ [hidden], template { display: none; } /* line 87, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ a { background: transparent; } /* line 96, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ a:active, a:hover { outline: 0; } /* line 107, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ abbr[title] { border-bottom: 1px dotted; } /* line 116, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ b, strong { font-weight: bold; } /* line 124, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ dfn { font-style: italic; } /* line 133, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ h1 { font-size: 2em; margin: 0.67em 0; } /* line 142, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ mark { background: #ff0; color: #000; } /* line 151, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ small { font-size: 80%; } /* line 160, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } /* line 167, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ sup { top: -0.5em; } /* line 171, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ sub { bottom: -0.25em; } /* line 182, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ img { border: 0; } /* line 190, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ svg:not(:root) { overflow: hidden; } /* line 201, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ figure { margin: 1em 40px; } /* line 209, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ hr { -moz-box-sizing: content-box; box-sizing: content-box; height: 0; } /* line 219, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ pre { overflow: auto; } /* line 230, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; } /* line 254, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ button, input, optgroup, select, textarea { color: inherit; font: inherit; margin: 0; } /* line 264, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ button { overflow: visible; } /* line 276, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ button, select { text-transform: none; } /* line 291, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; } /* line 301, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ button[disabled], html input[disabled] { cursor: default; } /* line 310, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } /* line 320, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ input { line-height: normal; } /* line 333, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; } /* line 345, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; } /* line 355, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; } /* line 369, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } /* line 377, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; } /* line 388, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ legend { border: 0; padding: 0; } /* line 397, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ textarea { overflow: auto; } /* line 406, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ optgroup { font-weight: bold; } /* line 417, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ table { border-collapse: collapse; border-spacing: 0; } /* line 423, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_normalize.scss */ td, th { padding: 0; } @media print { /* line 8, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ * { text-shadow: none !important; color: #000 !important; background: transparent !important; box-shadow: none !important; } /* line 16, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ a, a:visited { text-decoration: underline; } /* line 20, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ a[href]:after { content: " (" attr(href) ")"; } /* line 24, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ abbr[title]:after { content: " (" attr(title) ")"; } /* line 30, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ thead { display: table-header-group; } /* line 45, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ tr, img { page-break-inside: avoid; } /* line 49, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ img { max-width: 100% !important; } /* line 55, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ p, h2, h3 { orphans: 3; widows: 3; } /* line 61, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ h2, h3 { page-break-after: avoid; } /* line 67, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ select { background: #fff !important; } /* line 72, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ .navbar { display: none; } /* line 77, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ .table td, .table th { background-color: #fff !important; } /* line 83, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ .btn > .caret, .dropup > .btn > .caret { border-top-color: #000 !important; } /* line 87, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ .label { border: 1px solid #000; } /* line 91, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ .table { border-collapse: collapse !important; } /* line 96, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_print.scss */ .table-bordered th, .table-bordered td { border: 1px solid #ddd !important; } } /* line 11, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } /* line 22, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ html { font-size: 10px; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } /* line 27, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ body { font-family: "Merriweather", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1; color: #333333; background-color: white; } /* line 39, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ input, button, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; } /* line 48, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ a { color: #bd6100; text-decoration: none; } /* line 53, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ a:hover, a:focus { color: #713a00; text-decoration: underline; } /* line 58, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ a:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } /* line 69, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ figure { margin: 0; } /* line 76, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ img { vertical-align: middle; } /* line 81, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ .img-responsive { display: block; width: 100% \9; max-width: 100%; height: auto; } /* line 86, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ .img-rounded { border-radius: 6px; } /* line 93, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ .img-thumbnail { padding: 4px; line-height: 1; background-color: white; border: 1px solid #dddddd; border-radius: 4px; -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; display: inline-block; width: 100% \9; max-width: 100%; height: auto; } /* line 106, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ .img-circle { border-radius: 50%; } /* line 113, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ hr { margin-top: 14px; margin-bottom: 14px; border: 0; border-top: 1px solid #ededed; } /* line 125, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ .sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; } /* line 142, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_scaffolding.scss */ .sr-only-focusable:active, .sr-only-focusable:focus { position: static; width: auto; height: auto; margin: 0; overflow: visible; clip: auto; } /* line 10, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_grid.scss */ .container { margin-right: auto; margin-left: auto; padding-left: 0px; padding-right: 0px; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .container:before, .container:after { content: " "; display: table; } /* line 19, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .container:after { clear: both; } @media (min-width: 768px) { /* line 10, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_grid.scss */ .container { width: 720px; } } @media (min-width: 992px) { /* line 10, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_grid.scss */ .container { width: 940px; } } @media (min-width: 1200px) { /* line 10, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_grid.scss */ .container { width: 1140px; } } /* line 30, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_grid.scss */ .container-fluid { margin-right: auto; margin-left: auto; padding-left: 0px; padding-right: 0px; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .container-fluid:before, .container-fluid:after { content: " "; display: table; } /* line 19, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .container-fluid:after { clear: both; } /* line 39, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_grid.scss */ .row { margin-left: 0px; margin-right: 0px; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .row:before, .row:after { content: " "; display: table; } /* line 19, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .row:after { clear: both; } /* line 11, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { position: relative; min-height: 1px; padding-left: 0px; padding-right: 0px; } /* line 27, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { float: left; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-1 { width: 8.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-2 { width: 16.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-3 { width: 25%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-4 { width: 33.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-5 { width: 41.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-6 { width: 50%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-7 { width: 58.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-8 { width: 66.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-9 { width: 75%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-10 { width: 83.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-11 { width: 91.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-12 { width: 100%; } /* line 55, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-pull-0 { right: auto; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-pull-1 { right: 8.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-pull-2 { right: 16.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-pull-3 { right: 25%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-pull-4 { right: 33.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-pull-5 { right: 41.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-pull-6 { right: 50%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-pull-7 { right: 58.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-pull-8 { right: 66.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-pull-9 { right: 75%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-pull-10 { right: 83.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-pull-11 { right: 91.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-pull-12 { right: 100%; } /* line 45, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-push-0 { left: auto; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-push-1 { left: 8.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-push-2 { left: 16.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-push-3 { left: 25%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-push-4 { left: 33.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-push-5 { left: 41.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-push-6 { left: 50%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-push-7 { left: 58.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-push-8 { left: 66.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-push-9 { left: 75%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-push-10 { left: 83.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-push-11 { left: 91.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-push-12 { left: 100%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-offset-0 { margin-left: 0%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-offset-1 { margin-left: 8.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-offset-2 { margin-left: 16.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-offset-3 { margin-left: 25%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-offset-4 { margin-left: 33.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-offset-5 { margin-left: 41.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-offset-6 { margin-left: 50%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-offset-7 { margin-left: 58.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-offset-8 { margin-left: 66.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-offset-9 { margin-left: 75%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-offset-10 { margin-left: 83.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-offset-11 { margin-left: 91.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xs-offset-12 { margin-left: 100%; } @media (min-width: 768px) { /* line 27, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { float: left; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-1 { width: 8.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-2 { width: 16.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-3 { width: 25%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-4 { width: 33.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-5 { width: 41.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-6 { width: 50%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-7 { width: 58.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-8 { width: 66.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-9 { width: 75%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-10 { width: 83.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-11 { width: 91.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-12 { width: 100%; } /* line 55, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-pull-0 { right: auto; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-pull-1 { right: 8.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-pull-2 { right: 16.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-pull-3 { right: 25%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-pull-4 { right: 33.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-pull-5 { right: 41.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-pull-6 { right: 50%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-pull-7 { right: 58.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-pull-8 { right: 66.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-pull-9 { right: 75%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-pull-10 { right: 83.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-pull-11 { right: 91.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-pull-12 { right: 100%; } /* line 45, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-push-0 { left: auto; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-push-1 { left: 8.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-push-2 { left: 16.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-push-3 { left: 25%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-push-4 { left: 33.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-push-5 { left: 41.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-push-6 { left: 50%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-push-7 { left: 58.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-push-8 { left: 66.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-push-9 { left: 75%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-push-10 { left: 83.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-push-11 { left: 91.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-push-12 { left: 100%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-offset-0 { margin-left: 0%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-offset-1 { margin-left: 8.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-offset-2 { margin-left: 16.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-offset-3 { margin-left: 25%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-offset-4 { margin-left: 33.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-offset-5 { margin-left: 41.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-offset-6 { margin-left: 50%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-offset-7 { margin-left: 58.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-offset-8 { margin-left: 66.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-offset-9 { margin-left: 75%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-offset-10 { margin-left: 83.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-offset-11 { margin-left: 91.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-offset-12 { margin-left: 100%; } } @media (min-width: 992px) { /* line 27, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { float: left; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-1 { width: 8.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-2 { width: 16.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-3 { width: 25%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-4 { width: 33.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-5 { width: 41.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-6 { width: 50%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-7 { width: 58.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-8 { width: 66.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-9 { width: 75%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-10 { width: 83.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-11 { width: 91.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-12 { width: 100%; } /* line 55, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-pull-0 { right: auto; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-pull-1 { right: 8.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-pull-2 { right: 16.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-pull-3 { right: 25%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-pull-4 { right: 33.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-pull-5 { right: 41.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-pull-6 { right: 50%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-pull-7 { right: 58.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-pull-8 { right: 66.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-pull-9 { right: 75%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-pull-10 { right: 83.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-pull-11 { right: 91.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-pull-12 { right: 100%; } /* line 45, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-push-0 { left: auto; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-push-1 { left: 8.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-push-2 { left: 16.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-push-3 { left: 25%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-push-4 { left: 33.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-push-5 { left: 41.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-push-6 { left: 50%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-push-7 { left: 58.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-push-8 { left: 66.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-push-9 { left: 75%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-push-10 { left: 83.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-push-11 { left: 91.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-push-12 { left: 100%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-offset-0 { margin-left: 0%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-offset-1 { margin-left: 8.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-offset-2 { margin-left: 16.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-offset-3 { margin-left: 25%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-offset-4 { margin-left: 33.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-offset-5 { margin-left: 41.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-offset-6 { margin-left: 50%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-offset-7 { margin-left: 58.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-offset-8 { margin-left: 66.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-offset-9 { margin-left: 75%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-offset-10 { margin-left: 83.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-offset-11 { margin-left: 91.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-offset-12 { margin-left: 100%; } } @media (min-width: 1200px) { /* line 27, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { float: left; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-1 { width: 8.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-2 { width: 16.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-3 { width: 25%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-4 { width: 33.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-5 { width: 41.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-6 { width: 50%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-7 { width: 58.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-8 { width: 66.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-9 { width: 75%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-10 { width: 83.33333%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-11 { width: 91.66667%; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-12 { width: 100%; } /* line 55, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-pull-0 { right: auto; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-pull-1 { right: 8.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-pull-2 { right: 16.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-pull-3 { right: 25%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-pull-4 { right: 33.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-pull-5 { right: 41.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-pull-6 { right: 50%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-pull-7 { right: 58.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-pull-8 { right: 66.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-pull-9 { right: 75%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-pull-10 { right: 83.33333%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-pull-11 { right: 91.66667%; } /* line 50, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-pull-12 { right: 100%; } /* line 45, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-push-0 { left: auto; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-push-1 { left: 8.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-push-2 { left: 16.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-push-3 { left: 25%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-push-4 { left: 33.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-push-5 { left: 41.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-push-6 { left: 50%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-push-7 { left: 58.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-push-8 { left: 66.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-push-9 { left: 75%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-push-10 { left: 83.33333%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-push-11 { left: 91.66667%; } /* line 40, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-push-12 { left: 100%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-offset-0 { margin-left: 0%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-offset-1 { margin-left: 8.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-offset-2 { margin-left: 16.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-offset-3 { margin-left: 25%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-offset-4 { margin-left: 33.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-offset-5 { margin-left: 41.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-offset-6 { margin-left: 50%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-offset-7 { margin-left: 58.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-offset-8 { margin-left: 66.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-offset-9 { margin-left: 75%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-offset-10 { margin-left: 83.33333%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-offset-11 { margin-left: 91.66667%; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-offset-12 { margin-left: 100%; } } /* line 6, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ table { background-color: transparent; } /* line 9, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ th { text-align: left; } /* line 16, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table { width: 100%; max-width: 100%; margin-bottom: 14px; } /* line 26, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table > thead > tr > th, .table > thead > tr > td, .table > tbody > tr > th, .table > tbody > tr > td, .table > tfoot > tr > th, .table > tfoot > tr > td { padding: 8px; line-height: 1; vertical-align: top; border-top: 1px solid #dddddd; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table > thead > tr > th { vertical-align: bottom; border-bottom: 2px solid #dddddd; } /* line 45, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table > caption + thead > tr:first-child > th, .table > caption + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > td, .table > thead:first-child > tr:first-child > th, .table > thead:first-child > tr:first-child > td { border-top: 0; } /* line 51, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table > tbody + tbody { border-top: 2px solid #dddddd; } /* line 56, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table .table { background-color: white; } /* line 70, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table-condensed > thead > tr > th, .table-condensed > thead > tr > td, .table-condensed > tbody > tr > th, .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > th, .table-condensed > tfoot > tr > td { padding: 5px; } /* line 82, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table-bordered { border: 1px solid #dddddd; } /* line 89, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table-bordered > thead > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > th, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > th, .table-bordered > tfoot > tr > td { border: 1px solid #dddddd; } /* line 96, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table-bordered > thead > tr > th, .table-bordered > thead > tr > td { border-bottom-width: 2px; } /* line 110, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table-striped > tbody > tr:nth-child(odd) > td, .table-striped > tbody > tr:nth-child(odd) > th { background-color: #f9f9f9; } /* line 124, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table-hover > tbody > tr:hover > td, .table-hover > tbody > tr:hover > th { background-color: whitesmoke; } /* line 135, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ table col[class*="col-"] { position: static; float: none; display: table-column; } /* line 143, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ table td[class*="col-"], table th[class*="col-"] { position: static; float: none; display: table-cell; } /* line 12, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table > thead > tr > td.active, .table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th, .table > tbody > tr > td.active, .table > tbody > tr > th.active, .table > tbody > tr.active > td, .table > tbody > tr.active > th, .table > tfoot > tr > td.active, .table > tfoot > tr > th.active, .table > tfoot > tr.active > td, .table > tfoot > tr.active > th { background-color: whitesmoke; } /* line 24, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th { background-color: #e8e8e8; } /* line 12, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table > thead > tr > td.success, .table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr > td.success, .table > tbody > tr > th.success, .table > tbody > tr.success > td, .table > tbody > tr.success > th, .table > tfoot > tr > td.success, .table > tfoot > tr > th.success, .table > tfoot > tr.success > td, .table > tfoot > tr.success > th { background-color: #dff0d8; } /* line 24, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th { background-color: #d0e9c6; } /* line 12, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table > thead > tr > td.info, .table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr > td.info, .table > tbody > tr > th.info, .table > tbody > tr.info > td, .table > tbody > tr.info > th, .table > tfoot > tr > td.info, .table > tfoot > tr > th.info, .table > tfoot > tr.info > td, .table > tfoot > tr.info > th { background-color: #d9edf7; } /* line 24, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th { background-color: #c4e3f3; } /* line 12, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table > thead > tr > td.warning, .table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr > td.warning, .table > tbody > tr > th.warning, .table > tbody > tr.warning > td, .table > tbody > tr.warning > th, .table > tfoot > tr > td.warning, .table > tfoot > tr > th.warning, .table > tfoot > tr.warning > td, .table > tfoot > tr.warning > th { background-color: #fcf8e3; } /* line 24, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th { background-color: #faf2cc; } /* line 12, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table > thead > tr > td.danger, .table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr > td.danger, .table > tbody > tr > th.danger, .table > tbody > tr.danger > td, .table > tbody > tr.danger > th, .table > tfoot > tr > td.danger, .table > tfoot > tr > th.danger, .table > tfoot > tr.danger > td, .table > tfoot > tr.danger > th { background-color: #f2dede; } /* line 24, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th { background-color: #ebcccc; } @media screen and (max-width: 767px) { /* line 171, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive { width: 100%; margin-bottom: 0px; overflow-y: hidden; overflow-x: auto; -ms-overflow-style: -ms-autohiding-scrollbar; border: 1px solid #dddddd; -webkit-overflow-scrolling: touch; } /* line 182, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive > .table { margin-bottom: 0; } /* line 191, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive > .table > thead > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > tfoot > tr > td { white-space: nowrap; } /* line 199, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive > .table-bordered { border: 0; } /* line 208, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive > .table-bordered > thead > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; } /* line 212, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive > .table-bordered > thead > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; } /* line 225, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > td { border-bottom: 0; } } /* line 10, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ fieldset { padding: 0; margin: 0; border: 0; min-width: 0; } /* line 20, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ legend { display: block; width: 100%; padding: 0; margin-bottom: 14px; font-size: 14px; line-height: inherit; color: #333333; border: 0; border-bottom: 1px solid #e5e5e5; } /* line 32, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ label { display: inline-block; max-width: 100%; margin-bottom: 5px; font-weight: bold; } /* line 47, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ input[type="search"] { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } /* line 53, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ input[type="radio"], input[type="checkbox"] { margin: 4px 0 0; margin-top: 1px \9; line-height: normal; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ input[type="file"] { display: block; } /* line 65, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ input[type="range"] { display: block; width: 100%; } /* line 72, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ select[multiple], select[size] { height: auto; } /* line 79, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } /* line 84, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ output { display: block; padding-top: 7px; font-size: 14px; line-height: 1; color: #545454; } /* line 115, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-control { display: block; width: 100%; height: 28px; padding: 6px 12px; font-size: 14px; line-height: 1; color: #545454; background-color: white; background-image: none; border: 1px solid #cccccc; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0); -webkit-transition: border-color ease-in-out 0.15s, 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; } /* line 53, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .form-control:focus { border-color: #66afe9; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 8px rgba(102, 175, 233, 0); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 8px rgba(102, 175, 233, 0); } /* line 102, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */ .form-control::-moz-placeholder { color: #757575; opacity: 1; } /* line 104, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */ .form-control:-ms-input-placeholder { color: #757575; } /* line 105, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */ .form-control::-webkit-input-placeholder { color: #757575; } /* line 143, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { cursor: not-allowed; background-color: #ededed; opacity: 1; } /* line 153, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ textarea.form-control { height: auto; } /* line 165, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ input[type="search"] { -webkit-appearance: none; } /* line 181, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"] { line-height: 28px; line-height: 1 \0; } /* line 186, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ input[type="date"].input-sm, .form-horizontal .form-group-sm input[type="date"].form-control, input[type="time"].input-sm, .form-horizontal .form-group-sm input[type="time"].form-control, input[type="datetime-local"].input-sm, .form-horizontal .form-group-sm input[type="datetime-local"].form-control, input[type="month"].input-sm, .form-horizontal .form-group-sm input[type="month"].form-control { line-height: 12px; } /* line 189, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ input[type="date"].input-lg, .form-horizontal .form-group-lg input[type="date"].form-control, input[type="time"].input-lg, .form-horizontal .form-group-lg input[type="time"].form-control, input[type="datetime-local"].input-lg, .form-horizontal .form-group-lg input[type="datetime-local"].form-control, input[type="month"].input-lg, .form-horizontal .form-group-lg input[type="month"].form-control { line-height: 36px; } /* line 200, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-group { margin-bottom: 15px; } /* line 210, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .radio, .checkbox { position: relative; display: block; min-height: 14px; margin-top: 10px; margin-bottom: 10px; } /* line 217, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .radio label, .checkbox label { padding-left: 20px; margin-bottom: 0; font-weight: normal; cursor: pointer; } /* line 227, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] { position: absolute; margin-left: -20px; margin-top: 4px \9; } /* line 234, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .radio + .radio, .checkbox + .checkbox { margin-top: -5px; } /* line 240, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .radio-inline, .checkbox-inline { display: inline-block; padding-left: 20px; margin-bottom: 0; vertical-align: middle; font-weight: normal; cursor: pointer; } /* line 249, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline { margin-top: 0; margin-left: 10px; } /* line 262, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ input[type="radio"][disabled], input[type="radio"].disabled, fieldset[disabled] input[type="radio"], input[type="checkbox"][disabled], input[type="checkbox"].disabled, fieldset[disabled] input[type="checkbox"] { cursor: not-allowed; } /* line 270, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .radio-inline.disabled, fieldset[disabled] .radio-inline, .checkbox-inline.disabled, fieldset[disabled] .checkbox-inline { cursor: not-allowed; } /* line 279, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .radio.disabled label, fieldset[disabled] .radio label, .checkbox.disabled label, fieldset[disabled] .checkbox label { cursor: not-allowed; } /* line 291, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-control-static { padding-top: 7px; padding-bottom: 7px; margin-bottom: 0; } /* line 299, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-control-static.input-lg, .form-horizontal .form-group-lg .form-control-static.form-control, .form-control-static.input-sm, .form-horizontal .form-group-sm .form-control-static.form-control { padding-left: 0; padding-right: 0; } /* line 67, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .input-sm, .form-horizontal .form-group-sm .form-control { height: 12px; padding: 5px 10px; font-size: 0px; line-height: 1; border-radius: 3px; } /* line 75, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ select.input-sm, .form-horizontal .form-group-sm select.form-control { height: 12px; line-height: 12px; } /* line 81, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ textarea.input-sm, .form-horizontal .form-group-sm textarea.form-control, select[multiple].input-sm, .form-horizontal .form-group-sm select[multiple].form-control { height: auto; } /* line 67, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .input-lg, .form-horizontal .form-group-lg .form-control { height: 36px; padding: 10px 16px; font-size: 14px; line-height: 1; border-radius: 6px; } /* line 75, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ select.input-lg, .form-horizontal .form-group-lg select.form-control { height: 36px; line-height: 36px; } /* line 81, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ textarea.input-lg, .form-horizontal .form-group-lg textarea.form-control, select[multiple].input-lg, .form-horizontal .form-group-lg select[multiple].form-control { height: auto; } /* line 320, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .has-feedback { position: relative; } /* line 325, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .has-feedback .form-control { padding-right: 28px; } /* line 330, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-control-feedback { position: absolute; top: 19px; right: 0; z-index: 2; display: block; width: 28px; height: 28px; line-height: 28px; text-align: center; } /* line 341, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .input-lg + .form-control-feedback, .form-horizontal .form-group-lg .form-control + .form-control-feedback { width: 36px; height: 36px; line-height: 36px; } /* line 346, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .input-sm + .form-control-feedback, .form-horizontal .form-group-sm .form-control + .form-control-feedback { width: 12px; height: 12px; line-height: 12px; } /* line 13, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline { color: #3c763d; } /* line 17, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-success .form-control { border-color: #3c763d; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0); } /* line 20, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-success .form-control:focus { border-color: #2b542c; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 6px #67b168; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 6px #67b168; } /* line 27, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-success .input-group-addon { color: #3c763d; border-color: #3c763d; background-color: #dff0d8; } /* line 33, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-success .form-control-feedback { color: #3c763d; } /* line 13, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline { color: #8a6d3b; } /* line 17, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-warning .form-control { border-color: #8a6d3b; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0); } /* line 20, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-warning .form-control:focus { border-color: #66512c; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 6px #c0a16b; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 6px #c0a16b; } /* line 27, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-warning .input-group-addon { color: #8a6d3b; border-color: #8a6d3b; background-color: #fcf8e3; } /* line 33, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-warning .form-control-feedback { color: #8a6d3b; } /* line 13, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline { color: #a94442; } /* line 17, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-error .form-control { border-color: #a94442; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0); } /* line 20, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-error .form-control:focus { border-color: #843534; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 6px #ce8483; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 6px #ce8483; } /* line 27, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-error .input-group-addon { color: #a94442; border-color: #a94442; background-color: #f2dede; } /* line 33, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_forms.scss */ .has-error .form-control-feedback { color: #a94442; } /* line 365, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .has-feedback label.sr-only ~ .form-control-feedback { top: 0; } /* line 375, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .help-block { display: block; margin-top: 5px; margin-bottom: 10px; color: #737373; } @media (min-width: 768px) { /* line 400, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .form-group { display: inline-block; margin-bottom: 0; vertical-align: middle; } /* line 407, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .form-control { display: inline-block; width: auto; vertical-align: middle; } /* line 413, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .input-group { display: inline-table; vertical-align: middle; } /* line 419, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn, .form-inline .input-group .form-control { width: auto; } /* line 425, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .input-group > .form-control { width: 100%; } /* line 429, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .control-label { margin-bottom: 0; vertical-align: middle; } /* line 438, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .radio, .form-inline .checkbox { display: inline-block; margin-top: 0; margin-bottom: 0; vertical-align: middle; } /* line 444, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .radio label, .form-inline .checkbox label { padding-left: 0; } /* line 449, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] { position: relative; margin-left: 0; } /* line 458, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .has-feedback .form-control-feedback { top: 0; } } /* line 478, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline { margin-top: 0; margin-bottom: 0; padding-top: 7px; } /* line 486, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-horizontal .radio, .form-horizontal .checkbox { min-height: 21px; } /* line 491, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-horizontal .form-group { margin-left: 0px; margin-right: 0px; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .form-horizontal .form-group:before, .form-horizontal .form-group:after { content: " "; display: table; } /* line 19, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .form-horizontal .form-group:after { clear: both; } @media (min-width: 768px) { /* line 498, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-horizontal .control-label { text-align: right; margin-bottom: 0; padding-top: 7px; } } /* line 509, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-horizontal .has-feedback .form-control-feedback { top: 0; right: 0px; } @media (min-width: 768px) { /* line 520, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-horizontal .form-group-lg .control-label { padding-top: 11px; } } @media (min-width: 768px) { /* line 530, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_forms.scss */ .form-horizontal .form-group-sm .control-label { padding-top: 6px; } } /* line 9, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn { display: inline-block; margin-bottom: 0; font-weight: normal; text-align: center; vertical-align: middle; cursor: pointer; background-image: none; border: 1px solid transparent; white-space: nowrap; padding: 6px 12px; font-size: 14px; line-height: 1; border-radius: 4px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } /* line 25, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn:focus, .btn:active:focus, .btn.active:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } /* line 31, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn:hover, .btn:focus { color: #333333; text-decoration: none; } /* line 37, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn:active, .btn.active { outline: 0; background-image: none; -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0); box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0); } /* line 45, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn.disabled, .btn[disabled], fieldset[disabled] .btn { cursor: not-allowed; pointer-events: none; opacity: 0; filter: alpha(opacity=0); -webkit-box-shadow: none; box-shadow: none; } /* line 57, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-default { color: #333333; background-color: white; border-color: #cccccc; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle { color: #333333; background-color: #e6e6e6; border-color: #adadad; } /* line 22, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle { background-image: none; } /* line 32, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled]:active, .btn-default[disabled].active, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active { background-color: white; border-color: #cccccc; } /* line 38, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-default .badge { color: white; background-color: #333333; } /* line 60, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-primary { color: white; background-color: #bd6100; border-color: #a45400; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle { color: white; background-color: #8a4700; border-color: #663500; } /* line 22, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle { background-image: none; } /* line 32, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled]:active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active { background-color: #bd6100; border-color: #a45400; } /* line 38, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-primary .badge { color: #bd6100; background-color: white; } /* line 64, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-success { color: white; background-color: #5cb85c; border-color: #4cae4c; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle { color: white; background-color: #449d44; border-color: #398439; } /* line 22, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle { background-image: none; } /* line 32, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled]:active, .btn-success[disabled].active, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active { background-color: #5cb85c; border-color: #4cae4c; } /* line 38, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-success .badge { color: #5cb85c; background-color: white; } /* line 68, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-info { color: white; background-color: #5bc0de; border-color: #46b8da; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle { color: white; background-color: #31b0d5; border-color: #269abc; } /* line 22, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle { background-image: none; } /* line 32, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled]:active, .btn-info[disabled].active, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active { background-color: #5bc0de; border-color: #46b8da; } /* line 38, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-info .badge { color: #5bc0de; background-color: white; } /* line 72, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-warning { color: white; background-color: #f0ad4e; border-color: #eea236; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle { color: white; background-color: #ec971f; border-color: #d58512; } /* line 22, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle { background-image: none; } /* line 32, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled]:active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active { background-color: #f0ad4e; border-color: #eea236; } /* line 38, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-warning .badge { color: #f0ad4e; background-color: white; } /* line 76, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-danger { color: white; background-color: #d9534f; border-color: #d43f3a; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle { color: white; background-color: #c9302c; border-color: #ac2925; } /* line 22, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle { background-image: none; } /* line 32, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled]:active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active { background-color: #d9534f; border-color: #d43f3a; } /* line 38, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-danger .badge { color: #d9534f; background-color: white; } /* line 85, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-link { color: #bd6100; font-weight: normal; cursor: pointer; border-radius: 0; } /* line 94, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-link, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link { background-color: transparent; -webkit-box-shadow: none; box-shadow: none; } /* line 101, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { border-color: transparent; } /* line 105, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-link:hover, .btn-link:focus { color: #713a00; text-decoration: underline; background-color: transparent; } /* line 113, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus { color: #757575; text-decoration: none; } /* line 124, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-lg, .btn-group-lg > .btn { padding: 10px 16px; font-size: 14px; line-height: 1; border-radius: 6px; } /* line 128, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-sm, .btn-group-sm > .btn { padding: 5px 10px; font-size: 0px; line-height: 1; border-radius: 3px; } /* line 132, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-xs, .btn-group-xs > .btn { padding: 1px 5px; font-size: 0px; line-height: 1; border-radius: 3px; } /* line 140, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-block { display: block; width: 100%; } /* line 146, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ .btn-block + .btn-block { margin-top: 5px; } /* line 154, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_buttons.scss */ input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block { width: 100%; } /* line 10, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_component-animations.scss */ .fade { opacity: 0; -webkit-transition: opacity 0.15s linear; -o-transition: opacity 0.15s linear; transition: opacity 0.15s linear; } /* line 13, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_component-animations.scss */ .fade.in { opacity: 1; } /* line 18, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_component-animations.scss */ .collapse { display: none; } /* line 21, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_component-animations.scss */ .collapse.in { display: block; } /* line 26, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_component-animations.scss */ tr.collapse.in { display: table-row; } /* line 28, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_component-animations.scss */ tbody.collapse.in { display: table-row-group; } /* line 30, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_component-animations.scss */ .collapsing { position: relative; height: 0; overflow: hidden; -webkit-transition: height 0.35s ease; -o-transition: height 0.35s ease; transition: height 0.35s ease; } /* line 7, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group, .btn-group-vertical { position: relative; display: inline-block; vertical-align: middle; } /* line 11, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group > .btn, .btn-group-vertical > .btn { position: relative; float: left; } /* line 18, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn:hover, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn.active { z-index: 2; } /* line 21, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group > .btn:focus, .btn-group-vertical > .btn:focus { outline: 0; } /* line 33, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group { margin-left: -1px; } /* line 39, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-toolbar { margin-left: -5px; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .btn-toolbar:before, .btn-toolbar:after { content: " "; display: table; } /* line 19, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .btn-toolbar:after { clear: both; } /* line 44, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-toolbar .btn-group, .btn-toolbar .input-group { float: left; } /* line 49, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group { margin-left: 5px; } /* line 54, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { border-radius: 0; } /* line 59, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group > .btn:first-child { margin-left: 0; } /* line 61, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { border-bottom-right-radius: 0; border-top-right-radius: 0; } /* line 67, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) { border-bottom-left-radius: 0; border-top-left-radius: 0; } /* line 72, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group > .btn-group { float: left; } /* line 75, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } /* line 80, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group > .btn-group:first-child > .btn:last-child, .btn-group > .btn-group:first-child > .dropdown-toggle { border-bottom-right-radius: 0; border-top-right-radius: 0; } /* line 84, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group > .btn-group:last-child > .btn:first-child { border-bottom-left-radius: 0; border-top-left-radius: 0; } /* line 90, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { outline: 0; } /* line 108, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group > .btn + .dropdown-toggle { padding-left: 8px; padding-right: 8px; } /* line 112, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle { padding-left: 12px; padding-right: 12px; } /* line 119, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group.open .dropdown-toggle { -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0); box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0); } /* line 123, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group.open .dropdown-toggle.btn-link { -webkit-box-shadow: none; box-shadow: none; } /* line 130, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn .caret { margin-left: 0; } /* line 134, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-lg .caret, .btn-group-lg > .btn .caret { border-width: 5px 5px 0; border-bottom-width: 0; } /* line 139, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret { border-width: 0 5px 5px; } /* line 150, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn { display: block; float: none; width: 100%; max-width: 100%; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after { content: " "; display: table; } /* line 19, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .btn-group-vertical > .btn-group:after { clear: both; } /* line 160, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group-vertical > .btn-group > .btn { float: none; } /* line 168, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group { margin-top: -1px; margin-left: 0; } /* line 175, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group-vertical > .btn:not(:first-child):not(:last-child) { border-radius: 0; } /* line 178, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group-vertical > .btn:first-child:not(:last-child) { border-top-right-radius: 4px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } /* line 182, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group-vertical > .btn:last-child:not(:first-child) { border-bottom-left-radius: 4px; border-top-right-radius: 0; border-top-left-radius: 0; } /* line 187, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } /* line 192, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } /* line 196, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { border-top-right-radius: 0; border-top-left-radius: 0; } /* line 205, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group-justified { display: table; width: 100%; table-layout: fixed; border-collapse: separate; } /* line 211, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group-justified > .btn, .btn-group-justified > .btn-group { float: none; display: table-cell; width: 1%; } /* line 216, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group-justified > .btn-group .btn { width: 100%; } /* line 220, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ .btn-group-justified > .btn-group .dropdown-menu { left: auto; } /* line 236, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_button-groups.scss */ [data-toggle="buttons"] > .btn > input[type="radio"], [data-toggle="buttons"] > .btn > input[type="checkbox"] { position: absolute; z-index: -1; opacity: 0; filter: alpha(opacity=0); } /* line 9, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav { margin-bottom: 0; padding-left: 0; list-style: none; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .nav:before, .nav:after { content: " "; display: table; } /* line 19, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .nav:after { clear: both; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav > li { position: relative; display: block; } /* line 19, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav > li > a { position: relative; display: block; padding: 10px 15px; } /* line 24, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav > li > a:hover, .nav > li > a:focus { text-decoration: none; background-color: #ededed; } /* line 31, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav > li.disabled > a { color: #757575; } /* line 35, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav > li.disabled > a:hover, .nav > li.disabled > a:focus { color: #757575; text-decoration: none; background-color: transparent; cursor: not-allowed; } /* line 48, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav .open > a, .nav .open > a:hover, .nav .open > a:focus { background-color: #ededed; border-color: #bd6100; } /* line 59, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav .nav-divider { height: 1px; margin: 6px 0; overflow: hidden; background-color: #e5e5e5; } /* line 66, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav > li > a > img { max-width: none; } /* line 76, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-tabs { border-bottom: 1px solid #dddddd; } /* line 78, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-tabs > li { float: left; margin-bottom: -1px; } /* line 84, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-tabs > li > a { margin-right: 2px; line-height: 1; border: 1px solid transparent; border-radius: 4px 4px 0 0; } /* line 89, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-tabs > li > a:hover { border-color: #ededed #ededed #dddddd; } /* line 98, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { color: #545454; background-color: white; border: 1px solid #dddddd; border-bottom-color: transparent; cursor: default; } /* line 118, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-pills > li { float: left; } /* line 122, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-pills > li > a { border-radius: 4px; } /* line 125, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-pills > li + li { margin-left: 2px; } /* line 133, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { color: white; background-color: #bd6100; } /* line 144, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-stacked > li { float: none; } /* line 146, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-stacked > li + li { margin-top: 2px; margin-left: 0; } /* line 160, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-justified, .nav-tabs.nav-justified { width: 100%; } /* line 163, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-justified > li, .nav-tabs.nav-justified > li { float: none; } /* line 165, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-justified > li > a, .nav-tabs.nav-justified > li > a { text-align: center; margin-bottom: 5px; } /* line 171, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-justified > .dropdown .dropdown-menu { top: auto; left: auto; } @media (min-width: 768px) { /* line 177, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-justified > li, .nav-tabs.nav-justified > li { display: table-cell; width: 1%; } /* line 180, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-justified > li > a, .nav-tabs.nav-justified > li > a { margin-bottom: 0; } } /* line 190, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-tabs-justified, .nav-tabs.nav-justified { border-bottom: 0; } /* line 193, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { margin-right: 0; border-radius: 4px; } /* line 201, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus { border: 1px solid #dddddd; } @media (min-width: 768px) { /* line 206, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { border-bottom: 1px solid #dddddd; border-radius: 4px 4px 0 0; } /* line 212, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus { border-bottom-color: white; } } /* line 224, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .tab-content > .tab-pane { display: none; } /* line 227, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .tab-content > .active { display: block; } /* line 237, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_navs.scss */ .nav-tabs .dropdown-menu { margin-top: -1px; border-top-right-radius: 0; border-top-left-radius: 0; } /* line 5, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-embed.scss */ .embed-responsive { position: relative; display: block; height: 0; padding: 0; overflow: hidden; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-embed.scss */ .embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object { position: absolute; top: 0; left: 0; bottom: 0; height: 100%; width: 100%; border: 0; } /* line 26, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-embed.scss */ .embed-responsive.embed-responsive-16by9 { padding-bottom: 56.25%; } /* line 31, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-embed.scss */ .embed-responsive.embed-responsive-4by3 { padding-bottom: 75%; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .clearfix:before, .clearfix:after { content: " "; display: table; } /* line 19, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .clearfix:after { clear: both; } /* line 12, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_utilities.scss */ .center-block { display: block; margin-left: auto; margin-right: auto; } /* line 15, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_utilities.scss */ .pull-right { float: right !important; } /* line 18, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_utilities.scss */ .pull-left { float: left !important; } /* line 27, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_utilities.scss */ .hide { display: none !important; } /* line 30, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_utilities.scss */ .show { display: block !important; } /* line 33, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_utilities.scss */ .invisible { visibility: hidden; } /* line 36, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_utilities.scss */ .text-hide { font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0; } /* line 45, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_utilities.scss */ .hidden { display: none !important; visibility: hidden !important; } /* line 54, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_utilities.scss */ .affix { position: fixed; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } @-ms-viewport { width: device-width; } /* line 18, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ .visible-xs, .visible-sm, .visible-md, .visible-lg { display: none !important; } /* line 42, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block { display: none !important; } @media (max-width: 767px) { /* line 7, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ .visible-xs { display: block !important; } /* line 10, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ table.visible-xs { display: table; } /* line 11, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ tr.visible-xs { display: table-row !important; } /* line 13, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ th.visible-xs, td.visible-xs { display: table-cell !important; } } @media (max-width: 767px) { /* line 49, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-xs-block { display: block !important; } } @media (max-width: 767px) { /* line 54, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-xs-inline { display: inline !important; } } @media (max-width: 767px) { /* line 59, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-xs-inline-block { display: inline-block !important; } } @media (min-width: 768px) and (max-width: 991px) { /* line 7, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ .visible-sm { display: block !important; } /* line 10, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ table.visible-sm { display: table; } /* line 11, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ tr.visible-sm { display: table-row !important; } /* line 13, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ th.visible-sm, td.visible-sm { display: table-cell !important; } } @media (min-width: 768px) and (max-width: 991px) { /* line 68, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-sm-block { display: block !important; } } @media (min-width: 768px) and (max-width: 991px) { /* line 73, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-sm-inline { display: inline !important; } } @media (min-width: 768px) and (max-width: 991px) { /* line 78, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-sm-inline-block { display: inline-block !important; } } @media (min-width: 992px) and (max-width: 1199px) { /* line 7, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ .visible-md { display: block !important; } /* line 10, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ table.visible-md { display: table; } /* line 11, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ tr.visible-md { display: table-row !important; } /* line 13, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ th.visible-md, td.visible-md { display: table-cell !important; } } @media (min-width: 992px) and (max-width: 1199px) { /* line 87, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-md-block { display: block !important; } } @media (min-width: 992px) and (max-width: 1199px) { /* line 92, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-md-inline { display: inline !important; } } @media (min-width: 992px) and (max-width: 1199px) { /* line 97, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-md-inline-block { display: inline-block !important; } } @media (min-width: 1200px) { /* line 7, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ .visible-lg { display: block !important; } /* line 10, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ table.visible-lg { display: table; } /* line 11, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ tr.visible-lg { display: table-row !important; } /* line 13, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ th.visible-lg, td.visible-lg { display: table-cell !important; } } @media (min-width: 1200px) { /* line 106, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-lg-block { display: block !important; } } @media (min-width: 1200px) { /* line 111, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-lg-inline { display: inline !important; } } @media (min-width: 1200px) { /* line 116, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-lg-inline-block { display: inline-block !important; } } @media (max-width: 767px) { /* line 18, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ .hidden-xs { display: none !important; } } @media (min-width: 768px) and (max-width: 991px) { /* line 18, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ .hidden-sm { display: none !important; } } @media (min-width: 992px) and (max-width: 1199px) { /* line 18, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ .hidden-md { display: none !important; } } @media (min-width: 1200px) { /* line 18, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ .hidden-lg { display: none !important; } } /* line 18, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ .visible-print { display: none !important; } @media print { /* line 7, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ .visible-print { display: block !important; } /* line 10, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ table.visible-print { display: table; } /* line 11, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ tr.visible-print { display: table-row !important; } /* line 13, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ th.visible-print, td.visible-print { display: table-cell !important; } } /* line 150, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-print-block { display: none !important; } @media print { /* line 150, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-print-block { display: block !important; } } /* line 157, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-print-inline { display: none !important; } @media print { /* line 157, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-print-inline { display: inline !important; } } /* line 164, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-print-inline-block { display: none !important; } @media print { /* line 164, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/_responsive-utilities.scss */ .visible-print-inline-block { display: inline-block !important; } } @media print { /* line 18, ../bootstrap-sass-3.2.0/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */ .hidden-print { display: none !important; } } /* line 1, ../scss/_ribbon.scss */ a:hover { cursor: pointer; text-decoration: none; } /* line 4, ../scss/_ribbon.scss */ a:hover .ribbon { width: 100%; background: #d76e00; } /* line 9, ../scss/_ribbon.scss */ .ribbon { margin-left: 50px; text-align: center; font-size: 1em; transition: all 0.3s; /* This ribbon is based on a 16px font side and a 24px vertical rhythm. I've used em's to position each element for scalability. If you want to use a different font size you may have to play with the position of the ribbon elements */ width: 95%; position: relative; background: #bd6100; color: #fff; text-align: center; padding: 1em 2em; /* Adjust to suit */ margin: 2em auto 3em; /* Based on 24px vertical rhythm. 48px bottom margin - normally 24 but the ribbon 'graphics' take up 24px themselves so we double it. */ } /* line 23, ../scss/_ribbon.scss */ .ribbon:before, .ribbon:after { content: ""; position: absolute; display: block; bottom: -1em; border: 1.5em solid #8a4700; z-index: -1; } /* line 31, ../scss/_ribbon.scss */ .ribbon:before { left: -2em; border-right-width: 1.5em; border-left-color: transparent; } /* line 36, ../scss/_ribbon.scss */ .ribbon:after { right: -2em; border-left-width: 1.5em; border-right-color: transparent; } /* line 41, ../scss/_ribbon.scss */ .ribbon .ribbon-content:before, .ribbon .ribbon-content:after { content: ""; position: absolute; display: block; border-style: solid; border-color: #572d00 transparent transparent transparent; bottom: -1em; } /* line 49, ../scss/_ribbon.scss */ .ribbon .ribbon-content:before { left: 0; border-width: 1em 0 0 1em; } /* line 53, ../scss/_ribbon.scss */ .ribbon .ribbon-content:after { right: 0; border-width: 1em 1em 0 0; } /* line 1, ../scss/_hexagon.scss */ .hexagon { position: relative; width: 70px; height: 40.41px; margin: 20.21px 20.21px; margin-bottom: 40px; margin-top: 40px; background-size: auto 80.8290px; background-position: center; } /* line 13, ../scss/_hexagon.scss */ .hexTop, .hexBottom { position: absolute; z-index: 1; width: 49.50px; height: 49.50px; overflow: hidden; -webkit-transform: scaleY(0.5774) rotate(-45deg); -ms-transform: scaleY(0.5774) rotate(-45deg); transform: scaleY(0.5774) rotate(-45deg); background: inherit; left: 10.25px; } /*counter transform the bg image on the caps*/ /* line 28, ../scss/_hexagon.scss */ .hexTop:after, .hexBottom:after { content: ""; position: absolute; width: 70.0000px; height: 40.414518843273804px; -webkit-transform: rotate(45deg) scaleY(1.7321) translateY(-20.2073px); -ms-transform: rotate(45deg) scaleY(1.7321) translateY(-20.2073px); transform: rotate(45deg) scaleY(1.7321) translateY(-20.2073px); -webkit-transform-origin: 0 0; -ms-transform-origin: 0 0; transform-origin: 0 0; background: inherit; } /* line 42, ../scss/_hexagon.scss */ .hexTop { top: -24.7487px; } /* line 46, ../scss/_hexagon.scss */ .hexTop:after { background-position: center top; } /* line 50, ../scss/_hexagon.scss */ .hexBottom { bottom: -24.7487px; } /* line 54, ../scss/_hexagon.scss */ .hexBottom:after { background-position: center bottom; } /* line 58, ../scss/_hexagon.scss */ .hexagon:after { content: ""; position: absolute; top: 0.0000px; left: 0; width: 70.0000px; height: 40.4145px; z-index: 2; background: inherit; } /* line 10, ../scss/main.scss */ * { margin: 0; } /* line 13, ../scss/main.scss */ html, body { height: 100%; } /* line 17, ../scss/main.scss */ body { background-image: url('/img/background.jpg?1414437371'); background-size: cover; } /* line 21, ../scss/main.scss */ ::selection { background-color: #ffad57; color: #333333; } /* line 25, ../scss/main.scss */ ::-moz-selection { background-color: #ffad57; color: #333333; } /* line 30, ../scss/main.scss */ h1, h2, h3, h4 { color: #bd6100; -webkit-font-smoothing: antialiased; } @media screen and (max-width: 770px) { /* line 30, ../scss/main.scss */ h1, h2, h3, h4 { color: black; } } /* line 37, ../scss/main.scss */ p { margin: 20px; display: block; text-align: justify; width: 90%; -webkit-margin-before: 1em; -webkit-margin-after: 1em; -webkit-margin-start: 0px; -webkit-margin-end: 0px; line-height: 1.7em; -webkit-font-smoothing: antialiased; font-weight: normal !important; } /* line 51, ../scss/main.scss */ #homelink { text-decoration: none; } /* line 55, ../scss/main.scss */ .headernav a { float: right; color: #757575; text-decoration: none; display: block; margin: 20px; transition: all 0.5s ease; } /* line 62, ../scss/main.scss */ .headernav a:hover { color: #bd6100; text-decoration: none; } /* line 69, ../scss/main.scss */ .header-unit { height: 70%; border-right: none; border-left: none; position: absolute; top: 65px; left: 0%; width: 100%; } /* line 78, ../scss/main.scss */ #video-container { position: absolute; top: 0%; left: 0%; height: 100%; max-height: 100%; width: 100%; overflow: hidden; } /* line 88, ../scss/main.scss */ video { position: absolute; z-index: 0; min-width: 100%; } /* line 95, ../scss/main.scss */ #videocontent { z-index: 40; margin: auto; position: absolute; top: 0; left: 0; bottom: 0; right: 0; text-align: center; background-color: rgba(128, 72, 0, 0); } /* line 103, ../scss/main.scss */ #videocontent h1 { margin: auto; margin-top: 20%; z-index: 60; color: white; } /* line 110, ../scss/main.scss */ #logincontainer, #registercontainer, #jobcreatecontainer { z-index: 100; position: fixed; bottom: 0; top: 0; left: 0; right: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0); } /* line 122, ../scss/main.scss */ #login, #register, #jobcreate { z-index: 200; background-image: url('/img/background.jpg?1414437371'); background-size: cover; text-align: center; background-color: white; position: fixed; margin: auto; top: 0; bottom: 0; left: 0; right: 0; width: 50%; height: 400px; } /* line 123, ../scss/main.scss */ #login ul, #register ul, #jobcreate ul { list-style: none; color: #d9534f; } /* line 138, ../scss/main.scss */ .button, .buttonapply, .buttoncancel, .buttoncontact { text-align: center; text-decoration: none; background-color: #4a91d4; color: white; padding: 10px; margin: 20px; width: 15%; border: none; cursor: pointer; display: inline-block; outline: none; position: relative; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; transition: all 0.3s; } /* line 154, ../scss/main.scss */ .button:hover, .buttonapply:hover, .buttoncancel:hover, .buttoncontact:hover { text-align: center; text-decoration: none; background-color: #437fb7; color: white; width: 21%; margin: 20px; } /* line 164, ../scss/main.scss */ .buttonapply { float: right; background-color: #5cb85c; } /* line 167, ../scss/main.scss */ .buttonapply:hover { text-align: center; background-color: #76d176; } /* line 173, ../scss/main.scss */ .buttoncontact { float: right; } /* line 176, ../scss/main.scss */ .buttoncancel { float: right; background-color: #d9534f; } /* line 179, ../scss/main.scss */ .buttoncancel:hover { text-align: center; background-color: #c9302c; } /* line 186, ../scss/main.scss */ p.jobtextinfo { font-size: 11px; } /* line 190, ../scss/main.scss */ #loginlink { cursor: pointer; } /* line 194, ../scss/main.scss */ #searchbar, #searchbarin { z-index: 5; box-shadow: 0px 5px 20px #888888; background-color: white; position: absolute; padding: 0.55em 50px 0.55em 3em; } /* line 200, ../scss/main.scss */ #searchbar #search-input, #searchbarin #search-input { line-height: normal; padding: 0.55em 0 0.55em 3em; border: 0; width: 100%; margin: 0px; color: #000; outline: none; background: inherit; box-sizing: border-box; -webkit-appearance: textfield; -webkit-rtl-ordering: logical; -webkit-user-select: text; cursor: auto; } /* line 215, ../scss/main.scss */ #searchbar i, #searchbarin i { position: inherit; padding: 0.55em 0 0.55em 1.5em; z-index: 5; } /* line 222, ../scss/main.scss */ #searchbarin { margin-top: 65px; width: 100%; border-top: 1px solid #ededed; } /* line 228, ../scss/main.scss */ #register { height: 700px; } /* line 232, ../scss/main.scss */ #jobcreate { height: 800px; } /* line 236, ../scss/main.scss */ #header { z-index: 80; background-color: white; } /* line 239, ../scss/main.scss */ #header .row { margin-left: 50px; margin-right: 50px; } /* line 244, ../scss/main.scss */ label { display: inline; width: 23%; margin: 1%; margin-left: 20px; } /* line 250, ../scss/main.scss */ input[type=checkbox] { display: none; } /* line 255, ../scss/main.scss */ input[type=checkbox] + label { background-color: #fafafa; border: 1px solid #cacece; box-shadow: 0 1px 2px rgba(0, 0, 0, 0), inset 0px -15px 10px -12px rgba(0, 0, 0, 0); padding: 9px; border-radius: 3px; display: inline-block; position: relative; } /* line 265, ../scss/main.scss */ input[type=checkbox] + label:active, input[type=checkbox]:checked + label:active { box-shadow: 0 1px 2px rgba(0, 0, 0, 0), inset 0px 1px 3px rgba(0, 0, 0, 0); } /* line 269, ../scss/main.scss */ input[type=checkbox]:checked + label { background-color: #e9ecee; border: 1px solid #adb8c0; box-shadow: 0 1px 2px rgba(0, 0, 0, 0), inset 0px -15px 10px -12px rgba(0, 0, 0, 0), inset 15px 10px -12px rgba(255, 255, 255, 0); color: #99a1a7; } /* line 276, ../scss/main.scss */ input[type=checkbox]:checked + label:after { content: '\2714'; font-size: 14px; position: absolute; top: 0px; left: 3px; color: #99a1a7; } /* line 287, ../scss/main.scss */ input { width: 80%; margin: 20px; padding: 10px; margin: 20px; width: 50%; border: none; display: inline-block; outline: none; position: relative; } /* line 298, ../scss/main.scss */ input[type=submit] { background-color: #4a91d4; color: white; padding: 10px; margin: 20px; width: 50%; border: none; cursor: pointer; display: inline-block; outline: none; position: relative; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; transition: all 0.3s; } /* line 312, ../scss/main.scss */ input[type=submit]:hover { text-align: center; background-color: #437fb7; width: 51%; } /* line 317, ../scss/main.scss */ input[type=submit] input[type=file] { width: 100%; } /* line 321, ../scss/main.scss */ .icon-remove-sign { cursor: pointer; float: right; margin-right: -3px; margin-top: -3px; z-index: 81; background-color: white; border-radius: 1000px; overflow: hidden; } /* line 332, ../scss/main.scss */ .registration { text-align: center; } /* line 335, ../scss/main.scss */ .commentitem { margin: 25px; margin-left: 20px; padding: 10px; border-bottom: 1px solid #757575; } /* line 341, ../scss/main.scss */ .comment { margin-top: 100px; border-top: 1px solid #757575; } /* line 346, ../scss/main.scss */ #profile p { background-color: #ededed; padding: 20px; border: 1px solid #757575; } /* line 352, ../scss/main.scss */ #profileedit input, input[type=submit], textarea { width: 50%; border: 1px solid #ededed; margin: 20px; padding: 10px; max-width: 80%; } /* line 360, ../scss/main.scss */ .jobstyle { border-left: solid 5px #bd6100; } /* line 362, ../scss/main.scss */ .jobstyle h1, .jobstyle p { margin-left: 25px; } /* line 367, ../scss/main.scss */ .profilestyle { border-left: solid 5px #bd6100; padding: 20px; } /* line 373, ../scss/main.scss */ .it { color: #d44a4a; } /* line 377, ../scss/main.scss */ .cat { cursor: pointer; } /* line 381, ../scss/main.scss */ section.it { color: black; border-left: solid 5px #d44a4a; } /* line 386, ../scss/main.scss */ .language { color: #d44a9e; } /* line 390, ../scss/main.scss */ section.language { color: black; border-left: solid 5px #d44a9e; } /* line 395, ../scss/main.scss */ .finances { color: #614ad4; } /* line 399, ../scss/main.scss */ section.finances { color: black; border-left: solid 5px #614ad4; } /* line 404, ../scss/main.scss */ .repairs { color: #4a91d4; } /* line 408, ../scss/main.scss */ section.repairs { color: black; border-left: solid 5px #4a91d4; } /* line 413, ../scss/main.scss */ .math { color: #66d8a4; } /* line 417, ../scss/main.scss */ section.math { color: black; border-left: solid 5px #66d8a4; } /* line 422, ../scss/main.scss */ .art { color: #a4d658; } /* line 426, ../scss/main.scss */ section.art { color: black; border-left: solid 5px #a4d658; } /* line 431, ../scss/main.scss */ .cooking { color: #d4a84a; } /* line 435, ../scss/main.scss */ section.cooking { color: black; border-left: solid 5px #d4a84a; } /* line 440, ../scss/main.scss */ .programming { color: #d4844a; } /* line 444, ../scss/main.scss */ section.programming { color: black; border-left: solid 5px #d4844a; } /* line 450, ../scss/main.scss */ #pagination { width: 100%; margin: 0 auto; text-align: center; } /* line 454, ../scss/main.scss */ #pagination a { font-size: 18px; padding: 5px; } /* line 460, ../scss/main.scss */ .biospecialist { padding-left: 80px; margin-top: -80px; margin-bottom: 80px; } /* line 466, ../scss/main.scss */ #category { max-width: 50%; } /* line 468, ../scss/main.scss */ #category p:nth-child(2n) { text-align: right; margin-top: -35px; } /* line 474, ../scss/main.scss */ .aboutus { text-indent: 110px; margin-top: -40px; } /* line 479, ../scss/main.scss */ .candidatetext { text-align: left; padding: 20px; display: block; font-size: 16px; background-color: #5cb85c; color: white; } /* line 488, ../scss/main.scss */ #footer { background-color: #bd6100; } /* line 490, ../scss/main.scss */ #footer h1, #footer small { color: white; } /* line 493, ../scss/main.scss */ #footer .copyright { text-align: center; padding: 25px; font-size: 15px; } /* line 499, ../scss/main.scss */ .page-wrap:after { height: 100px; } /* line 502, ../scss/main.scss */ #footer { height: 80px; } /* line 506, ../scss/main.scss */ .page-wrap { min-height: 100%; /* equal to footer height */ margin-bottom: -80px; } /* line 511, ../scss/main.scss */ .page-wrap:after { content: ""; display: block; } /* line 516, ../scss/main.scss */ .rating { font-size: 20px; unicode-bidi: bidi-override; text-align: left; direction: rtl; padding: 20px 0; } /* line 523, ../scss/main.scss */ .rating > span { display: inline-block; position: relative; width: 1.1em; } /* line 529, ../scss/main.scss */ .rating > span:hover:before, .rating > span:hover ~ span:before, .highlight { color: #bd6100; content: "\2605"; position: absolute; } /* line 535, ../scss/main.scss */ #searchresult { display: none; } /* line 537, ../scss/main.scss */ #searchresult div a { color: black; } /* line 542, ../scss/main.scss */ .comment h3 { margin-top: 10px; }
0.232397
0.038178
* { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } @font-face { font-family: "Archivo Narrow"; font-weight: 400; font-style: normal; src:local("Archivo Narrow"), url("/assets/fonts/ArchivoNarrow-Regular.woff2"), url("/assets/fonts/ArchivoNarrow-Regular.woff"), url("/assets/fonts/ArchivoNarrow-Regular.ttf"); } @font-face { font-family: "Archivo Narrow"; font-weight: 700; font-style: normal; src:local("Archivo Narrow Bold"), url("/assets/fonts/ArchivoNarrow-Bold.woff2"), url("/assets/fonts/ArchivoNarrow-Bold.woff"), url("/assets/fonts/ArchivoNarrow-Bold.ttf"); } /* * -- BASE STYLES -- * Most of these are inherited from Base, but I want to change a few. */ html { font-size: 62.5%; } body { line-height: 1.6; color: #EEE; font-size: 1.6em; font-family: "Archivo Narrow", sans-serif; font-weight: 400; } h1, h2, h3, h4, h5, h6, label { color: #929EFC; font-weight: 700; } p { font-weight: 400; } ul, ol { font-weight: 400; } h1 { font-size: 3.6rem; } h2 { font-size: 3.0rem; } h3 { font-size: 2.4rem; } h4 { font-size: 2.0rem; } h5 { font-size: 1.8rem; } h6 { font-size: 1.6rem; } p { font-size: 1.6rem; } ul, ol { font-size: 1.6rem; } @media (min-width: 550px) { h1 { font-size: 4.0rem; } h2 { font-size: 3.6rem; } h3 { font-size: 3.0rem; } h4 { font-size: 2.4rem; } h5 { font-size: 2.0rem; } h6 { font-size: 1.8rem; } p { font-size: 1.8rem; } ul, ol { font-size: 1.8rem; } } a { color: #929EFC; text-decoration: none; } a:hover, a:focus, a:active { color: #7988FC; text-decoration: underline; } .pure-img-responsive { max-width: 100%; height: auto; } .circle-mask { border-color: #EEE; border-style: solid; border-radius: 100%; border-width: 3px; } /* * -- LAYOUT STYLES -- * These are some useful classes which I will need */ .l-box { padding: 1em; } .l-box-lrg { padding: 2em; border-bottom: 1px solid rgba(0,0,0,0.1); } .is-center { text-align: center; } /* * -- PURE FORM STYLES -- * Style the form inputs and labels */ .pure-form label { margin: 1em 0 0; font-size: 100%; } /* * -- PURE BUTTON STYLES -- * I want my pure-button elements to look a little different */ a.pure-button-primary { border-radius: 10px; font-size: 120%; background-color: #929EFC; color: #131313; font-weight: 700; } @media (min-width: 768px) { a.pure-button-primary { font-size: 100%; } } @media (min-width: 850px) { a.pure-button-primary { font-size: 120%; } } /* * -- MENU STYLES -- * I want to customize how my .pure-menu looks at the top of the page */ .home-menu { padding: 0.5em; text-align: center; box-shadow: 0 1px 1px rgba(0,0,0, 0.10); } .home-menu { background: #7988FC; } .pure-menu.pure-menu-fixed { /* Fixed menus normally have a border at the bottom. */ border-bottom: none; /* I need a higher z-index here because of the scroll-over effect. */ z-index: 4; } .home-menu .pure-menu-heading { color: #131313; font-size: 100%; } .home-menu .pure-menu-selected a { color: #131313; } .home-menu a { color: #131313; } .home-menu li a:hover, .home-menu li a:focus { background: none; border: none; background-color: #EEE; } /* * -- SPLASH STYLES -- * This is the blue top section that appears on the page. */ .splash-container { background-color: #131313; background-image: url("/assets/images/hero-720.jpg"); background-size: cover; background-repeat: no-repeat; background-position: center; z-index: 1; overflow: hidden; /* The following styles are required for the "scroll-over" effect */ width: 100%; height: 88%; top: 0; left: 0; position: fixed !important; } @media (min-width: 900px) { .splash-container { background-image: url("/assets/images/hero-1080.jpg"); } } .splash { margin: 0; position: absolute; top: 55%; left: 50%; margin-right: -50%; transform: translate(-50%, -50%); width: 80%; text-align: center; text-transform: uppercase; } /* This is the main heading that appears on the blue section */ .splash-head { font-size: 36px; color: #EEE; border: 5px solid #EEE; padding: 1em; border-radius: 20px; line-height: 1em; margin: 0; } /* This is the subheading that appears on the blue section */ .splash-subhead { color: #EEE; font-size: 2.0rem; font-weight: 700; } /* * -- CONTENT STYLES -- * This represents the content area (everything below the blue section) */ .content-wrapper { /* These styles are required for the "scroll-over" effect */ position: absolute; top: 87%; width: 100%; min-height: 12%; z-index: 2; background: #131313; } /* We want to give the content area some more padding */ .content { padding: 2rem; } /* This is the class used for the main content headers (<h2>) */ .content-head { text-transform: uppercase; } /* This is a modifier class used when the content-head is inside a ribbon */ .content-head-ribbon { color: #131313; } /* This is the class used for the content sub-headers (<h3>) */ .content-subhead { color: #929EFC; font-size: 2.4rem; } @media (min-width: 1150px) { .content-subhead { font-size: 3.0rem; } } .content-subhead i { margin-right: 7px; } /* This is the class used for the dark-background areas. */ .ribbon { background: #929EFC; color: #131313; } .teir-wrapper { opacity: 0.5; margin: auto; width: 100%; } .teir { background-color: #131313; color: #EEE; margin: 20px 10px; text-transform: uppercase; padding-top: 10px; padding-bottom: 20px; } .teir h3 { margin: 0; } .teir p { color: #EEE; } .price { font-size: 8rem; color: #EEE; } .interval { display: block; margin-bottom: 1rem; } /* This is the class used for the footer */ footer { background: #131313; bottom: 0; width: 100%; padding: 2rem; position: static; } footer p { margin: auto; color: #696969; } .copyright { text-align: left; margin-top: 1rem; } @media (min-width: 568px) { .copyright { text-align: right; margin-top: 0; } } .pure-form input, .pure-form select, .pure-form textarea { width: 100%; color: #131313; } .pure-form input:focus, .pure-form select:focus, .pure-form textarea:focus { border: 1px solid #7988FC !important; outline: 0; } /* * -- TABLET (AND UP) MEDIA QUERIES -- * On tablets and other medium-sized devices, we want to customize some * of the mobile styles. */ @media (min-width: 48em) { /* We increase the body font size */ body { font-size: 18px; } /* We increase the height of the splash-container */ /* .splash-container { height: 500px; }*/ /* We decrease the width of the .splash, since we have more width to work with */ .splash { width: 50%; } .splash-head { font-size: 300%; } /* We remove the border-separator assigned to .l-box-lrg */ .l-box-lrg { border: none; } } /* * -- DESKTOP (AND UP) MEDIA QUERIES -- * On desktops and other large devices, we want to over-ride some * of the mobile and tablet styles. */ @media (min-width: 78em) { /* We increase the header font size even more */ .splash-head { font-size: 400%; } }
src/assets/css/style.css
* { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } @font-face { font-family: "Archivo Narrow"; font-weight: 400; font-style: normal; src:local("Archivo Narrow"), url("/assets/fonts/ArchivoNarrow-Regular.woff2"), url("/assets/fonts/ArchivoNarrow-Regular.woff"), url("/assets/fonts/ArchivoNarrow-Regular.ttf"); } @font-face { font-family: "Archivo Narrow"; font-weight: 700; font-style: normal; src:local("Archivo Narrow Bold"), url("/assets/fonts/ArchivoNarrow-Bold.woff2"), url("/assets/fonts/ArchivoNarrow-Bold.woff"), url("/assets/fonts/ArchivoNarrow-Bold.ttf"); } /* * -- BASE STYLES -- * Most of these are inherited from Base, but I want to change a few. */ html { font-size: 62.5%; } body { line-height: 1.6; color: #EEE; font-size: 1.6em; font-family: "Archivo Narrow", sans-serif; font-weight: 400; } h1, h2, h3, h4, h5, h6, label { color: #929EFC; font-weight: 700; } p { font-weight: 400; } ul, ol { font-weight: 400; } h1 { font-size: 3.6rem; } h2 { font-size: 3.0rem; } h3 { font-size: 2.4rem; } h4 { font-size: 2.0rem; } h5 { font-size: 1.8rem; } h6 { font-size: 1.6rem; } p { font-size: 1.6rem; } ul, ol { font-size: 1.6rem; } @media (min-width: 550px) { h1 { font-size: 4.0rem; } h2 { font-size: 3.6rem; } h3 { font-size: 3.0rem; } h4 { font-size: 2.4rem; } h5 { font-size: 2.0rem; } h6 { font-size: 1.8rem; } p { font-size: 1.8rem; } ul, ol { font-size: 1.8rem; } } a { color: #929EFC; text-decoration: none; } a:hover, a:focus, a:active { color: #7988FC; text-decoration: underline; } .pure-img-responsive { max-width: 100%; height: auto; } .circle-mask { border-color: #EEE; border-style: solid; border-radius: 100%; border-width: 3px; } /* * -- LAYOUT STYLES -- * These are some useful classes which I will need */ .l-box { padding: 1em; } .l-box-lrg { padding: 2em; border-bottom: 1px solid rgba(0,0,0,0.1); } .is-center { text-align: center; } /* * -- PURE FORM STYLES -- * Style the form inputs and labels */ .pure-form label { margin: 1em 0 0; font-size: 100%; } /* * -- PURE BUTTON STYLES -- * I want my pure-button elements to look a little different */ a.pure-button-primary { border-radius: 10px; font-size: 120%; background-color: #929EFC; color: #131313; font-weight: 700; } @media (min-width: 768px) { a.pure-button-primary { font-size: 100%; } } @media (min-width: 850px) { a.pure-button-primary { font-size: 120%; } } /* * -- MENU STYLES -- * I want to customize how my .pure-menu looks at the top of the page */ .home-menu { padding: 0.5em; text-align: center; box-shadow: 0 1px 1px rgba(0,0,0, 0.10); } .home-menu { background: #7988FC; } .pure-menu.pure-menu-fixed { /* Fixed menus normally have a border at the bottom. */ border-bottom: none; /* I need a higher z-index here because of the scroll-over effect. */ z-index: 4; } .home-menu .pure-menu-heading { color: #131313; font-size: 100%; } .home-menu .pure-menu-selected a { color: #131313; } .home-menu a { color: #131313; } .home-menu li a:hover, .home-menu li a:focus { background: none; border: none; background-color: #EEE; } /* * -- SPLASH STYLES -- * This is the blue top section that appears on the page. */ .splash-container { background-color: #131313; background-image: url("/assets/images/hero-720.jpg"); background-size: cover; background-repeat: no-repeat; background-position: center; z-index: 1; overflow: hidden; /* The following styles are required for the "scroll-over" effect */ width: 100%; height: 88%; top: 0; left: 0; position: fixed !important; } @media (min-width: 900px) { .splash-container { background-image: url("/assets/images/hero-1080.jpg"); } } .splash { margin: 0; position: absolute; top: 55%; left: 50%; margin-right: -50%; transform: translate(-50%, -50%); width: 80%; text-align: center; text-transform: uppercase; } /* This is the main heading that appears on the blue section */ .splash-head { font-size: 36px; color: #EEE; border: 5px solid #EEE; padding: 1em; border-radius: 20px; line-height: 1em; margin: 0; } /* This is the subheading that appears on the blue section */ .splash-subhead { color: #EEE; font-size: 2.0rem; font-weight: 700; } /* * -- CONTENT STYLES -- * This represents the content area (everything below the blue section) */ .content-wrapper { /* These styles are required for the "scroll-over" effect */ position: absolute; top: 87%; width: 100%; min-height: 12%; z-index: 2; background: #131313; } /* We want to give the content area some more padding */ .content { padding: 2rem; } /* This is the class used for the main content headers (<h2>) */ .content-head { text-transform: uppercase; } /* This is a modifier class used when the content-head is inside a ribbon */ .content-head-ribbon { color: #131313; } /* This is the class used for the content sub-headers (<h3>) */ .content-subhead { color: #929EFC; font-size: 2.4rem; } @media (min-width: 1150px) { .content-subhead { font-size: 3.0rem; } } .content-subhead i { margin-right: 7px; } /* This is the class used for the dark-background areas. */ .ribbon { background: #929EFC; color: #131313; } .teir-wrapper { opacity: 0.5; margin: auto; width: 100%; } .teir { background-color: #131313; color: #EEE; margin: 20px 10px; text-transform: uppercase; padding-top: 10px; padding-bottom: 20px; } .teir h3 { margin: 0; } .teir p { color: #EEE; } .price { font-size: 8rem; color: #EEE; } .interval { display: block; margin-bottom: 1rem; } /* This is the class used for the footer */ footer { background: #131313; bottom: 0; width: 100%; padding: 2rem; position: static; } footer p { margin: auto; color: #696969; } .copyright { text-align: left; margin-top: 1rem; } @media (min-width: 568px) { .copyright { text-align: right; margin-top: 0; } } .pure-form input, .pure-form select, .pure-form textarea { width: 100%; color: #131313; } .pure-form input:focus, .pure-form select:focus, .pure-form textarea:focus { border: 1px solid #7988FC !important; outline: 0; } /* * -- TABLET (AND UP) MEDIA QUERIES -- * On tablets and other medium-sized devices, we want to customize some * of the mobile styles. */ @media (min-width: 48em) { /* We increase the body font size */ body { font-size: 18px; } /* We increase the height of the splash-container */ /* .splash-container { height: 500px; }*/ /* We decrease the width of the .splash, since we have more width to work with */ .splash { width: 50%; } .splash-head { font-size: 300%; } /* We remove the border-separator assigned to .l-box-lrg */ .l-box-lrg { border: none; } } /* * -- DESKTOP (AND UP) MEDIA QUERIES -- * On desktops and other large devices, we want to over-ride some * of the mobile and tablet styles. */ @media (min-width: 78em) { /* We increase the header font size even more */ .splash-head { font-size: 400%; } }
0.35209
0.121477
status_area_container { display: flex; display: inline-block; position: fixed; right: 10px; top: calc(var(--top_bar-height) + 10px); width: 280px; background-color: var(--main-color); border-radius: 10px; padding: 10px 0px; } status_area_container item { display: flex; margin: 5px 0px; width: auto; padding: 5px 20px; background-color: none; justify-content: center; align-content: center; color: var(--light-color); font-size: 14px; text-align: left; border-radius: 0px; background-color: var(--main-color); } status_area_container item:hover { filter: brightness(1.2); } status_area_container item > * { flex: 1 1 auto; height: 20px; margin: auto; } status_area_container item > *:first-child { flex: 0 1 auto; width: 20px; margin-right: 10px; } status_area_container item > *:last-child { text-overflow: ellipsis; flex: 1 1 auto; } status_area_container item > * { flex: 1 1 auto; height: 20px; margin: auto; } status_area_container dropdown_item { display: flex; flex-flow: column; } status_area_container item > down_icon { flex: 0 0 auto !important; width: 20px; height: 20px; display: flex; transform: rotate(-90deg); transition: transform 0.2s ease-in-out; } status_area_container dropdown_item > item { margin-bottom: 10px; } status_area_container dropdown_item > dropdown { height: 0px; background: var(--main-color-darker); overflow: hidden; display: flex; flex-flow: column nowrap; transition: height 0.2s ease-in-out; } status_area_container dropdown > item { padding-left: 50px; margin: auto 0px; background-color: var(--main-color-darker); } status_area_container dropdown > item:hover { background-color: var(--main-color); } status_area_container input[type="range"] { -webkit-appearance: none; appearance: none; display: inline-block; height: 5px; background: #575757; outline: none; opacity: 0.7; -webkit-transition: 0.3s; transition: opacity 0.3s; } status_area_container input[type="range"]:hover { opacity: 1; } status_area_container input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 15px; background: azure; border-radius: 50%; height: 15px; cursor: pointer; } status_area_container input[type="range"]::-moz-range-thumb { -webkit-appearance: none; appearance: none; width: 10px; height: 10px; background: #c5c5c5; cursor: pointer; }
dist/css/X/system_popups/status_area.css
status_area_container { display: flex; display: inline-block; position: fixed; right: 10px; top: calc(var(--top_bar-height) + 10px); width: 280px; background-color: var(--main-color); border-radius: 10px; padding: 10px 0px; } status_area_container item { display: flex; margin: 5px 0px; width: auto; padding: 5px 20px; background-color: none; justify-content: center; align-content: center; color: var(--light-color); font-size: 14px; text-align: left; border-radius: 0px; background-color: var(--main-color); } status_area_container item:hover { filter: brightness(1.2); } status_area_container item > * { flex: 1 1 auto; height: 20px; margin: auto; } status_area_container item > *:first-child { flex: 0 1 auto; width: 20px; margin-right: 10px; } status_area_container item > *:last-child { text-overflow: ellipsis; flex: 1 1 auto; } status_area_container item > * { flex: 1 1 auto; height: 20px; margin: auto; } status_area_container dropdown_item { display: flex; flex-flow: column; } status_area_container item > down_icon { flex: 0 0 auto !important; width: 20px; height: 20px; display: flex; transform: rotate(-90deg); transition: transform 0.2s ease-in-out; } status_area_container dropdown_item > item { margin-bottom: 10px; } status_area_container dropdown_item > dropdown { height: 0px; background: var(--main-color-darker); overflow: hidden; display: flex; flex-flow: column nowrap; transition: height 0.2s ease-in-out; } status_area_container dropdown > item { padding-left: 50px; margin: auto 0px; background-color: var(--main-color-darker); } status_area_container dropdown > item:hover { background-color: var(--main-color); } status_area_container input[type="range"] { -webkit-appearance: none; appearance: none; display: inline-block; height: 5px; background: #575757; outline: none; opacity: 0.7; -webkit-transition: 0.3s; transition: opacity 0.3s; } status_area_container input[type="range"]:hover { opacity: 1; } status_area_container input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 15px; background: azure; border-radius: 50%; height: 15px; cursor: pointer; } status_area_container input[type="range"]::-moz-range-thumb { -webkit-appearance: none; appearance: none; width: 10px; height: 10px; background: #c5c5c5; cursor: pointer; }
0.362631
0.075041
/* Attendee view */ .peopleItem { -ms-grid-columns: 6px 54px 1fr 40px; -ms-grid-rows: 1fr 1fr; background-image: url('/images/placeholder-pattern.png'); } .peopleItem.notMicrosoft { -ms-grid-columns: 0px 54px 1fr 40px; } .peopleItem .colorStrip { -ms-grid-row-span: 2; } .peopleItem .portrait { -ms-grid-column: 2; -ms-grid-row-span: 2; overflow: hidden; } .peopleItem .portrait img { height: 80px; margin-left: -4px; } .peopleItem .name { -ms-grid-row: 1; -ms-grid-column: 3; -ms-grid-row-align: end; margin-left: 10px; font-family: "Segoe UI Light"; color: #000000; font-size: 20pt; line-height: 1; padding-bottom: 5px; } .peopleItem .company { -ms-grid-row: 2; -ms-grid-column: 3; -ms-grid-row-align: start; margin-top: 5px; margin-left: 10px; color: #585858; font-family: "Segoe UI Semilight"; font-size: 11pt; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; } .peopleItem .favoriteButton { cursor: pointer; -ms-grid-column: 4; -ms-grid-row-span: 2; position: relative; top: 26px; } /* Attendee detail */ .maxAttendeeWidth { width: 240px; } .attendeeDetail { display: -ms-flexbox; padding-left: 120px; padding-right: 20px; height: 100%; padding-top:70px; overflow-y: auto; box-sizing: border-box; } .attendeeDetail .photoContainer, .speakerDetail .photoContainer { height: 128px; width: 110px; margin-right: 20px; display: -ms-grid; -ms-grid-rows: 128px; -ms-grid-columns: 6px 96px 8px; } .attendeeDetail .portrait, .speakerDetail .portrait { -ms-grid-column: 2; width: 96px; height: 128px; } .attendeeDetail .attendeeInterests, .speakerDetail .attendeeInterests { width: 240px; } .attendeeDetail .attendeeInfoItem { -ms-flex: 1; } .attendeeDetail .attendeeInfoHeader, .speakerDetail .attendeeInfoHeader { color: #949494; font-family: "Segoe UI Semilight"; font-size: 11pt; margin-top: 5px; margin-bottom: 5px; } .attendeeDetail .attendeeTag, .speakerDetail .attendeeTag { background-color: #585858; color: #FFFFFF; font-family: "Segoe UI SemiBold"; text-transform: uppercase; font-size: 8pt; padding-left: 3px; padding-right: 3px; } @media screen and (-ms-view-state: snapped), screen and (-ms-view-state: filled) { .attendeeDetail { -ms-flex-direction: column; padding-top: 20px; } .attendeeDetail .attendeeInfoItem { -ms-flex: none; } } @media screen and (-ms-view-state: filled) { .attendeeDetail { width: 420px; } } @media screen and (-ms-view-state: snapped) { .attendeeDetail { padding-left: 20px; } } /* Speaker detail */ .speakerDetail { display: -ms-grid; -ms-grid-columns: 120px minmax(660px,1fr) 240px; -ms-grid-rows: 1fr; height: 100%; padding-top:29px; } .speakerDetail .speakerInfo { overflow-y: auto; -ms-grid-column: 2; } .speakerDetail .rightColumnContainer { -ms-grid-column: 3; padding-top: 5px; box-sizing: border-box; overflow-y: auto; } .speakerDetail .speakerSectionHeader { color: #58CC0E; font-family: "Segoe UI Light"; font-size: 20pt; margin-bottom: 20px; } .speakerDetail .speakerSectionContent { margin-bottom: 20px; } .speakerDetail .photoAndBio { margin-bottom: 20px; display: -ms-grid; -ms-grid-rows: 1fr; -ms-grid-columns: auto 1fr; } .speakerDetail .speakerBio { -ms-grid-column: 2; padding-left: 10px; padding-right: 20px; column-width: 300px; column-gap: 30px; padding-right:80px; -ms-hyphens: auto; } /*Semantic zoom*/ #contentHost .peopleContent .win-listview > .win-horizontal .win-container { margin-bottom: 5px; margin-right: 5px; } .peopleContent .zoomItem, .peopleContent .winItem { width:130px; height:130px; font-family:"Segoe UI Semilight"; font-size:42pt; } .peopleContent .zoomContent { margin-left:10px; margin-bottom:-23px; } @media screen and (-ms-view-state: snapped) { .speakerDetail { -ms-grid-columns: 0px 1fr; -ms-grid-rows: auto auto; overflow-y: auto; } .speakerDetail .rightColumnContainer { -ms-grid-row: 2; -ms-grid-column: 2; margin-left: 20px; } .speakerDetail .photoAndBio { -ms-grid-rows: auto auto; -ms-grid-columns: 1fr; } .speakerDetail .speakerBio { -ms-grid-column: 1; -ms-grid-row: 2; padding-left: 20px; padding-right: 20px; } .speakerDetail .photoContainer { margin-bottom: 20px; margin-left: 20px; } .speakerDetail .speakerSectionHeader { margin-left: 20px; } .speakerDetail .speakerSectionContent { margin-left: 20px; margin-right: 20px; } .speakerDetail .collapsedSessionItem { width: 100%; margin-right: 0px; } }
Official Windows Platform Sample/Windows 8 app samples/[JavaScript]-Windows 8 app samples/JavaScript/Windows 8 app samples/Build Conference app sample (Windows 8)/JavaScript/css/people.css
/* Attendee view */ .peopleItem { -ms-grid-columns: 6px 54px 1fr 40px; -ms-grid-rows: 1fr 1fr; background-image: url('/images/placeholder-pattern.png'); } .peopleItem.notMicrosoft { -ms-grid-columns: 0px 54px 1fr 40px; } .peopleItem .colorStrip { -ms-grid-row-span: 2; } .peopleItem .portrait { -ms-grid-column: 2; -ms-grid-row-span: 2; overflow: hidden; } .peopleItem .portrait img { height: 80px; margin-left: -4px; } .peopleItem .name { -ms-grid-row: 1; -ms-grid-column: 3; -ms-grid-row-align: end; margin-left: 10px; font-family: "Segoe UI Light"; color: #000000; font-size: 20pt; line-height: 1; padding-bottom: 5px; } .peopleItem .company { -ms-grid-row: 2; -ms-grid-column: 3; -ms-grid-row-align: start; margin-top: 5px; margin-left: 10px; color: #585858; font-family: "Segoe UI Semilight"; font-size: 11pt; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; } .peopleItem .favoriteButton { cursor: pointer; -ms-grid-column: 4; -ms-grid-row-span: 2; position: relative; top: 26px; } /* Attendee detail */ .maxAttendeeWidth { width: 240px; } .attendeeDetail { display: -ms-flexbox; padding-left: 120px; padding-right: 20px; height: 100%; padding-top:70px; overflow-y: auto; box-sizing: border-box; } .attendeeDetail .photoContainer, .speakerDetail .photoContainer { height: 128px; width: 110px; margin-right: 20px; display: -ms-grid; -ms-grid-rows: 128px; -ms-grid-columns: 6px 96px 8px; } .attendeeDetail .portrait, .speakerDetail .portrait { -ms-grid-column: 2; width: 96px; height: 128px; } .attendeeDetail .attendeeInterests, .speakerDetail .attendeeInterests { width: 240px; } .attendeeDetail .attendeeInfoItem { -ms-flex: 1; } .attendeeDetail .attendeeInfoHeader, .speakerDetail .attendeeInfoHeader { color: #949494; font-family: "Segoe UI Semilight"; font-size: 11pt; margin-top: 5px; margin-bottom: 5px; } .attendeeDetail .attendeeTag, .speakerDetail .attendeeTag { background-color: #585858; color: #FFFFFF; font-family: "Segoe UI SemiBold"; text-transform: uppercase; font-size: 8pt; padding-left: 3px; padding-right: 3px; } @media screen and (-ms-view-state: snapped), screen and (-ms-view-state: filled) { .attendeeDetail { -ms-flex-direction: column; padding-top: 20px; } .attendeeDetail .attendeeInfoItem { -ms-flex: none; } } @media screen and (-ms-view-state: filled) { .attendeeDetail { width: 420px; } } @media screen and (-ms-view-state: snapped) { .attendeeDetail { padding-left: 20px; } } /* Speaker detail */ .speakerDetail { display: -ms-grid; -ms-grid-columns: 120px minmax(660px,1fr) 240px; -ms-grid-rows: 1fr; height: 100%; padding-top:29px; } .speakerDetail .speakerInfo { overflow-y: auto; -ms-grid-column: 2; } .speakerDetail .rightColumnContainer { -ms-grid-column: 3; padding-top: 5px; box-sizing: border-box; overflow-y: auto; } .speakerDetail .speakerSectionHeader { color: #58CC0E; font-family: "Segoe UI Light"; font-size: 20pt; margin-bottom: 20px; } .speakerDetail .speakerSectionContent { margin-bottom: 20px; } .speakerDetail .photoAndBio { margin-bottom: 20px; display: -ms-grid; -ms-grid-rows: 1fr; -ms-grid-columns: auto 1fr; } .speakerDetail .speakerBio { -ms-grid-column: 2; padding-left: 10px; padding-right: 20px; column-width: 300px; column-gap: 30px; padding-right:80px; -ms-hyphens: auto; } /*Semantic zoom*/ #contentHost .peopleContent .win-listview > .win-horizontal .win-container { margin-bottom: 5px; margin-right: 5px; } .peopleContent .zoomItem, .peopleContent .winItem { width:130px; height:130px; font-family:"Segoe UI Semilight"; font-size:42pt; } .peopleContent .zoomContent { margin-left:10px; margin-bottom:-23px; } @media screen and (-ms-view-state: snapped) { .speakerDetail { -ms-grid-columns: 0px 1fr; -ms-grid-rows: auto auto; overflow-y: auto; } .speakerDetail .rightColumnContainer { -ms-grid-row: 2; -ms-grid-column: 2; margin-left: 20px; } .speakerDetail .photoAndBio { -ms-grid-rows: auto auto; -ms-grid-columns: 1fr; } .speakerDetail .speakerBio { -ms-grid-column: 1; -ms-grid-row: 2; padding-left: 20px; padding-right: 20px; } .speakerDetail .photoContainer { margin-bottom: 20px; margin-left: 20px; } .speakerDetail .speakerSectionHeader { margin-left: 20px; } .speakerDetail .speakerSectionContent { margin-left: 20px; margin-right: 20px; } .speakerDetail .collapsedSessionItem { width: 100%; margin-right: 0px; } }
0.480479
0.099908
* We recommend you leave this stylesheet alone so you can upgrade it easily * (remember, the C in CSS is for "cascading"). */ /********************************* *** Basic elements and styles *** *********************************/ /* Based loosely on: * http://meyerweb.com/eric/tools/css/reset/ * v2.0 | 20110126 * License: none (public domain) */ /* Global styles */ * { margin: 0; padding: 0; border: 0; vertical-align: baseline; background-repeat: no-repeat; } body { line-height: 1.5; width: 80%; max-width: 1600px; margin: 0 auto; background-color: #eee; font-family: "Droid Sans", sans-serif; font-size: 12pt; } #everything { background-color: white; padding: 1em 2.5%; } /* Blockquotes and quotes */ blockquote { border-left: 0.375em solid #ddd; padding-left: 0.75em; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } /* Lists */ ol, ul { margin: .5em 0 .5em 1.75em; } ul { list-style: square; } /* Preformatted text */ pre, code, tt { font-family: monospace; } pre { overflow: auto; padding: 0.5em; background-color: #222; color: #eee; } /* Tables */ table { border-collapse: collapse; border-spacing: 0; } th, td { border: 1px solid #bbb; padding: .25em .375em; } th { background-color: #ddd; font-weight: bold; text-align: center; } /* Links */ a { text-decoration: none; color: #06c; -webkit-transition: color 0.2s ease, background 0.2s ease; -moz-transition: color 0.2s ease, background 0.2s ease; -o-transition: color 0.2s ease, background 0.2s ease; transition: color 0.2s ease, background 0.2s ease; } a:hover { color: #39c; } a img { border: 0; } /* Vertical margins */ pre, blockquote { margin: .75em 0; } p, table { margin: .5em 0; } /* Headers and large text */ h1, h2, h3, h4, h5, h6 { font-weight: bold; line-height: 1.2; margin: .75em 0 .375em; } .lead, .sublead { line-height: 1.2; margin: .75em 0 .375em; } h2, .lead { font-size: 1.75em; } h3, .sublead { font-size: 1.5em; } h4 { font-size: 1.25em; margin: .8em 0 4em; } h5 { font-size: 1.1875em; margin: .8422em 0 .4211em; } h6 { font-size: 1.0625em; margin: .9412em 0 .4706em; } /* Basic tag styles */ dt, cite, em { font-style: italic; } dd { margin-left: 1.5em; } strong { background-color: #ffb; font-weight: bold; } hr { border-width: 0; color: #ccc; background-color: #ccc; height: 1px; margin: 1em 0; } /* Base classes */ .aside { float: right; margin: 0 0 1em 1em; padding: .5em; background-color: #eee; } .aside .caption { font-size: 0.75em; margin: 0.25em 0 0; } .clear { clear: both; } abbr.small-caps { font-size: .80em; } .center { text-align: center; } /*** Header ***/ #header { margin-bottom: 1em; padding-top: .5em; position: relative; } #header h1 { float: left; margin: 0; } #header h1 a { display: block; } #header .textalt { position: absolute; top: -9999px; } /* Navigation bar */ #header #nav { list-style: none; margin: 0; position: absolute; bottom: -5px; right: -7px; } #header #nav li { float: left; padding: 0 2px; } #header #nav li a { color: #06c; padding: 4px 5px; text-decoration: none; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } #header #nav li a:hover { background-color: #cee; } #header #nav li.active a { background-color: #05b; color: white; } #header #nav li.active a:hover { background-color: #07c; } /******************************* *** Footer and attributions *** *******************************/ #footer { margin: 2.5em 0 .5em 0; font-size: .75em; list-style: none; } .clt-people #footer, .clt-events #footer { margin-top: 1.75em; } #footer li { display: inline; margin-right: 1.5em; } #attributions { margin: .5em 0; font-size: .75em; list-style: none; } #attributions li { padding-left: 1.5em; text-indent: -1.5em; }
website/css/ptkb-base.css
* We recommend you leave this stylesheet alone so you can upgrade it easily * (remember, the C in CSS is for "cascading"). */ /********************************* *** Basic elements and styles *** *********************************/ /* Based loosely on: * http://meyerweb.com/eric/tools/css/reset/ * v2.0 | 20110126 * License: none (public domain) */ /* Global styles */ * { margin: 0; padding: 0; border: 0; vertical-align: baseline; background-repeat: no-repeat; } body { line-height: 1.5; width: 80%; max-width: 1600px; margin: 0 auto; background-color: #eee; font-family: "Droid Sans", sans-serif; font-size: 12pt; } #everything { background-color: white; padding: 1em 2.5%; } /* Blockquotes and quotes */ blockquote { border-left: 0.375em solid #ddd; padding-left: 0.75em; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } /* Lists */ ol, ul { margin: .5em 0 .5em 1.75em; } ul { list-style: square; } /* Preformatted text */ pre, code, tt { font-family: monospace; } pre { overflow: auto; padding: 0.5em; background-color: #222; color: #eee; } /* Tables */ table { border-collapse: collapse; border-spacing: 0; } th, td { border: 1px solid #bbb; padding: .25em .375em; } th { background-color: #ddd; font-weight: bold; text-align: center; } /* Links */ a { text-decoration: none; color: #06c; -webkit-transition: color 0.2s ease, background 0.2s ease; -moz-transition: color 0.2s ease, background 0.2s ease; -o-transition: color 0.2s ease, background 0.2s ease; transition: color 0.2s ease, background 0.2s ease; } a:hover { color: #39c; } a img { border: 0; } /* Vertical margins */ pre, blockquote { margin: .75em 0; } p, table { margin: .5em 0; } /* Headers and large text */ h1, h2, h3, h4, h5, h6 { font-weight: bold; line-height: 1.2; margin: .75em 0 .375em; } .lead, .sublead { line-height: 1.2; margin: .75em 0 .375em; } h2, .lead { font-size: 1.75em; } h3, .sublead { font-size: 1.5em; } h4 { font-size: 1.25em; margin: .8em 0 4em; } h5 { font-size: 1.1875em; margin: .8422em 0 .4211em; } h6 { font-size: 1.0625em; margin: .9412em 0 .4706em; } /* Basic tag styles */ dt, cite, em { font-style: italic; } dd { margin-left: 1.5em; } strong { background-color: #ffb; font-weight: bold; } hr { border-width: 0; color: #ccc; background-color: #ccc; height: 1px; margin: 1em 0; } /* Base classes */ .aside { float: right; margin: 0 0 1em 1em; padding: .5em; background-color: #eee; } .aside .caption { font-size: 0.75em; margin: 0.25em 0 0; } .clear { clear: both; } abbr.small-caps { font-size: .80em; } .center { text-align: center; } /*** Header ***/ #header { margin-bottom: 1em; padding-top: .5em; position: relative; } #header h1 { float: left; margin: 0; } #header h1 a { display: block; } #header .textalt { position: absolute; top: -9999px; } /* Navigation bar */ #header #nav { list-style: none; margin: 0; position: absolute; bottom: -5px; right: -7px; } #header #nav li { float: left; padding: 0 2px; } #header #nav li a { color: #06c; padding: 4px 5px; text-decoration: none; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } #header #nav li a:hover { background-color: #cee; } #header #nav li.active a { background-color: #05b; color: white; } #header #nav li.active a:hover { background-color: #07c; } /******************************* *** Footer and attributions *** *******************************/ #footer { margin: 2.5em 0 .5em 0; font-size: .75em; list-style: none; } .clt-people #footer, .clt-events #footer { margin-top: 1.75em; } #footer li { display: inline; margin-right: 1.5em; } #attributions { margin: .5em 0; font-size: .75em; list-style: none; } #attributions li { padding-left: 1.5em; text-indent: -1.5em; }
0.431824
0.07383
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); @namespace xul "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"; /* Title: Chris' CLEAN ADAPTION no1 */ /* Author: Chris, E-mail: <EMAIL> */ /* Creation date: 14. Nov. 2015 */ /* IMPORTANT INFOS: ! Hiding the menus like in the preview is NOT FORCED through this CSS, although possible, because in some calendar dialogs it could not be revoced by pressing [Alt]. ! When using this CSS only as 'userChrome.css' instead as a style for 'Stylish', the titlebar tabs overlap a little. I don't know why, but I guess 'Stylish' is adding some minor tweaks itself. ! I left some double-declarations like font-weight:normal and more... in case something is to 'uniform', so you don't have to search for the styles in the 1000+1 CSS'. To make the UI look like in the preview, I changed the following manually: * View > Bars > Menubar : disabled * View > Dayplan > Show Dayplan : activated (and below...) * View > Dayplan > Show nothing : activated Fonts: * For readability I use Ubuntu > Droid Sans > Verdana > Arial. If you want to use the smaller Segoe UI or Tahoma, increase the main * font-size to 11pt. Most other sizes are relatively in %. * I force font-smoothing (should be webkit^^), allthough I don't really see a difference. * All 'bold' texts are set to 'normal', but some Add-ons force their own fonts and rules. * After some testing, I recommend using Ubuntu. You only need the 'normal' (400) font. Get it here: https://www.google.com/fonts#UsePlace:use/Collection:Ubuntu Add-ons: * I use the add-on 'Mail Summaries' for the home-tab. Get it here: https://addons.mozilla.org/de/thunderbird/addon/mail-summaries/ * I use Enigmail PGP and changed their notification-font in the 'New Message' window to a darker red, not bold. Userstyles.org and other sources: * Implemented and slightly modified 'THUNDERBIRD - CLEAN NOTIFICATION ALERTS' from the author 'r-a-y'. Details: https://userstyles.org/styles/102949/thunderbird-clean-notification-alerts * Implemented and slightly modified 'Pretty Lables' from the author 'gist'. Details: https://gist.github.com/eriwen/757944 * Implemented some cool tweaks from the author 'eriwen'. Details: http://www.eriwen.com/css/tweaking-thunderbirds-chrome/ * Quite some solutions come from the authors of 'thunderbird-mail.de'. Details: https://www.thunderbird-mail.de/ ... and a lot of other things I can't remember where I found it. Big thanks to all! So, I hope you like it^^ - do PRIVATELY whatever you want with this Style. If you want to use this Style commercially, then contact me via: chrissi4u(at)gmail.com Greetings, Chris */ /* INTREFACE STRUCTURE (not exactly the same for calendar/lightning): | #titlebar (window-titlebar with minimize, maximize/restore, close) ------------------------------------------------------------------------------------------- | .tabmail-tabs (top container for tabs: local folders, calendar, task, add-on manager) | .tabmail-tab | .tabmail-tab | .tabmail-tab ... (single tabs) ------------------------------------------------------------------------------------------- | #tabmail-container (sounds false, but holds everything BELOW the .tabmail-tabs) ------------------------------------------------------------------------------------------- | toolboxes (different names in different dialogs, they are holding the buttons): | 1) #mail-toolbox (main window, whole container) | 1.1) .mail-toolbox (holding only the buttons) | 1.2) #composeToolbar2 (Write message...) | 1.3) #ab-bar2 (Addressbook) | 2) #event-toolbox (calendar/lightning) | 2.1) #event-toolbar (New event, New task) ------------------------------------------------------------------------------------------- | Buttons inside the toolboxes: | .toolbar-button, .toolbar-button-1 (standardbutton depending on the dialog) | .toolbarbutton (checked = On-Off) */ /* CSS-STRUCTURE: * Fonts and Fixes * Basic Cleanup and Removes * Titlebar * Tabs * Mainwindow * Toolbox + Buttons * Mixed UI dialogs and settings * Foldertree Basic * Foldertree: Accounts + Folders * Messages * Pretty Labels * Clean Notification Alerts * Calendar + Lightning CleanUp * Last Orders */ /* COLORS USED: Dividers and lines: light grey-blue = #a9b7c9 Tabs ACTIVE: grey-blueish = #f2f2f5 Tab-borders ACTIVE: orange = #ffcc66 Tab-borders HOVER: blue = #4fa6fd Text for inactive tabs: dark-grey = #747373 Toolboxes holding the big buttons: typical grey = #f2f2f5 Big buttons HOVER effects: light-blue = #c1dbfc On-Off buttons ('checked'): even lighter blue = #d0e1f5 Enigmail GPG warnings: dark red = #f00000 Accounts and Folders with NEW messages: dark-blue = #034675 Unread messages background: light-orange = #ffd98e Replied messages background: light-green = #CCFFCC ... plus some personal preferences for close-buttons, deleted IMAP messages and calendar:today backgrounds */ /* ============================================================================ */ /* Fonts and Fixes */ * { font-family: Ubuntu, 'Droid Sans', Verdana, Arial !important; /* For 'Segoe UI' or Tahoma change the font-size to 11pt */ font-size: 10pt !important; font-weight: normal !important; -webkit-font-smoothing: antialiased !important; } /* Increase small fonts a little */ small { font-size: 90% !important; } /* Remove dotted line around tab lables. Don't know why they appeared. */ a, a:link, a:hover, a:active, a:focus, a:visited { outline:0 !important; } /* ============================================================================ */ /* Basic Cleanup and Removes */ /* Remove ALL gradient-background-images first, some (for arrows) are forced back later */ * { background-image: none !important; } /* Remove ALL shadows under toolbars */ * { box-shadow: none !important; } /* Remove the throbber */ #throbber-box { display: none !important; } /* ============================================================================ */ /* Titlebar */ /* The titlebar is currently white, but I prefer to force it in case the change it in future versions */ #titlebar, #titlebar-content, #titlebar-spacer { } #navigation-toolbox { background-color: #ffffff !important; } /* ============================================================================ */ /* Tabs */ /* This is the whole container for all tabs */ .tabmail-tabs { margin-top: -2px !important; margin-left: -16px !important; /* Starting directly at left window border. 15px was standard + 1px boder */ margin-right: -1px !important; margin-bottom: 0px !important; /* Margin-bottom 0 leves a light pseudo-divider below the tabs. Move -1px down to remove it. */ background: #13191c; } /* Remove rounded corners from tabs */ .tab-background-start, .tab-background-end { display: none; } /* Remove icons from tabs, there are not so many... */ .tab-icon-image { display: none; } /* FIX 1/3 for overlapping tabs */ .tab-background { margin: 0; } /* FIX 2/3 for overlapping tabs, also removes the vertical dividers inbetween. */ .tabmail-tab:before { display: none !important; } /* FIX 3/3 for overlapping tabs (margin) */ .tab-background-middle { background: transparent !important; /* See the below defined tab-color */ margin: 0 !important; } /* This is the height for the tabs */ .tabmail-tab { height: 46px; } .tabmail-tab:first-child .tab-close-button { display: none !important; visibility: visible !important; } /* This is the active tab */ .tabmail-tab[selected="true"] .tab-text { color: rgba(170, 187, 195, 1) !important; } .tabmail-tab[selected="true"] .tab-background { border-bottom: solid #80deea 2px; /* Remove doubble-borders between tabs */ margin-left: -1px !important; margin-right: -1px !important; } /* This is the inactive tab on hover */ .tabmail-tab:hover:not([selected]) .tab-text { color: rgba(170, 187, 195, 1) !important; } .tabmail-tab:hover:not([selected]) .tab-background { cursor: pointer; } /* Text for inactive tabs */ .tabmail-tab:not([selected]) .tab-text { color: rgba(170, 187, 195, 0.8) !important; } /* Close button on tabs... */ /* Show only on mouseover and active tab */ .tabmail-tab:not([selected]) .tab-close-button { opacity: 0; } .tabmail-tab:not([selected]):hover .tab-close-button { opacity: 1; } /* Replaced the standard 'x', because the ugly close-button is hardcoded and base64 images are somehow not working for mouseover */ .tab-close-button { border: 2px solid #747373 !important; border-radius: 8px !important; list-style-image: none !important; -moz-image-region: rect(0px, 3px, 3px, 0px) !important; transition: background .2s, border .2s, opacity .2s; } .tab-close-button:hover, .tab-close-button:active, .tab-close-button:focus { border: 2px solid #FF5252 !important; cursor: pointer; } /* ============================================================================ */ /* Mainwindow = Toolbar and below. Somehow a misleading ID-name! This is everything BELOW the tabs */ /* ============================================================================ */ /* Toolbox + Buttons */ /* Coloring for the whole toobox bar */ #mail-toolbox, /* Thunderbird main + add-on windows */ #event-toolbox /* Calendar + lightning windows, accepts only color */ { background-color: #192124 !important; } .toolbarbutton-menubutton-dropmarker { display: none; } .toolbarbutton-text { color: rgba(170, 187, 195, 0.8) !important; } /* Spacing for ALL toolboxes */ .mail-toolbox:not([mode="full"]) > toolbar:only-of-type, .mail-toolbox[mode="full"][labelalign="end"] > toolbar:only-of-type, #ab-bar2, /* Address Book... */ #event-toolbar /* Calendar and lightning dialogs */ { margin-top: 7px; margin-bottom: 7px; margin-left: 10px !important; } #compose-toolbox > * { box-shadow: 0 !important; border: 0px solid transparent !important; margin: -2px 0 2px !important; } #compose-toolbox > * > *:hover { border: none !important; box-shadow: 0 !important; margin: 0 !important; padding: 0 !important; outline: 0 !important; background: transparent !important; } /* Sizing for All toolbar buttons */ :-moz-any(.chromeclass-toolbar) .toolbarbutton-1 > .toolbarbutton-menubutton-button, :-moz-any(.chromeclass-toolbar) .toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker, :-moz-any(.chromeclass-toolbar) .toolbarbutton-1 { min-height: 30px !important; } /* Hover-Effect for ALL toolbar buttons */ .toolbarbutton-1 > .toolbarbutton-menubutton-button:hover, .toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker:hover, .toolbarbutton-1:hover { background-color: transparent !important; cursor: pointer; } .toolbarbutton-1 > .toolbarbutton-menubutton-button:hover .toolbarbutton-text, .toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker:hover .toolbarbutton-text, .toolbarbutton-1:hover .toolbarbutton-text { color: rgba(170, 187, 195, 1) !important; } /* No effects for disabled buttons. Optional, because disabled buttons are hidden below. */ toolbarbutton[disabled="true"]:hover { background-color: transparent !important; } /* Remove disabled toolbar buttons until enabled */ toolbarbutton[disabled="true"] { display: none !important; } /* On-Off buttons, here for state 'checked' = ON */ toolbarbutton[checked="true"] { background-color: #d0e1f5 !important; box-shadow: none !important; } /* Search bar */ #mail-toolbox .searchBox { background: transparent; border: none; transition: border .2s; color: rgba(170, 187, 195, 0.8); border-bottom: 1px solid rgba(170, 187, 195, 0.2); } #mail-toolbox .searchBox:hover { border-bottom: 1px solid rgba(170, 187, 195, 1); } #mail-toolbox .searchBox .gloda-search-icon { display: none; } /* ============================================================================ */ /* Mixed UI dialogs and settings */ /* New Message - FIX for the distorted color-picker after increasing button-heights */ .color-button { height: 10px !important; /* Not really changeable */ width: 30px !important; } /* New Message - Text for Enigmail GPG was too red */ .enigmailStrong { color: #f00000 !important; } /* Address book. Make detail-title bigger */ #CardTitle { border-bottom-color: #4fa6fd; color: #438ed9; font-size: 120% !important; font-weight: normal !important; margin-top: 10px; } /* Account Settings, the background for title top-right. Not possible for all iframes. */ #am-main-title, .dialogheader, iframe { border:none !important; outline: none !important; } /* Account Settings, the title top-right. */ .dialogheader-title { font-size: 120% !important; font-weight: normal !important; } /* ============================================================================ */ /* Foldertree Basic (on the left) */ /* Remove white lines in the foldertree. Don't know why they appear sometimes. */ treechildren:not(.autocomplete-treebody)::-moz-tree-row { outline-color: transparent !important; } /* Push the whole foldertree further down. IMO it is to high */ #folderPaneBox { padding-top: 0px !important; } /* ============================================================================ */ /* Foldertree: Accounts + Folders (on the left) */ /* Style ACCOUNT name with no new mail */ #folderTree > treechildren::-moz-tree-cell-text(isServer-true) { font-weight: normal !important; } /* Style ACCOUNT name with new mail */ #folderTree > treechildren::-moz-tree-cell-text(isServer-true, biffState-NewMail) { color: #034675 !important; font-weight: bold !important; } /* Style FOLDER with unread messages */ #folderTree > treechildren::-moz-tree-cell-text(hasUnreadMessages-true) { color: #034675 !important; font-weight: bold !important; } /* Style CLOSED FOLDER CONTAINING SUBFOLDERS with unread messages */ #folderTree > treechildren::-moz-tree-cell-text(closed, subfoldersHaveUnreadMessages-true) { color: #034675 !important; font-weight: bold !important; } /* Style OPEN FOLDER CONTAINING SUBFOLDERS with unread messages. Disabled because you are already inside that folder */ /* #folderTree > treechildren::-moz-tree-cell-text(subfoldersHaveUnreadMessages-true) { color: #034675 !important; font-weight: bold !important; } */ /* ============================================================================ */ /* Messages: unread, replied, deleted */ /* UNREAD messages */ /* Unread messages : Cell */ #threadTree treechildren::-moz-tree-cell(unread) { -moz-appearance: none !important; background-color: #ffd98e !important; /* light orange = #ffd98e, pale green = #CCFFCC */ } /* Unread messages : Text */ #threadTree treechildren::-moz-tree-cell-text(unread) { -moz-appearance: none !important; font-weight: normal !important; } /* REPLIED messages */ treechildren::-moz-tree-cell(replied), treechildren::-moz-tree-cell(replied,selected), treechildren::-moz-tree-cell(replied,current) { background-color: #CCFFCC !important; } /* Replied messages text-color. Optional, disabled! Only activate and change this if you use a darker backgroud above. */ /* treechildren:-moz-tree-cell-text(replied,current) { color: #FFFFFF !important; } */ /* DELETED IMAP messages (not available for directly deleted POP messages. */ treechildren::-moz-tree-cell(imapdeleted) { background-color: #999999 !important; } treechildren:-moz-tree-cell-text(imapdeleted) { color: #FFFFFF !important; text-decoration: line-through !important; } treechildren::-moz-tree-cell(imapdeleted,selected) { background-color: #333333 !important; } treechildren::-moz-tree-cell(imapdeleted,current) { background-color: #666666 !important; } treechildren:-moz-tree-cell-text(imapdeleted,selected), treechildren:-moz-tree-cell-text(imapdeleted,current) { color: #DDDDFF !important; } treechildren::-moz-tree-cell-text(imapdeleted, offline) { background-color: #DDDDDD !important; text-decoration: line-through !important; } /* ============================================================================ */ /* Pretty Labels */ /* Default Important Label */ treechildren::-moz-tree-cell(lc-FF0000) { border-bottom: 1px solid #FF0000 !important; background-color: #FFCCCC !important; } treechildren::-moz-tree-cell-text(lc-FF0000) { color: #000000 !important; } treechildren::-moz-tree-cell(lc-FF0000, selected) { background-color: #FF0000 !important; } treechildren::-moz-tree-cell-text(lc-FF0000, selected) { color: #FFFFFF !important; } /* Default Work Label */ treechildren::-moz-tree-cell(lc-FF9900) { border-bottom: 1px solid #FF9900 !important; background-color: #FFCC99 !important;} treechildren::-moz-tree-cell-text(lc-FF9900) { color: #000000 !important; } treechildren::-moz-tree-cell(lc-FF9900, selected) { background-color: #FF9900 !important; } treechildren::-moz-tree-cell-text(lc-FF9900, selected) { color: #FFFFFF !important; } /* Default Personal Label */ treechildren::-moz-tree-cell(lc-009900) { border-bottom: 1px solid #22b222 !important; background-color: #22b222 !important;} treechildren::-moz-tree-cell-text(lc-009900) { color: #000000 !important; } treechildren::-moz-tree-cell(lc-009900, selected) { background-color: #22b222 !important; } treechildren::-moz-tree-cell-text(lc-009900, selected) { color: #FFFFFF !important; } /* Default Todo Label */ treechildren::-moz-tree-cell(lc-3333FF) { background-color: #CCCCFF !important; border-bottom: 1px solid #6262f1 !important; } treechildren::-moz-tree-cell-text(lc-3333FF) { color: #000000 !important; } treechildren::-moz-tree-cell(lc-3333FF, selected) { background-color: #6262f1 !important; } treechildren::-moz-tree-cell-text(lc-3333FF, selected) { color: #FFFFFF !important; } /* Default Later Label */ treechildren::-moz-tree-cell(lc-993399) { background-color: #FFCCFF !important; border-bottom: 1px solid #993399 !important; } treechildren::-moz-tree-cell-text(lc-993399) { color: #000000 !important; } treechildren::-moz-tree-cell(lc-993399, selected) { background-color: #993399 !important; } treechildren::-moz-tree-cell-text(lc-993399, selected) { color: #FFFFFF !important; } /* ============================================================================ */ /* Clean Notification Alerts */ #alertImageBox {display:none;} #alertContainer {width:400px; border-radius: 0px !important;} #alertTitle, folderSummaryMessage {width:350px;} #newMailAlertNotification {border:1px solid #a2a2a2 !important; border-radius: 0px !important; background:#ebebeb !important;} #newMailAlertNotification #closeButton {padding-top:4px !important;} /* ============================================================================ */ /* Calendar + Lightning CleanUp */ /* MAIN tabs */ /* Add a divider under the toolboxes in calendar and tasks */ #calendar-toolbox, #task-toolbox { border-bottom: 1px solid #a9b7c9 !important; } /* Sidebar: Set same background-color as in the main thunderbird-window. */ #ltnSidebar, #ltnSidebar .tree-stack { background-color: #f0f0f0 !important; } /* FIX - Hide the newly appeard string 'calendarname' inside the left pane */ calendar-list-tree .tree-scrollable-columns { background-color: #f0f0f0 !important; height: 0px !important; } /* Hide the additional text also */ calendar-list-tree treecol[hideheader="true"] { visibility: hidden !important; } /* Make the searchbox in CALENDAR the same hight as the searchbox in TASKS */ #unifinder-searchBox { height: 34px !important; } /* Calendarview: Current Day in different views */ window { --viewHeaderSelectedBackground: #ffd98e !important; --viewDayBoxSelectedBackground: #ffd98e !important; --viewDayBoxOtherSelectedBackground: #ffd98e !important; --viewDayBoxOffSelectedBackground: #ffd98e !important; --viewMonthDayBoxSelectedBackground: #ffd98e !important; } /* Remove old-school rounded borders from 'Day, Week, Month...' */ tab[calview], tab[calview][selected="true"] { border-radius: 0px !important; } /* Calendar main: Remove 'jumps' when switching between Day, Week, Month... This was a f**** nightmare! DOM chrome://calendar/content/calendar-views.xul */ /* All tabs: lighter, active is defined below */ tab[calview] { background-color: rgba(255,255,255, .3); padding: 3px 10px !important; } tab[calview][selected="true"], tab[calview][selected="true"]:hover { background-color: -moz-Field; border-top: solid #ffcc66 3px; padding-top: 0 !important; } tab[calview]:hover { background-color: ButtonHighlight; border-top: solid #4fa6fd 3px; padding-top: 0 !important; } /* Calendar lighter fonts in mouseover-tooltips */ .tooltipHeaderLabel { color: #747373 !important; } /* OTHER CALENDAR windows integration */ /* Small buttons top-right to call calendar and tasks window */ #calendar-tab-button:hover, #calendar-tab-button:focus, #task-tab-button:hover, #task-tab-button:focus { background-color: #ffcc66 !important; } /* Mini-Calendar in all windows */ .minimonth-day[today="true"], .minimonth-day[selected="true"] { border: none !important; padding-top: 1px !important; } .minimonth-day[selected="true"] { background-color: #ffcc66 !important; } /* Mini-Tasks: Adjust height and color to fit new toolbox-height */ #today-pane-panel > sidebarheader { background-color: #f0f0f0; border-top: none !important; /* Removes white pseudo-3D line */ padding: 3px 0 2px 0 !important; } /* Mini-Tasks: today */ #today-header .agenda-checkbox { background-color: #ffd98e !important; } /* Mini-Tasks: remove border from the small colored calendar-squares (is an overlay) */ .agenda-calendar-image { list-style-image: none !important; } /* Force back the arrow-images for opening/closing future tasks after forbidding all images first, today-pane.xul */ treenode-checkbox > .checkbox-check { background-image: url(chrome://global/skin/tree/twisty-clsd.png) !important; } treenode-checkbox[checked="true"] > .checkbox-check { background-image: url(chrome://global/skin/tree/twisty-open.png) !important; } /* Small calendar day-date in the bottom-right button */ .toolbarbutton-day-text { font-weight: normal !important; font-size: 8pt !important; margin-top: 1px !important; /* OR disable completely */ /* display: none !important; */ } /* ============================================================================ */ /* Last Orders */ /* Style the Add-on Extensions and Styles names */ .basicinfo-container .name-container .name { font-size: 150% !important; } #userstyle-sorting .sorter { border: 1px solid #a9b7c9 !important; border-radius: 0px !important; } /* Puhhhh ... finished! But I like it^^ */
data/usercss/133083.user.css
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); @namespace xul "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"; /* Title: Chris' CLEAN ADAPTION no1 */ /* Author: Chris, E-mail: <EMAIL> */ /* Creation date: 14. Nov. 2015 */ /* IMPORTANT INFOS: ! Hiding the menus like in the preview is NOT FORCED through this CSS, although possible, because in some calendar dialogs it could not be revoced by pressing [Alt]. ! When using this CSS only as 'userChrome.css' instead as a style for 'Stylish', the titlebar tabs overlap a little. I don't know why, but I guess 'Stylish' is adding some minor tweaks itself. ! I left some double-declarations like font-weight:normal and more... in case something is to 'uniform', so you don't have to search for the styles in the 1000+1 CSS'. To make the UI look like in the preview, I changed the following manually: * View > Bars > Menubar : disabled * View > Dayplan > Show Dayplan : activated (and below...) * View > Dayplan > Show nothing : activated Fonts: * For readability I use Ubuntu > Droid Sans > Verdana > Arial. If you want to use the smaller Segoe UI or Tahoma, increase the main * font-size to 11pt. Most other sizes are relatively in %. * I force font-smoothing (should be webkit^^), allthough I don't really see a difference. * All 'bold' texts are set to 'normal', but some Add-ons force their own fonts and rules. * After some testing, I recommend using Ubuntu. You only need the 'normal' (400) font. Get it here: https://www.google.com/fonts#UsePlace:use/Collection:Ubuntu Add-ons: * I use the add-on 'Mail Summaries' for the home-tab. Get it here: https://addons.mozilla.org/de/thunderbird/addon/mail-summaries/ * I use Enigmail PGP and changed their notification-font in the 'New Message' window to a darker red, not bold. Userstyles.org and other sources: * Implemented and slightly modified 'THUNDERBIRD - CLEAN NOTIFICATION ALERTS' from the author 'r-a-y'. Details: https://userstyles.org/styles/102949/thunderbird-clean-notification-alerts * Implemented and slightly modified 'Pretty Lables' from the author 'gist'. Details: https://gist.github.com/eriwen/757944 * Implemented some cool tweaks from the author 'eriwen'. Details: http://www.eriwen.com/css/tweaking-thunderbirds-chrome/ * Quite some solutions come from the authors of 'thunderbird-mail.de'. Details: https://www.thunderbird-mail.de/ ... and a lot of other things I can't remember where I found it. Big thanks to all! So, I hope you like it^^ - do PRIVATELY whatever you want with this Style. If you want to use this Style commercially, then contact me via: chrissi4u(at)gmail.com Greetings, Chris */ /* INTREFACE STRUCTURE (not exactly the same for calendar/lightning): | #titlebar (window-titlebar with minimize, maximize/restore, close) ------------------------------------------------------------------------------------------- | .tabmail-tabs (top container for tabs: local folders, calendar, task, add-on manager) | .tabmail-tab | .tabmail-tab | .tabmail-tab ... (single tabs) ------------------------------------------------------------------------------------------- | #tabmail-container (sounds false, but holds everything BELOW the .tabmail-tabs) ------------------------------------------------------------------------------------------- | toolboxes (different names in different dialogs, they are holding the buttons): | 1) #mail-toolbox (main window, whole container) | 1.1) .mail-toolbox (holding only the buttons) | 1.2) #composeToolbar2 (Write message...) | 1.3) #ab-bar2 (Addressbook) | 2) #event-toolbox (calendar/lightning) | 2.1) #event-toolbar (New event, New task) ------------------------------------------------------------------------------------------- | Buttons inside the toolboxes: | .toolbar-button, .toolbar-button-1 (standardbutton depending on the dialog) | .toolbarbutton (checked = On-Off) */ /* CSS-STRUCTURE: * Fonts and Fixes * Basic Cleanup and Removes * Titlebar * Tabs * Mainwindow * Toolbox + Buttons * Mixed UI dialogs and settings * Foldertree Basic * Foldertree: Accounts + Folders * Messages * Pretty Labels * Clean Notification Alerts * Calendar + Lightning CleanUp * Last Orders */ /* COLORS USED: Dividers and lines: light grey-blue = #a9b7c9 Tabs ACTIVE: grey-blueish = #f2f2f5 Tab-borders ACTIVE: orange = #ffcc66 Tab-borders HOVER: blue = #4fa6fd Text for inactive tabs: dark-grey = #747373 Toolboxes holding the big buttons: typical grey = #f2f2f5 Big buttons HOVER effects: light-blue = #c1dbfc On-Off buttons ('checked'): even lighter blue = #d0e1f5 Enigmail GPG warnings: dark red = #f00000 Accounts and Folders with NEW messages: dark-blue = #034675 Unread messages background: light-orange = #ffd98e Replied messages background: light-green = #CCFFCC ... plus some personal preferences for close-buttons, deleted IMAP messages and calendar:today backgrounds */ /* ============================================================================ */ /* Fonts and Fixes */ * { font-family: Ubuntu, 'Droid Sans', Verdana, Arial !important; /* For 'Segoe UI' or Tahoma change the font-size to 11pt */ font-size: 10pt !important; font-weight: normal !important; -webkit-font-smoothing: antialiased !important; } /* Increase small fonts a little */ small { font-size: 90% !important; } /* Remove dotted line around tab lables. Don't know why they appeared. */ a, a:link, a:hover, a:active, a:focus, a:visited { outline:0 !important; } /* ============================================================================ */ /* Basic Cleanup and Removes */ /* Remove ALL gradient-background-images first, some (for arrows) are forced back later */ * { background-image: none !important; } /* Remove ALL shadows under toolbars */ * { box-shadow: none !important; } /* Remove the throbber */ #throbber-box { display: none !important; } /* ============================================================================ */ /* Titlebar */ /* The titlebar is currently white, but I prefer to force it in case the change it in future versions */ #titlebar, #titlebar-content, #titlebar-spacer { } #navigation-toolbox { background-color: #ffffff !important; } /* ============================================================================ */ /* Tabs */ /* This is the whole container for all tabs */ .tabmail-tabs { margin-top: -2px !important; margin-left: -16px !important; /* Starting directly at left window border. 15px was standard + 1px boder */ margin-right: -1px !important; margin-bottom: 0px !important; /* Margin-bottom 0 leves a light pseudo-divider below the tabs. Move -1px down to remove it. */ background: #13191c; } /* Remove rounded corners from tabs */ .tab-background-start, .tab-background-end { display: none; } /* Remove icons from tabs, there are not so many... */ .tab-icon-image { display: none; } /* FIX 1/3 for overlapping tabs */ .tab-background { margin: 0; } /* FIX 2/3 for overlapping tabs, also removes the vertical dividers inbetween. */ .tabmail-tab:before { display: none !important; } /* FIX 3/3 for overlapping tabs (margin) */ .tab-background-middle { background: transparent !important; /* See the below defined tab-color */ margin: 0 !important; } /* This is the height for the tabs */ .tabmail-tab { height: 46px; } .tabmail-tab:first-child .tab-close-button { display: none !important; visibility: visible !important; } /* This is the active tab */ .tabmail-tab[selected="true"] .tab-text { color: rgba(170, 187, 195, 1) !important; } .tabmail-tab[selected="true"] .tab-background { border-bottom: solid #80deea 2px; /* Remove doubble-borders between tabs */ margin-left: -1px !important; margin-right: -1px !important; } /* This is the inactive tab on hover */ .tabmail-tab:hover:not([selected]) .tab-text { color: rgba(170, 187, 195, 1) !important; } .tabmail-tab:hover:not([selected]) .tab-background { cursor: pointer; } /* Text for inactive tabs */ .tabmail-tab:not([selected]) .tab-text { color: rgba(170, 187, 195, 0.8) !important; } /* Close button on tabs... */ /* Show only on mouseover and active tab */ .tabmail-tab:not([selected]) .tab-close-button { opacity: 0; } .tabmail-tab:not([selected]):hover .tab-close-button { opacity: 1; } /* Replaced the standard 'x', because the ugly close-button is hardcoded and base64 images are somehow not working for mouseover */ .tab-close-button { border: 2px solid #747373 !important; border-radius: 8px !important; list-style-image: none !important; -moz-image-region: rect(0px, 3px, 3px, 0px) !important; transition: background .2s, border .2s, opacity .2s; } .tab-close-button:hover, .tab-close-button:active, .tab-close-button:focus { border: 2px solid #FF5252 !important; cursor: pointer; } /* ============================================================================ */ /* Mainwindow = Toolbar and below. Somehow a misleading ID-name! This is everything BELOW the tabs */ /* ============================================================================ */ /* Toolbox + Buttons */ /* Coloring for the whole toobox bar */ #mail-toolbox, /* Thunderbird main + add-on windows */ #event-toolbox /* Calendar + lightning windows, accepts only color */ { background-color: #192124 !important; } .toolbarbutton-menubutton-dropmarker { display: none; } .toolbarbutton-text { color: rgba(170, 187, 195, 0.8) !important; } /* Spacing for ALL toolboxes */ .mail-toolbox:not([mode="full"]) > toolbar:only-of-type, .mail-toolbox[mode="full"][labelalign="end"] > toolbar:only-of-type, #ab-bar2, /* Address Book... */ #event-toolbar /* Calendar and lightning dialogs */ { margin-top: 7px; margin-bottom: 7px; margin-left: 10px !important; } #compose-toolbox > * { box-shadow: 0 !important; border: 0px solid transparent !important; margin: -2px 0 2px !important; } #compose-toolbox > * > *:hover { border: none !important; box-shadow: 0 !important; margin: 0 !important; padding: 0 !important; outline: 0 !important; background: transparent !important; } /* Sizing for All toolbar buttons */ :-moz-any(.chromeclass-toolbar) .toolbarbutton-1 > .toolbarbutton-menubutton-button, :-moz-any(.chromeclass-toolbar) .toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker, :-moz-any(.chromeclass-toolbar) .toolbarbutton-1 { min-height: 30px !important; } /* Hover-Effect for ALL toolbar buttons */ .toolbarbutton-1 > .toolbarbutton-menubutton-button:hover, .toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker:hover, .toolbarbutton-1:hover { background-color: transparent !important; cursor: pointer; } .toolbarbutton-1 > .toolbarbutton-menubutton-button:hover .toolbarbutton-text, .toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker:hover .toolbarbutton-text, .toolbarbutton-1:hover .toolbarbutton-text { color: rgba(170, 187, 195, 1) !important; } /* No effects for disabled buttons. Optional, because disabled buttons are hidden below. */ toolbarbutton[disabled="true"]:hover { background-color: transparent !important; } /* Remove disabled toolbar buttons until enabled */ toolbarbutton[disabled="true"] { display: none !important; } /* On-Off buttons, here for state 'checked' = ON */ toolbarbutton[checked="true"] { background-color: #d0e1f5 !important; box-shadow: none !important; } /* Search bar */ #mail-toolbox .searchBox { background: transparent; border: none; transition: border .2s; color: rgba(170, 187, 195, 0.8); border-bottom: 1px solid rgba(170, 187, 195, 0.2); } #mail-toolbox .searchBox:hover { border-bottom: 1px solid rgba(170, 187, 195, 1); } #mail-toolbox .searchBox .gloda-search-icon { display: none; } /* ============================================================================ */ /* Mixed UI dialogs and settings */ /* New Message - FIX for the distorted color-picker after increasing button-heights */ .color-button { height: 10px !important; /* Not really changeable */ width: 30px !important; } /* New Message - Text for Enigmail GPG was too red */ .enigmailStrong { color: #f00000 !important; } /* Address book. Make detail-title bigger */ #CardTitle { border-bottom-color: #4fa6fd; color: #438ed9; font-size: 120% !important; font-weight: normal !important; margin-top: 10px; } /* Account Settings, the background for title top-right. Not possible for all iframes. */ #am-main-title, .dialogheader, iframe { border:none !important; outline: none !important; } /* Account Settings, the title top-right. */ .dialogheader-title { font-size: 120% !important; font-weight: normal !important; } /* ============================================================================ */ /* Foldertree Basic (on the left) */ /* Remove white lines in the foldertree. Don't know why they appear sometimes. */ treechildren:not(.autocomplete-treebody)::-moz-tree-row { outline-color: transparent !important; } /* Push the whole foldertree further down. IMO it is to high */ #folderPaneBox { padding-top: 0px !important; } /* ============================================================================ */ /* Foldertree: Accounts + Folders (on the left) */ /* Style ACCOUNT name with no new mail */ #folderTree > treechildren::-moz-tree-cell-text(isServer-true) { font-weight: normal !important; } /* Style ACCOUNT name with new mail */ #folderTree > treechildren::-moz-tree-cell-text(isServer-true, biffState-NewMail) { color: #034675 !important; font-weight: bold !important; } /* Style FOLDER with unread messages */ #folderTree > treechildren::-moz-tree-cell-text(hasUnreadMessages-true) { color: #034675 !important; font-weight: bold !important; } /* Style CLOSED FOLDER CONTAINING SUBFOLDERS with unread messages */ #folderTree > treechildren::-moz-tree-cell-text(closed, subfoldersHaveUnreadMessages-true) { color: #034675 !important; font-weight: bold !important; } /* Style OPEN FOLDER CONTAINING SUBFOLDERS with unread messages. Disabled because you are already inside that folder */ /* #folderTree > treechildren::-moz-tree-cell-text(subfoldersHaveUnreadMessages-true) { color: #034675 !important; font-weight: bold !important; } */ /* ============================================================================ */ /* Messages: unread, replied, deleted */ /* UNREAD messages */ /* Unread messages : Cell */ #threadTree treechildren::-moz-tree-cell(unread) { -moz-appearance: none !important; background-color: #ffd98e !important; /* light orange = #ffd98e, pale green = #CCFFCC */ } /* Unread messages : Text */ #threadTree treechildren::-moz-tree-cell-text(unread) { -moz-appearance: none !important; font-weight: normal !important; } /* REPLIED messages */ treechildren::-moz-tree-cell(replied), treechildren::-moz-tree-cell(replied,selected), treechildren::-moz-tree-cell(replied,current) { background-color: #CCFFCC !important; } /* Replied messages text-color. Optional, disabled! Only activate and change this if you use a darker backgroud above. */ /* treechildren:-moz-tree-cell-text(replied,current) { color: #FFFFFF !important; } */ /* DELETED IMAP messages (not available for directly deleted POP messages. */ treechildren::-moz-tree-cell(imapdeleted) { background-color: #999999 !important; } treechildren:-moz-tree-cell-text(imapdeleted) { color: #FFFFFF !important; text-decoration: line-through !important; } treechildren::-moz-tree-cell(imapdeleted,selected) { background-color: #333333 !important; } treechildren::-moz-tree-cell(imapdeleted,current) { background-color: #666666 !important; } treechildren:-moz-tree-cell-text(imapdeleted,selected), treechildren:-moz-tree-cell-text(imapdeleted,current) { color: #DDDDFF !important; } treechildren::-moz-tree-cell-text(imapdeleted, offline) { background-color: #DDDDDD !important; text-decoration: line-through !important; } /* ============================================================================ */ /* Pretty Labels */ /* Default Important Label */ treechildren::-moz-tree-cell(lc-FF0000) { border-bottom: 1px solid #FF0000 !important; background-color: #FFCCCC !important; } treechildren::-moz-tree-cell-text(lc-FF0000) { color: #000000 !important; } treechildren::-moz-tree-cell(lc-FF0000, selected) { background-color: #FF0000 !important; } treechildren::-moz-tree-cell-text(lc-FF0000, selected) { color: #FFFFFF !important; } /* Default Work Label */ treechildren::-moz-tree-cell(lc-FF9900) { border-bottom: 1px solid #FF9900 !important; background-color: #FFCC99 !important;} treechildren::-moz-tree-cell-text(lc-FF9900) { color: #000000 !important; } treechildren::-moz-tree-cell(lc-FF9900, selected) { background-color: #FF9900 !important; } treechildren::-moz-tree-cell-text(lc-FF9900, selected) { color: #FFFFFF !important; } /* Default Personal Label */ treechildren::-moz-tree-cell(lc-009900) { border-bottom: 1px solid #22b222 !important; background-color: #22b222 !important;} treechildren::-moz-tree-cell-text(lc-009900) { color: #000000 !important; } treechildren::-moz-tree-cell(lc-009900, selected) { background-color: #22b222 !important; } treechildren::-moz-tree-cell-text(lc-009900, selected) { color: #FFFFFF !important; } /* Default Todo Label */ treechildren::-moz-tree-cell(lc-3333FF) { background-color: #CCCCFF !important; border-bottom: 1px solid #6262f1 !important; } treechildren::-moz-tree-cell-text(lc-3333FF) { color: #000000 !important; } treechildren::-moz-tree-cell(lc-3333FF, selected) { background-color: #6262f1 !important; } treechildren::-moz-tree-cell-text(lc-3333FF, selected) { color: #FFFFFF !important; } /* Default Later Label */ treechildren::-moz-tree-cell(lc-993399) { background-color: #FFCCFF !important; border-bottom: 1px solid #993399 !important; } treechildren::-moz-tree-cell-text(lc-993399) { color: #000000 !important; } treechildren::-moz-tree-cell(lc-993399, selected) { background-color: #993399 !important; } treechildren::-moz-tree-cell-text(lc-993399, selected) { color: #FFFFFF !important; } /* ============================================================================ */ /* Clean Notification Alerts */ #alertImageBox {display:none;} #alertContainer {width:400px; border-radius: 0px !important;} #alertTitle, folderSummaryMessage {width:350px;} #newMailAlertNotification {border:1px solid #a2a2a2 !important; border-radius: 0px !important; background:#ebebeb !important;} #newMailAlertNotification #closeButton {padding-top:4px !important;} /* ============================================================================ */ /* Calendar + Lightning CleanUp */ /* MAIN tabs */ /* Add a divider under the toolboxes in calendar and tasks */ #calendar-toolbox, #task-toolbox { border-bottom: 1px solid #a9b7c9 !important; } /* Sidebar: Set same background-color as in the main thunderbird-window. */ #ltnSidebar, #ltnSidebar .tree-stack { background-color: #f0f0f0 !important; } /* FIX - Hide the newly appeard string 'calendarname' inside the left pane */ calendar-list-tree .tree-scrollable-columns { background-color: #f0f0f0 !important; height: 0px !important; } /* Hide the additional text also */ calendar-list-tree treecol[hideheader="true"] { visibility: hidden !important; } /* Make the searchbox in CALENDAR the same hight as the searchbox in TASKS */ #unifinder-searchBox { height: 34px !important; } /* Calendarview: Current Day in different views */ window { --viewHeaderSelectedBackground: #ffd98e !important; --viewDayBoxSelectedBackground: #ffd98e !important; --viewDayBoxOtherSelectedBackground: #ffd98e !important; --viewDayBoxOffSelectedBackground: #ffd98e !important; --viewMonthDayBoxSelectedBackground: #ffd98e !important; } /* Remove old-school rounded borders from 'Day, Week, Month...' */ tab[calview], tab[calview][selected="true"] { border-radius: 0px !important; } /* Calendar main: Remove 'jumps' when switching between Day, Week, Month... This was a f**** nightmare! DOM chrome://calendar/content/calendar-views.xul */ /* All tabs: lighter, active is defined below */ tab[calview] { background-color: rgba(255,255,255, .3); padding: 3px 10px !important; } tab[calview][selected="true"], tab[calview][selected="true"]:hover { background-color: -moz-Field; border-top: solid #ffcc66 3px; padding-top: 0 !important; } tab[calview]:hover { background-color: ButtonHighlight; border-top: solid #4fa6fd 3px; padding-top: 0 !important; } /* Calendar lighter fonts in mouseover-tooltips */ .tooltipHeaderLabel { color: #747373 !important; } /* OTHER CALENDAR windows integration */ /* Small buttons top-right to call calendar and tasks window */ #calendar-tab-button:hover, #calendar-tab-button:focus, #task-tab-button:hover, #task-tab-button:focus { background-color: #ffcc66 !important; } /* Mini-Calendar in all windows */ .minimonth-day[today="true"], .minimonth-day[selected="true"] { border: none !important; padding-top: 1px !important; } .minimonth-day[selected="true"] { background-color: #ffcc66 !important; } /* Mini-Tasks: Adjust height and color to fit new toolbox-height */ #today-pane-panel > sidebarheader { background-color: #f0f0f0; border-top: none !important; /* Removes white pseudo-3D line */ padding: 3px 0 2px 0 !important; } /* Mini-Tasks: today */ #today-header .agenda-checkbox { background-color: #ffd98e !important; } /* Mini-Tasks: remove border from the small colored calendar-squares (is an overlay) */ .agenda-calendar-image { list-style-image: none !important; } /* Force back the arrow-images for opening/closing future tasks after forbidding all images first, today-pane.xul */ treenode-checkbox > .checkbox-check { background-image: url(chrome://global/skin/tree/twisty-clsd.png) !important; } treenode-checkbox[checked="true"] > .checkbox-check { background-image: url(chrome://global/skin/tree/twisty-open.png) !important; } /* Small calendar day-date in the bottom-right button */ .toolbarbutton-day-text { font-weight: normal !important; font-size: 8pt !important; margin-top: 1px !important; /* OR disable completely */ /* display: none !important; */ } /* ============================================================================ */ /* Last Orders */ /* Style the Add-on Extensions and Styles names */ .basicinfo-container .name-container .name { font-size: 150% !important; } #userstyle-sorting .sorter { border: 1px solid #a9b7c9 !important; border-radius: 0px !important; } /* Puhhhh ... finished! But I like it^^ */
0.439026
0.22008
@charset "utf-8"; html,body { background:#ffffff; margin:0; padding:0; width: 100%; height: 100%; } #content { position: absolute; top: 0; right: 0; left: 0; bottom: 0; } #content-head { position:relative; height: 30px; width: 100%; background-color: #e0e0ff; display:block; } #content-main { position:relative; margin-left: 210px; padding: 10px; } #navigation { position:absolute; top: 30px; bottom: 0; padding: 5px; background-color: #f0f0ff; width: 200px; } .full-panel { width: 100%; height: 100%; } #browse { width: 100%; height: 400px; max-height:100%; padding:0; margin:0; } #browse-left { float:left; width: 300px; height: 100%; } #browse-packagelist { float: top; display:block; width: 100%; max-height: 50%; overflow:auto; } #browse-itemlist { float: bottom; padding-top: 5px; display:block; width: 100%; max-height: 50%; overflow:auto; } #browse-main { height: 100%; overflow:auto; padding: 0px 10px 0px 10px; } button.green-button, input[type="reset"].green-button, input[type="submit"].green-button, input[type="button"].green-button { background-color: #2AA545; background-image: url(../images/button-green-bg.png); } button:hover.green-button, input[type="reset"].green-button:hover, input[type="submit"].green-button:hover, input[type="button"].green-button:hover { background-color: #2AA555; background-image: url(../images/button-green-hv.png); } button[disabled].green-button, input[type="reset"][disabled].green-button, input[type="submit"][disabled].green-button, input[type="button"][disabled].green-button { color: #6A92CF; border-color: #cccccc; background-color: #cccccc; background-image: none; background-position: top left; } button.red-button, input[type="reset"].red-button, input[type="submit"].red-button, input[type="button"].red-button { background-color: #B54A75; background-image: url(../images/button-red-bg.png); } button:hover.red-button, input[type="reset"].red-button:hover, input[type="submit"].red-button:hover, input[type="button"].red-button:hover { background-repeat: repeat-x; background-image: url(../images/button-red-hv.png); } button[disabled].red-button, input[type="reset"][disabled].red-button, input[type="submit"][disabled].red-button, input[type="button"][disabled].red-button { color: #6A92CF; border-color: #cccccc; background-color: #cccccc; background-image: url(/Efficiency_DB_External/rfRes/buttonDisabledBackgroundImage.png.xhtml?v=4.1.0.Final&db=eAFjZGBkZOBm!P-f8f!Hjx8Z!585c4aBCQBP8glH&ln=org.richfaces.images); background-position: top left; } button.yellow-button, input[type="reset"].yellow-button, input[type="submit"].yellow-button, input[type="button"].yellow-button { background-color: #B5B54A; background-image: url(../images/button-yellow-bg.png); } button:hover.yellow-button, input[type="reset"].yellow-button:hover, input[type="submit"].yellow-button:hover, input[type="button"].yellow-button:hover { background-repeat: repeat-x; background-image: url(../images/button-yellow-hv.png); } button[disabled].yellow-button, input[type="reset"][disabled].yellow-button, input[type="submit"][disabled].yellow-button, input[type="button"][disabled].yellow-button { color: #6A92CF; border-color: #cccccc; background-color: #cccccc; background-image: url(/Efficiency_DB_External/rfRes/buttonDisabledBackgroundImage.png.xhtml?v=4.1.0.Final&db=eAFjZGBkZOBm!P-f8f!Hjx8Z!585c4aBCQBP8glH&ln=org.richfaces.images); background-position: top left; } .even-row { background-color: #FCFFFE; } .odd-row { background-color: #ECF3FE; } .active-row { background-color: #DAEBFF !important; cursor: pointer; }
src/main/webapp/publicResources/style/screen.css
@charset "utf-8"; html,body { background:#ffffff; margin:0; padding:0; width: 100%; height: 100%; } #content { position: absolute; top: 0; right: 0; left: 0; bottom: 0; } #content-head { position:relative; height: 30px; width: 100%; background-color: #e0e0ff; display:block; } #content-main { position:relative; margin-left: 210px; padding: 10px; } #navigation { position:absolute; top: 30px; bottom: 0; padding: 5px; background-color: #f0f0ff; width: 200px; } .full-panel { width: 100%; height: 100%; } #browse { width: 100%; height: 400px; max-height:100%; padding:0; margin:0; } #browse-left { float:left; width: 300px; height: 100%; } #browse-packagelist { float: top; display:block; width: 100%; max-height: 50%; overflow:auto; } #browse-itemlist { float: bottom; padding-top: 5px; display:block; width: 100%; max-height: 50%; overflow:auto; } #browse-main { height: 100%; overflow:auto; padding: 0px 10px 0px 10px; } button.green-button, input[type="reset"].green-button, input[type="submit"].green-button, input[type="button"].green-button { background-color: #2AA545; background-image: url(../images/button-green-bg.png); } button:hover.green-button, input[type="reset"].green-button:hover, input[type="submit"].green-button:hover, input[type="button"].green-button:hover { background-color: #2AA555; background-image: url(../images/button-green-hv.png); } button[disabled].green-button, input[type="reset"][disabled].green-button, input[type="submit"][disabled].green-button, input[type="button"][disabled].green-button { color: #6A92CF; border-color: #cccccc; background-color: #cccccc; background-image: none; background-position: top left; } button.red-button, input[type="reset"].red-button, input[type="submit"].red-button, input[type="button"].red-button { background-color: #B54A75; background-image: url(../images/button-red-bg.png); } button:hover.red-button, input[type="reset"].red-button:hover, input[type="submit"].red-button:hover, input[type="button"].red-button:hover { background-repeat: repeat-x; background-image: url(../images/button-red-hv.png); } button[disabled].red-button, input[type="reset"][disabled].red-button, input[type="submit"][disabled].red-button, input[type="button"][disabled].red-button { color: #6A92CF; border-color: #cccccc; background-color: #cccccc; background-image: url(/Efficiency_DB_External/rfRes/buttonDisabledBackgroundImage.png.xhtml?v=4.1.0.Final&db=eAFjZGBkZOBm!P-f8f!Hjx8Z!585c4aBCQBP8glH&ln=org.richfaces.images); background-position: top left; } button.yellow-button, input[type="reset"].yellow-button, input[type="submit"].yellow-button, input[type="button"].yellow-button { background-color: #B5B54A; background-image: url(../images/button-yellow-bg.png); } button:hover.yellow-button, input[type="reset"].yellow-button:hover, input[type="submit"].yellow-button:hover, input[type="button"].yellow-button:hover { background-repeat: repeat-x; background-image: url(../images/button-yellow-hv.png); } button[disabled].yellow-button, input[type="reset"][disabled].yellow-button, input[type="submit"][disabled].yellow-button, input[type="button"][disabled].yellow-button { color: #6A92CF; border-color: #cccccc; background-color: #cccccc; background-image: url(/Efficiency_DB_External/rfRes/buttonDisabledBackgroundImage.png.xhtml?v=4.1.0.Final&db=eAFjZGBkZOBm!P-f8f!Hjx8Z!585c4aBCQBP8glH&ln=org.richfaces.images); background-position: top left; } .even-row { background-color: #FCFFFE; } .odd-row { background-color: #ECF3FE; } .active-row { background-color: #DAEBFF !important; cursor: pointer; }
0.356335
0.128443
.main-cart{ display: none; top:0; left:0; position:fixed; height: 100%; width: 100vw; z-index:1031!important; overflow: scroll; } .menu{ position:fixed; top:0; left:0; height: 100%; width: 100%; display: flex; /* visibility: hidden; */ overflow: scroll; background-color: rgb(17, 16, 16, .7); } .cart-summary{ position:relative; height:93vh; top:7vh; min-width: 320px !important; } .cart-box{ position: relative; right: 0px !important; width:510px; overflow-y:scroll!important; padding:0px 0px 140px 0px; display: flex; flex-direction: column; justify-content: space-between; } #add-mini-popup{ width:510px; } .animate-cart-nav{ position: relative; top: 0 !important; width: 167% !important } #checkOutSummaryDiv{ height:90vh; width:350px; display: none; } .checkouts-nav, .checkout{ display: none; } .closecheckout{ cursor:pointer; } .closecart{ cursor:pointer; /* border:1px solid var(--color_purple); */ color:var(--color_purple); border-radius:5px; } @keyframes animate{ from{ left:100%; } to{ left:0%; } } .menu .extra{ width:60%; height:100vh; } .cart-nav{ height:7vh!important; display: flex; justify-content: space-between; padding: 10px; border-bottom: 5px solid rgb(236, 236, 236); background: white; z-index: 4 !important; position: absolute; right: 0 !important; width: 100%; } .closecart{ z-index: 4; } .submenu{ position: relative; width:fit-content; max-width: 100%; height: 100%; -webkit-animation: animate .5s linear forwards; animation:animate .5s linear forwards; } .cart-nav button{ border:1px solid var(--color_purple); border-radius: 5px; color:var(--color_purple); background: transparent; cursor: pointer; outline:none; } .cart-nav h6{ color:var(--color_purple); } h6.cost{ margin: 0px; line-height: 36px; text-align: center; } .cart-nav div { line-height: .5em; } .cart-nav div h6{ color:var(--color_black); } .MyAccountHr{ cursor:pointer; background: #efeeeecc !important; } .sel__msg{ color:red; } .sel_slot_btn{ background:var(--color_purple); border-radius: 5px; border:2px solid var(--color_purple); color:var(--color_white); font-size: 1.1em; outline: none; margin-top: 16px !important; } /* ---------------------------------------after-add=--------------------------------------- */ .cart-items{ position:relative; /* height:83vh; */ /* overflow-y:scroll ; */ width:100%; background: white; } .cart-items-inside{ height:auto; width:100%; } .added-items{ /* height:auto; */ background: white; width:100%; box-sizing:border-box ; position: relative; overflow: hidden; /* animation:cartItem 0.6s ease-in infinite; */ } .added-items_store_cart{ /* animation: cartItem 0.3s linear; */ } @keyframes cartItem{ 0%{ height: auto; transition: ease-in all; } 100%{ height:0; overflow: hidden; transition: ease-in all; } } .added-item{ width:100%; border-bottom:1px solid #dee2e6 !important; position: relative; } .items-nav, .item-details, .preview-remove, .cost-item, .items-left{ display: flex !important; align-items: center; } .cost-item{ text-align: center; } .item-n{ color:var(--color_purple); font-size:.9em; width: 60px; text-align: center; } /* .items-nav, .item-details, .preview-remove, .cost-item{ justify-content: space-between; } */ .remove, .previewd { cursor: pointer; } .added-items .items-left{ width:calc(100% - 60px); align-items: center; } .item-about{ font-weight: light; color:grey; width:70% !important; position:relative; } .item_nm{ min-height: 3vh; max-height: 6vh; height: auto; display: flex; align-items: center; } .item-qty{ width: 35px; height: 30px; border-radius: 5px; } .text-area{ padding:5px; box-sizing: border-box; border:0.5px solid silver; border-radius: 5px; outline:none; width:calc(100% - 70px); height:90%; /* position:absolute; bottom:5%; top:5%; right:5%;*/ } .preview-div{ position: relative; display: none; width: 320px; justify-content: space-around; align-items: center; padding: 0.3rem; background: #eceaf5; border-radius: 5px; } .preview-div::after{ content: ""; position: absolute; top:-20px; left: 15%; border-width: 10px; border-style: solid; border-color:transparent transparent #555 transparent ; } .items-nav img{ box-sizing: border-box; border-radius: 50%; } .count-drop{ position: relative; border:1px solid silver; border-radius: 5px; } .text-area-btn{ border: none; color: var(--color_white); background: #3E3665; padding: 0rem 0.9rem; border-radius: 5px; cursor: pointer; } .count-down{ border:1px solid silver; border-radius: 5px; position:absolute; left:0; font-size:.8em; top:0; text-align: center; width:100%; height:100%; outline: none; border: none; } /* ---------------unadded-add-item-checkout--------------- */ .unadded-items{ /* height:45%; */ width:100%; border: 1px solid var(--color_purple); } .check-out-before{ position:fixed; height:8vh; bottom:0; box-sizing: border-box; height:auto; width:440px; background: white; display: flex; flex-direction: column; justify-content:space-between; z-index:5; padding:0.5em; } .check-out-before button{ cursor: pointer; padding:10px; width:100%; background:var(--color_purple); border-radius: 5px; border:2px solid var(--color_purple); color:var(--color_white); font-size: 1.1em; outline: none; } .checkout{ display:none; flex-wrap: wrap; animation:animate .5s linear forwards; } #checkOutSummaryDiv{ margin-right: -34.3rem; transition: 0.3s all; } .accordion-button-l::after{ position:absolute; right:20px; } .paid-text{ font-size:1.1em; position: absolute; right:60px; top:5px; } .date-box-c, .time-box-c{ padding:2px 2px; font-size: .6em !important; max-height:45px; width:100px; } .slot-t-tic-c, .slot-d-tic-c{ height:16px; width:16px; } .each-selection-box .address-white-box { height:150px; } .timeSlots{ position: relative; padding:0px; } .timeSlots.schedule-btn-on { padding-bottom:40px; } .timeSlots .schedule-box{ display: none; } .timeSlots.schedule-btn-on .schedule-box{ display: flex; width: 100%; justify-content: center; } .schedule-box button { padding: 4px 10px; line-height: 24px; } .selection-box-heading{ font-size:.95em; color:black!important; white-space: nowrap; text-align: left; } .placeOrderBtn{ background:#3E3665; border:0px; color:#ffffff; } .placeOrderBtn.off{ background: #eeeeee; color:#777777; cursor: text; } .p-01{ padding: 2px !important; } .cart-addr-tick{ position:absolute; right:0px; top:0px; } .expandBoxAll{ width:100%!important; } .expandTriggerAll{ width:100%; } .payment-123{ height:100px; } .paymentBoxExpand, .fulfilmentBoxExpand, .addressBoxExpand{ margin-top:10px; position:relative; background:#eeeded!important; } .paymentBoxExpand::after{ content: ''; position: absolute; left: 80%; top: -10px; width: 0; height: 0; border-left: 10px solid transparent; border-right: 10px solid transparent; border-bottom: 10px solid var(--color_lightpurple); clear: both } .fulfilmentBoxExpand::after{ content: ''; position: absolute; left: 13%; top: -10px; width: 0; height: 0; border-left: 10px solid transparent; border-right: 10px solid transparent; border-bottom: 10px solid var(--color_lightpurple); clear: both } .addressBoxExpand::after{ content: ''; position: absolute; left: 48%; top: -10px; width: 0; height: 0; border-left: 10px solid transparent; border-right: 10px solid transparent; border-bottom: 10px solid var(--color_lightpurple); clear: both; } #checkOutSummaryDiv .order_summary{ display: flex; } #checkOutSummaryDiv .order_placed { display: flex !important; } .cart-simg{ width: 36px; } @media screen and (max-width:1440px){ /* .animate-cart-nav{ width: 56.7rem !important; } */ } @media screen and (max-width:1200px){ .cart-nav div { line-height: 0em; font-size: .8em; } .cart-nav button{ height:5vh; } .extra{ width:50%; } } @media screen and (max-width:1000px){ .check-out-before{ width:530px !important; } .cart-box, #add-mini-popup{ width:530px !important; } } @media screen and (max-width:767px){ #checkOutSummaryDiv{ height:90vh; width:100% !important; } .cart-box,#add-mini-popup{ width:520px !important; } .check-out-before{ width:520px !important; } /* .submenu{ max-width:480px !important; } */ } @media screen and (max-width:680px){ #checkOutSummaryDiv{ height:90vh; width:100% !important; } .cart-box,#add-mini-popup{ width:480px !important; } .check-out-before{ width:480px !important; } /* .submenu{ max-width:480px !important; } */ } @media screen and (max-width:700px){ .extra{ display: none; } } @media screen and (max-width:550px){ .cart-box,#add-mini-popup{ width:100%!important; } .check-out-before{ width:100%!important; } #checkOutSummaryDiv{ height:80vh !important; width:100%; } .cart-summary{ width: 100% !important; } } @media screen and (max-width:426px){ .cart-box p{ font-size: 0.8rem; } .item-qty{ font-size: 0.8rem; } .item-n{ font-size: 0.9rem; } .item-about{ width: 245px !important; } .checkoutH5{ font-size: 0.9rem !important; } .item_name_cart{ line-height: 1rem; } .checkoutH4{ font-size: 0.9rem !important; } .checkoutSmall{ font-size: 0.7rem !important; } /* .address-123 p{ font-size: 0.6rem !important; } */ } @media screen and (min-width:1000px){ .check-out-before{ width:510px !important; } /* .submenu{ max-width:510px !important; } */ } /* .accordion-button::after{ width: 0.5rem !important; height: 0.8rem !important; margin-right: 1rem; } */
src/app/pages/CART/CART.css
.main-cart{ display: none; top:0; left:0; position:fixed; height: 100%; width: 100vw; z-index:1031!important; overflow: scroll; } .menu{ position:fixed; top:0; left:0; height: 100%; width: 100%; display: flex; /* visibility: hidden; */ overflow: scroll; background-color: rgb(17, 16, 16, .7); } .cart-summary{ position:relative; height:93vh; top:7vh; min-width: 320px !important; } .cart-box{ position: relative; right: 0px !important; width:510px; overflow-y:scroll!important; padding:0px 0px 140px 0px; display: flex; flex-direction: column; justify-content: space-between; } #add-mini-popup{ width:510px; } .animate-cart-nav{ position: relative; top: 0 !important; width: 167% !important } #checkOutSummaryDiv{ height:90vh; width:350px; display: none; } .checkouts-nav, .checkout{ display: none; } .closecheckout{ cursor:pointer; } .closecart{ cursor:pointer; /* border:1px solid var(--color_purple); */ color:var(--color_purple); border-radius:5px; } @keyframes animate{ from{ left:100%; } to{ left:0%; } } .menu .extra{ width:60%; height:100vh; } .cart-nav{ height:7vh!important; display: flex; justify-content: space-between; padding: 10px; border-bottom: 5px solid rgb(236, 236, 236); background: white; z-index: 4 !important; position: absolute; right: 0 !important; width: 100%; } .closecart{ z-index: 4; } .submenu{ position: relative; width:fit-content; max-width: 100%; height: 100%; -webkit-animation: animate .5s linear forwards; animation:animate .5s linear forwards; } .cart-nav button{ border:1px solid var(--color_purple); border-radius: 5px; color:var(--color_purple); background: transparent; cursor: pointer; outline:none; } .cart-nav h6{ color:var(--color_purple); } h6.cost{ margin: 0px; line-height: 36px; text-align: center; } .cart-nav div { line-height: .5em; } .cart-nav div h6{ color:var(--color_black); } .MyAccountHr{ cursor:pointer; background: #efeeeecc !important; } .sel__msg{ color:red; } .sel_slot_btn{ background:var(--color_purple); border-radius: 5px; border:2px solid var(--color_purple); color:var(--color_white); font-size: 1.1em; outline: none; margin-top: 16px !important; } /* ---------------------------------------after-add=--------------------------------------- */ .cart-items{ position:relative; /* height:83vh; */ /* overflow-y:scroll ; */ width:100%; background: white; } .cart-items-inside{ height:auto; width:100%; } .added-items{ /* height:auto; */ background: white; width:100%; box-sizing:border-box ; position: relative; overflow: hidden; /* animation:cartItem 0.6s ease-in infinite; */ } .added-items_store_cart{ /* animation: cartItem 0.3s linear; */ } @keyframes cartItem{ 0%{ height: auto; transition: ease-in all; } 100%{ height:0; overflow: hidden; transition: ease-in all; } } .added-item{ width:100%; border-bottom:1px solid #dee2e6 !important; position: relative; } .items-nav, .item-details, .preview-remove, .cost-item, .items-left{ display: flex !important; align-items: center; } .cost-item{ text-align: center; } .item-n{ color:var(--color_purple); font-size:.9em; width: 60px; text-align: center; } /* .items-nav, .item-details, .preview-remove, .cost-item{ justify-content: space-between; } */ .remove, .previewd { cursor: pointer; } .added-items .items-left{ width:calc(100% - 60px); align-items: center; } .item-about{ font-weight: light; color:grey; width:70% !important; position:relative; } .item_nm{ min-height: 3vh; max-height: 6vh; height: auto; display: flex; align-items: center; } .item-qty{ width: 35px; height: 30px; border-radius: 5px; } .text-area{ padding:5px; box-sizing: border-box; border:0.5px solid silver; border-radius: 5px; outline:none; width:calc(100% - 70px); height:90%; /* position:absolute; bottom:5%; top:5%; right:5%;*/ } .preview-div{ position: relative; display: none; width: 320px; justify-content: space-around; align-items: center; padding: 0.3rem; background: #eceaf5; border-radius: 5px; } .preview-div::after{ content: ""; position: absolute; top:-20px; left: 15%; border-width: 10px; border-style: solid; border-color:transparent transparent #555 transparent ; } .items-nav img{ box-sizing: border-box; border-radius: 50%; } .count-drop{ position: relative; border:1px solid silver; border-radius: 5px; } .text-area-btn{ border: none; color: var(--color_white); background: #3E3665; padding: 0rem 0.9rem; border-radius: 5px; cursor: pointer; } .count-down{ border:1px solid silver; border-radius: 5px; position:absolute; left:0; font-size:.8em; top:0; text-align: center; width:100%; height:100%; outline: none; border: none; } /* ---------------unadded-add-item-checkout--------------- */ .unadded-items{ /* height:45%; */ width:100%; border: 1px solid var(--color_purple); } .check-out-before{ position:fixed; height:8vh; bottom:0; box-sizing: border-box; height:auto; width:440px; background: white; display: flex; flex-direction: column; justify-content:space-between; z-index:5; padding:0.5em; } .check-out-before button{ cursor: pointer; padding:10px; width:100%; background:var(--color_purple); border-radius: 5px; border:2px solid var(--color_purple); color:var(--color_white); font-size: 1.1em; outline: none; } .checkout{ display:none; flex-wrap: wrap; animation:animate .5s linear forwards; } #checkOutSummaryDiv{ margin-right: -34.3rem; transition: 0.3s all; } .accordion-button-l::after{ position:absolute; right:20px; } .paid-text{ font-size:1.1em; position: absolute; right:60px; top:5px; } .date-box-c, .time-box-c{ padding:2px 2px; font-size: .6em !important; max-height:45px; width:100px; } .slot-t-tic-c, .slot-d-tic-c{ height:16px; width:16px; } .each-selection-box .address-white-box { height:150px; } .timeSlots{ position: relative; padding:0px; } .timeSlots.schedule-btn-on { padding-bottom:40px; } .timeSlots .schedule-box{ display: none; } .timeSlots.schedule-btn-on .schedule-box{ display: flex; width: 100%; justify-content: center; } .schedule-box button { padding: 4px 10px; line-height: 24px; } .selection-box-heading{ font-size:.95em; color:black!important; white-space: nowrap; text-align: left; } .placeOrderBtn{ background:#3E3665; border:0px; color:#ffffff; } .placeOrderBtn.off{ background: #eeeeee; color:#777777; cursor: text; } .p-01{ padding: 2px !important; } .cart-addr-tick{ position:absolute; right:0px; top:0px; } .expandBoxAll{ width:100%!important; } .expandTriggerAll{ width:100%; } .payment-123{ height:100px; } .paymentBoxExpand, .fulfilmentBoxExpand, .addressBoxExpand{ margin-top:10px; position:relative; background:#eeeded!important; } .paymentBoxExpand::after{ content: ''; position: absolute; left: 80%; top: -10px; width: 0; height: 0; border-left: 10px solid transparent; border-right: 10px solid transparent; border-bottom: 10px solid var(--color_lightpurple); clear: both } .fulfilmentBoxExpand::after{ content: ''; position: absolute; left: 13%; top: -10px; width: 0; height: 0; border-left: 10px solid transparent; border-right: 10px solid transparent; border-bottom: 10px solid var(--color_lightpurple); clear: both } .addressBoxExpand::after{ content: ''; position: absolute; left: 48%; top: -10px; width: 0; height: 0; border-left: 10px solid transparent; border-right: 10px solid transparent; border-bottom: 10px solid var(--color_lightpurple); clear: both; } #checkOutSummaryDiv .order_summary{ display: flex; } #checkOutSummaryDiv .order_placed { display: flex !important; } .cart-simg{ width: 36px; } @media screen and (max-width:1440px){ /* .animate-cart-nav{ width: 56.7rem !important; } */ } @media screen and (max-width:1200px){ .cart-nav div { line-height: 0em; font-size: .8em; } .cart-nav button{ height:5vh; } .extra{ width:50%; } } @media screen and (max-width:1000px){ .check-out-before{ width:530px !important; } .cart-box, #add-mini-popup{ width:530px !important; } } @media screen and (max-width:767px){ #checkOutSummaryDiv{ height:90vh; width:100% !important; } .cart-box,#add-mini-popup{ width:520px !important; } .check-out-before{ width:520px !important; } /* .submenu{ max-width:480px !important; } */ } @media screen and (max-width:680px){ #checkOutSummaryDiv{ height:90vh; width:100% !important; } .cart-box,#add-mini-popup{ width:480px !important; } .check-out-before{ width:480px !important; } /* .submenu{ max-width:480px !important; } */ } @media screen and (max-width:700px){ .extra{ display: none; } } @media screen and (max-width:550px){ .cart-box,#add-mini-popup{ width:100%!important; } .check-out-before{ width:100%!important; } #checkOutSummaryDiv{ height:80vh !important; width:100%; } .cart-summary{ width: 100% !important; } } @media screen and (max-width:426px){ .cart-box p{ font-size: 0.8rem; } .item-qty{ font-size: 0.8rem; } .item-n{ font-size: 0.9rem; } .item-about{ width: 245px !important; } .checkoutH5{ font-size: 0.9rem !important; } .item_name_cart{ line-height: 1rem; } .checkoutH4{ font-size: 0.9rem !important; } .checkoutSmall{ font-size: 0.7rem !important; } /* .address-123 p{ font-size: 0.6rem !important; } */ } @media screen and (min-width:1000px){ .check-out-before{ width:510px !important; } /* .submenu{ max-width:510px !important; } */ } /* .accordion-button::after{ width: 0.5rem !important; height: 0.8rem !important; margin-right: 1rem; } */
0.499268
0.057467
html, body { height: 100%; } @media (min-width: 780px) { #carousel-front { width: 780px; margin-left: auto; margin-right: auto; } } .count_num { color: red; } .right { float: right; } .left { float: left; } .no-padding { padding: 0; } .center-block { display: block; margin-left: auto; margin-right: auto; } .page-wrap { min-height: 100%; margin-bottom: -300px; } .page-wrap:after { content: ""; display: block; height: 300px; } .div-margin-top-100 { margin-top: 170px; } .bs-docs-footer { padding-top: 50px; padding-bottom: 50px; margin-top: 100px; color: #99979c; text-align: center; background-color: #2a2730; text-align: left; z-index: 1; position: relative; } .main { padding-top: 70px; } .footer-links { padding-left: 0; margin-bottom: 20px; } .footer-links li { display: inline-block; margin-right: 20px; } .footer-links a { color: #fff; text-decoration: none; } .quantity-form span { border-top: 1px solid #cacbcb; border-bottom: 1px solid #cacbcb; margin: 0 -4px; width: 40px; display: inline-block; text-align: center; } .quantity-form a { border: 1px solid #cacbcb; width: 20px; display: inline-block; color: #666; text-align: center; text-decoration: none; } @media (max-width: 510px) { .quantity-form span { width: 20px; } .quantity-form a { width: 15px; } } .th-col-2 { width: 20%; } .th-col-4 { width: 40%; } .panel-div { margin: 12px; } .panel-h4 { margin: 2px 12px; } #check-order { border-radius: 0px; } .panel-heading-time { display: inline-block; color: #999; margin-right: 20px; } .product-pic-s { height: 50px; width: 50px; } .product-pic-m { height: 100px; width: 100px; } .product-pic-l { height: 200px; width: 200px; } .product-item { padding: 5px 0; } .block-center { text-align: center; } .list-item { padding-top: 15px; padding-bottom: 15px; } .list-item + .list-item { border-top: 1px solid #ddd; } .list-pic-fix { padding-left: 0; } .add-default { color: #ffcb23; text-decoration:none; } .add-default:hover { color: #ffcb23; text-decoration:none; } .address-edit-button { display: inline-block; margin-left: 20px; } #particles-js { width: 100%; height: 100%; background: black; position: absolute; top: 0; left: 0; z-index: 0; } #id-div-login, #id-div-register, #id-div-forget-password { position:absolute; top:40%; left: 50%; transform:translate(-50%,-50%); z-index: 1; } #id-div-login input, #id-div-register input{ background-color: #2a2730; color: white; } #id-div-login button,#id-div-register button { border: 0; border-radius: 3px; line-height: 41px; padding-top: 0; padding-bottom: 0; } .sign-flow { margin-left: auto; margin-right: auto; width: 300px; } .group-inputs { padding: 1px 0; border: 1px solid #d5d5d5; border-radius: 3px; } .group-inputs input { padding: 1em .8em; line-height: 19px; width: 100%; border: 0; border-radius: 0; box-shadow: none; } .group-inputs input:focus { outline: none; } .group-inputs input + input { border-top: 1px solid #d5d5d5; } label { width: 100%; } .empty-cart-title { margin-top: 2px; margin-left: 20px; margin-right: 20px; font-size: 16px; } .empty-cart { margin-left: 20px; color: #bbb; } #id-input-captcha,#id-input-mail-code { width: 186px; } #id-input-mail-code { border-top: 1px solid #ddd; } #id-button-mail-code { width: 112px; height: 49px; display: inline-block; border-radius: 0px; border-top: 1px solid #ddd; line-height: 35px; } .panel-profile { max-width: 400px; } .alert-container { position: fixed; top: 70px; width: 100%; z-index: 2; } /* -----------购物车局部css开始----------- */ .stepflex { display: inline-block; display: block; border-top: 5px solid #ccc; text-align: center; margin: 30px 0 0; float: right; } .stepflex:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; } .stepflex dl.done { border-top-color: #caecb6; } .stepflex dl.doing { border-top-color: #7abd54; } .stepflex dl { float: left; position: relative; width: 160px; top: -5px; border-top: 5px solid #ccc; } .stepflex dl.done .s-num { background-position: -46px 0; } .stepflex dl.doing .s-num { background-position: -23px 0; } .stepflex .s-num { position: relative; margin: -15px auto 0; color: #fff; font-weight: 700; width: 23px; height: 23px; background-image: url(//misc.360buyimg.com/user/purchase/2.0.0/css/i/step2013.png); line-height: 23px; } .stepflex dl.done .s-text { color: #caecb6; } .stepflex dl.doing .s-text { color: #7abd54; } .stepflex .s-text { color: #ccc; } /* -----------购物车局部css结束----------- */
static/css/base.css
html, body { height: 100%; } @media (min-width: 780px) { #carousel-front { width: 780px; margin-left: auto; margin-right: auto; } } .count_num { color: red; } .right { float: right; } .left { float: left; } .no-padding { padding: 0; } .center-block { display: block; margin-left: auto; margin-right: auto; } .page-wrap { min-height: 100%; margin-bottom: -300px; } .page-wrap:after { content: ""; display: block; height: 300px; } .div-margin-top-100 { margin-top: 170px; } .bs-docs-footer { padding-top: 50px; padding-bottom: 50px; margin-top: 100px; color: #99979c; text-align: center; background-color: #2a2730; text-align: left; z-index: 1; position: relative; } .main { padding-top: 70px; } .footer-links { padding-left: 0; margin-bottom: 20px; } .footer-links li { display: inline-block; margin-right: 20px; } .footer-links a { color: #fff; text-decoration: none; } .quantity-form span { border-top: 1px solid #cacbcb; border-bottom: 1px solid #cacbcb; margin: 0 -4px; width: 40px; display: inline-block; text-align: center; } .quantity-form a { border: 1px solid #cacbcb; width: 20px; display: inline-block; color: #666; text-align: center; text-decoration: none; } @media (max-width: 510px) { .quantity-form span { width: 20px; } .quantity-form a { width: 15px; } } .th-col-2 { width: 20%; } .th-col-4 { width: 40%; } .panel-div { margin: 12px; } .panel-h4 { margin: 2px 12px; } #check-order { border-radius: 0px; } .panel-heading-time { display: inline-block; color: #999; margin-right: 20px; } .product-pic-s { height: 50px; width: 50px; } .product-pic-m { height: 100px; width: 100px; } .product-pic-l { height: 200px; width: 200px; } .product-item { padding: 5px 0; } .block-center { text-align: center; } .list-item { padding-top: 15px; padding-bottom: 15px; } .list-item + .list-item { border-top: 1px solid #ddd; } .list-pic-fix { padding-left: 0; } .add-default { color: #ffcb23; text-decoration:none; } .add-default:hover { color: #ffcb23; text-decoration:none; } .address-edit-button { display: inline-block; margin-left: 20px; } #particles-js { width: 100%; height: 100%; background: black; position: absolute; top: 0; left: 0; z-index: 0; } #id-div-login, #id-div-register, #id-div-forget-password { position:absolute; top:40%; left: 50%; transform:translate(-50%,-50%); z-index: 1; } #id-div-login input, #id-div-register input{ background-color: #2a2730; color: white; } #id-div-login button,#id-div-register button { border: 0; border-radius: 3px; line-height: 41px; padding-top: 0; padding-bottom: 0; } .sign-flow { margin-left: auto; margin-right: auto; width: 300px; } .group-inputs { padding: 1px 0; border: 1px solid #d5d5d5; border-radius: 3px; } .group-inputs input { padding: 1em .8em; line-height: 19px; width: 100%; border: 0; border-radius: 0; box-shadow: none; } .group-inputs input:focus { outline: none; } .group-inputs input + input { border-top: 1px solid #d5d5d5; } label { width: 100%; } .empty-cart-title { margin-top: 2px; margin-left: 20px; margin-right: 20px; font-size: 16px; } .empty-cart { margin-left: 20px; color: #bbb; } #id-input-captcha,#id-input-mail-code { width: 186px; } #id-input-mail-code { border-top: 1px solid #ddd; } #id-button-mail-code { width: 112px; height: 49px; display: inline-block; border-radius: 0px; border-top: 1px solid #ddd; line-height: 35px; } .panel-profile { max-width: 400px; } .alert-container { position: fixed; top: 70px; width: 100%; z-index: 2; } /* -----------购物车局部css开始----------- */ .stepflex { display: inline-block; display: block; border-top: 5px solid #ccc; text-align: center; margin: 30px 0 0; float: right; } .stepflex:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; } .stepflex dl.done { border-top-color: #caecb6; } .stepflex dl.doing { border-top-color: #7abd54; } .stepflex dl { float: left; position: relative; width: 160px; top: -5px; border-top: 5px solid #ccc; } .stepflex dl.done .s-num { background-position: -46px 0; } .stepflex dl.doing .s-num { background-position: -23px 0; } .stepflex .s-num { position: relative; margin: -15px auto 0; color: #fff; font-weight: 700; width: 23px; height: 23px; background-image: url(//misc.360buyimg.com/user/purchase/2.0.0/css/i/step2013.png); line-height: 23px; } .stepflex dl.done .s-text { color: #caecb6; } .stepflex dl.doing .s-text { color: #7abd54; } .stepflex .s-text { color: #ccc; } /* -----------购物车局部css结束----------- */
0.451568
0.095814
@media (max-width: 1280px) { #index_banner #bottom_nav{ width: 100%; } #all_footer #top_footer{ display: none; } #all_footer #left_footer{ width: 50%; } #all_footer #right_footer{ width: 50%; padding-right: 0; margin:0; display: flex; justify-content: center; } #all_footer #right_footer #rightfooter_content #row_height{ width: 300px; } #all_footer #left_footer #leftfooter_content{ width: 100%; height: 200px; position: absolute; left: 0; top:150; } #all_footer #right_footer #rightfooter_content .icon{ width: 40px; height: 40px; } } @media (max-width: 960px){ #top_nav{ display: none; z-index: 0; } #bottom_nav{ position: absolute; top: 80px; left: 0; } #Hamburger{ display: block!important ; } #all_footer{ display: flex; flex-direction: column-reverse; } #all_footer #top_footer{ display: none; } #all_footer #left_footer{ width: 100%; height: 250px; } #all_footer #left_footer #leftfooter_content{ position: absolute; top: 0; left: 10%; height: 100%; } #all_footer #left_footer #leftfooter_content #footer_logo{ position: absolute; top:50%; right: 20%; } #all_footer #right_footer{ width: 100%; height: 250px; } #all_footer #right_footer h3{ font-size: 25px; } #all_footer #right_footer #rightfooter_content{ width: 100%; height: 200px; } #all_footer #right_footer #rightfooter_content #row_height{ height: 100%; } #all_footer #right_footer #rightfooter_content .row{ margin:0; } } @media (max-width: 768px){ #all_footer #right_footer #rightfooter_content #row_height{ width: 100%; height: 200px; } } @media (max-width: 576px){ #all_footer #left_footer #leftfooter_content .row a{ display: flex; flex-wrap: wrap; width: 30px; } #all_footer #right_footer #rightfooter_content{ height: 100px; } #all_footer #right_footer #rightfooter_content #row_height{ height: 100px; } #all_footer #right_footer #rightfooter_content .continer #row_height a{ width: 50px; height: 50px; } #index_banner #bottom_nav{ width: 350px; margin-top:70px ; } #index_banner #bottom_nav .container{ width: 350px; } #index_banner #bottom_nav .container .row{ width: 350px; margin: 0; } #index_banner #bottom_nav .container .row a{ width: 70px !important; margin: 0; font-size: 12px; } #all_footer #right_footer #rightfooter_content #row_height{ width: 100%; height: 60px; } #all_footer #right_footer #rightfooter_content #usphoto{ font-size: 16px; } #all_footer #right_footer #rightfooter_content #usphoto .photo{ height: 20px; } #all_footer #right_footer #gototop{ font-size: 6px; } }
public/css/layouts/rwd.css
@media (max-width: 1280px) { #index_banner #bottom_nav{ width: 100%; } #all_footer #top_footer{ display: none; } #all_footer #left_footer{ width: 50%; } #all_footer #right_footer{ width: 50%; padding-right: 0; margin:0; display: flex; justify-content: center; } #all_footer #right_footer #rightfooter_content #row_height{ width: 300px; } #all_footer #left_footer #leftfooter_content{ width: 100%; height: 200px; position: absolute; left: 0; top:150; } #all_footer #right_footer #rightfooter_content .icon{ width: 40px; height: 40px; } } @media (max-width: 960px){ #top_nav{ display: none; z-index: 0; } #bottom_nav{ position: absolute; top: 80px; left: 0; } #Hamburger{ display: block!important ; } #all_footer{ display: flex; flex-direction: column-reverse; } #all_footer #top_footer{ display: none; } #all_footer #left_footer{ width: 100%; height: 250px; } #all_footer #left_footer #leftfooter_content{ position: absolute; top: 0; left: 10%; height: 100%; } #all_footer #left_footer #leftfooter_content #footer_logo{ position: absolute; top:50%; right: 20%; } #all_footer #right_footer{ width: 100%; height: 250px; } #all_footer #right_footer h3{ font-size: 25px; } #all_footer #right_footer #rightfooter_content{ width: 100%; height: 200px; } #all_footer #right_footer #rightfooter_content #row_height{ height: 100%; } #all_footer #right_footer #rightfooter_content .row{ margin:0; } } @media (max-width: 768px){ #all_footer #right_footer #rightfooter_content #row_height{ width: 100%; height: 200px; } } @media (max-width: 576px){ #all_footer #left_footer #leftfooter_content .row a{ display: flex; flex-wrap: wrap; width: 30px; } #all_footer #right_footer #rightfooter_content{ height: 100px; } #all_footer #right_footer #rightfooter_content #row_height{ height: 100px; } #all_footer #right_footer #rightfooter_content .continer #row_height a{ width: 50px; height: 50px; } #index_banner #bottom_nav{ width: 350px; margin-top:70px ; } #index_banner #bottom_nav .container{ width: 350px; } #index_banner #bottom_nav .container .row{ width: 350px; margin: 0; } #index_banner #bottom_nav .container .row a{ width: 70px !important; margin: 0; font-size: 12px; } #all_footer #right_footer #rightfooter_content #row_height{ width: 100%; height: 60px; } #all_footer #right_footer #rightfooter_content #usphoto{ font-size: 16px; } #all_footer #right_footer #rightfooter_content #usphoto .photo{ height: 20px; } #all_footer #right_footer #gototop{ font-size: 6px; } }
0.152127
0.06134
html, body, div, span, a, p, ul, li, h1, code, nav { margin: 0; border: 0; padding: 0; box-sizing: inherit; font: inherit; text-decoration: inherit; text-align: inherit; color: inherit; background: transparent; } html { background-color: #F0F0F0; } body { font-family: helvetica neue, helvetica, sans-serif; font-weight: 300; font-size: 16px; letter-spacing: 0.025em; -webkit-text-size-adjust: none; -moz-text-size-adjust: none; -ms-text-size-adjust: none; text-size-adjust: none; /*required for IE/Edge to be compatible with left:50vw & transform:translate(-50%, 0), otherwise there is a phantom div on the right side of the screen (from the left:50vw), that the window will scroll to*/ overflow-x: hidden; } /*root div in index.html*/ #root { min-height: 100vh; background-color: #F0F0F0; } /*reactroot div*/ #root > div { min-width: 320px; max-width: 45vw; padding: 3vh 0 12vh 0; margin: 0 auto; /*center based on vw to prevent content jump when vertical scroll bar show/hide note: vw/vh include the width of scroll bars*/ position: relative; /*left: 50vw; -webkit-transform: translate(-50%, 0); -moz-transform: translate(-50%, 0); -ms-transform: translate(-50%, 0); -o-transform: translate(-50%, 0); transform: translate(-50%, 0);*/ } /*use responsive max-width to simulate padding/margin to allow space for vertical scroll bar without creating horizontal scroll bar (if there is padding, the window will scroll horizontally to show the padding) */ @media (max-width: 540px) { #root > div { max-width: calc(100vw - 40px); } } /*links*/ a { -ms-touch-action: manipulation; touch-action: manipulation; } a:hover, a:active { } .current-input-touch a:hover { color: inherit; } .current-input-touch a:active { } /*extended link*/ .extended-link { border: none; } .extended-link:hover, .extended-link:active, .current-input-touch .extended-link:active, .current-input-touch .extended-link:hover { border: none; color: inherit; } .extended-link > span { } .extended-link:hover > span, .extended-link:active > span { color: black; } .current-input-touch .extended-link:hover > span { color: inherit; } .current-input-touch .extended-link:active > span { color: black; } /*custom bullets*/ li { list-style: none; padding-left: 18px; text-indent: -15px; margin: 0.5vh 0; } /*title*/ h1 { font-size: 20px; margin-bottom: 0.5vh; } /*repo link*/ #root > div > a { font-size: 14px; } /*map menu*/ nav { margin: 3vh 0; } p { margin: 3vh 0; line-height: 1.4; } code { font-family: monospace; font-size: 15px; padding-left: 2px; } .twitter-typeahead, .tt-menu { width: 100% } .list-group { margin-bottom: 0px; } #root > div > div > div { margin: 1vh 0; } #root > div > div > div > div { margin: 3vh 0; } .highlight{ font-weight: 400; font-size: xx-large; } .floatright{ float: right; padding-right: 5%; } .floatleft{ float: left; padding-left: 5%; } .submit{ clear: both; text-align: center; padding-top: 20px; } .form-group{ clear: both; padding-top: 10px; } .col-md-6 { padding: 10px 60px; } .timepicker-picker { font-size: x-large; } .textola{ padding-left: 5%; padding-right: 5%; } header{ padding-bottom: 30px; } .label{ font-size: medium; font-weight: 400; color: #000; padding-left: 3%; padding-right: 3%; } #result{ text-align: center; padding-top: 30px; } .dropdown-toggle{ border-top-right-radius: 0; border-bottom-right-radius: 0; } li{ padding-left: 0px; text-indent: 0px; } .duration{ width:1% } .bootstrap-select>.dropdown-toggle { padding-right: 12px; } .dropdown-menu>li>a { padding: 3px 8px; } /* .hour{ padding-right: 5px; }*/ .hr .min { max-width: 1px; width:79px; float: right; } select { /*for firefox*/ -moz-appearance: none; /*for chrome*/ -webkit-appearance:none; } /*for IE10*/ select::-ms-expand { display: none; } .input-group-addon { padding: 6px 8px; } .btn { padding: 6px 8px; } .small { font-size: small; } hr{ margin: 15px 5%; border-top: 1px solid rgba(173,173,173,0.4); } #message{ text-align: center; } .error{ color: #f00; } input[type='text'], input[type='number'], textarea { font-size: 16px; } .inputs { font-size: 16px; } .dropdown-menu::before, .dropdown-menu::after { border: none; content: none; } .caret { color: rgba(0, 0, 0, 0); } .side-button { display: table; } .side-button input { border-radius: 4px 0px 0px 4px; } .side-button span button { background-color: #dddddd; } .filter-option { min-width: fit-content; }
styles/app.css
html, body, div, span, a, p, ul, li, h1, code, nav { margin: 0; border: 0; padding: 0; box-sizing: inherit; font: inherit; text-decoration: inherit; text-align: inherit; color: inherit; background: transparent; } html { background-color: #F0F0F0; } body { font-family: helvetica neue, helvetica, sans-serif; font-weight: 300; font-size: 16px; letter-spacing: 0.025em; -webkit-text-size-adjust: none; -moz-text-size-adjust: none; -ms-text-size-adjust: none; text-size-adjust: none; /*required for IE/Edge to be compatible with left:50vw & transform:translate(-50%, 0), otherwise there is a phantom div on the right side of the screen (from the left:50vw), that the window will scroll to*/ overflow-x: hidden; } /*root div in index.html*/ #root { min-height: 100vh; background-color: #F0F0F0; } /*reactroot div*/ #root > div { min-width: 320px; max-width: 45vw; padding: 3vh 0 12vh 0; margin: 0 auto; /*center based on vw to prevent content jump when vertical scroll bar show/hide note: vw/vh include the width of scroll bars*/ position: relative; /*left: 50vw; -webkit-transform: translate(-50%, 0); -moz-transform: translate(-50%, 0); -ms-transform: translate(-50%, 0); -o-transform: translate(-50%, 0); transform: translate(-50%, 0);*/ } /*use responsive max-width to simulate padding/margin to allow space for vertical scroll bar without creating horizontal scroll bar (if there is padding, the window will scroll horizontally to show the padding) */ @media (max-width: 540px) { #root > div { max-width: calc(100vw - 40px); } } /*links*/ a { -ms-touch-action: manipulation; touch-action: manipulation; } a:hover, a:active { } .current-input-touch a:hover { color: inherit; } .current-input-touch a:active { } /*extended link*/ .extended-link { border: none; } .extended-link:hover, .extended-link:active, .current-input-touch .extended-link:active, .current-input-touch .extended-link:hover { border: none; color: inherit; } .extended-link > span { } .extended-link:hover > span, .extended-link:active > span { color: black; } .current-input-touch .extended-link:hover > span { color: inherit; } .current-input-touch .extended-link:active > span { color: black; } /*custom bullets*/ li { list-style: none; padding-left: 18px; text-indent: -15px; margin: 0.5vh 0; } /*title*/ h1 { font-size: 20px; margin-bottom: 0.5vh; } /*repo link*/ #root > div > a { font-size: 14px; } /*map menu*/ nav { margin: 3vh 0; } p { margin: 3vh 0; line-height: 1.4; } code { font-family: monospace; font-size: 15px; padding-left: 2px; } .twitter-typeahead, .tt-menu { width: 100% } .list-group { margin-bottom: 0px; } #root > div > div > div { margin: 1vh 0; } #root > div > div > div > div { margin: 3vh 0; } .highlight{ font-weight: 400; font-size: xx-large; } .floatright{ float: right; padding-right: 5%; } .floatleft{ float: left; padding-left: 5%; } .submit{ clear: both; text-align: center; padding-top: 20px; } .form-group{ clear: both; padding-top: 10px; } .col-md-6 { padding: 10px 60px; } .timepicker-picker { font-size: x-large; } .textola{ padding-left: 5%; padding-right: 5%; } header{ padding-bottom: 30px; } .label{ font-size: medium; font-weight: 400; color: #000; padding-left: 3%; padding-right: 3%; } #result{ text-align: center; padding-top: 30px; } .dropdown-toggle{ border-top-right-radius: 0; border-bottom-right-radius: 0; } li{ padding-left: 0px; text-indent: 0px; } .duration{ width:1% } .bootstrap-select>.dropdown-toggle { padding-right: 12px; } .dropdown-menu>li>a { padding: 3px 8px; } /* .hour{ padding-right: 5px; }*/ .hr .min { max-width: 1px; width:79px; float: right; } select { /*for firefox*/ -moz-appearance: none; /*for chrome*/ -webkit-appearance:none; } /*for IE10*/ select::-ms-expand { display: none; } .input-group-addon { padding: 6px 8px; } .btn { padding: 6px 8px; } .small { font-size: small; } hr{ margin: 15px 5%; border-top: 1px solid rgba(173,173,173,0.4); } #message{ text-align: center; } .error{ color: #f00; } input[type='text'], input[type='number'], textarea { font-size: 16px; } .inputs { font-size: 16px; } .dropdown-menu::before, .dropdown-menu::after { border: none; content: none; } .caret { color: rgba(0, 0, 0, 0); } .side-button { display: table; } .side-button input { border-radius: 4px 0px 0px 4px; } .side-button span button { background-color: #dddddd; } .filter-option { min-width: fit-content; }
0.337422
0.053477
@charset "UTF-8"; /*! * by hongjianqiang(.com) 2017-? * under MIT license */ /* ---------------------single CSS----------------------- */ /* display */ .dn { display: none; } .di { display: inline; } .db { display: block; } .dib { display: inline-block; } .df, .center, .hCenter, .vCenter, .between, .around { display: flex; display: -webkit-flex; } .dfc { flex-direction: column; } /* position */ .rel { position: relative; } .abs { position: absolute; } .fixed { position: fixed; } /* cursor */ .cp { cursor: pointer; } /* font */ .fsi { font-style: italic; } /* margin */ .mb0 { margin-bottom: 0; } .mb1 { margin-bottom: 1rem; } /* padding */ .pad1 { padding: 1rem; } /* percent border-radius value*/ .br50p { border-radius: 50%; } /* percent width value */ .w10p { width: 10%; } .w20p { width: 20%; } .w25p { width: 25%; } .w50p { width: 50%; } .w75p { width: 75%; } .w100p { width: 100%; } /* view height value */ .h100vh { height: 100vh; } /* color */ .cgrey11 { color: #1c1c1c; } .cgrey21 { color: #363636; } .cgrey31 { color: #4f4f4f; } .cgrey41 { color: #696969; } .cgrey51 { color: #828282; } .cgrey61 { color: #9c9c9c; } .cgrey71 { color: #b5b5b5; } .cgrey81 { color: #cfcfcf; } .cgrey91 { color: #e8e8e8; } /* background */ .bggrey11 { background: #1c1c1c; } .bggrey21 { background: #363636; } .bggrey31 { background: #4f4f4f; } .bggrey41 { background: #696969; } .bggrey51 { background: #828282; } .bggrey61 { background: #9c9c9c; } .bggrey71 { background: #b5b5b5; } .bggrey81 { background: #cfcfcf; } .bggrey91 { background: #e8e8e8; } /* ------------------- multiply CSS ------------------ */ /* 垂直水平居中 */ .center { justify-content: center; align-items: center; } /* 水平居中 */ .hCenter { justify-content: center; } /* 垂直居中 */ .vCenter { align-items: center; } /* 两端对齐 */ .between { justify-content: space-between; } /* 间隔平均分 */ .around { justify-content: space-around; } /* 充满空间 */ .full { width: 100%; height: 100%; } /* 按钮禁用 */ .disabled { outline: 0 none; cursor: default !important; opacity: .4; filer: alpha(opacity=40); -ms-pointer-events: none; pointer-events: none; }
public/css/lib.css
@charset "UTF-8"; /*! * by hongjianqiang(.com) 2017-? * under MIT license */ /* ---------------------single CSS----------------------- */ /* display */ .dn { display: none; } .di { display: inline; } .db { display: block; } .dib { display: inline-block; } .df, .center, .hCenter, .vCenter, .between, .around { display: flex; display: -webkit-flex; } .dfc { flex-direction: column; } /* position */ .rel { position: relative; } .abs { position: absolute; } .fixed { position: fixed; } /* cursor */ .cp { cursor: pointer; } /* font */ .fsi { font-style: italic; } /* margin */ .mb0 { margin-bottom: 0; } .mb1 { margin-bottom: 1rem; } /* padding */ .pad1 { padding: 1rem; } /* percent border-radius value*/ .br50p { border-radius: 50%; } /* percent width value */ .w10p { width: 10%; } .w20p { width: 20%; } .w25p { width: 25%; } .w50p { width: 50%; } .w75p { width: 75%; } .w100p { width: 100%; } /* view height value */ .h100vh { height: 100vh; } /* color */ .cgrey11 { color: #1c1c1c; } .cgrey21 { color: #363636; } .cgrey31 { color: #4f4f4f; } .cgrey41 { color: #696969; } .cgrey51 { color: #828282; } .cgrey61 { color: #9c9c9c; } .cgrey71 { color: #b5b5b5; } .cgrey81 { color: #cfcfcf; } .cgrey91 { color: #e8e8e8; } /* background */ .bggrey11 { background: #1c1c1c; } .bggrey21 { background: #363636; } .bggrey31 { background: #4f4f4f; } .bggrey41 { background: #696969; } .bggrey51 { background: #828282; } .bggrey61 { background: #9c9c9c; } .bggrey71 { background: #b5b5b5; } .bggrey81 { background: #cfcfcf; } .bggrey91 { background: #e8e8e8; } /* ------------------- multiply CSS ------------------ */ /* 垂直水平居中 */ .center { justify-content: center; align-items: center; } /* 水平居中 */ .hCenter { justify-content: center; } /* 垂直居中 */ .vCenter { align-items: center; } /* 两端对齐 */ .between { justify-content: space-between; } /* 间隔平均分 */ .around { justify-content: space-around; } /* 充满空间 */ .full { width: 100%; height: 100%; } /* 按钮禁用 */ .disabled { outline: 0 none; cursor: default !important; opacity: .4; filer: alpha(opacity=40); -ms-pointer-events: none; pointer-events: none; }
0.298798
0.054124
.page { display: grid; grid-template-columns: 34% auto; grid-template-rows: 100px auto; padding: 40px 0 0 0; } .error { padding: 20px 0; border-top: 1px solid var(--line-color); font-style: italic; } .profile { grid-column: 1; grid-row: 1; display: grid; grid-template-columns: 80px 200px; grid-template-rows: 66px; } .profile .picture { display: inline-block; grid-column: 1; grid-row: 1; width: 60px; height: 60px; overflow: hidden; border-radius: 40px; box-shadow: 0 2px 6px rgba(0, 0, 0, var(--shadow-opacity)); opacity: 0; animation: scaleIn 350ms var(--animation-delay) forwards; } :global(.fade-exit) .profile .picture { animation: scaleIn 350ms reverse; } .picture img { width: 60px; height: 60px; } .profile h2 { grid-column: 2; grid-row: 1; font-size: 18px; line-height: 28px; font-weight: 400; position: relative; opacity: 0; animation: moveIn 500ms var(--animation-delay) forwards; } :global(.fade-exit) .profile h2 { animation: moveOut 350ms; } .recentTracks { grid-column: 1; grid-row: 2; } .recentTracks h3 { position: relative; margin: 0 0 10px 0; font-size: 16px; line-height: 28px; font-weight: 400; opacity: 0; animation: moveIn 350ms var(--animation-delay) forwards; } :global(.fade-exit) .recentTracks h3 { animation: moveOut 350ms; } .recentTracks ul { list-style: none; margin: 0; padding: 0; } .recentTracks ul li { padding: 15px 0; display: grid; grid-template-columns: 65px auto; grid-template-rows: auto auto auto; border-top: 1px solid var(--line-color); } .recentTracks ul .album { display: block; grid-column: 1; grid-row-start: 1; grid-row-end: span 3; width: 50px; height: 50px; border-radius: 5px; overflow: hidden; box-shadow: 0 2px 3px rgba(0, 0, 0, var(--shadow-opacity)); position: relative; } .recentTracks ul .album img { width: 100%; height: 100%; display: inline-block; } .recentTracks ul li:nth-child(-n + 10) .album { opacity: 0; animation: scaleIn 500ms var(--animation-delay) forwards; } .recentTracks ul .album .playIcon { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; position: absolute; z-index: 1; left: 0; top: 0; background: rgba(0, 0, 0, 0.6); opacity: 0; transition: opacity 350ms ease-out; } .recentTracks ul .album .playIcon.playing { opacity: 1; } .recentTracks ul .album .playIcon svg { fill: #fff; width: 25px; height: 25px; } .recentTracks ul .album:hover .playIcon { opacity: 1; } .recentTracks ul a.title { display: block; grid-column: 2; grid-row: 1; position: relative; font-size: 13px; } .recentTracks ul li:nth-child(-n + 10) a.title { opacity: 0; animation: moveIn 350ms var(--animation-delay) forwards; } :global(.fade-exit) ul li:nth-child(-n + 10) a.title { animation: moveOut 350ms; } .recentTracks ul .artist { display: block; grid-column: 2; grid-row: 2; font-size: 13px; position: relative; } .recentTracks ul li:nth-child(-n + 10) .artist { opacity: 0; animation: moveIn 400ms var(--animation-delay) forwards; } :global(.fade-exit) ul li:nth-child(-n + 10) .artist { animation: moveOut 350ms; } .recentTracks ul .date { display: block; grid-column: 2; grid-row: 3; color: var(--alt-text-color); font-size: 12px; position: relative; } .recentTracks ul li:nth-child(-n + 10) .date { opacity: 0; animation: moveIn 450ms var(--animation-delay) forwards; } :global(.fade-exit) ul li:nth-child(-n + 10) .date { animation: moveOut 350ms; } .top { grid-column: 2; grid-row-start: 1; grid-row-end: span 2; margin: 0 20px 30px 30px; } .top h3 { position: relative; margin: 0 0 10px 0; font-size: 18px; line-height: 28px; font-weight: 400; opacity: 0; animation: moveIn 350ms var(--animation-delay) forwards; } :global(.fade-exit) .top h3 { animation: moveOut 350ms; } .topArtists ul { list-style: none; margin: 0 0 30px 0; padding: 0; display: grid; position: relative; grid-template-columns: 50% 25% 25%; grid-template-rows: 1fr 1fr; } .topArtists ul li:nth-child(1) { grid-column: 1; grid-row-start: 1; grid-row-end: span 2; } .topArtists li { position: relative; overflow: hidden; opacity: 0; animation: halfScaleIn 500ms var(--animation-delay) forwards; } :global(.fade-exit) .topArtists li { animation: halfScaleIn 350ms reverse; } .topArtists a { position: relative; display: block; overflow: hidden; width: 100%; height: 100%; transition: all 350ms ease-out; } .topArtists a:hover { transform: scale(1.02); } .topArtists img { display: block; width: 100%; height: 100%; } .topArtists .info { position: absolute; left: 0; bottom: 0; z-index: 1; width: 100%; padding: 100px 0 10px 0; background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.8) 100%); pointer-events: none; } .topArtists .name { padding: 0 10px; font-weight: 400; line-height: 20px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .topArtists .genre { padding: 0 10px; font-size: 12px; line-height: 16px; text-transform: capitalize; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .topArtists .placeholder { height: 100%; width: 100%; object-fit: cover; display: flex; align-items: center; justify-content: center; background-color: rgba(0, 0, 0, 0.1); } .topArtists .placeholder svg { fill: var(--alt-text-color); opacity: 0.7; animation: rotate 2000ms infinite linear; } .topTracks ul { list-style: none; margin: 0; padding: 0; } .topTracks ul li { display: flex; flex-wrap: wrap; align-items: center; padding: 10px 0; border-top: 1px solid var(--line-color); position: relative; opacity: 0; animation: moveIn 350ms var(--animation-delay) forwards; } :global(.fade-exit) .topTracks ul li { animation: moveOut 350ms; } .topTracks ul .album { display: inline-block; width: 32px; height: 32px; margin-right: 5px; border-radius: 4px; overflow: hidden; box-shadow: 0 2px 3px rgba(0, 0, 0, var(--shadow-opacity)); transition: all 350ms ease-out; position: relative; } .topTracks ul .album:hover { transform: scale(1.04); } .topTracks ul .album img { width: 100%; height: 100%; display: inline-block; } .topTracks ul .playIcon { display: flex; cursor: pointer; padding: 5px; margin-right: 5px; } .topTracks ul .playIcon svg { fill: var(--text-color); width: 22px; height: 22px; } .topTracks .name { display: inline-block; margin-right: 10px; } .timelineTracks ul { display: flex; flex-direction: row; } .timelineTracks li { display: inline-block; position: relative; margin-right: 5px; width: 32px; height: 32px; border-radius: 4px; overflow: hidden; box-shadow: 0 2px 3px rgba(0, 0, 0, var(--shadow-opacity)); transition: all 350ms ease-out; } .timelineTracks li img { width: 100%; height: 100%; display: inline-block; } .timelineTracks li:hover { transform: scale(1.04); } .timelineTracks .album .playIcon { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; position: absolute; z-index: 1; left: 0; top: 0; background: rgba(0, 0, 0, 0.6); opacity: 0; transition: opacity 350ms ease-out; } .timelineTracks .album .playIcon.playing { opacity: 1; } .timelineTracks .album .playIcon svg { fill: #fff; width: 20px; height: 20px; } .timelineTracks .album:hover .playIcon { opacity: 1; } @media (max-width: 800px) { .topArtists ul { grid-template-columns: 25% 25% 25% 25%; grid-template-rows: auto auto; } .topArtists ul li:nth-child(1) { grid-column-start: 1; grid-column-end: span 4; grid-row: 1; } .topArtists ul li:nth-child(1) a { height: 200px; } .topTracks .name { margin: 10px 10px 10px 0; } .topTracks .artist { margin: 10px 0; } } @media (max-width: 650px) { .page { display: block; padding: 40px 20px 40px 0; } .recentTracks { margin-top: 20px; margin-bottom: 30px; } .recentTracks ul li { display: none; } .recentTracks ul li:nth-child(-n + 10) { display: grid; } .top { margin: 0; } } @media (max-width: 480px) { .page { margin: 20px 10px; padding-right: 0; position: relative; } } @keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes scaleIn { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } } @keyframes halfScaleIn { 0% { transform: scale(0.7); opacity: 0; } 100% { transform: scale(1); opacity: 1; } } @keyframes moveIn { 0% { left: -20px; opacity: 0; } 100% { left: 0px; opacity: 1; } } @keyframes moveOut { 0% { left: 0; opacity: 1; } 100% { left: 20px; opacity: 0; } } @keyframes rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
react-app/src/pages/Spotify/Spotify.module.css
.page { display: grid; grid-template-columns: 34% auto; grid-template-rows: 100px auto; padding: 40px 0 0 0; } .error { padding: 20px 0; border-top: 1px solid var(--line-color); font-style: italic; } .profile { grid-column: 1; grid-row: 1; display: grid; grid-template-columns: 80px 200px; grid-template-rows: 66px; } .profile .picture { display: inline-block; grid-column: 1; grid-row: 1; width: 60px; height: 60px; overflow: hidden; border-radius: 40px; box-shadow: 0 2px 6px rgba(0, 0, 0, var(--shadow-opacity)); opacity: 0; animation: scaleIn 350ms var(--animation-delay) forwards; } :global(.fade-exit) .profile .picture { animation: scaleIn 350ms reverse; } .picture img { width: 60px; height: 60px; } .profile h2 { grid-column: 2; grid-row: 1; font-size: 18px; line-height: 28px; font-weight: 400; position: relative; opacity: 0; animation: moveIn 500ms var(--animation-delay) forwards; } :global(.fade-exit) .profile h2 { animation: moveOut 350ms; } .recentTracks { grid-column: 1; grid-row: 2; } .recentTracks h3 { position: relative; margin: 0 0 10px 0; font-size: 16px; line-height: 28px; font-weight: 400; opacity: 0; animation: moveIn 350ms var(--animation-delay) forwards; } :global(.fade-exit) .recentTracks h3 { animation: moveOut 350ms; } .recentTracks ul { list-style: none; margin: 0; padding: 0; } .recentTracks ul li { padding: 15px 0; display: grid; grid-template-columns: 65px auto; grid-template-rows: auto auto auto; border-top: 1px solid var(--line-color); } .recentTracks ul .album { display: block; grid-column: 1; grid-row-start: 1; grid-row-end: span 3; width: 50px; height: 50px; border-radius: 5px; overflow: hidden; box-shadow: 0 2px 3px rgba(0, 0, 0, var(--shadow-opacity)); position: relative; } .recentTracks ul .album img { width: 100%; height: 100%; display: inline-block; } .recentTracks ul li:nth-child(-n + 10) .album { opacity: 0; animation: scaleIn 500ms var(--animation-delay) forwards; } .recentTracks ul .album .playIcon { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; position: absolute; z-index: 1; left: 0; top: 0; background: rgba(0, 0, 0, 0.6); opacity: 0; transition: opacity 350ms ease-out; } .recentTracks ul .album .playIcon.playing { opacity: 1; } .recentTracks ul .album .playIcon svg { fill: #fff; width: 25px; height: 25px; } .recentTracks ul .album:hover .playIcon { opacity: 1; } .recentTracks ul a.title { display: block; grid-column: 2; grid-row: 1; position: relative; font-size: 13px; } .recentTracks ul li:nth-child(-n + 10) a.title { opacity: 0; animation: moveIn 350ms var(--animation-delay) forwards; } :global(.fade-exit) ul li:nth-child(-n + 10) a.title { animation: moveOut 350ms; } .recentTracks ul .artist { display: block; grid-column: 2; grid-row: 2; font-size: 13px; position: relative; } .recentTracks ul li:nth-child(-n + 10) .artist { opacity: 0; animation: moveIn 400ms var(--animation-delay) forwards; } :global(.fade-exit) ul li:nth-child(-n + 10) .artist { animation: moveOut 350ms; } .recentTracks ul .date { display: block; grid-column: 2; grid-row: 3; color: var(--alt-text-color); font-size: 12px; position: relative; } .recentTracks ul li:nth-child(-n + 10) .date { opacity: 0; animation: moveIn 450ms var(--animation-delay) forwards; } :global(.fade-exit) ul li:nth-child(-n + 10) .date { animation: moveOut 350ms; } .top { grid-column: 2; grid-row-start: 1; grid-row-end: span 2; margin: 0 20px 30px 30px; } .top h3 { position: relative; margin: 0 0 10px 0; font-size: 18px; line-height: 28px; font-weight: 400; opacity: 0; animation: moveIn 350ms var(--animation-delay) forwards; } :global(.fade-exit) .top h3 { animation: moveOut 350ms; } .topArtists ul { list-style: none; margin: 0 0 30px 0; padding: 0; display: grid; position: relative; grid-template-columns: 50% 25% 25%; grid-template-rows: 1fr 1fr; } .topArtists ul li:nth-child(1) { grid-column: 1; grid-row-start: 1; grid-row-end: span 2; } .topArtists li { position: relative; overflow: hidden; opacity: 0; animation: halfScaleIn 500ms var(--animation-delay) forwards; } :global(.fade-exit) .topArtists li { animation: halfScaleIn 350ms reverse; } .topArtists a { position: relative; display: block; overflow: hidden; width: 100%; height: 100%; transition: all 350ms ease-out; } .topArtists a:hover { transform: scale(1.02); } .topArtists img { display: block; width: 100%; height: 100%; } .topArtists .info { position: absolute; left: 0; bottom: 0; z-index: 1; width: 100%; padding: 100px 0 10px 0; background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.8) 100%); pointer-events: none; } .topArtists .name { padding: 0 10px; font-weight: 400; line-height: 20px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .topArtists .genre { padding: 0 10px; font-size: 12px; line-height: 16px; text-transform: capitalize; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .topArtists .placeholder { height: 100%; width: 100%; object-fit: cover; display: flex; align-items: center; justify-content: center; background-color: rgba(0, 0, 0, 0.1); } .topArtists .placeholder svg { fill: var(--alt-text-color); opacity: 0.7; animation: rotate 2000ms infinite linear; } .topTracks ul { list-style: none; margin: 0; padding: 0; } .topTracks ul li { display: flex; flex-wrap: wrap; align-items: center; padding: 10px 0; border-top: 1px solid var(--line-color); position: relative; opacity: 0; animation: moveIn 350ms var(--animation-delay) forwards; } :global(.fade-exit) .topTracks ul li { animation: moveOut 350ms; } .topTracks ul .album { display: inline-block; width: 32px; height: 32px; margin-right: 5px; border-radius: 4px; overflow: hidden; box-shadow: 0 2px 3px rgba(0, 0, 0, var(--shadow-opacity)); transition: all 350ms ease-out; position: relative; } .topTracks ul .album:hover { transform: scale(1.04); } .topTracks ul .album img { width: 100%; height: 100%; display: inline-block; } .topTracks ul .playIcon { display: flex; cursor: pointer; padding: 5px; margin-right: 5px; } .topTracks ul .playIcon svg { fill: var(--text-color); width: 22px; height: 22px; } .topTracks .name { display: inline-block; margin-right: 10px; } .timelineTracks ul { display: flex; flex-direction: row; } .timelineTracks li { display: inline-block; position: relative; margin-right: 5px; width: 32px; height: 32px; border-radius: 4px; overflow: hidden; box-shadow: 0 2px 3px rgba(0, 0, 0, var(--shadow-opacity)); transition: all 350ms ease-out; } .timelineTracks li img { width: 100%; height: 100%; display: inline-block; } .timelineTracks li:hover { transform: scale(1.04); } .timelineTracks .album .playIcon { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; position: absolute; z-index: 1; left: 0; top: 0; background: rgba(0, 0, 0, 0.6); opacity: 0; transition: opacity 350ms ease-out; } .timelineTracks .album .playIcon.playing { opacity: 1; } .timelineTracks .album .playIcon svg { fill: #fff; width: 20px; height: 20px; } .timelineTracks .album:hover .playIcon { opacity: 1; } @media (max-width: 800px) { .topArtists ul { grid-template-columns: 25% 25% 25% 25%; grid-template-rows: auto auto; } .topArtists ul li:nth-child(1) { grid-column-start: 1; grid-column-end: span 4; grid-row: 1; } .topArtists ul li:nth-child(1) a { height: 200px; } .topTracks .name { margin: 10px 10px 10px 0; } .topTracks .artist { margin: 10px 0; } } @media (max-width: 650px) { .page { display: block; padding: 40px 20px 40px 0; } .recentTracks { margin-top: 20px; margin-bottom: 30px; } .recentTracks ul li { display: none; } .recentTracks ul li:nth-child(-n + 10) { display: grid; } .top { margin: 0; } } @media (max-width: 480px) { .page { margin: 20px 10px; padding-right: 0; position: relative; } } @keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes scaleIn { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } } @keyframes halfScaleIn { 0% { transform: scale(0.7); opacity: 0; } 100% { transform: scale(1); opacity: 1; } } @keyframes moveIn { 0% { left: -20px; opacity: 0; } 100% { left: 0px; opacity: 1; } } @keyframes moveOut { 0% { left: 0; opacity: 1; } 100% { left: 20px; opacity: 0; } } @keyframes rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
0.516108
0.185301
.fd-popover { --fd-popover-background-color: var(--fd-color-background-2); position: relative; display: inline-block } .fd-popover__control { position: relative; margin-left: 0; cursor: pointer } .fd-popover__body { border: solid 1px #89919a; position: absolute; white-space: nowrap; z-index: 2; border-radius: 4px; background-color: var(--fd-popover-background-color); -webkit-box-shadow: 0 5px 20px 0 var(--fd-color-neutral-3),0 2px 8px 0 var(--fd-color-neutral-2); box-shadow: 0 5px 20px 0 var(--fd-color-neutral-3),0 2px 8px 0 var(--fd-color-neutral-2); opacity: 1; visibility: visible; -webkit-transition: all 125ms; transition: all 125ms; left: 0; top: 120%; -webkit-transform: translateY(0); transform: translateY(0) } .fd-popover__body[dir=rtl], [dir=rtl] .fd-popover__body { left: auto; right: -3px } .fd-popover__body[dir=rtl]::before, [dir=rtl] .fd-popover__body::before { right: 10px } .fd-popover__body[dir=rtl]::after, [dir=rtl] .fd-popover__body::after { right: 10px } .fd-popover__body::before { height: 0; width: 0; border-style: solid; border-width: 0 6.5px 8px 6.5px; border-bottom-color: var(--fd-color-background-2); border-left-color: transparent; border-right-color: transparent; content: ""; position: absolute; top: -8px; left: 10px; z-index: 4 } .fd-popover__body::after { height: 0; width: 0; border-style: solid; border-width: 0 6.5px 8px 6.5px; border-bottom-color: var(--fd-color-neutral-4); border-left-color: transparent; border-right-color: transparent; content: ""; position: absolute; top: -9px; left: 10px; z-index: 3 } .fd-popover__body--left { right: auto; left: -3px } .fd-popover__body--left[dir=rtl], [dir=rtl] .fd-popover__body--left { right: -3px; left: auto } .fd-popover__body--left[dir=rtl]::after, .fd-popover__body--left[dir=rtl]::before, [dir=rtl] .fd-popover__body--left::after, [dir=rtl] .fd-popover__body--left::before { right: 14px; left: unset } .fd-popover__body--left::after, .fd-popover__body--left::before { left: 10px } .fd-popover__body--right { left: auto; right: -3px } .fd-popover__body--right[dir=rtl], [dir=rtl] .fd-popover__body--right { right: auto; left: -3px } .fd-popover__body--right[dir=rtl]::after, .fd-popover__body--right[dir=rtl]::before, [dir=rtl] .fd-popover__body--right::after, [dir=rtl] .fd-popover__body--right::before { left: 14px; right: unset } .fd-popover__body--right::after, .fd-popover__body--right::before { left: auto; right: 10px } .fd-popover__body--no-arrow { top: 100% } .fd-popover__body--no-arrow::after, .fd-popover__body--no-arrow::before { display: none } .fd-popover__body.is-hidden, .fd-popover__body[aria-hidden=true] { z-index: 1; opacity: 0; visibility: hidden; -webkit-transform: translateY(-15px); transform: translateY(-15px) }
dist/components/popover.css
.fd-popover { --fd-popover-background-color: var(--fd-color-background-2); position: relative; display: inline-block } .fd-popover__control { position: relative; margin-left: 0; cursor: pointer } .fd-popover__body { border: solid 1px #89919a; position: absolute; white-space: nowrap; z-index: 2; border-radius: 4px; background-color: var(--fd-popover-background-color); -webkit-box-shadow: 0 5px 20px 0 var(--fd-color-neutral-3),0 2px 8px 0 var(--fd-color-neutral-2); box-shadow: 0 5px 20px 0 var(--fd-color-neutral-3),0 2px 8px 0 var(--fd-color-neutral-2); opacity: 1; visibility: visible; -webkit-transition: all 125ms; transition: all 125ms; left: 0; top: 120%; -webkit-transform: translateY(0); transform: translateY(0) } .fd-popover__body[dir=rtl], [dir=rtl] .fd-popover__body { left: auto; right: -3px } .fd-popover__body[dir=rtl]::before, [dir=rtl] .fd-popover__body::before { right: 10px } .fd-popover__body[dir=rtl]::after, [dir=rtl] .fd-popover__body::after { right: 10px } .fd-popover__body::before { height: 0; width: 0; border-style: solid; border-width: 0 6.5px 8px 6.5px; border-bottom-color: var(--fd-color-background-2); border-left-color: transparent; border-right-color: transparent; content: ""; position: absolute; top: -8px; left: 10px; z-index: 4 } .fd-popover__body::after { height: 0; width: 0; border-style: solid; border-width: 0 6.5px 8px 6.5px; border-bottom-color: var(--fd-color-neutral-4); border-left-color: transparent; border-right-color: transparent; content: ""; position: absolute; top: -9px; left: 10px; z-index: 3 } .fd-popover__body--left { right: auto; left: -3px } .fd-popover__body--left[dir=rtl], [dir=rtl] .fd-popover__body--left { right: -3px; left: auto } .fd-popover__body--left[dir=rtl]::after, .fd-popover__body--left[dir=rtl]::before, [dir=rtl] .fd-popover__body--left::after, [dir=rtl] .fd-popover__body--left::before { right: 14px; left: unset } .fd-popover__body--left::after, .fd-popover__body--left::before { left: 10px } .fd-popover__body--right { left: auto; right: -3px } .fd-popover__body--right[dir=rtl], [dir=rtl] .fd-popover__body--right { right: auto; left: -3px } .fd-popover__body--right[dir=rtl]::after, .fd-popover__body--right[dir=rtl]::before, [dir=rtl] .fd-popover__body--right::after, [dir=rtl] .fd-popover__body--right::before { left: 14px; right: unset } .fd-popover__body--right::after, .fd-popover__body--right::before { left: auto; right: 10px } .fd-popover__body--no-arrow { top: 100% } .fd-popover__body--no-arrow::after, .fd-popover__body--no-arrow::before { display: none } .fd-popover__body.is-hidden, .fd-popover__body[aria-hidden=true] { z-index: 1; opacity: 0; visibility: hidden; -webkit-transform: translateY(-15px); transform: translateY(-15px) }
0.481941
0.076511
.table .select2-container { margin-top: -8px; margin-bottom: -8px; } /** * Fix clipping option of background images */ .select2-search input, .select2-search-choice-close, .select2-container .select2-choice abbr, .select2-container .select2-choice .select2-arrow b { background-image: initial !important; } /** * Input group for Select2 */ .form-horizontal .has-feedback .select2-container+.form-control-feedback { right: 30px; } .input-group>.select2-container.input-group-addon:first-child .select2-arrow { display: none; } .input-group>.select2-container:not(:first-child) .select2-choice { border-top-left-radius: 0; border-bottom-left-radius: 0; } .input-group>.select2-container.has-addon .select2-choice { border-right: none; border-top-right-radius: 0; border-bottom-right-radius: 0; } .form-group.label-floating label.control-label.select2-label, .form-group.label-placeholder label.control-label.select2-label { text-align: left; } .form-group.label-static label.control-label.select2-label, .form-group.label-floating.is-focused label.control-label.select2-label, .form-group.label-floating:not(.is-empty) label.control-label.select2-label, .form-group.label-static label.control-label.select2-label, .form-group.label-floating.is-focused label.control-label.select2-label, .form-group.label-floating:not(.is-empty) label.control-label.select2-label { left: 0; top: -30px; text-align: left; } .select2-results .select2-result-label { padding: 9px 10px; font-size: 16px; } .select2-dropdown-open .select2-choice { background-color: transparent; } .select2-container.form-control { min-height: 38px; } .select2-results .select2-highlighted { background: #337ab7; } .select2-results { margin: 4px 0; padding: 0; } .select2-drop-active { border-style: none; } .select2-search { margin-left: -1px; margin-right: -1px; padding-left: 0; padding-right: 0; display: block; width: initial; } .select2-container .select2-choice>.select2-chosen { margin-left: 1px; } .select2-choice { border-left: none; } .select2-container .select2-choice { color: #555; } .select2-results .select2-ajax-error { padding-top: 10px; padding-bottom: 10px; background-color: #f44336; color: #FFFFFF; }
app-ui/src/main/webapp/themes/bootstrap-material-design/css/bootstrap-select2.css
.table .select2-container { margin-top: -8px; margin-bottom: -8px; } /** * Fix clipping option of background images */ .select2-search input, .select2-search-choice-close, .select2-container .select2-choice abbr, .select2-container .select2-choice .select2-arrow b { background-image: initial !important; } /** * Input group for Select2 */ .form-horizontal .has-feedback .select2-container+.form-control-feedback { right: 30px; } .input-group>.select2-container.input-group-addon:first-child .select2-arrow { display: none; } .input-group>.select2-container:not(:first-child) .select2-choice { border-top-left-radius: 0; border-bottom-left-radius: 0; } .input-group>.select2-container.has-addon .select2-choice { border-right: none; border-top-right-radius: 0; border-bottom-right-radius: 0; } .form-group.label-floating label.control-label.select2-label, .form-group.label-placeholder label.control-label.select2-label { text-align: left; } .form-group.label-static label.control-label.select2-label, .form-group.label-floating.is-focused label.control-label.select2-label, .form-group.label-floating:not(.is-empty) label.control-label.select2-label, .form-group.label-static label.control-label.select2-label, .form-group.label-floating.is-focused label.control-label.select2-label, .form-group.label-floating:not(.is-empty) label.control-label.select2-label { left: 0; top: -30px; text-align: left; } .select2-results .select2-result-label { padding: 9px 10px; font-size: 16px; } .select2-dropdown-open .select2-choice { background-color: transparent; } .select2-container.form-control { min-height: 38px; } .select2-results .select2-highlighted { background: #337ab7; } .select2-results { margin: 4px 0; padding: 0; } .select2-drop-active { border-style: none; } .select2-search { margin-left: -1px; margin-right: -1px; padding-left: 0; padding-right: 0; display: block; width: initial; } .select2-container .select2-choice>.select2-chosen { margin-left: 1px; } .select2-choice { border-left: none; } .select2-container .select2-choice { color: #555; } .select2-results .select2-ajax-error { padding-top: 10px; padding-bottom: 10px; background-color: #f44336; color: #FFFFFF; }
0.38168
0.093306
display: inline-block; padding: 4px 6px; margin-bottom: 9px; font-size: 13px; color: #555; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; vertical-align: middle; } #solidres fieldset { padding: 0; margin: 0; border: 0 } #solidres.reservation-final .alert ul, #reservation-confirmation-box ul { padding-left: 15px; } .bs3 #sr-reservation-form-room>.row, .row.custom-field-row, .row.button-row, .row.room-type-row { margin-left: 0; margin-right: 0; } #solidres.bs3 select, #solidres.bs3 textarea, #solidres.bs3 input[type="text"], #solidres.bs3 input[type="password"], #solidres.bs3 input[type="datetime"], #solidres.bs3 input[type="datetime-local"], #solidres.bs3 input[type="date"], #solidres.bs3 input[type="month"], #solidres.bs3 input[type="time"], #solidres.bs3 input[type="week"], #solidres.bs3 input[type="number"], #solidres.bs3 input[type="email"], #solidres.bs3 input[type="url"], #solidres.bs3 input[type="search"], #solidres.bs3 input[type="tel"], #solidres.bs3 input[type="color"], #solidres.bs3 .uneditable-input { height: auto; padding: 6px 12px; } .extras_row_roomtypeform,.extras_row_guestform { line-height: 34px; clear: left } .extras_row_roomtypeform input[type="checkbox"],.extras_row_guestform input[type="checkbox"] { float: left; margin-top: 8px } #solidres .extras_row_roomtypeform input, #solidres .extras_row_roomtypeform select, #solidres .extras_row_roomtypeform span, #solidres .extras_row_guestform input, #solidres .extras_row_guestform select, #solidres .extras_row_guestform span { margin-right: 5px } .bs3 .datefield { display: block; width: 100%; height: 34px; padding: 6px 12px; margin-bottom: 9px; font-size: 14px; line-height: 1.42857143; color: #555555; background-color: #ffffff; background-image: none; border: 1px solid #cccccc; border-radius: 4px; -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; -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; } .bs3 .asset-row .carousel-control, .bs3 .room .carousel-control{ width: 30px; height: 30px; } #solidres .carousel-control.right { left: auto; right: 15px; } #solidres .breakdown-row { text-align: center; } .bs3 label { display: block; } .carousel .item img { margin: 0 auto; } .bs3 .nav { margin-bottom: 18px; } .bs3 select,.bs3 input { margin-bottom: 9px } .row.reservation-row { margin: 10px 0; } .bs3 .row.room_index_form_heading,.bs3 .row.occupancy-selection { margin: 0 } #solidres #coupon_code { height: auto; } .reservation-row img { width: 100%; height: auto; vertical-align: middle; }
web/app/plugins/solidres/assets/css/site.css
display: inline-block; padding: 4px 6px; margin-bottom: 9px; font-size: 13px; color: #555; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; vertical-align: middle; } #solidres fieldset { padding: 0; margin: 0; border: 0 } #solidres.reservation-final .alert ul, #reservation-confirmation-box ul { padding-left: 15px; } .bs3 #sr-reservation-form-room>.row, .row.custom-field-row, .row.button-row, .row.room-type-row { margin-left: 0; margin-right: 0; } #solidres.bs3 select, #solidres.bs3 textarea, #solidres.bs3 input[type="text"], #solidres.bs3 input[type="password"], #solidres.bs3 input[type="datetime"], #solidres.bs3 input[type="datetime-local"], #solidres.bs3 input[type="date"], #solidres.bs3 input[type="month"], #solidres.bs3 input[type="time"], #solidres.bs3 input[type="week"], #solidres.bs3 input[type="number"], #solidres.bs3 input[type="email"], #solidres.bs3 input[type="url"], #solidres.bs3 input[type="search"], #solidres.bs3 input[type="tel"], #solidres.bs3 input[type="color"], #solidres.bs3 .uneditable-input { height: auto; padding: 6px 12px; } .extras_row_roomtypeform,.extras_row_guestform { line-height: 34px; clear: left } .extras_row_roomtypeform input[type="checkbox"],.extras_row_guestform input[type="checkbox"] { float: left; margin-top: 8px } #solidres .extras_row_roomtypeform input, #solidres .extras_row_roomtypeform select, #solidres .extras_row_roomtypeform span, #solidres .extras_row_guestform input, #solidres .extras_row_guestform select, #solidres .extras_row_guestform span { margin-right: 5px } .bs3 .datefield { display: block; width: 100%; height: 34px; padding: 6px 12px; margin-bottom: 9px; font-size: 14px; line-height: 1.42857143; color: #555555; background-color: #ffffff; background-image: none; border: 1px solid #cccccc; border-radius: 4px; -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; -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; } .bs3 .asset-row .carousel-control, .bs3 .room .carousel-control{ width: 30px; height: 30px; } #solidres .carousel-control.right { left: auto; right: 15px; } #solidres .breakdown-row { text-align: center; } .bs3 label { display: block; } .carousel .item img { margin: 0 auto; } .bs3 .nav { margin-bottom: 18px; } .bs3 select,.bs3 input { margin-bottom: 9px } .row.reservation-row { margin: 10px 0; } .bs3 .row.room_index_form_heading,.bs3 .row.occupancy-selection { margin: 0 } #solidres #coupon_code { height: auto; } .reservation-row img { width: 100%; height: auto; vertical-align: middle; }
0.419172
0.138055
html { line-height: 1.15; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; } body { margin: 0; } article, aside, footer, header, nav, section { display: block; } h1 { font-size: 2em; margin: 0.67em 0; } figcaption, figure, main { display: block; } figure { margin: 1em 40px; } hr { box-sizing: content-box; height: 0; overflow: visible; } pre { font-family: monospace, monospace; font-size: 1em; } a { background-color: transparent; -webkit-text-decoration-skip: objects; } abbr[title] { border-bottom: none; text-decoration: underline; text-decoration: underline dotted; } b, strong { font-weight: inherit; } b, strong { font-weight: bolder; } code, kbd, samp { font-family: monospace, monospace; font-size: 1em; } dfn { font-style: italic; } mark { background-color: #ff0; color: #000; } small { font-size: 80%; } sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sub { bottom: -0.25em; } sup { top: -0.5em; } audio, video { display: inline-block; } audio:not([controls]) { display: none; height: 0; } img { border-style: none; } svg:not(:root) { overflow: hidden; } button, input, optgroup, select, textarea { font-family: sans-serif; font-size: 100%; line-height: 1.15; margin: 0; } button, input { overflow: visible; } button, select { text-transform: none; } button, html [type='button'], [type='reset'], [type='submit'] { -webkit-appearance: button; } button::-moz-focus-inner, [type='button']::-moz-focus-inner, [type='reset']::-moz-focus-inner, [type='submit']::-moz-focus-inner { border-style: none; padding: 0; } button:-moz-focusring, [type='button']:-moz-focusring, [type='reset']:-moz-focusring, [type='submit']:-moz-focusring { outline: 1px dotted ButtonText; } fieldset { padding: 0.35em 0.75em 0.625em; } legend { box-sizing: border-box; color: inherit; display: table; max-width: 100%; padding: 0; white-space: normal; } progress { display: inline-block; vertical-align: baseline; } textarea { overflow: auto; } [type='checkbox'], [type='radio'] { box-sizing: border-box; padding: 0; } [type='number']::-webkit-inner-spin-button, [type='number']::-webkit-outer-spin-button { height: auto; } [type='search'] { -webkit-appearance: textfield; outline-offset: -2px; } [type='search']::-webkit-search-cancel-button, [type='search']::-webkit-search-decoration { -webkit-appearance: none; } ::-webkit-file-upload-button { -webkit-appearance: button; font: inherit; } details, menu { display: block; } summary { display: list-item; } canvas { display: inline-block; } template { display: none; } [hidden] { display: none; } /* Base Styles */ body { color: #4d4d4d; line-height: 1.9em; font-size: 15px; font-weight: 400; } body { font-family: 'proxima-nova', 'Helvetica Neue', 'Helvetica', sans-serif; } #doc { background: transparent url(/img/bg.png) repeat; padding-left: 252px; left: 0; letter-spacing: -0.31em; text-rendering: optimizespeed; display: flex; flex-flow: row wrap; } .grid-u, .grid-33, .grid-100 { display: inline-block; letter-spacing: normal; word-spacing: normal; vertical-align: top; text-rendering: auto; } .grid-100 { width: 100%; } .grid-33 { width: 33.3333%; } #menu { color: #999; margin-left: -252px; width: 252px; position: fixed; top: 0; left: 252px; bottom: 0; z-index: 1000; background: #191818; overflow-y: auto; -webkit-overflow-scroll: touch; } #main { padding: 15px 10px; } #ft { font-size: 80%; border-top: 1px solid #eee; padding: 0.5em 0; background: rgb(250, 250, 250); text-align: center; } a, h2 a:hover, h2 a:visited:hover { color: #3753c8; text-decoration: none; background: none; } h2 a, h2 a:visited { background: none; color: #343333; } a.external, .post p:last-child a:last-child, a.external:visited, a.external:active { background: #fff; border: 1px solid #ddd; padding: 4px 10px; } h2 { font-size: 197%; padding: 10px 0 0; margin: 0; } h3 { font-size: 19px; color: #555; } h4 { font-weight: 600; margin: 10px 0; padding: 7px; background: #fff; border: 1px solid #ccc; } blockquote, pre { color: #343333; border-left: 4px solid #3753c8; font-size: 108%; background-color: #fff; padding: 0 25px; line-height: 1.3em; margin: 10px 0; overflow: hidden; white-space: pre-wrap; word-wrap: break-word; display: block; } blockquote cite { color: #900; margin: 10px 0 0; display: block; } blockquote p { margin: 0; } /* Navigation */ .menu, .hamburger { transition: all 0.2s ease-out; } .menu.menu-open { visibility: visible; z-index: 2; width: 100%; } .menu ul { border-top: 1px solid #333; left: 0; list-style: none; margin: 0; padding: 0; top: 0; z-index: 1; visibility: visible; position: relative; } .menu-open > ul:focus { outline: 0; } .menu a { color: #777; white-space: normal; display: block; color: inherit; line-height: 1.5em; padding: 0.6em 0 0.6em 0.6em; text-decoration: none; } .menu li a:hover, .menu li a:focus { background: #333; } .hamburger, .menu-heading { background: transparent url(/img/bolt.png) no-repeat left center; } .hamburger { display: none; top: 0; left: 150px; background-color: #191818; background-position: center center; background-size: 15%; padding: 0.75em 1em; width: 100%; } .menu .menu-heading { background-size: 25%; font-size: 20px; margin: 5px 0; color: #fff; padding: 0 8px; text-align: right; text-transform: uppercase; font-family: 'Futura'; } .menu-heading:hover, .menu-heading:focus { filter: blur(1px); } .menu-selected { background: #3753c8; } .social a:hover, .menu-selected a { transition: all 0.2s ease-out; color: #fff; } li.menu-selected a:hover, li.menu-selected a:focus { background: none; } .about { padding: 0 8px; } .about img { height: 50px; width: 50px; margin: 5px 8px 0 0; float: left; border-radius: 50%; } /* Blog Posts */ .post { border-bottom: 1px double #bbb; margin: 0 0 20px; overflow: hidden; padding: 0 15px 10px; } .post:last-child { border-bottom: none; } .post p:last-child a:hover:last-child { background: #f2e127; color: #333; } .post a img { border: none; margin: 5px; } .post iframe { border: none; display: block; margin: 20px auto 10px; max-width: 100%; } time { color: #343333; display: block; float: left; font-size: 146%; padding: 12px 9px 3px 0; } .post:after { content: '.'; display: block; height: 0; clear: both; visibility: hidden; } /*Social Icons*/ .social { display: block; overflow: hidden; text-align: center; } .social a { padding: 0; margin: 0 5px; display: inline-block; } .social a svg { fill: #777; } .social a svg:hover { fill: #fff; } /* Color Code */ code[class*='language-'], pre[class*='language-'] { color: #f8f8f2; background: none; text-shadow: 0 1px rgba(0, 0, 0, 0.3); font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; text-align: left; word-spacing: normal; word-break: normal; word-wrap: normal; line-height: 1.5; tab-size: 4; hyphens: none; } /* Code blocks */ pre[class*='language-'] { padding: 1em; margin: 0.5em 0; overflow: auto; border-radius: 0.3em; } :not(pre) > code[class*='language-'], pre[class*='language-'] { background: #272822; } /* Inline code */ :not(pre) > code[class*='language-'] { padding: 0.1em; border-radius: 0.3em; white-space: normal; } .token.comment, .token.prolog, .token.doctype, .token.cdata { color: slategray; } .token.punctuation { color: #f8f8f2; } .namespace { opacity: 0.7; } .token.property, .token.tag, .token.constant, .token.symbol, .token.deleted { color: #f92672; } .token.boolean, .token.number { color: #ae81ff; } .token.selector, .token.attr-name, .token.string, .token.char, .token.builtin, .token.inserted { color: #a6e22e; } .token.operator, .token.entity, .token.url, .language-css .token.string, .style .token.string, .token.variable { color: #f8f8f2; } .token.atrule, .token.attr-value, .token.function { color: #e6db74; } .token.keyword { color: #66d9ef; } .token.regex, .token.important { color: #fd971f; } .token.important, .token.bold { font-weight: bold; } .token.italic { font-style: italic; } .token.entity { cursor: help; } /* Archives */ .archives li strong { margin-left: 10px; } /* Portfolio */ .portfolio.post { padding: 0; } .portfolio.post ul { padding-left: 0; } .portfolio.post ul li { margin: 5px; width: 32%; } .portfolio.post ul li a { background: #fff; border-radius: 5px; box-shadow: 0 1px 1px #888; display: block; padding: 10px; } .portfolio.post ul li a:hover { background: #222; } .portfolio.post ul li a:hover span { color: #eee; } .portfolio.post ul li img { height: auto; margin: 0; width: 100%; } .portfolio.post ul li span { color: #333; display: block; } /* Smartphone */ @media only screen and (max-width: 767px) { #main, #main.portfolio { width: 94%; margin-top: 50px; } /*generics*/ h2, time { font-size: 125%; } #doc { position: relative; padding-left: 0; } #doc.active { position: relative; left: 252px; } #doc.active #menu { left: 252px; width: 252px; } #menu { left: 0; } .hamburger { background-size: 50px; position: fixed; left: 0; display: block; } #doc.active .hamburger { left: 252px; } /* Misc */ .menu-heading { background: none; } .portfolio .post ul li { width: 100%; } }
static/css/style.css
html { line-height: 1.15; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; } body { margin: 0; } article, aside, footer, header, nav, section { display: block; } h1 { font-size: 2em; margin: 0.67em 0; } figcaption, figure, main { display: block; } figure { margin: 1em 40px; } hr { box-sizing: content-box; height: 0; overflow: visible; } pre { font-family: monospace, monospace; font-size: 1em; } a { background-color: transparent; -webkit-text-decoration-skip: objects; } abbr[title] { border-bottom: none; text-decoration: underline; text-decoration: underline dotted; } b, strong { font-weight: inherit; } b, strong { font-weight: bolder; } code, kbd, samp { font-family: monospace, monospace; font-size: 1em; } dfn { font-style: italic; } mark { background-color: #ff0; color: #000; } small { font-size: 80%; } sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sub { bottom: -0.25em; } sup { top: -0.5em; } audio, video { display: inline-block; } audio:not([controls]) { display: none; height: 0; } img { border-style: none; } svg:not(:root) { overflow: hidden; } button, input, optgroup, select, textarea { font-family: sans-serif; font-size: 100%; line-height: 1.15; margin: 0; } button, input { overflow: visible; } button, select { text-transform: none; } button, html [type='button'], [type='reset'], [type='submit'] { -webkit-appearance: button; } button::-moz-focus-inner, [type='button']::-moz-focus-inner, [type='reset']::-moz-focus-inner, [type='submit']::-moz-focus-inner { border-style: none; padding: 0; } button:-moz-focusring, [type='button']:-moz-focusring, [type='reset']:-moz-focusring, [type='submit']:-moz-focusring { outline: 1px dotted ButtonText; } fieldset { padding: 0.35em 0.75em 0.625em; } legend { box-sizing: border-box; color: inherit; display: table; max-width: 100%; padding: 0; white-space: normal; } progress { display: inline-block; vertical-align: baseline; } textarea { overflow: auto; } [type='checkbox'], [type='radio'] { box-sizing: border-box; padding: 0; } [type='number']::-webkit-inner-spin-button, [type='number']::-webkit-outer-spin-button { height: auto; } [type='search'] { -webkit-appearance: textfield; outline-offset: -2px; } [type='search']::-webkit-search-cancel-button, [type='search']::-webkit-search-decoration { -webkit-appearance: none; } ::-webkit-file-upload-button { -webkit-appearance: button; font: inherit; } details, menu { display: block; } summary { display: list-item; } canvas { display: inline-block; } template { display: none; } [hidden] { display: none; } /* Base Styles */ body { color: #4d4d4d; line-height: 1.9em; font-size: 15px; font-weight: 400; } body { font-family: 'proxima-nova', 'Helvetica Neue', 'Helvetica', sans-serif; } #doc { background: transparent url(/img/bg.png) repeat; padding-left: 252px; left: 0; letter-spacing: -0.31em; text-rendering: optimizespeed; display: flex; flex-flow: row wrap; } .grid-u, .grid-33, .grid-100 { display: inline-block; letter-spacing: normal; word-spacing: normal; vertical-align: top; text-rendering: auto; } .grid-100 { width: 100%; } .grid-33 { width: 33.3333%; } #menu { color: #999; margin-left: -252px; width: 252px; position: fixed; top: 0; left: 252px; bottom: 0; z-index: 1000; background: #191818; overflow-y: auto; -webkit-overflow-scroll: touch; } #main { padding: 15px 10px; } #ft { font-size: 80%; border-top: 1px solid #eee; padding: 0.5em 0; background: rgb(250, 250, 250); text-align: center; } a, h2 a:hover, h2 a:visited:hover { color: #3753c8; text-decoration: none; background: none; } h2 a, h2 a:visited { background: none; color: #343333; } a.external, .post p:last-child a:last-child, a.external:visited, a.external:active { background: #fff; border: 1px solid #ddd; padding: 4px 10px; } h2 { font-size: 197%; padding: 10px 0 0; margin: 0; } h3 { font-size: 19px; color: #555; } h4 { font-weight: 600; margin: 10px 0; padding: 7px; background: #fff; border: 1px solid #ccc; } blockquote, pre { color: #343333; border-left: 4px solid #3753c8; font-size: 108%; background-color: #fff; padding: 0 25px; line-height: 1.3em; margin: 10px 0; overflow: hidden; white-space: pre-wrap; word-wrap: break-word; display: block; } blockquote cite { color: #900; margin: 10px 0 0; display: block; } blockquote p { margin: 0; } /* Navigation */ .menu, .hamburger { transition: all 0.2s ease-out; } .menu.menu-open { visibility: visible; z-index: 2; width: 100%; } .menu ul { border-top: 1px solid #333; left: 0; list-style: none; margin: 0; padding: 0; top: 0; z-index: 1; visibility: visible; position: relative; } .menu-open > ul:focus { outline: 0; } .menu a { color: #777; white-space: normal; display: block; color: inherit; line-height: 1.5em; padding: 0.6em 0 0.6em 0.6em; text-decoration: none; } .menu li a:hover, .menu li a:focus { background: #333; } .hamburger, .menu-heading { background: transparent url(/img/bolt.png) no-repeat left center; } .hamburger { display: none; top: 0; left: 150px; background-color: #191818; background-position: center center; background-size: 15%; padding: 0.75em 1em; width: 100%; } .menu .menu-heading { background-size: 25%; font-size: 20px; margin: 5px 0; color: #fff; padding: 0 8px; text-align: right; text-transform: uppercase; font-family: 'Futura'; } .menu-heading:hover, .menu-heading:focus { filter: blur(1px); } .menu-selected { background: #3753c8; } .social a:hover, .menu-selected a { transition: all 0.2s ease-out; color: #fff; } li.menu-selected a:hover, li.menu-selected a:focus { background: none; } .about { padding: 0 8px; } .about img { height: 50px; width: 50px; margin: 5px 8px 0 0; float: left; border-radius: 50%; } /* Blog Posts */ .post { border-bottom: 1px double #bbb; margin: 0 0 20px; overflow: hidden; padding: 0 15px 10px; } .post:last-child { border-bottom: none; } .post p:last-child a:hover:last-child { background: #f2e127; color: #333; } .post a img { border: none; margin: 5px; } .post iframe { border: none; display: block; margin: 20px auto 10px; max-width: 100%; } time { color: #343333; display: block; float: left; font-size: 146%; padding: 12px 9px 3px 0; } .post:after { content: '.'; display: block; height: 0; clear: both; visibility: hidden; } /*Social Icons*/ .social { display: block; overflow: hidden; text-align: center; } .social a { padding: 0; margin: 0 5px; display: inline-block; } .social a svg { fill: #777; } .social a svg:hover { fill: #fff; } /* Color Code */ code[class*='language-'], pre[class*='language-'] { color: #f8f8f2; background: none; text-shadow: 0 1px rgba(0, 0, 0, 0.3); font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; text-align: left; word-spacing: normal; word-break: normal; word-wrap: normal; line-height: 1.5; tab-size: 4; hyphens: none; } /* Code blocks */ pre[class*='language-'] { padding: 1em; margin: 0.5em 0; overflow: auto; border-radius: 0.3em; } :not(pre) > code[class*='language-'], pre[class*='language-'] { background: #272822; } /* Inline code */ :not(pre) > code[class*='language-'] { padding: 0.1em; border-radius: 0.3em; white-space: normal; } .token.comment, .token.prolog, .token.doctype, .token.cdata { color: slategray; } .token.punctuation { color: #f8f8f2; } .namespace { opacity: 0.7; } .token.property, .token.tag, .token.constant, .token.symbol, .token.deleted { color: #f92672; } .token.boolean, .token.number { color: #ae81ff; } .token.selector, .token.attr-name, .token.string, .token.char, .token.builtin, .token.inserted { color: #a6e22e; } .token.operator, .token.entity, .token.url, .language-css .token.string, .style .token.string, .token.variable { color: #f8f8f2; } .token.atrule, .token.attr-value, .token.function { color: #e6db74; } .token.keyword { color: #66d9ef; } .token.regex, .token.important { color: #fd971f; } .token.important, .token.bold { font-weight: bold; } .token.italic { font-style: italic; } .token.entity { cursor: help; } /* Archives */ .archives li strong { margin-left: 10px; } /* Portfolio */ .portfolio.post { padding: 0; } .portfolio.post ul { padding-left: 0; } .portfolio.post ul li { margin: 5px; width: 32%; } .portfolio.post ul li a { background: #fff; border-radius: 5px; box-shadow: 0 1px 1px #888; display: block; padding: 10px; } .portfolio.post ul li a:hover { background: #222; } .portfolio.post ul li a:hover span { color: #eee; } .portfolio.post ul li img { height: auto; margin: 0; width: 100%; } .portfolio.post ul li span { color: #333; display: block; } /* Smartphone */ @media only screen and (max-width: 767px) { #main, #main.portfolio { width: 94%; margin-top: 50px; } /*generics*/ h2, time { font-size: 125%; } #doc { position: relative; padding-left: 0; } #doc.active { position: relative; left: 252px; } #doc.active #menu { left: 252px; width: 252px; } #menu { left: 0; } .hamburger { background-size: 50px; position: fixed; left: 0; display: block; } #doc.active .hamburger { left: 252px; } /* Misc */ .menu-heading { background: none; } .portfolio .post ul li { width: 100%; } }
0.430866
0.10079
#header { width: 100%; display: block; padding: 20px 0 0; background-color: rgb(0, 63, 52); box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12); border-bottom: 3px solid rgb(0, 133, 111); } #header .header-wrap { width: 100%; max-width: 1100px; margin: 0 auto; } #header .logo-lg { display: block; width: 168px; height: 28px; margin: 0 auto 15px; padding: 0; background: url('../images/logo_lg.png') top left no-repeat; } /* Main menu */ #header .main-menu { display: block; border-top: 1px solid rgb(0, 90, 75); background-color: rgb(223, 245, 241); } #header .menu-content { display: block; margin: 0; padding: 0; } #header .main-menu .menu-item { display: block; list-style: none; } #header .main-menu .menu-item-link { display: block; padding: 10px 20px 10px 20px; text-align: center; color: rgb(0, 63, 52); text-decoration: none; font-size: 1em; font-weight: 600; white-space: nowrap; border-bottom: 1px solid rgb(0, 131, 109); transition: background-color 0.3s ease; } #header .main-menu .menu-item-link.active, #header .main-menu .menu-item-link:hover { color: rgba(255, 255, 255, 0.8); background-color: rgb(1, 75, 66); } /* Header Media Queries */ @media (max-width:300px) { #header { width: 300px; } } @media (min-width:820px) { #header { height: 60px; padding: 0; } #header .header-wrap { display: flex; flex-direction: row; align-items: center; justify-content: space-between; background-color: rgb(0, 63, 52); } #header .logo-lg { margin: 5px 0 0 20px; } /* Main menu */ #header .main-menu { border: none; background-color: rgb(0, 63, 52); } #header .menu-content { display: flex; flex-direction: row; align-items: center; justify-content: start; } #header .main-menu .menu-item-link { padding: 18px 20px 17px 20px; color: rgba(255,255,255,1); border: none; box-sizing: content-box; } #header .main-menu .menu-item-link.active, #header .main-menu .menu-item-link:hover { margin-bottom: -3px; border-bottom: 3px solid rgb(2, 189, 158); color: rgba(255, 255, 255, 0.8); background-color: rgb(0, 105, 92); } }
css/header.css
#header { width: 100%; display: block; padding: 20px 0 0; background-color: rgb(0, 63, 52); box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12); border-bottom: 3px solid rgb(0, 133, 111); } #header .header-wrap { width: 100%; max-width: 1100px; margin: 0 auto; } #header .logo-lg { display: block; width: 168px; height: 28px; margin: 0 auto 15px; padding: 0; background: url('../images/logo_lg.png') top left no-repeat; } /* Main menu */ #header .main-menu { display: block; border-top: 1px solid rgb(0, 90, 75); background-color: rgb(223, 245, 241); } #header .menu-content { display: block; margin: 0; padding: 0; } #header .main-menu .menu-item { display: block; list-style: none; } #header .main-menu .menu-item-link { display: block; padding: 10px 20px 10px 20px; text-align: center; color: rgb(0, 63, 52); text-decoration: none; font-size: 1em; font-weight: 600; white-space: nowrap; border-bottom: 1px solid rgb(0, 131, 109); transition: background-color 0.3s ease; } #header .main-menu .menu-item-link.active, #header .main-menu .menu-item-link:hover { color: rgba(255, 255, 255, 0.8); background-color: rgb(1, 75, 66); } /* Header Media Queries */ @media (max-width:300px) { #header { width: 300px; } } @media (min-width:820px) { #header { height: 60px; padding: 0; } #header .header-wrap { display: flex; flex-direction: row; align-items: center; justify-content: space-between; background-color: rgb(0, 63, 52); } #header .logo-lg { margin: 5px 0 0 20px; } /* Main menu */ #header .main-menu { border: none; background-color: rgb(0, 63, 52); } #header .menu-content { display: flex; flex-direction: row; align-items: center; justify-content: start; } #header .main-menu .menu-item-link { padding: 18px 20px 17px 20px; color: rgba(255,255,255,1); border: none; box-sizing: content-box; } #header .main-menu .menu-item-link.active, #header .main-menu .menu-item-link:hover { margin-bottom: -3px; border-bottom: 3px solid rgb(2, 189, 158); color: rgba(255, 255, 255, 0.8); background-color: rgb(0, 105, 92); } }
0.38168
0.107625
*{ margin: 0; padding: 0; /*禁止双击选中*/ -moz-user-select:none;/*火狐*/ -webkit-user-select:none;/*webkit浏览器*/ -ms-user-select:none;/*IE10*/ -khtml-user-select:none;/*早期浏览器*/ user-select:none; } body{ width: 100%; height: 100%; background-color: #000000; } a{ text-decoration: none; } body div{ float: left; } .showlogo{ width: 65%; height: 600px; } .showlogo img{ padding-top: 120px; padding-left: 100px; } .loginform{ width: 35%; height: 600px; } .loginform .box01{ width: 348px; height: 454px; position: absolute; right: 150px; text-align: center; margin-top: 150px; } .loginform .box01 img{ padding-bottom: 40px; } .loginform div .form-reg-login{ width: 348px; height: 346px; border-radius: 12px; background-color: #ffffff; } .loginform div .form-reg-login .titletip{ width: 100%; height: 56px; } .loginform div .form-reg-login .titletip span{ cursor: pointer; float: left; width: 116px; height: 56px; color: #AAABAD; font-weight: 500; font-size: 18px; line-height: 56px; background-color: #F5F5F6; } .loginform div .form-reg-login .titletip :nth-child(1){ background-color: #ffffff; color: #25262B; border-radius: 12px 0px 0px 0px; } .loginform div .form-reg-login .titletip :nth-child(3){ border-radius: 0px 12px 0px 0px; } #form01{ display: block; } #form02,#form03{ display: none; } #form01 form{ padding-top: 4px; width: 348px; text-align: center; } #email,#code,#loginsub{ width: 304px; height: 46px; border: none; outline: none; margin-top: 15px; border-radius: 8px; background-color: #FFFFFF; } #form01 form #code{ padding-left: 12px; width: 180px; } #email{ padding-left: 12px; } #form01 form #getcode{ height: 44px; color: #000000; border-radius: 8px; border: 1px solid #bababa; width: 118px; } input[type="checkbox"] { -webkit-appearance: none; } #loginsub{ background-color: #000000; color: white; font-size: 16px; } #loginsub:hover{ cursor: no-drop; } #checkboxyes{ width: 16px; height: 16px; position: absolute; bottom: 78px; left: 25px; border-radius: 50%; border: 2px solid #E6E7E8; background-color: #ffffff; } input[type=checkbox]:checked:after { font-size: 14px; content: "√"; color: white; } #checkboxyes:checked{ border: 2px solid #000000; background-color: #000000; } #agree01{ padding-left: 20px; font-size: 12px; color: #B0B1B3; } #form02 form{ padding-top: 4px; width: 348px; text-align: center; } #username,#password,#loginsub01,#loginsub02{ width: 304px; height: 46px; border: none; outline: none; margin-top: 15px; border-radius: 8px; background-color: #FFFFFF; } #username,#password{ padding-left: 12px; } #loginsub01,#loginsub02{ background-color: #000000; font-size: 16px; color: white; } #form03 form{ width: 348px; text-align: center; } #form03 form #yktou{ width: 100px; height: 100px; padding-top: 40px; padding-bottom: 30px; }
src/main/resources/static/css/loginandreg.css
*{ margin: 0; padding: 0; /*禁止双击选中*/ -moz-user-select:none;/*火狐*/ -webkit-user-select:none;/*webkit浏览器*/ -ms-user-select:none;/*IE10*/ -khtml-user-select:none;/*早期浏览器*/ user-select:none; } body{ width: 100%; height: 100%; background-color: #000000; } a{ text-decoration: none; } body div{ float: left; } .showlogo{ width: 65%; height: 600px; } .showlogo img{ padding-top: 120px; padding-left: 100px; } .loginform{ width: 35%; height: 600px; } .loginform .box01{ width: 348px; height: 454px; position: absolute; right: 150px; text-align: center; margin-top: 150px; } .loginform .box01 img{ padding-bottom: 40px; } .loginform div .form-reg-login{ width: 348px; height: 346px; border-radius: 12px; background-color: #ffffff; } .loginform div .form-reg-login .titletip{ width: 100%; height: 56px; } .loginform div .form-reg-login .titletip span{ cursor: pointer; float: left; width: 116px; height: 56px; color: #AAABAD; font-weight: 500; font-size: 18px; line-height: 56px; background-color: #F5F5F6; } .loginform div .form-reg-login .titletip :nth-child(1){ background-color: #ffffff; color: #25262B; border-radius: 12px 0px 0px 0px; } .loginform div .form-reg-login .titletip :nth-child(3){ border-radius: 0px 12px 0px 0px; } #form01{ display: block; } #form02,#form03{ display: none; } #form01 form{ padding-top: 4px; width: 348px; text-align: center; } #email,#code,#loginsub{ width: 304px; height: 46px; border: none; outline: none; margin-top: 15px; border-radius: 8px; background-color: #FFFFFF; } #form01 form #code{ padding-left: 12px; width: 180px; } #email{ padding-left: 12px; } #form01 form #getcode{ height: 44px; color: #000000; border-radius: 8px; border: 1px solid #bababa; width: 118px; } input[type="checkbox"] { -webkit-appearance: none; } #loginsub{ background-color: #000000; color: white; font-size: 16px; } #loginsub:hover{ cursor: no-drop; } #checkboxyes{ width: 16px; height: 16px; position: absolute; bottom: 78px; left: 25px; border-radius: 50%; border: 2px solid #E6E7E8; background-color: #ffffff; } input[type=checkbox]:checked:after { font-size: 14px; content: "√"; color: white; } #checkboxyes:checked{ border: 2px solid #000000; background-color: #000000; } #agree01{ padding-left: 20px; font-size: 12px; color: #B0B1B3; } #form02 form{ padding-top: 4px; width: 348px; text-align: center; } #username,#password,#loginsub01,#loginsub02{ width: 304px; height: 46px; border: none; outline: none; margin-top: 15px; border-radius: 8px; background-color: #FFFFFF; } #username,#password{ padding-left: 12px; } #loginsub01,#loginsub02{ background-color: #000000; font-size: 16px; color: white; } #form03 form{ width: 348px; text-align: center; } #form03 form #yktou{ width: 100px; height: 100px; padding-top: 40px; padding-bottom: 30px; }
0.197677
0.057626
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification for details on configuring this project to bundle and minify static web assets. */ /* Background CSS */ body { background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab); background-size: 400% 400%; animation: gradient 15s ease infinite; } @keyframes gradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } /* Header CSS */ h1, h3 { font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif; font-weight: 500; } .intro-message { position: relative; padding-top: 5%; padding-bottom: 5%; } /*Big header*/ .intro-message>h1 { margin-top: -50px; text-shadow: 2px 1px 2px #000; font-size: 5em; color: rgba(255, 255, 255, 0.7); } .intro-divider { width: 400px; border-top: 1px solid #f8f8f8; border-bottom: 1px solid rgba(0, 0, 0, 0.2); } /*small header*/ .intro-message>h3 { text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6); color: black; } @media(max-width:767px) { .intro-message { padding-bottom: 15%; } .intro-message>h1 { font-size: 3em; } .intro-divider { width: 100%; } } /*line*/ hr.intro-divider { border: 1px outset rgba(255, 255, 255, 0.2); box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6); width: 100%; } /*Load Progressbar Style*/ #nprogress .bar { background: red !important; } #nprogress .peg { box-shadow: 0 0 10px red, 0 0 5px red !important; } #nprogress .spinner-icon { border-top-color: red !important; border-left-color: red !important; } /* Alert Animation Css */ .alert { opacity: 1; animation-name: fadeInOpacity; animation-iteration-count: 1; animation-timing-function: ease-out; animation-duration: 1s; } @@keyframes fadeInOpacity { 0% { opacity: 0; } 25% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } } /* Other CSS */ a.navbar-brand { white-space: normal; text-align: center; word-break: break-all; } /* Provide sufficient contrast against white background */ a { color: #0366d6; } .btn-primary { color: #fff; background-color: #1b6ec2; border-color: #1861ac; } .nav-pills .nav-link.active, .nav-pills .show>.nav-link { color: #fff; background-color: #1b6ec2; border-color: #1861ac; } /* Sticky footer styles -------------------------------------------------- */ html { font-size: 14px; } @media (min-width: 768px) { html { font-size: 16px; } } .border-top { border-top: 1px solid #e5e5e5; } .border-bottom { border-bottom: 1px solid #e5e5e5; } .box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); } button.accept-policy { font-size: 1rem; line-height: inherit; } /* Sticky footer styles -------------------------------------------------- */ html { position: relative; min-height: 100%; } body { /* Margin bottom by footer height */ margin-bottom: 60px; } .footer { position: absolute; bottom: 0; width: 100%; white-space: nowrap; line-height: 60px; /* Vertically center the text there */ }
wwwroot/css/site.css
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification for details on configuring this project to bundle and minify static web assets. */ /* Background CSS */ body { background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab); background-size: 400% 400%; animation: gradient 15s ease infinite; } @keyframes gradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } /* Header CSS */ h1, h3 { font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif; font-weight: 500; } .intro-message { position: relative; padding-top: 5%; padding-bottom: 5%; } /*Big header*/ .intro-message>h1 { margin-top: -50px; text-shadow: 2px 1px 2px #000; font-size: 5em; color: rgba(255, 255, 255, 0.7); } .intro-divider { width: 400px; border-top: 1px solid #f8f8f8; border-bottom: 1px solid rgba(0, 0, 0, 0.2); } /*small header*/ .intro-message>h3 { text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6); color: black; } @media(max-width:767px) { .intro-message { padding-bottom: 15%; } .intro-message>h1 { font-size: 3em; } .intro-divider { width: 100%; } } /*line*/ hr.intro-divider { border: 1px outset rgba(255, 255, 255, 0.2); box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6); width: 100%; } /*Load Progressbar Style*/ #nprogress .bar { background: red !important; } #nprogress .peg { box-shadow: 0 0 10px red, 0 0 5px red !important; } #nprogress .spinner-icon { border-top-color: red !important; border-left-color: red !important; } /* Alert Animation Css */ .alert { opacity: 1; animation-name: fadeInOpacity; animation-iteration-count: 1; animation-timing-function: ease-out; animation-duration: 1s; } @@keyframes fadeInOpacity { 0% { opacity: 0; } 25% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } } /* Other CSS */ a.navbar-brand { white-space: normal; text-align: center; word-break: break-all; } /* Provide sufficient contrast against white background */ a { color: #0366d6; } .btn-primary { color: #fff; background-color: #1b6ec2; border-color: #1861ac; } .nav-pills .nav-link.active, .nav-pills .show>.nav-link { color: #fff; background-color: #1b6ec2; border-color: #1861ac; } /* Sticky footer styles -------------------------------------------------- */ html { font-size: 14px; } @media (min-width: 768px) { html { font-size: 16px; } } .border-top { border-top: 1px solid #e5e5e5; } .border-bottom { border-bottom: 1px solid #e5e5e5; } .box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); } button.accept-policy { font-size: 1rem; line-height: inherit; } /* Sticky footer styles -------------------------------------------------- */ html { position: relative; min-height: 100%; } body { /* Margin bottom by footer height */ margin-bottom: 60px; } .footer { position: absolute; bottom: 0; width: 100%; white-space: nowrap; line-height: 60px; /* Vertically center the text there */ }
0.521471
0.100569
.mpl-carousel-wrap.mpl-portfolio-slider-wrap { margin-bottom: 25px; } .mpl-portfolio-entry-info { margin: 30px 0 0; } @media (min-width: 768px) { .mpl-portfolio-entry-info dt { float: left; width: 80px; overflow: hidden; clear: left; text-overflow: ellipsis; white-space: nowrap; } .mpl-portfolio-entry-info dd { margin-left: 100px; margin-bottom: 10px; } } .mpl-entry-meta { font-size: 12px; text-transform: uppercase; margin: 0; padding: 0; } .mpl-entry-meta li { list-style-type: none; display: inline-block; margin-right: 10px; } .mpl-entry-meta i { margin-right: 5px; } .mpl-entry-meta a { color: #888; } .mpl-entry-meta a:hover { color: #8bc03c; } ul.mpl-entry-share { margin: 30px 0 0; padding: 0; } .mpl-entry-share li { list-style-type: none; display: inline-block; } .mpl-entry-share li a { display: block; padding: 0; font-size: 14px; width: 36px; height: 36px; text-align: center; line-height: 36px; background-color: #f3f3f3; border-radius: 3px; } /* * 1.1 Portfolios List */ .mpl-post-pagination ul { margin: 40px 0; overflow: hidden; position: relative; z-index: 30; text-align: center; } .mpl-post-pagination li { list-style-type: none; } .mpl-post-pagination li { display: inline-block; margin: 0 10px; } .mpl-post-pagination li a, .mpl-post-pagination li span { display: inline-block; padding: 15px 0; width: 40px; } .mpl-portfolio-list-filter ul { margin: 0 0 20px; list-style-type: none; } .mpl-portfolio-list-filter li { display: inline-block; } .mpl-portfolio-list-filter li a { display: block; padding: 5px 15px; color: inherit; } .mpl-portfolio-list-filter li.active a, .mpl-portfolio-list-filter li a:hover { color: #8dc73f; } .mpl-portfolio-box .entry-title { margin: 0 0 10px; color: #fff; font-size: 16px; } .mpl-portfolio-grid { margin: -15px; } .mpl-portfolio-box-wrap { padding: 15px; display: none; } .mpl-portfolio-grid.full { margin: 0; } .mpl-portfolio-grid.full .mpl-portfolio-box-wrap { padding: 0; } .mpl-portfolio-image { text-align: center; } /* * 2.0 Event Detail */ .mpl-event-entry-top:before, .mpl-event-entry-top:after { content: ""; display: table; } .mpl-event-entry-top:after { clear: both; } .mpl-feature-img-box { position: relative; margin-bottom: 20px; } .mpl-event-entry-info dl { overflow: hidden; margin-bottom: 10px; } @media (min-width: 768px) { .mpl-event-entry-info dt { float: left; width: 80px; overflow: hidden; clear: left; text-overflow: ellipsis; white-space: nowrap; } .mpl-event-entry-info dd { margin-left: 100px; margin-bottom: 20px; } } .mpl-date-tag { position: absolute; top: 20px; left: 20px; width: 55px; height: 75px; background-color: #1b1b1b; color: #fff; font-weight: 700; text-align: center; font-size: 14px; padding-top: 5px; } .mpl-date-tag span { display: block; line-height: 1.3; } .mpl-date-tag span.mpl-date-tag-d { font-size: 2em; line-height: 1; } /* * 2.1 Events List */ .mpl-events-list-wrap .mpl-event-box { margin-left: -15px; margin-right: -15px; } .mpl-events-list-wrap .mpl-event-box:before, .mpl-events-list-wrap .mpl-event-box:after { content: ""; display: table; } .mpl-events-list-wrap .mpl-event-box:after { clear: both; } .mpl-events-list-wrap .entry-aside, .mpl-events-list-wrap .entry-main { padding: 0 15px; width: 100%; float: left; min-height: 1px; } @media screen and (min-width: 992px) { .mpl-events-list-wrap .mpl-event-box .entry-aside { width: 40%; } .mpl-events-list-wrap .mpl-event-box .entry-main { width: 60%; } .mpl-events-list-wrap .mpl-event-box .img-box { margin-bottom: 0; } } .mpl-event-entry-meta { margin: 10px 0 15px; } .mpl-event-entry-meta span { display: inline-block; } .mpl-event-entry-meta span + span { margin-left: 20px; } .mpl-events-grid .mpl-event-box { box-shadow: 1px 1px 5px 0 rgba(0,0,0,.1); background-color: #fff; margin-bottom: 30px; border-radius: 5px; overflow: hidden; } .mpl-events-grid .entry-main { padding: 20px; } .mpl-events-grid .mpl-feature-img-box { margin-bottom: 0; } .mpl-events-grid .mpl-event-entry-meta span + span { margin-left: 0; } .mpl-events-grid .entry-title { font-size: 18px; }
wp-content/plugins/mageewp-page-layout/assets/frontend/css/custom-posts.css
.mpl-carousel-wrap.mpl-portfolio-slider-wrap { margin-bottom: 25px; } .mpl-portfolio-entry-info { margin: 30px 0 0; } @media (min-width: 768px) { .mpl-portfolio-entry-info dt { float: left; width: 80px; overflow: hidden; clear: left; text-overflow: ellipsis; white-space: nowrap; } .mpl-portfolio-entry-info dd { margin-left: 100px; margin-bottom: 10px; } } .mpl-entry-meta { font-size: 12px; text-transform: uppercase; margin: 0; padding: 0; } .mpl-entry-meta li { list-style-type: none; display: inline-block; margin-right: 10px; } .mpl-entry-meta i { margin-right: 5px; } .mpl-entry-meta a { color: #888; } .mpl-entry-meta a:hover { color: #8bc03c; } ul.mpl-entry-share { margin: 30px 0 0; padding: 0; } .mpl-entry-share li { list-style-type: none; display: inline-block; } .mpl-entry-share li a { display: block; padding: 0; font-size: 14px; width: 36px; height: 36px; text-align: center; line-height: 36px; background-color: #f3f3f3; border-radius: 3px; } /* * 1.1 Portfolios List */ .mpl-post-pagination ul { margin: 40px 0; overflow: hidden; position: relative; z-index: 30; text-align: center; } .mpl-post-pagination li { list-style-type: none; } .mpl-post-pagination li { display: inline-block; margin: 0 10px; } .mpl-post-pagination li a, .mpl-post-pagination li span { display: inline-block; padding: 15px 0; width: 40px; } .mpl-portfolio-list-filter ul { margin: 0 0 20px; list-style-type: none; } .mpl-portfolio-list-filter li { display: inline-block; } .mpl-portfolio-list-filter li a { display: block; padding: 5px 15px; color: inherit; } .mpl-portfolio-list-filter li.active a, .mpl-portfolio-list-filter li a:hover { color: #8dc73f; } .mpl-portfolio-box .entry-title { margin: 0 0 10px; color: #fff; font-size: 16px; } .mpl-portfolio-grid { margin: -15px; } .mpl-portfolio-box-wrap { padding: 15px; display: none; } .mpl-portfolio-grid.full { margin: 0; } .mpl-portfolio-grid.full .mpl-portfolio-box-wrap { padding: 0; } .mpl-portfolio-image { text-align: center; } /* * 2.0 Event Detail */ .mpl-event-entry-top:before, .mpl-event-entry-top:after { content: ""; display: table; } .mpl-event-entry-top:after { clear: both; } .mpl-feature-img-box { position: relative; margin-bottom: 20px; } .mpl-event-entry-info dl { overflow: hidden; margin-bottom: 10px; } @media (min-width: 768px) { .mpl-event-entry-info dt { float: left; width: 80px; overflow: hidden; clear: left; text-overflow: ellipsis; white-space: nowrap; } .mpl-event-entry-info dd { margin-left: 100px; margin-bottom: 20px; } } .mpl-date-tag { position: absolute; top: 20px; left: 20px; width: 55px; height: 75px; background-color: #1b1b1b; color: #fff; font-weight: 700; text-align: center; font-size: 14px; padding-top: 5px; } .mpl-date-tag span { display: block; line-height: 1.3; } .mpl-date-tag span.mpl-date-tag-d { font-size: 2em; line-height: 1; } /* * 2.1 Events List */ .mpl-events-list-wrap .mpl-event-box { margin-left: -15px; margin-right: -15px; } .mpl-events-list-wrap .mpl-event-box:before, .mpl-events-list-wrap .mpl-event-box:after { content: ""; display: table; } .mpl-events-list-wrap .mpl-event-box:after { clear: both; } .mpl-events-list-wrap .entry-aside, .mpl-events-list-wrap .entry-main { padding: 0 15px; width: 100%; float: left; min-height: 1px; } @media screen and (min-width: 992px) { .mpl-events-list-wrap .mpl-event-box .entry-aside { width: 40%; } .mpl-events-list-wrap .mpl-event-box .entry-main { width: 60%; } .mpl-events-list-wrap .mpl-event-box .img-box { margin-bottom: 0; } } .mpl-event-entry-meta { margin: 10px 0 15px; } .mpl-event-entry-meta span { display: inline-block; } .mpl-event-entry-meta span + span { margin-left: 20px; } .mpl-events-grid .mpl-event-box { box-shadow: 1px 1px 5px 0 rgba(0,0,0,.1); background-color: #fff; margin-bottom: 30px; border-radius: 5px; overflow: hidden; } .mpl-events-grid .entry-main { padding: 20px; } .mpl-events-grid .mpl-feature-img-box { margin-bottom: 0; } .mpl-events-grid .mpl-event-entry-meta span + span { margin-left: 0; } .mpl-events-grid .entry-title { font-size: 18px; }
0.448909
0.066904
@font-face { font-family: 'Tajawal'; src: url('Tajawal-ExtraLight.eot'); src: url('Tajawal-ExtraLight.eot?#iefix') format('embedded-opentype'), url('Tajawal-ExtraLight.woff2') format('woff2'), url('Tajawal-ExtraLight.woff') format('woff'), url('Tajawal-ExtraLight.ttf') format('truetype'), url('Tajawal-ExtraLight.svg#Tajawal-ExtraLight') format('svg'); font-weight: 200; font-style: normal; font-display: swap; } @font-face { font-family: 'Tajawal'; src: url('Tajawal-Black.eot'); src: url('Tajawal-Black.eot?#iefix') format('embedded-opentype'), url('Tajawal-Black.woff2') format('woff2'), url('Tajawal-Black.woff') format('woff'), url('Tajawal-Black.ttf') format('truetype'), url('Tajawal-Black.svg#Tajawal-Black') format('svg'); font-weight: 900; font-style: normal; font-display: swap; } @font-face { font-family: 'Tajawal'; src: url('Tajawal-Bold.eot'); src: url('Tajawal-Bold.eot?#iefix') format('embedded-opentype'), url('Tajawal-Bold.woff2') format('woff2'), url('Tajawal-Bold.woff') format('woff'), url('Tajawal-Bold.ttf') format('truetype'), url('Tajawal-Bold.svg#Tajawal-Bold') format('svg'); font-weight: bold; font-style: normal; font-display: swap; } @font-face { font-family: 'Tajawal'; src: url('Tajawal-Regular.eot'); src: url('Tajawal-Regular.eot?#iefix') format('embedded-opentype'), url('Tajawal-Regular.woff2') format('woff2'), url('Tajawal-Regular.woff') format('woff'), url('Tajawal-Regular.ttf') format('truetype'), url('Tajawal-Regular.svg#Tajawal-Regular') format('svg'); font-weight: normal; font-style: normal; font-display: swap; } @font-face { font-family: 'Tajawal'; src: url('Tajawal-ExtraBold.eot'); src: url('Tajawal-ExtraBold.eot?#iefix') format('embedded-opentype'), url('Tajawal-ExtraBold.woff2') format('woff2'), url('Tajawal-ExtraBold.woff') format('woff'), url('Tajawal-ExtraBold.ttf') format('truetype'), url('Tajawal-ExtraBold.svg#Tajawal-ExtraBold') format('svg'); font-weight: 800; font-style: normal; font-display: swap; } @font-face { font-family: 'Tajawal'; src: url('Tajawal-Medium.eot'); src: url('Tajawal-Medium.eot?#iefix') format('embedded-opentype'), url('Tajawal-Medium.woff2') format('woff2'), url('Tajawal-Medium.woff') format('woff'), url('Tajawal-Medium.ttf') format('truetype'), url('Tajawal-Medium.svg#Tajawal-Medium') format('svg'); font-weight: 500; font-style: normal; font-display: swap; } @font-face { font-family: 'Tajawal'; src: url('Tajawal-Light.eot'); src: url('Tajawal-Light.eot?#iefix') format('embedded-opentype'), url('Tajawal-Light.woff2') format('woff2'), url('Tajawal-Light.woff') format('woff'), url('Tajawal-Light.ttf') format('truetype'), url('Tajawal-Light.svg#Tajawal-Light') format('svg'); font-weight: 300; font-style: normal; font-display: swap; } * { font-family: Tajawal ; font-weight: 600; } td,th{ text-align: left !important; }
public/public/fonts/Tajawal/font-Tajawal.css
@font-face { font-family: 'Tajawal'; src: url('Tajawal-ExtraLight.eot'); src: url('Tajawal-ExtraLight.eot?#iefix') format('embedded-opentype'), url('Tajawal-ExtraLight.woff2') format('woff2'), url('Tajawal-ExtraLight.woff') format('woff'), url('Tajawal-ExtraLight.ttf') format('truetype'), url('Tajawal-ExtraLight.svg#Tajawal-ExtraLight') format('svg'); font-weight: 200; font-style: normal; font-display: swap; } @font-face { font-family: 'Tajawal'; src: url('Tajawal-Black.eot'); src: url('Tajawal-Black.eot?#iefix') format('embedded-opentype'), url('Tajawal-Black.woff2') format('woff2'), url('Tajawal-Black.woff') format('woff'), url('Tajawal-Black.ttf') format('truetype'), url('Tajawal-Black.svg#Tajawal-Black') format('svg'); font-weight: 900; font-style: normal; font-display: swap; } @font-face { font-family: 'Tajawal'; src: url('Tajawal-Bold.eot'); src: url('Tajawal-Bold.eot?#iefix') format('embedded-opentype'), url('Tajawal-Bold.woff2') format('woff2'), url('Tajawal-Bold.woff') format('woff'), url('Tajawal-Bold.ttf') format('truetype'), url('Tajawal-Bold.svg#Tajawal-Bold') format('svg'); font-weight: bold; font-style: normal; font-display: swap; } @font-face { font-family: 'Tajawal'; src: url('Tajawal-Regular.eot'); src: url('Tajawal-Regular.eot?#iefix') format('embedded-opentype'), url('Tajawal-Regular.woff2') format('woff2'), url('Tajawal-Regular.woff') format('woff'), url('Tajawal-Regular.ttf') format('truetype'), url('Tajawal-Regular.svg#Tajawal-Regular') format('svg'); font-weight: normal; font-style: normal; font-display: swap; } @font-face { font-family: 'Tajawal'; src: url('Tajawal-ExtraBold.eot'); src: url('Tajawal-ExtraBold.eot?#iefix') format('embedded-opentype'), url('Tajawal-ExtraBold.woff2') format('woff2'), url('Tajawal-ExtraBold.woff') format('woff'), url('Tajawal-ExtraBold.ttf') format('truetype'), url('Tajawal-ExtraBold.svg#Tajawal-ExtraBold') format('svg'); font-weight: 800; font-style: normal; font-display: swap; } @font-face { font-family: 'Tajawal'; src: url('Tajawal-Medium.eot'); src: url('Tajawal-Medium.eot?#iefix') format('embedded-opentype'), url('Tajawal-Medium.woff2') format('woff2'), url('Tajawal-Medium.woff') format('woff'), url('Tajawal-Medium.ttf') format('truetype'), url('Tajawal-Medium.svg#Tajawal-Medium') format('svg'); font-weight: 500; font-style: normal; font-display: swap; } @font-face { font-family: 'Tajawal'; src: url('Tajawal-Light.eot'); src: url('Tajawal-Light.eot?#iefix') format('embedded-opentype'), url('Tajawal-Light.woff2') format('woff2'), url('Tajawal-Light.woff') format('woff'), url('Tajawal-Light.ttf') format('truetype'), url('Tajawal-Light.svg#Tajawal-Light') format('svg'); font-weight: 300; font-style: normal; font-display: swap; } * { font-family: Tajawal ; font-weight: 600; } td,th{ text-align: left !important; }
0.447943
0.070113
@font-face { font-family: payTone; src: url(/assets/fonts/PaytoneOne-Regular.ttf); } @font-face { font-family: robotoRegular; src: url(Roboto-Regular.ttf); } @font-face { font-family: robotoMedium; src: url(Roboto-Medium.ttf); } @font-face { font-family: robotoBold; src: url(/assets/fonts/); } .tg-partners { background-color: #c5c2c2; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: space-evenly; -ms-flex-pack: space-evenly; justify-content: space-evenly; } .tg_partners_img { height: 2rem; color: white; } @media (max-width: 951px) { .tg-partners { display: none; } } body { padding-top: 0 !important; font-family: paytone !important; } @media only screen and (max-width: 770px) { .softskills-bg { height: 70vh; } } .navigation-clean { background: #fff; padding-top: 0.75rem; padding-bottom: 0.75rem; color: #333; border-radius: 0; -webkit-box-shadow: none; box-shadow: none; border: none; margin-bottom: 0; width: 100%; height: auto; z-index: 5; position: fixed; } .sticky { position: fixed; top: 0; } .sticky + .tg-homepage-container { padding-top: 150px; } @media (min-width: 768px) { .navigation-clean { padding-top: 1rem; padding-bottom: 1rem; } } .navigation-clean .navbar-brand { font-weight: bold; color: inherit; } .navigation-clean .navbar-brand:hover { color: #222; } .navigation-clean.navbar-dark .navbar-brand:hover { color: #f0f0f0; } .navigation-clean .navbar-brand img { height: 100%; display: inline-block; margin-right: 10px; width: auto; } .navigation-clean .navbar-toggler { border-color: #ddd; } .navigation-clean .navbar-toggler:hover, .navigation-clean .navbar-toggler:focus { background: none; } .navigation-clean.navbar-dark .navbar-toggler { border-color: #555; } .navigation-clean .navbar-toggler { color: #888; } .navigation-clean.navbar-dark .navbar-toggler { color: #eee; } .navigation-clean .navbar-collapse, .navigation-clean .form-inline { border-top-color: #ddd; } .navigation-clean.navbar-dark .navbar-collapse, .navigation-clean.navbar-dark .form-inline { border-top-color: #333; } .navigation-clean .navbar-nav > .active > a, .navigation-clean .navbar-nav > .show > a { background: none; -webkit-box-shadow: none; box-shadow: none; } .navigation-clean.navbar-light .navbar-nav .nav-link.active, .navigation-clean.navbar-light .navbar-nav .nav-link.active:focus, .navigation-clean.navbar-light .navbar-nav .nav-link.active:hover { /*color: #8f8f8f;*/ -webkit-box-shadow: none; box-shadow: none; background: none; pointer-events: none; font-size: 1.2rem; color: black; } .navigation-clean.navbar .navbar-nav .nav-link { padding-left: 18px; padding-right: 18px; } .navigation-clean.navbar-light .navbar-nav .nav-link { font-size: 1.2rem; color: black; } .navigation-clean.navbar-light .navbar-nav .nav-link:focus, .navigation-clean.navbar-light .navbar-nav .nav-link:hover { color: #37434d !important; background-color: transparent; } .navigation-clean .navbar-nav > li > .dropdown-menu { margin-top: -5px; -webkit-box-shadow: none; box-shadow: none; background-color: #fff; border-radius: 2px; } @media (min-width: 768px) { .navigation-clean .navbar-nav .show .dropdown-menu { -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } } @media (max-width: 767px) { .navigation-clean .navbar-nav .show .dropdown-menu .dropdown-item { color: #37434d; padding-top: 0.8rem; padding-bottom: 0.8rem; line-height: 1; } } .navigation-clean .dropdown-menu .dropdown-item:focus, .navigation-clean .dropdown-menu .dropdown-item { line-height: 2; color: #37434d; } .navigation-clean .dropdown-menu .dropdown-item:focus, .navigation-clean .dropdown-menu .dropdown-item:hover { background: #eee; color: inherit; } .navigation-clean.navbar-dark { background-color: #1f2021; color: #fff; } .navigation-clean.navbar-dark .navbar-nav a.active, .navigation-clean.navbar-dark .navbar-nav a.active:focus, .navigation-clean.navbar-dark .navbar-nav a.active:hover { color: #8f8f8f; -webkit-box-shadow: none; box-shadow: none; background: none; pointer-events: none; } .navigation-clean.navbar-dark .navbar-nav .nav-link { color: #dfe8ee; } .navigation-clean.navbar-dark .navbar-nav .nav-link:focus, .navigation-clean.navbar-dark .navbar-nav .nav-link:hover { color: #fff; background-color: transparent; } .navigation-clean.navbar-dark .navbar-nav > li > .dropdown-menu { background-color: #1f2021; } .navigation-clean.navbar-dark .dropdown-menu .dropdown-item:focus, .navigation-clean.navbar-dark .dropdown-menu .dropdown-item { color: #f2f5f8; } .navigation-clean.navbar-dark .dropdown-menu .dropdown-item:focus, .navigation-clean.navbar-dark .dropdown-menu .dropdown-item:hover { background: #363739; } .tg-logo img { width: 10rem; position: absolute; left: 1rem; top: 1rem; } .tg-homepage-container { position: relative; padding-top: 120px; } .bg-image { position: absolute; content: ""; opacity: 0.6; top: 0; left: 0; height: 100%; width: 100%; z-index: -1; } .row { margin-right: 0; margin-left: 0; } .buttonspace { height: 50vh; } .tg-talent { height: 5rem; width: 25rem; background-image: -webkit-gradient(linear, right top, left top, from(#01faaf), to(#2eff4a)); background-image: linear-gradient(-90deg, #01faaf, #2eff4a); text-align: center; border-radius: 0.5rem; border: none; margin: 20px; } .tg-talent--modified { background-image: -webkit-gradient(linear, right top, left top, from(#2eff4a), to(#01faaf)); background-image: linear-gradient(-90deg, #2eff4a, #01faaf); } .tg-talent h1 { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-weight: bold; font-size: 2rem; color: black; } .tg-talent p { font-weight: bold; font-size: 1rem; color: black; } .tg-coding-academy h1 { font-family: payTone; font-size: 2.6rem; color: black; text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white; } @media (max-width: 650px) { .tg-coding-academy h1 { font-size: 2rem; } } .active.nav-link { text-decoration: none; } .tg-coding-academy { border-radius: 1rem; height: inherit; width: inherit; margin: auto; padding: 10px; text-align: center; } .tg-slogan-content { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-weight: bold; font-size: 2rem; color: black; padding: 1rem; text-align: center; } @media (max-width: 600px) { .tg-slogan-content { font-size: 1.5rem; } } .circle { background: red; border-radius: 200px; color: white; height: 150px; font-weight: bold; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; width: 150px; display: table; z-index: 1; text-align: center; vertical-align: middle; position: absolute; right: 4rem; top: 9rem; -webkit-transform: rotate(-20deg); transform: rotate(-20deg); } .circle p { vertical-align: middle; display: table-cell; z-index: 2; } @media (max-width: 1005px) { .circle { position: absolute; left: 1rem; top: 20rem; height: 100px; width: 100px; } } @media (max-width: 777px) { .tg-talent { width: 17rem; } } .tg-homepage-container { display: none; } .media-sponsors { background-color: #22b542; } .media-sponsors__img { width: 5rem; -webkit-filter: brightness(0), invert(1); filter: brightness(0), invert(1); border-radius: 0; } .media-news { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; text-align: center; padding: 3rem; } .media-news__title { font-family: robotoMedium; font-weight: unset; } .media-news__video { width: 50vw; height: 30vw; } .media-news__title { font-family: payTone; font-weight: unset; } .slider__title__desktop { font-family: payTone; } @media only screen and (max-width: 750px) { .media-news__title { font-size: 1.2rem; } .media-news__video { width: 80vw; height: 50vw; } } .carousel-indicators { z-index: 1; } .slider__item__title { text-align: left; margin-top: 20px; font-family: robotoRegular; font-size: 18px; margin-right: 0; margin-left: 24px; line-height: 34px; letter-spacing: 0px; font-style: normal; font-weight: bold; } .slider { background: white; padding-top: 3rem; } .slider__container { padding: 1.2rem; margin-right: 2rem; margin-left: 2rem; } .slider__title { margin-top: 2rem; font-size: 1rem; } .slider__item { padding: 0.2rem; border-left: none; position: relative; } .slider__item__link { color: black; position: relative; } .slider__item__link:hover { color: black; } .slider__item__title { margin-top: 1px; margin-left: 0px; line-height: normal; } .slider__card { -webkit-perspective: 1000px; perspective: 1000px; height: 250px; } .slider__item-inner { position: relative; width: 100%; height: 100%; -webkit-transition: -webkit-transform 0.8s; transition: -webkit-transform 0.8s; transition: transform 0.8s; transition: transform 0.8s, -webkit-transform 0.8s; -webkit-transform-style: preserve-3d; transform-style: preserve-3d; } .slider__card:hover .slider__item-inner { -webkit-transform: rotateY(180deg); transform: rotateY(180deg); } .slider__item-front, .slider__item-back { position: absolute; width: 100%; height: 100%; -webkit-backface-visibility: hidden; backface-visibility: hidden; } .slider__item-back { -webkit-transform: rotateY(180deg); transform: rotateY(180deg); } .slider__item__link__img { width: 100vw; height: 15vw; border-left: 0px; border-right: 0px; border-radius: 0; } .slider__button-right, .slider__button-left { color: black; opacity: 1; background-color: black; width: 5%; } .range_slides_carousel_control_icons { color: black; opacity: 1; } .slider__button__left, .slider__button__right { font-size: 3rem; color: grey; } .slider__button__left:hover, .slider__button__right:hover { color: black; } @media (max-width: 767px) { .range_slides_carousel_wrapper { -webkit-transform: rotate(-90deg); transform: rotate(-90deg); height: 95vw; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .range_slides_carousel_wrapper .slider__title__desktop { display: none; } .slider { padding: 0; } .slider__container { -webkit-transform: rotate(90deg); transform: rotate(90deg); 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: start; -ms-flex-align: start; align-items: flex-start; height: 100vh; -ms-flex-wrap: wrap; flex-wrap: wrap; } .slider__container .col-3 { all: initial; margin-top: 7.5%; margin-bottom: -7.5%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; width: 34%; } .slider__container .col-3 img { max-width: 100%; } } @media (max-width: 413px) { .slider__container .col-3 { font-size: 4vw; } } @media (min-width: 768px) { .slider__title__mobile { display: none; } .range_slides_carousel_wrapper .slider__title__desktop { display: block; } } .slider { padding: 0; } .slider__button { opacity: 3; } @media (max-width: 790px) { .slider__item__title { font-size: 0.8rem; } } @media (max-width: 525px) { .slider__item__title { font-size: 0.7rem; } } .range_slides_carousel_wrapper { padding-bottom: 50px; } @media (max-width: 767px) { .range_slides_carousel_wrapper { padding-bottom: 0; } } .slider__title { margin-left: 34px; font-family: robotoBold; font-size: 22px; font-weight: 800; line-height: 32px; color: black; } .description { font-family: robotoMedium; color: black; } .features-clean { color: #313437; background-color: #fff; padding-bottom: 30px; } .features-clean h2 { margin-bottom: 40px; padding-top: 40px; color: inherit; } .features-clean .intro { font-size: 16px; max-width: 500px; margin: 0 auto 60px; } body > div.highlight-clean > div > div { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; justify-items: center; } .features-clean .item { min-height: 100px; margin-bottom: 40px; } .row_opleidingen { width: 95vw; } .row_opleidingen .showmeinside { position: relative; width: 0; height: 0; background-color: red; } .row_opleidingen .showmeinside .showcontent { position: absolute; top: 0; left: 45vw; width: 50px; height: 50px; z-index: 5; } .row_opleidingen .showcontent__mobile { display: none; } @media (max-width: 768px) { .row_opleidingen .showcontent { display: none; } .row_opleidingen .showcontent__mobile { display: block; top: -60px; left: 47%; } } .showcontent { position: absolute; top: 50%; right: -24px; width: 50px; height: 50px; z-index: 1; border: solid black; background-color: green; color: #fff; border-radius: 50px; margin-left: 5px; } .showcontent:focus, .showcontent:hover, .showcontent:active { outline: 0; } .borderspan { border-right: solid; position: absolute; right: 0; bottom: 0; height: 80%; width: 1px; } @media (max-width: 767px) { .borderspan { display: none; } } .col-md-6_opleidingen img { -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; height: 70px; width: auto; } .solo_study_item .row_opleidingen .col-md-6_opleidingen { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; } .solo_study_item .row_opleidingen .borderspan { display: none; } .solo_study_item .row_opleidingen .showcontent { display: none; } .solo_study_item .row_opleidingen .showcontent__mobile { display: block; top: -60px; left: 47%; } .studiecontainer { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; justify-items: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; position: relative; } .studieitems { text-align: center; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } @media (max-width: 767px) { .studieitems { padding-bottom: 15px; } } .opleidingen { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; position: absolute; bottom: 0; } .buttons.opleidingenbuttons { position: absolute; bottom: 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: space-evenly; -ms-flex-pack: space-evenly; justify-content: space-evenly; width: 100%; } .buttons.opleidingenbuttons .button1 { background-color: green; border-color: green; } .buttons.opleidingenbuttons .button2 { background-color: rgba(0, 0, 0, 0.2); border-color: rgba(0, 0, 0, 0.2); } @media (max-width: 767px) { .buttons.opleidingenbuttons { position: relative; } } .studielists { color: #7d8285; margin-left: -17px; list-style-type: none; } .studielists li:before { margin-right: 7px; content: "\00BB"; } .row_finishedopleidingen { height: 100px; width: 100%; } .button_content { position: fixed; width: 100vw; height: 100vh; top: 0; left: 0; background-color: rgba(0, 0, 0, 0.4); z-index: 4; display: none; } .button_content .close { position: fixed; font-size: 3rem; bottom: 15px; right: 4vw; z-index: 5; width: 50px; height: 50px; background: white; border-radius: 50px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .button_content .close span { position: absolute; bottom: 6px; } .button_content .close span:focus, .button_content .close span:hover, .button_content .close span:active { outline: 0; } .button_content .close:focus, .button_content .close:hover, .button_content .close:active { outline: 0; } .button_content_show { display: -webkit-box; display: -ms-flexbox; display: flex; } .button_iframes { position: fixed; left: 0; top: 0; width: 100%; height: 100%; z-index: 2; } .rotatebutton { -webkit-transition: .3s all; transition: .3s all; -webkit-transform: rotate(180deg); transform: rotate(180deg); } .showtwincontent { -webkit-transition: 1s cubic-bezier(1, 0.005, 1, 1.045); transition: 1s cubic-bezier(1, 0.005, 1, 1.045); height: auto; max-height: 10000px; overflow: visible; } .showhidetwin { -webkit-transition: 1s ease; transition: 1s ease; max-height: 0; overflow: hidden; } .skills__title { font-family: payTone; } .skills__description { font-family: robotoMedium; color: black !important; } .title-style { font-family: robotoMedium; color: black !important; } * { padding: 0px; margin: 0px; } /* slide startup */ .Startup { margin-top: 12px; margin-bottom: 60px; } .startup-header { color: white; font-weight: bold; background-color: #00cc99; margin: 5px; font-family: payTone; /* margin-bottom: 34px; */ } .Startup .lead { line-height: 1.5rem; } #changed { margin-bottom: -57px; } /* start a link */ .Startup span { font-weight: bold; font-size: 188%; color: #1a0606; } #changed2 { width: 5%; } #changed li { background-color: #201d1d; } #changed { margin-bottom: -8px; } /* start content1 */ .content1, .content2, .content3, .content4 { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; width: 100%; } .content1-foto { width: 51%; } .content1-list { width: 45%; padding: 6%; padding-top: 12%; } .content1-list-p { background-color: lightgreen; color: black; line-height: 2rem; font-family: roboto medium; font-weight: bold; } .paragraf { padding-top: 1%; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: nowrap; flex-wrap: nowrap; width: 100%; } .paragraf-h5 { color: black; width: 50%; text-align: left; background-color: #cfd1cf; padding-top: 1%; font-family: roboto medium; } .paragraf-h4 { width: 45%; color: green; background-color: #cfd1cf; padding-bottom: -1%; margin-top: 0%; line-height: 4%; padding-top: 1%; font-weight: bold; } .paragraf-h5-header { font-family: payTone; } .paragraf-h5-header--modified { font-family: robotoMedium; font-family: bold; } .incubator__description { font-family: robotoMedium; font-weight: bold; } @media only screen and (max-width: 452px) { .content1-foto { display: none; } .content1-list { margin: auto; width: 70%; margin-top: 7%; } } /* end content1 */ /* start content2 */ .foto2 { width: 40%; margin: auto; } .list2 { width: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; max-height: 180px; } .incubator { display: -webkit-box; display: -ms-flexbox; display: flex; width: 100%; margin-top: 7%; -ms-flex-pack: distribute; justify-content: space-around; } .incubator-one, .incubator-two { width: 25%; } .incubator-six2 { display: none; } .incubator-one, .incubator-two { margin-bottom: 30px; } .incubator-three, .incubator-four, .incubator-five, .incubator-six, .incubator-seven { margin-bottom: 30px; width: 20%; } .incubator-span { font-weight: bold; font-family: payTone; background-color: #cfd1cf; } #changed3 { height: 500px; } /* .carousel-item{ height: 500px; } */ @media only screen and (max-width: 1000px) { .list2 { -ms-flex-pack: distribute; justify-content: space-around; } .foto2 { display: none; } .incubator-six2 { display: block; width: 20%; } .incubator-six { display: none; } .first-line { width: 30%; } .second-line { max-width: 24%; } p { font-size: 14px; } /* end content2 */ /*# sourceMappingURL=carousel.css.map */ } .altbody { width: 100%; height: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } @media (max-width: 767px) { .altbody { display: none; } } .altbody_mobile { width: 100%; height: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; overflow: hidden; } @media (min-width: 768px) { .temphide_altbody { display: none; } } .skills_row { display: -ms-flexbox; display: flex; display: -webkit-box; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; max-width: 95%; } @media (max-width: 767px) { .skills_row { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: unset; -ms-flex-align: unset; align-items: unset; max-width: 100%; width: 100%; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } } .skills_row img { max-width: 100%; } .skills_row .githubclass img { width: 86%; padding-bottom: 4vw; } .skills_row .skills_block:nth-child(odd) { background-color: green; color: white; } .skills_row .skills_block:nth-child(even) { color: white; } .skills_block { 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; text-align: center; width: 16vw; height: 16vw; color: green; } .skills_block h3 { font-size: 2.1vw; } @media (max-width: 1024px) { .skills_block { width: 18vw; height: 18vw; } .skills_block h3 { font-size: 2.2vw; } } @media (max-width: 767px) { .skills_block { overflow: hidden; border-radius: 1000px; margin-right: 2px; margin-bottom: 2px; } } .skills_block_catchwords { padding: 0; font-size: 28px; word-break: break-word; font-weight: 100; } .filosofie-section { margin: 10rem; text-align: center; } .filosofie-section__preview { font-size: 1rem; } .filosofie-section__button { width: 100px; height: auto; border-radius: 1rem; background-color: green; display: inline-block; } .filosofie-section__button__link:hover { cursor: pointer; color: white; } .filosofie-section__button__link { color: white; } .tevbodyTitle { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .tevbody_inner { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; width: 100%; height: 100%; max-height: 38vw; -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1); transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1); overflow: hidden; position: relative; } .tevbody_inner * { margin: 0; padding: 0; } .tevbody_inner *:hover { outline: none; } .tevbody_inner *:active { outline: none; } .tevbody_inner *:focus { outline: none; } .tevbody_inner .stickyline { position: -webkit-sticky !important; position: sticky !important; top: 1vw; width: 100%; display: none; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .tevbody_inner .stickyline .stickybutton { background-color: black; color: white; border-style: none; border-radius: 1vw; min-height: 3vw; font-weight: 100; font-size: 1.5vw; margin-top: 1vw; padding-left: 1vw; padding-right: 1vw; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; } .tevbody_inner .stickyline .stickybutton:hover { -webkit-transition: all 0.5s ease; transition: all 0.5s ease; color: limegreen; } .tevbody_inner .stickyline .datesort { position: absolute !important; top: 0; left: 30vw; } .tevbody_inner .tevflexwrapper { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -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; width: 100%; } .tevbody_inner .tevflexwrapper .spinner { position: absolute; top: 5.1vw; width: 100vw; height: 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; background-color: white; } .tevbody_inner .tevflexwrapper .spinner img { position: fixed; top: 45vh; max-height: 128px; max-width: 128px; } .tevbody_inner .tevflexwrapper .tevitems { border-radius: 5px; overflow: hidden; margin-top: 1.8vw; margin-bottom: 1.8vw; width: 21vw; height: 30.8vw; } .tevbody_inner .tevflexwrapper .tevitems .tevupper { background-color: green; color: white; font-weight: 100; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .tevbody_inner .tevflexwrapper .tevitems .tevupper h3 { font-weight: 100; font-size: 2.5vw; } .tevbody_inner .tevflexwrapper .tevitems .tevupper .eventdate { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: space-evenly; -ms-flex-pack: space-evenly; justify-content: space-evenly; width: 88%; height: 5.15vw; } .tevbody_inner .tevflexwrapper .tevitems .tevupper .eventdate i { font-size: 3.7vw; } .tevbody_inner .tevflexwrapper .tevitems .tevupper .eventdate p { font-size: 1.7vw; padding: 0; margin: 0; } .tevbody_inner .tevflexwrapper .tevitems .tevlower { padding: 1.5vw; text-align: center; background-color: lightgreen; } .tevbody_inner .tevflexwrapper .tevitems .tevlower .buttons { margin-top: 1.5vw; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-pack: distribute; justify-content: space-around; } .tevbody_inner .tevflexwrapper .tevitems .tevlower .buttons button { width: 6vw; height: 2.8vw; border-radius: 50px; border-style: none; background-color: green; color: white; font-size: 1.25vw; } .tevbody_inner .tevflexwrapper .tevitems .tevlower .buttons button:hover { background-color: darkgreen; } .tevbody_inner .tevflexwrapper .tevitems .tevlower .buttons button.aanmelden { width: 10vw; } .tevbody_inner .tevflexwrapper .tevitems .tevlower p { word-wrap: break-word; -webkit-hyphens: auto; -ms-hyphens: auto; hyphens: auto; font-size: 1.25vw; } .tevbody_inner .tevflexwrapper .tevitems .tevlower p img { max-width: 100%; } @media (max-width: 767px) { .tevbody_inner { max-height: 76vw; } .tevbody_inner .stickyline .stickybutton { width: 15vw; } .tevbody_inner .stickyline .datesort { position: absolute !important; top: 0; width: 10vw; } .tevbody_inner .stickybutton { position: -webkit-sticky; position: sticky; width: 20vw; min-height: 6vw; font-size: 3vw; margin-top: 2vw; } .tevbody_inner .tevflexwrapper .tevitems { margin-top: 3.6vw; margin-bottom: 3.6vw; width: 42vw; height: 61.6vw; } .tevbody_inner .tevflexwrapper .tevitems .tevupper h3 { font-weight: 100; font-size: 5vw; } .tevbody_inner .tevflexwrapper .tevitems .tevupper .eventdate { height: 10.3vw; } .tevbody_inner .tevflexwrapper .tevitems .tevupper .eventdate i { font-size: 7.4vw; } .tevbody_inner .tevflexwrapper .tevitems .tevupper .eventdate p { font-size: 3.4vw; } .tevbody_inner .tevflexwrapper .tevitems .tevlower { padding: 3vw; text-align: center; background-color: lightgreen; } .tevbody_inner .tevflexwrapper .tevitems .tevlower .buttons { margin-top: 3vw; } .tevbody_inner .tevflexwrapper .tevitems .tevlower .buttons button { width: 12vw; height: 5.6vw; font-size: 2.5vw; } .tevbody_inner .tevflexwrapper .tevitems .tevlower .buttons button.aanmelden { width: 20vw; } .tevbody_inner .tevflexwrapper .tevitems .tevlower p { font-size: 2.5vw; } } .tevbody_inner .tevflexwrapper .tevitems_extended { position: fixed; top: 0; margin-top: 0; margin-bottom: 0; width: 100%; height: 100vh; overflow-y: auto; background-color: lightgreen; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper { padding: 0.5vw; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: space-evenly; -ms-flex-pack: space-evenly; justify-content: space-evenly; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper h3 { font-weight: 100; font-size: 5vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper .eventdate { height: 100%; width: 35vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper .eventdate i { font-size: 5.4vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper .eventdate p { font-size: 3.4vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower { padding: 0vw; text-align: center; background-color: lightgreen; width: 100%; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .extendedcontainer { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .extendedcontainer .makeflex { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: space-evenly; -ms-flex-pack: space-evenly; justify-content: space-evenly; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .buttons { margin-top: 2vw; margin-bottom: 0; font-weight: 100; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .buttons button { width: 12vw; height: 5.6vw; font-size: 2.5vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .buttons button.aanmelden { width: 20vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower p { font-size: 2.5vw; margin-bottom: 1.85vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower p img { width: 100%; max-width: 45vw; max-height: 50vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower p.tev_p_extended { font-size: 1.5vw; max-width: 45%; overflow-y: auto; } @media (max-width: 768px) { .tevbody_inner .tevflexwrapper .tevitems_extended { position: fixed; top: 0; margin-top: 0; margin-bottom: 0; width: 100%; height: 100vh; overflow-y: auto; background-color: lightgreen; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper { padding: 0.5vw; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: space-evenly; -ms-flex-pack: space-evenly; justify-content: space-evenly; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper h3 { font-weight: 100; font-size: 5vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper .eventdate { height: 100%; width: 35vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper .eventdate i { font-size: 5.4vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper .eventdate p { font-size: 3.4vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower { padding: 0vw; text-align: center; background-color: lightgreen; width: 100%; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .extendedcontainer { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .extendedcontainer .makeflex { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: space-evenly; -ms-flex-pack: space-evenly; justify-content: space-evenly; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .buttons { margin-top: 2vw; margin-bottom: 0; font-weight: 100; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .buttons button { width: 24vw; height: 11.2vw; font-size: 5vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .buttons button.aanmelden { width: 40vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower p { font-size: 5vw; margin-bottom: 1.85vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower p img { width: 100%; max-width: 95vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower p.tev_p_extended { font-size: 3.5vw; max-width: 95%; margin-left: 2.5%; margin-top: 2%; overflow-y: auto; } } @media (width: 1024px) and (height: 1366px) { .tevbody_inner .tevflexwrapper .tevitems_extended { position: fixed; top: 0; margin-top: 0; margin-bottom: 0; width: 100%; height: 100vh; overflow-y: auto; background-color: lightgreen; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper { padding: 0.5vw; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: space-evenly; -ms-flex-pack: space-evenly; justify-content: space-evenly; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper h3 { font-weight: 100; font-size: 5vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper .eventdate { height: 100%; width: 35vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper .eventdate i { font-size: 5.4vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper .eventdate p { font-size: 3.4vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower { padding: 0vw; text-align: center; background-color: lightgreen; width: 100%; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .extendedcontainer { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .extendedcontainer .makeflex { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: space-evenly; -ms-flex-pack: space-evenly; justify-content: space-evenly; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .buttons { margin-top: 2vw; margin-bottom: 0; font-weight: 100; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .buttons button { width: 24vw; height: 11.2vw; font-size: 5vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .buttons button.aanmelden { width: 40vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower p { font-size: 5vw; margin-bottom: 1.85vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower p img { width: 100%; max-width: 95vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower p.tev_p_extended { font-size: 3.5vw; max-width: 95%; margin-left: 2.5%; margin-top: 2%; overflow-y: auto; } } .tevbody_outer { position: relative; } .Teventsanchor { position: absolute; top: -5vw; } .fixstickyline { top: 5vw !important; } .tevbody_show { overflow: visible; } .tempoverflow { overflow: hidden; } .temphide { display: none !important; } body > div.tevbody_outer > div.tevbody_inner > div.stickyline > button:nth-child(2) > a { color: white; text-decoration: none; } .blog-title { text-align: center; } .blog-description { text-align: center; margin-bottom: 2rem; font-family: robotoBold; color: #449D44; font-weight: bold; } .blog__container { margin-bottom: 2rem; display: none; } @media (max-width: 890px) { .blog__item__img-wrapper { display: none; } .blog__item__content-wrapper { max-width: 100%; -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; } .blog__item__content-wrapper__title { font-size: 1.3rem; } } .blog__item__content-wrapper__title { font-weight: unset; padding: 0; } .blog__item__content-wrapper__preview { font-family: robotoMedium; font-size: 1.2rem; } .blogheader { background-image: url(/assets/img/Blog/Foto_AWSklas201910.jpeg); background-position: center; background-size: cover; height: 70vh; } .blog-post { font-family: robotoRegular; } .blog-post__title { margin-top: 2rem; font-weight: none; font-family: payTone; } .blog-post__author a { font-family: robotoBold; font-weight: 600; color: #449D44; } .blog-post__wrapper__paragraph { font-family: robotoMedium; } .blog__button { color: #449D44; } .blog__button:hover { color: black; } /* ons team */ /* icon */ .fa { padding: 10px; width: 30px; text-align: center; text-decoration: none; margin: 0px 2px; border-radius: 50%; } .fa:hover { opacity: 0.7; } .fa-envelope { background: linear-gradient(45deg, black, transparent); color: white; font-size: 11px; } .fa-linkedin { background: #007bb5; color: white; font-size: 11px; } .fa-phone { background: magenta; color: white; font-size: 11px; } /* icon */ .container1 { position: relative; width: 90%; margin: 0 auto; } .image-team { opacity: 1; display: block; width: 100%; height: auto; -webkit-transition: .5s ease; transition: .5s ease; -webkit-backface-visibility: hidden; backface-visibility: hidden; } .middle { -webkit-transition: .5s ease; transition: .5s ease; opacity: 0; position: absolute; top: 65%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); text-align: center; } .middle2 { -webkit-transition: .5s ease; transition: .5s ease; opacity: 0; position: absolute; top: 13%; left: 26%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); /* background-color: rgb(114, 179, 231); */ } /* .container1:hover .image-team { opacity: 0.6; } */ .container1:hover .middle { opacity: 1; } .container1:hover .middle2 { opacity: 1; } .text { background-color: #37979e; color: white; font-size: 10px; padding: 10px 20px; margin-top: 126px; } .team { margin-top: 20px; } .text-uppercase { background-color: white; color: darkgray; } /* .icon-teams{ width: 20px; border-radius: 50%; border: 1px solid black; } */ .heading-title1 { background-color: lightgray; } /* end ons team */ #contact { margin-top: 4rem; } .footer { background-color: whitesmoke; text-align: center; font-family: robotoBold; font-weight: bold; } .footer__wrapper { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; list-style-type: none; font-size: 2.2rem; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .footer__wrapper__item { margin: 1rem; color: darkslategray; } .--linkedin { font-size: 2.2rem; background-color: whitesmoke; } .tg-homepage__social__container { width: 3rem; } .tg-homepage__social__wrapper { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; list-style-type: none; font-size: 2rem; width: -webkit-fit-content; width: -moz-fit-content; width: fit-content; background-color: white; opacity: 0.8; } .tg-homepage__social__wrapper__item { width: 3rem; background-color: white; color: darkslategray; } .tg-homepage__social__wrapper__item:hover { background-color: white; } @media (max-width: 1040px) { .tg-homepage__social__wrapper { font-size: 1.5rem; -webkit-box-pack: right; -ms-flex-pack: right; justify-content: right; } } .sponsorbalk { background-color: rgba(0, 0, 0, 0.2); } .sponsorbalk__wrapper { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; height: inherit; width: auto; } .--left { -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; } .sponsorbalk__wrapper__items { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-box-flex: 1; -ms-flex: 1; flex: 1; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; } .sponsorbalk__wrapper__items__img { height: 2rem; width: 4rem; margin-left: 1rem; } .sponsorbalk__wrapper__items__text { line-height: 0.5; } @media (max-width: 980px) { .sponsorbalk { display: none; } } .tg_partners_techconnect_title { font-size: 2rem; padding: 2rem; font-family: payTone; } .tg_readers_image { -webkit-box-shadow: 0 0 15px #0a0a0a; box-shadow: 0 0 15px #0a0a0a; } .tg_aws_partners { width: 15rem; } .tg_partners_techconnect { width: 15rem; } .tg_readers { display: -webkit-box; display: -ms-flexbox; display: flex; } .tg_arrow_wrapper { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .tg_readers_arrow { width: 100px; position: relative; left: 11rem; } @media (max-width: 613px) { .tg_readers_arrow { display: none; } .tg_partners_arrow_title { margin-top: 5rem; } .tg_readers { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .tg_partners_arrow_title { font-size: 1.1rem; font-weight: bold; } } @media (max-width: 414px) { .tg_partners_techconnect_title { font-size: 1.3rem; } } .titels-job { background: #fff; } /*# sourceMappingURL=styles.css.map */
assets/css/styles.css
@font-face { font-family: payTone; src: url(/assets/fonts/PaytoneOne-Regular.ttf); } @font-face { font-family: robotoRegular; src: url(Roboto-Regular.ttf); } @font-face { font-family: robotoMedium; src: url(Roboto-Medium.ttf); } @font-face { font-family: robotoBold; src: url(/assets/fonts/); } .tg-partners { background-color: #c5c2c2; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: space-evenly; -ms-flex-pack: space-evenly; justify-content: space-evenly; } .tg_partners_img { height: 2rem; color: white; } @media (max-width: 951px) { .tg-partners { display: none; } } body { padding-top: 0 !important; font-family: paytone !important; } @media only screen and (max-width: 770px) { .softskills-bg { height: 70vh; } } .navigation-clean { background: #fff; padding-top: 0.75rem; padding-bottom: 0.75rem; color: #333; border-radius: 0; -webkit-box-shadow: none; box-shadow: none; border: none; margin-bottom: 0; width: 100%; height: auto; z-index: 5; position: fixed; } .sticky { position: fixed; top: 0; } .sticky + .tg-homepage-container { padding-top: 150px; } @media (min-width: 768px) { .navigation-clean { padding-top: 1rem; padding-bottom: 1rem; } } .navigation-clean .navbar-brand { font-weight: bold; color: inherit; } .navigation-clean .navbar-brand:hover { color: #222; } .navigation-clean.navbar-dark .navbar-brand:hover { color: #f0f0f0; } .navigation-clean .navbar-brand img { height: 100%; display: inline-block; margin-right: 10px; width: auto; } .navigation-clean .navbar-toggler { border-color: #ddd; } .navigation-clean .navbar-toggler:hover, .navigation-clean .navbar-toggler:focus { background: none; } .navigation-clean.navbar-dark .navbar-toggler { border-color: #555; } .navigation-clean .navbar-toggler { color: #888; } .navigation-clean.navbar-dark .navbar-toggler { color: #eee; } .navigation-clean .navbar-collapse, .navigation-clean .form-inline { border-top-color: #ddd; } .navigation-clean.navbar-dark .navbar-collapse, .navigation-clean.navbar-dark .form-inline { border-top-color: #333; } .navigation-clean .navbar-nav > .active > a, .navigation-clean .navbar-nav > .show > a { background: none; -webkit-box-shadow: none; box-shadow: none; } .navigation-clean.navbar-light .navbar-nav .nav-link.active, .navigation-clean.navbar-light .navbar-nav .nav-link.active:focus, .navigation-clean.navbar-light .navbar-nav .nav-link.active:hover { /*color: #8f8f8f;*/ -webkit-box-shadow: none; box-shadow: none; background: none; pointer-events: none; font-size: 1.2rem; color: black; } .navigation-clean.navbar .navbar-nav .nav-link { padding-left: 18px; padding-right: 18px; } .navigation-clean.navbar-light .navbar-nav .nav-link { font-size: 1.2rem; color: black; } .navigation-clean.navbar-light .navbar-nav .nav-link:focus, .navigation-clean.navbar-light .navbar-nav .nav-link:hover { color: #37434d !important; background-color: transparent; } .navigation-clean .navbar-nav > li > .dropdown-menu { margin-top: -5px; -webkit-box-shadow: none; box-shadow: none; background-color: #fff; border-radius: 2px; } @media (min-width: 768px) { .navigation-clean .navbar-nav .show .dropdown-menu { -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } } @media (max-width: 767px) { .navigation-clean .navbar-nav .show .dropdown-menu .dropdown-item { color: #37434d; padding-top: 0.8rem; padding-bottom: 0.8rem; line-height: 1; } } .navigation-clean .dropdown-menu .dropdown-item:focus, .navigation-clean .dropdown-menu .dropdown-item { line-height: 2; color: #37434d; } .navigation-clean .dropdown-menu .dropdown-item:focus, .navigation-clean .dropdown-menu .dropdown-item:hover { background: #eee; color: inherit; } .navigation-clean.navbar-dark { background-color: #1f2021; color: #fff; } .navigation-clean.navbar-dark .navbar-nav a.active, .navigation-clean.navbar-dark .navbar-nav a.active:focus, .navigation-clean.navbar-dark .navbar-nav a.active:hover { color: #8f8f8f; -webkit-box-shadow: none; box-shadow: none; background: none; pointer-events: none; } .navigation-clean.navbar-dark .navbar-nav .nav-link { color: #dfe8ee; } .navigation-clean.navbar-dark .navbar-nav .nav-link:focus, .navigation-clean.navbar-dark .navbar-nav .nav-link:hover { color: #fff; background-color: transparent; } .navigation-clean.navbar-dark .navbar-nav > li > .dropdown-menu { background-color: #1f2021; } .navigation-clean.navbar-dark .dropdown-menu .dropdown-item:focus, .navigation-clean.navbar-dark .dropdown-menu .dropdown-item { color: #f2f5f8; } .navigation-clean.navbar-dark .dropdown-menu .dropdown-item:focus, .navigation-clean.navbar-dark .dropdown-menu .dropdown-item:hover { background: #363739; } .tg-logo img { width: 10rem; position: absolute; left: 1rem; top: 1rem; } .tg-homepage-container { position: relative; padding-top: 120px; } .bg-image { position: absolute; content: ""; opacity: 0.6; top: 0; left: 0; height: 100%; width: 100%; z-index: -1; } .row { margin-right: 0; margin-left: 0; } .buttonspace { height: 50vh; } .tg-talent { height: 5rem; width: 25rem; background-image: -webkit-gradient(linear, right top, left top, from(#01faaf), to(#2eff4a)); background-image: linear-gradient(-90deg, #01faaf, #2eff4a); text-align: center; border-radius: 0.5rem; border: none; margin: 20px; } .tg-talent--modified { background-image: -webkit-gradient(linear, right top, left top, from(#2eff4a), to(#01faaf)); background-image: linear-gradient(-90deg, #2eff4a, #01faaf); } .tg-talent h1 { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-weight: bold; font-size: 2rem; color: black; } .tg-talent p { font-weight: bold; font-size: 1rem; color: black; } .tg-coding-academy h1 { font-family: payTone; font-size: 2.6rem; color: black; text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white; } @media (max-width: 650px) { .tg-coding-academy h1 { font-size: 2rem; } } .active.nav-link { text-decoration: none; } .tg-coding-academy { border-radius: 1rem; height: inherit; width: inherit; margin: auto; padding: 10px; text-align: center; } .tg-slogan-content { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-weight: bold; font-size: 2rem; color: black; padding: 1rem; text-align: center; } @media (max-width: 600px) { .tg-slogan-content { font-size: 1.5rem; } } .circle { background: red; border-radius: 200px; color: white; height: 150px; font-weight: bold; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; width: 150px; display: table; z-index: 1; text-align: center; vertical-align: middle; position: absolute; right: 4rem; top: 9rem; -webkit-transform: rotate(-20deg); transform: rotate(-20deg); } .circle p { vertical-align: middle; display: table-cell; z-index: 2; } @media (max-width: 1005px) { .circle { position: absolute; left: 1rem; top: 20rem; height: 100px; width: 100px; } } @media (max-width: 777px) { .tg-talent { width: 17rem; } } .tg-homepage-container { display: none; } .media-sponsors { background-color: #22b542; } .media-sponsors__img { width: 5rem; -webkit-filter: brightness(0), invert(1); filter: brightness(0), invert(1); border-radius: 0; } .media-news { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; text-align: center; padding: 3rem; } .media-news__title { font-family: robotoMedium; font-weight: unset; } .media-news__video { width: 50vw; height: 30vw; } .media-news__title { font-family: payTone; font-weight: unset; } .slider__title__desktop { font-family: payTone; } @media only screen and (max-width: 750px) { .media-news__title { font-size: 1.2rem; } .media-news__video { width: 80vw; height: 50vw; } } .carousel-indicators { z-index: 1; } .slider__item__title { text-align: left; margin-top: 20px; font-family: robotoRegular; font-size: 18px; margin-right: 0; margin-left: 24px; line-height: 34px; letter-spacing: 0px; font-style: normal; font-weight: bold; } .slider { background: white; padding-top: 3rem; } .slider__container { padding: 1.2rem; margin-right: 2rem; margin-left: 2rem; } .slider__title { margin-top: 2rem; font-size: 1rem; } .slider__item { padding: 0.2rem; border-left: none; position: relative; } .slider__item__link { color: black; position: relative; } .slider__item__link:hover { color: black; } .slider__item__title { margin-top: 1px; margin-left: 0px; line-height: normal; } .slider__card { -webkit-perspective: 1000px; perspective: 1000px; height: 250px; } .slider__item-inner { position: relative; width: 100%; height: 100%; -webkit-transition: -webkit-transform 0.8s; transition: -webkit-transform 0.8s; transition: transform 0.8s; transition: transform 0.8s, -webkit-transform 0.8s; -webkit-transform-style: preserve-3d; transform-style: preserve-3d; } .slider__card:hover .slider__item-inner { -webkit-transform: rotateY(180deg); transform: rotateY(180deg); } .slider__item-front, .slider__item-back { position: absolute; width: 100%; height: 100%; -webkit-backface-visibility: hidden; backface-visibility: hidden; } .slider__item-back { -webkit-transform: rotateY(180deg); transform: rotateY(180deg); } .slider__item__link__img { width: 100vw; height: 15vw; border-left: 0px; border-right: 0px; border-radius: 0; } .slider__button-right, .slider__button-left { color: black; opacity: 1; background-color: black; width: 5%; } .range_slides_carousel_control_icons { color: black; opacity: 1; } .slider__button__left, .slider__button__right { font-size: 3rem; color: grey; } .slider__button__left:hover, .slider__button__right:hover { color: black; } @media (max-width: 767px) { .range_slides_carousel_wrapper { -webkit-transform: rotate(-90deg); transform: rotate(-90deg); height: 95vw; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .range_slides_carousel_wrapper .slider__title__desktop { display: none; } .slider { padding: 0; } .slider__container { -webkit-transform: rotate(90deg); transform: rotate(90deg); 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: start; -ms-flex-align: start; align-items: flex-start; height: 100vh; -ms-flex-wrap: wrap; flex-wrap: wrap; } .slider__container .col-3 { all: initial; margin-top: 7.5%; margin-bottom: -7.5%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; width: 34%; } .slider__container .col-3 img { max-width: 100%; } } @media (max-width: 413px) { .slider__container .col-3 { font-size: 4vw; } } @media (min-width: 768px) { .slider__title__mobile { display: none; } .range_slides_carousel_wrapper .slider__title__desktop { display: block; } } .slider { padding: 0; } .slider__button { opacity: 3; } @media (max-width: 790px) { .slider__item__title { font-size: 0.8rem; } } @media (max-width: 525px) { .slider__item__title { font-size: 0.7rem; } } .range_slides_carousel_wrapper { padding-bottom: 50px; } @media (max-width: 767px) { .range_slides_carousel_wrapper { padding-bottom: 0; } } .slider__title { margin-left: 34px; font-family: robotoBold; font-size: 22px; font-weight: 800; line-height: 32px; color: black; } .description { font-family: robotoMedium; color: black; } .features-clean { color: #313437; background-color: #fff; padding-bottom: 30px; } .features-clean h2 { margin-bottom: 40px; padding-top: 40px; color: inherit; } .features-clean .intro { font-size: 16px; max-width: 500px; margin: 0 auto 60px; } body > div.highlight-clean > div > div { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; justify-items: center; } .features-clean .item { min-height: 100px; margin-bottom: 40px; } .row_opleidingen { width: 95vw; } .row_opleidingen .showmeinside { position: relative; width: 0; height: 0; background-color: red; } .row_opleidingen .showmeinside .showcontent { position: absolute; top: 0; left: 45vw; width: 50px; height: 50px; z-index: 5; } .row_opleidingen .showcontent__mobile { display: none; } @media (max-width: 768px) { .row_opleidingen .showcontent { display: none; } .row_opleidingen .showcontent__mobile { display: block; top: -60px; left: 47%; } } .showcontent { position: absolute; top: 50%; right: -24px; width: 50px; height: 50px; z-index: 1; border: solid black; background-color: green; color: #fff; border-radius: 50px; margin-left: 5px; } .showcontent:focus, .showcontent:hover, .showcontent:active { outline: 0; } .borderspan { border-right: solid; position: absolute; right: 0; bottom: 0; height: 80%; width: 1px; } @media (max-width: 767px) { .borderspan { display: none; } } .col-md-6_opleidingen img { -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; height: 70px; width: auto; } .solo_study_item .row_opleidingen .col-md-6_opleidingen { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; } .solo_study_item .row_opleidingen .borderspan { display: none; } .solo_study_item .row_opleidingen .showcontent { display: none; } .solo_study_item .row_opleidingen .showcontent__mobile { display: block; top: -60px; left: 47%; } .studiecontainer { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; justify-items: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; position: relative; } .studieitems { text-align: center; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } @media (max-width: 767px) { .studieitems { padding-bottom: 15px; } } .opleidingen { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; position: absolute; bottom: 0; } .buttons.opleidingenbuttons { position: absolute; bottom: 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: space-evenly; -ms-flex-pack: space-evenly; justify-content: space-evenly; width: 100%; } .buttons.opleidingenbuttons .button1 { background-color: green; border-color: green; } .buttons.opleidingenbuttons .button2 { background-color: rgba(0, 0, 0, 0.2); border-color: rgba(0, 0, 0, 0.2); } @media (max-width: 767px) { .buttons.opleidingenbuttons { position: relative; } } .studielists { color: #7d8285; margin-left: -17px; list-style-type: none; } .studielists li:before { margin-right: 7px; content: "\00BB"; } .row_finishedopleidingen { height: 100px; width: 100%; } .button_content { position: fixed; width: 100vw; height: 100vh; top: 0; left: 0; background-color: rgba(0, 0, 0, 0.4); z-index: 4; display: none; } .button_content .close { position: fixed; font-size: 3rem; bottom: 15px; right: 4vw; z-index: 5; width: 50px; height: 50px; background: white; border-radius: 50px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .button_content .close span { position: absolute; bottom: 6px; } .button_content .close span:focus, .button_content .close span:hover, .button_content .close span:active { outline: 0; } .button_content .close:focus, .button_content .close:hover, .button_content .close:active { outline: 0; } .button_content_show { display: -webkit-box; display: -ms-flexbox; display: flex; } .button_iframes { position: fixed; left: 0; top: 0; width: 100%; height: 100%; z-index: 2; } .rotatebutton { -webkit-transition: .3s all; transition: .3s all; -webkit-transform: rotate(180deg); transform: rotate(180deg); } .showtwincontent { -webkit-transition: 1s cubic-bezier(1, 0.005, 1, 1.045); transition: 1s cubic-bezier(1, 0.005, 1, 1.045); height: auto; max-height: 10000px; overflow: visible; } .showhidetwin { -webkit-transition: 1s ease; transition: 1s ease; max-height: 0; overflow: hidden; } .skills__title { font-family: payTone; } .skills__description { font-family: robotoMedium; color: black !important; } .title-style { font-family: robotoMedium; color: black !important; } * { padding: 0px; margin: 0px; } /* slide startup */ .Startup { margin-top: 12px; margin-bottom: 60px; } .startup-header { color: white; font-weight: bold; background-color: #00cc99; margin: 5px; font-family: payTone; /* margin-bottom: 34px; */ } .Startup .lead { line-height: 1.5rem; } #changed { margin-bottom: -57px; } /* start a link */ .Startup span { font-weight: bold; font-size: 188%; color: #1a0606; } #changed2 { width: 5%; } #changed li { background-color: #201d1d; } #changed { margin-bottom: -8px; } /* start content1 */ .content1, .content2, .content3, .content4 { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; width: 100%; } .content1-foto { width: 51%; } .content1-list { width: 45%; padding: 6%; padding-top: 12%; } .content1-list-p { background-color: lightgreen; color: black; line-height: 2rem; font-family: roboto medium; font-weight: bold; } .paragraf { padding-top: 1%; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: nowrap; flex-wrap: nowrap; width: 100%; } .paragraf-h5 { color: black; width: 50%; text-align: left; background-color: #cfd1cf; padding-top: 1%; font-family: roboto medium; } .paragraf-h4 { width: 45%; color: green; background-color: #cfd1cf; padding-bottom: -1%; margin-top: 0%; line-height: 4%; padding-top: 1%; font-weight: bold; } .paragraf-h5-header { font-family: payTone; } .paragraf-h5-header--modified { font-family: robotoMedium; font-family: bold; } .incubator__description { font-family: robotoMedium; font-weight: bold; } @media only screen and (max-width: 452px) { .content1-foto { display: none; } .content1-list { margin: auto; width: 70%; margin-top: 7%; } } /* end content1 */ /* start content2 */ .foto2 { width: 40%; margin: auto; } .list2 { width: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; max-height: 180px; } .incubator { display: -webkit-box; display: -ms-flexbox; display: flex; width: 100%; margin-top: 7%; -ms-flex-pack: distribute; justify-content: space-around; } .incubator-one, .incubator-two { width: 25%; } .incubator-six2 { display: none; } .incubator-one, .incubator-two { margin-bottom: 30px; } .incubator-three, .incubator-four, .incubator-five, .incubator-six, .incubator-seven { margin-bottom: 30px; width: 20%; } .incubator-span { font-weight: bold; font-family: payTone; background-color: #cfd1cf; } #changed3 { height: 500px; } /* .carousel-item{ height: 500px; } */ @media only screen and (max-width: 1000px) { .list2 { -ms-flex-pack: distribute; justify-content: space-around; } .foto2 { display: none; } .incubator-six2 { display: block; width: 20%; } .incubator-six { display: none; } .first-line { width: 30%; } .second-line { max-width: 24%; } p { font-size: 14px; } /* end content2 */ /*# sourceMappingURL=carousel.css.map */ } .altbody { width: 100%; height: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } @media (max-width: 767px) { .altbody { display: none; } } .altbody_mobile { width: 100%; height: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; overflow: hidden; } @media (min-width: 768px) { .temphide_altbody { display: none; } } .skills_row { display: -ms-flexbox; display: flex; display: -webkit-box; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; max-width: 95%; } @media (max-width: 767px) { .skills_row { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: unset; -ms-flex-align: unset; align-items: unset; max-width: 100%; width: 100%; -ms-flex-wrap: nowrap; flex-wrap: nowrap; } } .skills_row img { max-width: 100%; } .skills_row .githubclass img { width: 86%; padding-bottom: 4vw; } .skills_row .skills_block:nth-child(odd) { background-color: green; color: white; } .skills_row .skills_block:nth-child(even) { color: white; } .skills_block { 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; text-align: center; width: 16vw; height: 16vw; color: green; } .skills_block h3 { font-size: 2.1vw; } @media (max-width: 1024px) { .skills_block { width: 18vw; height: 18vw; } .skills_block h3 { font-size: 2.2vw; } } @media (max-width: 767px) { .skills_block { overflow: hidden; border-radius: 1000px; margin-right: 2px; margin-bottom: 2px; } } .skills_block_catchwords { padding: 0; font-size: 28px; word-break: break-word; font-weight: 100; } .filosofie-section { margin: 10rem; text-align: center; } .filosofie-section__preview { font-size: 1rem; } .filosofie-section__button { width: 100px; height: auto; border-radius: 1rem; background-color: green; display: inline-block; } .filosofie-section__button__link:hover { cursor: pointer; color: white; } .filosofie-section__button__link { color: white; } .tevbodyTitle { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .tevbody_inner { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; width: 100%; height: 100%; max-height: 38vw; -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1); transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1); overflow: hidden; position: relative; } .tevbody_inner * { margin: 0; padding: 0; } .tevbody_inner *:hover { outline: none; } .tevbody_inner *:active { outline: none; } .tevbody_inner *:focus { outline: none; } .tevbody_inner .stickyline { position: -webkit-sticky !important; position: sticky !important; top: 1vw; width: 100%; display: none; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .tevbody_inner .stickyline .stickybutton { background-color: black; color: white; border-style: none; border-radius: 1vw; min-height: 3vw; font-weight: 100; font-size: 1.5vw; margin-top: 1vw; padding-left: 1vw; padding-right: 1vw; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; } .tevbody_inner .stickyline .stickybutton:hover { -webkit-transition: all 0.5s ease; transition: all 0.5s ease; color: limegreen; } .tevbody_inner .stickyline .datesort { position: absolute !important; top: 0; left: 30vw; } .tevbody_inner .tevflexwrapper { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -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; width: 100%; } .tevbody_inner .tevflexwrapper .spinner { position: absolute; top: 5.1vw; width: 100vw; height: 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; background-color: white; } .tevbody_inner .tevflexwrapper .spinner img { position: fixed; top: 45vh; max-height: 128px; max-width: 128px; } .tevbody_inner .tevflexwrapper .tevitems { border-radius: 5px; overflow: hidden; margin-top: 1.8vw; margin-bottom: 1.8vw; width: 21vw; height: 30.8vw; } .tevbody_inner .tevflexwrapper .tevitems .tevupper { background-color: green; color: white; font-weight: 100; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .tevbody_inner .tevflexwrapper .tevitems .tevupper h3 { font-weight: 100; font-size: 2.5vw; } .tevbody_inner .tevflexwrapper .tevitems .tevupper .eventdate { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: space-evenly; -ms-flex-pack: space-evenly; justify-content: space-evenly; width: 88%; height: 5.15vw; } .tevbody_inner .tevflexwrapper .tevitems .tevupper .eventdate i { font-size: 3.7vw; } .tevbody_inner .tevflexwrapper .tevitems .tevupper .eventdate p { font-size: 1.7vw; padding: 0; margin: 0; } .tevbody_inner .tevflexwrapper .tevitems .tevlower { padding: 1.5vw; text-align: center; background-color: lightgreen; } .tevbody_inner .tevflexwrapper .tevitems .tevlower .buttons { margin-top: 1.5vw; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-pack: distribute; justify-content: space-around; } .tevbody_inner .tevflexwrapper .tevitems .tevlower .buttons button { width: 6vw; height: 2.8vw; border-radius: 50px; border-style: none; background-color: green; color: white; font-size: 1.25vw; } .tevbody_inner .tevflexwrapper .tevitems .tevlower .buttons button:hover { background-color: darkgreen; } .tevbody_inner .tevflexwrapper .tevitems .tevlower .buttons button.aanmelden { width: 10vw; } .tevbody_inner .tevflexwrapper .tevitems .tevlower p { word-wrap: break-word; -webkit-hyphens: auto; -ms-hyphens: auto; hyphens: auto; font-size: 1.25vw; } .tevbody_inner .tevflexwrapper .tevitems .tevlower p img { max-width: 100%; } @media (max-width: 767px) { .tevbody_inner { max-height: 76vw; } .tevbody_inner .stickyline .stickybutton { width: 15vw; } .tevbody_inner .stickyline .datesort { position: absolute !important; top: 0; width: 10vw; } .tevbody_inner .stickybutton { position: -webkit-sticky; position: sticky; width: 20vw; min-height: 6vw; font-size: 3vw; margin-top: 2vw; } .tevbody_inner .tevflexwrapper .tevitems { margin-top: 3.6vw; margin-bottom: 3.6vw; width: 42vw; height: 61.6vw; } .tevbody_inner .tevflexwrapper .tevitems .tevupper h3 { font-weight: 100; font-size: 5vw; } .tevbody_inner .tevflexwrapper .tevitems .tevupper .eventdate { height: 10.3vw; } .tevbody_inner .tevflexwrapper .tevitems .tevupper .eventdate i { font-size: 7.4vw; } .tevbody_inner .tevflexwrapper .tevitems .tevupper .eventdate p { font-size: 3.4vw; } .tevbody_inner .tevflexwrapper .tevitems .tevlower { padding: 3vw; text-align: center; background-color: lightgreen; } .tevbody_inner .tevflexwrapper .tevitems .tevlower .buttons { margin-top: 3vw; } .tevbody_inner .tevflexwrapper .tevitems .tevlower .buttons button { width: 12vw; height: 5.6vw; font-size: 2.5vw; } .tevbody_inner .tevflexwrapper .tevitems .tevlower .buttons button.aanmelden { width: 20vw; } .tevbody_inner .tevflexwrapper .tevitems .tevlower p { font-size: 2.5vw; } } .tevbody_inner .tevflexwrapper .tevitems_extended { position: fixed; top: 0; margin-top: 0; margin-bottom: 0; width: 100%; height: 100vh; overflow-y: auto; background-color: lightgreen; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper { padding: 0.5vw; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: space-evenly; -ms-flex-pack: space-evenly; justify-content: space-evenly; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper h3 { font-weight: 100; font-size: 5vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper .eventdate { height: 100%; width: 35vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper .eventdate i { font-size: 5.4vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper .eventdate p { font-size: 3.4vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower { padding: 0vw; text-align: center; background-color: lightgreen; width: 100%; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .extendedcontainer { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .extendedcontainer .makeflex { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: space-evenly; -ms-flex-pack: space-evenly; justify-content: space-evenly; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .buttons { margin-top: 2vw; margin-bottom: 0; font-weight: 100; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .buttons button { width: 12vw; height: 5.6vw; font-size: 2.5vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .buttons button.aanmelden { width: 20vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower p { font-size: 2.5vw; margin-bottom: 1.85vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower p img { width: 100%; max-width: 45vw; max-height: 50vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower p.tev_p_extended { font-size: 1.5vw; max-width: 45%; overflow-y: auto; } @media (max-width: 768px) { .tevbody_inner .tevflexwrapper .tevitems_extended { position: fixed; top: 0; margin-top: 0; margin-bottom: 0; width: 100%; height: 100vh; overflow-y: auto; background-color: lightgreen; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper { padding: 0.5vw; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: space-evenly; -ms-flex-pack: space-evenly; justify-content: space-evenly; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper h3 { font-weight: 100; font-size: 5vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper .eventdate { height: 100%; width: 35vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper .eventdate i { font-size: 5.4vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper .eventdate p { font-size: 3.4vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower { padding: 0vw; text-align: center; background-color: lightgreen; width: 100%; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .extendedcontainer { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .extendedcontainer .makeflex { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: space-evenly; -ms-flex-pack: space-evenly; justify-content: space-evenly; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .buttons { margin-top: 2vw; margin-bottom: 0; font-weight: 100; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .buttons button { width: 24vw; height: 11.2vw; font-size: 5vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .buttons button.aanmelden { width: 40vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower p { font-size: 5vw; margin-bottom: 1.85vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower p img { width: 100%; max-width: 95vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower p.tev_p_extended { font-size: 3.5vw; max-width: 95%; margin-left: 2.5%; margin-top: 2%; overflow-y: auto; } } @media (width: 1024px) and (height: 1366px) { .tevbody_inner .tevflexwrapper .tevitems_extended { position: fixed; top: 0; margin-top: 0; margin-bottom: 0; width: 100%; height: 100vh; overflow-y: auto; background-color: lightgreen; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper { padding: 0.5vw; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: space-evenly; -ms-flex-pack: space-evenly; justify-content: space-evenly; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper h3 { font-weight: 100; font-size: 5vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper .eventdate { height: 100%; width: 35vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper .eventdate i { font-size: 5.4vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevupper .eventdate p { font-size: 3.4vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower { padding: 0vw; text-align: center; background-color: lightgreen; width: 100%; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .extendedcontainer { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .extendedcontainer .makeflex { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: space-evenly; -ms-flex-pack: space-evenly; justify-content: space-evenly; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .buttons { margin-top: 2vw; margin-bottom: 0; font-weight: 100; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .buttons button { width: 24vw; height: 11.2vw; font-size: 5vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower .buttons button.aanmelden { width: 40vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower p { font-size: 5vw; margin-bottom: 1.85vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower p img { width: 100%; max-width: 95vw; } .tevbody_inner .tevflexwrapper .tevitems_extended .tevlower p.tev_p_extended { font-size: 3.5vw; max-width: 95%; margin-left: 2.5%; margin-top: 2%; overflow-y: auto; } } .tevbody_outer { position: relative; } .Teventsanchor { position: absolute; top: -5vw; } .fixstickyline { top: 5vw !important; } .tevbody_show { overflow: visible; } .tempoverflow { overflow: hidden; } .temphide { display: none !important; } body > div.tevbody_outer > div.tevbody_inner > div.stickyline > button:nth-child(2) > a { color: white; text-decoration: none; } .blog-title { text-align: center; } .blog-description { text-align: center; margin-bottom: 2rem; font-family: robotoBold; color: #449D44; font-weight: bold; } .blog__container { margin-bottom: 2rem; display: none; } @media (max-width: 890px) { .blog__item__img-wrapper { display: none; } .blog__item__content-wrapper { max-width: 100%; -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; } .blog__item__content-wrapper__title { font-size: 1.3rem; } } .blog__item__content-wrapper__title { font-weight: unset; padding: 0; } .blog__item__content-wrapper__preview { font-family: robotoMedium; font-size: 1.2rem; } .blogheader { background-image: url(/assets/img/Blog/Foto_AWSklas201910.jpeg); background-position: center; background-size: cover; height: 70vh; } .blog-post { font-family: robotoRegular; } .blog-post__title { margin-top: 2rem; font-weight: none; font-family: payTone; } .blog-post__author a { font-family: robotoBold; font-weight: 600; color: #449D44; } .blog-post__wrapper__paragraph { font-family: robotoMedium; } .blog__button { color: #449D44; } .blog__button:hover { color: black; } /* ons team */ /* icon */ .fa { padding: 10px; width: 30px; text-align: center; text-decoration: none; margin: 0px 2px; border-radius: 50%; } .fa:hover { opacity: 0.7; } .fa-envelope { background: linear-gradient(45deg, black, transparent); color: white; font-size: 11px; } .fa-linkedin { background: #007bb5; color: white; font-size: 11px; } .fa-phone { background: magenta; color: white; font-size: 11px; } /* icon */ .container1 { position: relative; width: 90%; margin: 0 auto; } .image-team { opacity: 1; display: block; width: 100%; height: auto; -webkit-transition: .5s ease; transition: .5s ease; -webkit-backface-visibility: hidden; backface-visibility: hidden; } .middle { -webkit-transition: .5s ease; transition: .5s ease; opacity: 0; position: absolute; top: 65%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); text-align: center; } .middle2 { -webkit-transition: .5s ease; transition: .5s ease; opacity: 0; position: absolute; top: 13%; left: 26%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); /* background-color: rgb(114, 179, 231); */ } /* .container1:hover .image-team { opacity: 0.6; } */ .container1:hover .middle { opacity: 1; } .container1:hover .middle2 { opacity: 1; } .text { background-color: #37979e; color: white; font-size: 10px; padding: 10px 20px; margin-top: 126px; } .team { margin-top: 20px; } .text-uppercase { background-color: white; color: darkgray; } /* .icon-teams{ width: 20px; border-radius: 50%; border: 1px solid black; } */ .heading-title1 { background-color: lightgray; } /* end ons team */ #contact { margin-top: 4rem; } .footer { background-color: whitesmoke; text-align: center; font-family: robotoBold; font-weight: bold; } .footer__wrapper { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; list-style-type: none; font-size: 2.2rem; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .footer__wrapper__item { margin: 1rem; color: darkslategray; } .--linkedin { font-size: 2.2rem; background-color: whitesmoke; } .tg-homepage__social__container { width: 3rem; } .tg-homepage__social__wrapper { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; list-style-type: none; font-size: 2rem; width: -webkit-fit-content; width: -moz-fit-content; width: fit-content; background-color: white; opacity: 0.8; } .tg-homepage__social__wrapper__item { width: 3rem; background-color: white; color: darkslategray; } .tg-homepage__social__wrapper__item:hover { background-color: white; } @media (max-width: 1040px) { .tg-homepage__social__wrapper { font-size: 1.5rem; -webkit-box-pack: right; -ms-flex-pack: right; justify-content: right; } } .sponsorbalk { background-color: rgba(0, 0, 0, 0.2); } .sponsorbalk__wrapper { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; height: inherit; width: auto; } .--left { -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; } .sponsorbalk__wrapper__items { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-box-flex: 1; -ms-flex: 1; flex: 1; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; } .sponsorbalk__wrapper__items__img { height: 2rem; width: 4rem; margin-left: 1rem; } .sponsorbalk__wrapper__items__text { line-height: 0.5; } @media (max-width: 980px) { .sponsorbalk { display: none; } } .tg_partners_techconnect_title { font-size: 2rem; padding: 2rem; font-family: payTone; } .tg_readers_image { -webkit-box-shadow: 0 0 15px #0a0a0a; box-shadow: 0 0 15px #0a0a0a; } .tg_aws_partners { width: 15rem; } .tg_partners_techconnect { width: 15rem; } .tg_readers { display: -webkit-box; display: -ms-flexbox; display: flex; } .tg_arrow_wrapper { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .tg_readers_arrow { width: 100px; position: relative; left: 11rem; } @media (max-width: 613px) { .tg_readers_arrow { display: none; } .tg_partners_arrow_title { margin-top: 5rem; } .tg_readers { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .tg_partners_arrow_title { font-size: 1.1rem; font-weight: bold; } } @media (max-width: 414px) { .tg_partners_techconnect_title { font-size: 1.3rem; } } .titels-job { background: #fff; } /*# sourceMappingURL=styles.css.map */
0.328637
0.041462
* Foundation for Sites by ZURB * Version 6.6.1 * foundation.zurb.com * Licensed under MIT Open Source */ /* line 4, ../sass/machine-section.scss */ .machine-section { padding: 0 1.5em; background-color: #282f3a; color: white; height: 100vh; overflow-y: scroll; } /* line 11, ../sass/machine-section.scss */ .machine-section .seperator { border-top: 1px solid #aaa; margin-top: 2em; } /* line 16, ../sass/machine-section.scss */ .machine-section .variable-table tr { border-color: #aaa; } /* line 20, ../sass/machine-section.scss */ .machine-section .block-description { color: #aaa; } /* line 24, ../sass/machine-section.scss */ .machine-section h3 { color: white; } @media print, screen and (max-width: 63.99875em) { /* line 4, ../sass/machine-section.scss */ .machine-section { position: absolute; top: 0; left: 0; height: 100vh; width: 100vw; } } /* line 37, ../sass/machine-section.scss */ .ms-head { display: flex; padding-top: 1em; padding-bottom: 1em; border-bottom: 1px solid #aaa; } /* line 43, ../sass/machine-section.scss */ .ms-head .closeMsButton { color: white; width: 1em; } /* line 46, ../sass/machine-section.scss */ .ms-head .closeMsButton:hover { cursor: pointer; color: #ddd; } /* line 52, ../sass/machine-section.scss */ .ms-head .ms-heading { margin-top: 0; margin-left: 1em; } /* line 58, ../sass/machine-section.scss */ .ms-url { display: flex; margin-bottom: 1.5em; padding: 1em 0; border-bottom: 1px solid #aaa; font-family: monospace; font-size: 1.2em; } /* line 67, ../sass/machine-section.scss */ .ms-url .url { margin-top: 0; margin-bottom: 0; margin-left: 1.5em; padding-top: .2em; } /* line 73, ../sass/machine-section.scss */ .ms-url .url .url-action { font-weight: bold; } /* line 77, ../sass/machine-section.scss */ .ms-url .url .url-parameter { font-weight: bold; color: #E87E04; } /* line 87, ../sass/machine-section.scss */ .machine-section .attributes tbody, .machine-section .attributes tr, .machine-section .parameters tbody, .machine-section .parameters tr { background-color: transparent; } /* line 92, ../sass/machine-section.scss */ .hide { display: none; } /* line 96, ../sass/machine-section.scss */ .response .heading { display: flex; align-items: center; } /* line 100, ../sass/machine-section.scss */ .response .heading .message-code { margin-left: 2em; } /* line 105, ../sass/machine-section.scss */ .message-code { font-family: monospace; font-size: 1.2em; } /* line 109, ../sass/machine-section.scss */ .message-code .code { background-color: white; padding: .3em .5em; color: white; font-weight: bold; } /* line 117, ../sass/machine-section.scss */ .message-code.information .code { background-color: #95A5A6; } /* line 120, ../sass/machine-section.scss */ .message-code.information .status { color: #95A5A6; } /* line 126, ../sass/machine-section.scss */ .message-code.success .code { background-color: #2baf3b; } /* line 129, ../sass/machine-section.scss */ .message-code.success .status { color: #2baf3b; } /* line 135, ../sass/machine-section.scss */ .message-code.redirect .code { background-color: #F7CA18; } /* line 138, ../sass/machine-section.scss */ .message-code.redirect .status { color: #F7CA18; } /* line 144, ../sass/machine-section.scss */ .message-code.client-error .code { background-color: #D91E18; } /* line 147, ../sass/machine-section.scss */ .message-code.client-error .status { color: #D91E18; } /* line 153, ../sass/machine-section.scss */ .message-code.server-error .code { background-color: #E87E04; } /* line 156, ../sass/machine-section.scss */ .message-code.server-error .status { color: #E87E04; } /* line 162, ../sass/machine-section.scss */ .json { font-family: monospace; font-size: 1.1em; padding: 0 .5em; } /* line 167, ../sass/machine-section.scss */ .json .text { color: #b1bdbd; } /* line 171, ../sass/machine-section.scss */ .json .key { color: #947CB0; } /* line 175, ../sass/machine-section.scss */ .json .nr { color: #F7CA18; } /*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */ /* line 10, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ html { line-height: 1.15; -webkit-text-size-adjust: 100%; } /* line 20, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ body { margin: 0; } /* line 27, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ h1 { font-size: 2em; margin: 0.67em 0; } /* line 38, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ hr { box-sizing: content-box; height: 0; overflow: visible; } /* line 47, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ pre { font-family: monospace, monospace; font-size: 1em; } /* line 57, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ a { background-color: transparent; } /* line 64, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ abbr[title] { border-bottom: none; text-decoration: underline; text-decoration: underline dotted; } /* line 72, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ b, strong { font-weight: bolder; } /* line 80, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ code, kbd, samp { font-family: monospace, monospace; font-size: 1em; } /* line 89, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ small { font-size: 80%; } /* line 96, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } /* line 104, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ sub { bottom: -0.25em; } /* line 108, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ sup { top: -0.5em; } /* line 117, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ img { border-style: none; } /* line 127, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ button, input, optgroup, select, textarea { font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0; } /* line 141, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ button, input { overflow: visible; } /* line 149, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ button, select { text-transform: none; } /* line 156, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ button, [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; } /* line 165, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { border-style: none; padding: 0; } /* line 175, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring { outline: 1px dotted ButtonText; } /* line 184, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ fieldset { padding: 0.35em 0.75em 0.625em; } /* line 193, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ legend { box-sizing: border-box; color: inherit; display: table; max-width: 100%; padding: 0; white-space: normal; } /* line 204, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ progress { vertical-align: baseline; } /* line 210, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ textarea { overflow: auto; } /* line 217, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ [type="checkbox"], [type="radio"] { box-sizing: border-box; padding: 0; } /* line 225, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ [type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; } /* line 233, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ [type="search"] { -webkit-appearance: textfield; outline-offset: -2px; } /* line 240, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ [type="search"]::-webkit-search-decoration { -webkit-appearance: none; } /* line 247, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ ::-webkit-file-upload-button { -webkit-appearance: button; font: inherit; } /* line 257, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ details { display: block; } /* line 263, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ summary { display: list-item; } /* line 272, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ template { display: none; } /* line 278, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ [hidden] { display: none; } /* line 140, ../node_modules/foundation-sites/scss/_global.scss */ .foundation-mq { font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em"; } /* line 144, ../node_modules/foundation-sites/scss/_global.scss */ html { box-sizing: border-box; font-size: 100%; } /* line 150, ../node_modules/foundation-sites/scss/_global.scss */ *, *::before, *::after { box-sizing: inherit; } /* line 157, ../node_modules/foundation-sites/scss/_global.scss */ body { margin: 0; padding: 0; background: #fefefe; font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; font-weight: normal; line-height: 1.5; color: #0a0a0a; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* line 174, ../node_modules/foundation-sites/scss/_global.scss */ img { display: inline-block; vertical-align: middle; max-width: 100%; height: auto; -ms-interpolation-mode: bicubic; } /* line 186, ../node_modules/foundation-sites/scss/_global.scss */ textarea { height: auto; min-height: 50px; border-radius: 0; } /* line 193, ../node_modules/foundation-sites/scss/_global.scss */ select { box-sizing: border-box; width: 100%; border-radius: 0; } /* line 203, ../node_modules/foundation-sites/scss/_global.scss */ .map_canvas img, .map_canvas embed, .map_canvas object, .mqa-display img, .mqa-display embed, .mqa-display object { max-width: none !important; } /* line 211, ../node_modules/foundation-sites/scss/_global.scss */ button { padding: 0; appearance: none; border: 0; border-radius: 0; background: transparent; line-height: 1; cursor: auto; } /* line 202, ../node_modules/foundation-sites/scss/util/_mixins.scss */ [data-whatinput='mouse'] button { outline: 0; } /* line 223, ../node_modules/foundation-sites/scss/_global.scss */ pre { overflow: auto; } /* line 228, ../node_modules/foundation-sites/scss/_global.scss */ button, input, optgroup, select, textarea { font-family: inherit; } /* line 237, ../node_modules/foundation-sites/scss/_global.scss */ .is-visible { display: block !important; } /* line 241, ../node_modules/foundation-sites/scss/_global.scss */ .is-hidden { display: none !important; } /* line 13, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-container { padding-right: 0.625rem; padding-left: 0.625rem; max-width: 75rem; margin-left: auto; margin-right: auto; } @media print, screen and (min-width: 40em) { /* line 13, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-container { padding-right: 0.9375rem; padding-left: 0.9375rem; } } /* line 16, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-container.fluid { padding-right: 0.625rem; padding-left: 0.625rem; max-width: 100%; margin-left: auto; margin-right: auto; } @media print, screen and (min-width: 40em) { /* line 16, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-container.fluid { padding-right: 0.9375rem; padding-left: 0.9375rem; } } /* line 20, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-container.full { padding-right: 0; padding-left: 0; max-width: 100%; margin-left: auto; margin-right: auto; } /* line 26, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x { display: flex; flex-flow: row wrap; } /* line 30, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .cell { flex: 0 0 auto; min-height: 0px; min-width: 0px; width: 100%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .cell.auto { flex: 1 1 0px; } /* line 37, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .cell.shrink { flex: 0 0 auto; } /* line 43, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .auto { width: auto; } /* line 47, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .shrink { width: auto; } /* line 63, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .small-shrink, .grid-x > .small-full, .grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 { flex-basis: auto; } @media print, screen and (min-width: 40em) { /* line 63, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-shrink, .grid-x > .medium-full, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 { flex-basis: auto; } } @media print, screen and (min-width: 64em) { /* line 63, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-shrink, .grid-x > .large-full, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 { flex-basis: auto; } } /* line 77, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 { flex: 0 0 auto; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .small-1 { width: 8.33333%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .small-2 { width: 16.66667%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .small-3 { width: 25%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .small-4 { width: 33.33333%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .small-5 { width: 41.66667%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .small-6 { width: 50%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .small-7 { width: 58.33333%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .small-8 { width: 66.66667%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .small-9 { width: 75%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .small-10 { width: 83.33333%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .small-11 { width: 91.66667%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .small-12 { width: 100%; } @media print, screen and (min-width: 40em) { /* line 72, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-auto { flex: 1 1 0px; width: auto; } /* line 77, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-shrink, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 { flex: 0 0 auto; } /* line 83, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-shrink { width: auto; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-1 { width: 8.33333%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-2 { width: 16.66667%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-3 { width: 25%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-4 { width: 33.33333%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-5 { width: 41.66667%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-6 { width: 50%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-7 { width: 58.33333%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-8 { width: 66.66667%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-9 { width: 75%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-10 { width: 83.33333%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-11 { width: 91.66667%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-12 { width: 100%; } } @media print, screen and (min-width: 64em) { /* line 72, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-auto { flex: 1 1 0px; width: auto; } /* line 77, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-shrink, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 { flex: 0 0 auto; } /* line 83, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-shrink { width: auto; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-1 { width: 8.33333%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-2 { width: 16.66667%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-3 { width: 25%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-4 { width: 33.33333%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-5 { width: 41.66667%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-6 { width: 50%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-7 { width: 58.33333%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-8 { width: 66.66667%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-9 { width: 75%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-10 { width: 83.33333%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-11 { width: 91.66667%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-12 { width: 100%; } } /* line 100, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x:not(.grid-x) > .cell { width: auto; } /* line 105, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y:not(.grid-y) > .cell { height: auto; } /* line 136, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x { margin-left: -0.625rem; margin-right: -0.625rem; } @media print, screen and (min-width: 40em) { /* line 136, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x { margin-left: -0.9375rem; margin-right: -0.9375rem; } } /* line 140, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .cell { width: calc(100% - 1.25rem); margin-left: 0.625rem; margin-right: 0.625rem; } @media print, screen and (min-width: 40em) { /* line 147, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .cell { width: calc(100% - 1.875rem); margin-left: 0.9375rem; margin-right: 0.9375rem; } } /* line 112, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .auto { width: auto; } /* line 116, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .shrink { width: auto; } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-1 { width: calc(8.33333% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-2 { width: calc(16.66667% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-3 { width: calc(25% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-4 { width: calc(33.33333% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-5 { width: calc(41.66667% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-6 { width: calc(50% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-7 { width: calc(58.33333% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-8 { width: calc(66.66667% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-9 { width: calc(75% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-10 { width: calc(83.33333% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-11 { width: calc(91.66667% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-12 { width: calc(100% - 1.25rem); } @media print, screen and (min-width: 40em) { /* line 112, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .auto { width: auto; } /* line 116, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .shrink { width: auto; } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-1 { width: calc(8.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-2 { width: calc(16.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-3 { width: calc(25% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-4 { width: calc(33.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-5 { width: calc(41.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-6 { width: calc(50% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-7 { width: calc(58.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-8 { width: calc(66.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-9 { width: calc(75% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-10 { width: calc(83.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-11 { width: calc(91.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-12 { width: calc(100% - 1.875rem); } /* line 112, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-auto { width: auto; } /* line 116, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-shrink { width: auto; } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-1 { width: calc(8.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-2 { width: calc(16.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-3 { width: calc(25% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-4 { width: calc(33.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-5 { width: calc(41.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-6 { width: calc(50% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-7 { width: calc(58.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-8 { width: calc(66.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-9 { width: calc(75% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-10 { width: calc(83.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-11 { width: calc(91.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-12 { width: calc(100% - 1.875rem); } } @media print, screen and (min-width: 64em) { /* line 112, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-auto { width: auto; } /* line 116, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-shrink { width: auto; } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-1 { width: calc(8.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-2 { width: calc(16.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-3 { width: calc(25% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-4 { width: calc(33.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-5 { width: calc(41.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-6 { width: calc(50% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-7 { width: calc(58.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-8 { width: calc(66.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-9 { width: calc(75% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-10 { width: calc(83.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-11 { width: calc(91.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-12 { width: calc(100% - 1.875rem); } } /* line 175, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-padding-x .grid-padding-x { margin-right: -0.625rem; margin-left: -0.625rem; } @media print, screen and (min-width: 40em) { /* line 175, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-padding-x .grid-padding-x { margin-right: -0.9375rem; margin-left: -0.9375rem; } } /* line 181, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-container:not(.full) > .grid-padding-x { margin-right: -0.625rem; margin-left: -0.625rem; } @media print, screen and (min-width: 40em) { /* line 181, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-container:not(.full) > .grid-padding-x { margin-right: -0.9375rem; margin-left: -0.9375rem; } } /* line 186, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-padding-x > .cell { padding-right: 0.625rem; padding-left: 0.625rem; } @media print, screen and (min-width: 40em) { /* line 186, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-padding-x > .cell { padding-right: 0.9375rem; padding-left: 0.9375rem; } } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .small-up-1 > .cell { width: 100%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .small-up-2 > .cell { width: 50%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .small-up-3 > .cell { width: 33.33333%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .small-up-4 > .cell { width: 25%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .small-up-5 > .cell { width: 20%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .small-up-6 > .cell { width: 16.66667%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .small-up-7 > .cell { width: 14.28571%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .small-up-8 > .cell { width: 12.5%; } @media print, screen and (min-width: 40em) { /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .medium-up-1 > .cell { width: 100%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .medium-up-2 > .cell { width: 50%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .medium-up-3 > .cell { width: 33.33333%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .medium-up-4 > .cell { width: 25%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .medium-up-5 > .cell { width: 20%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .medium-up-6 > .cell { width: 16.66667%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .medium-up-7 > .cell { width: 14.28571%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .medium-up-8 > .cell { width: 12.5%; } } @media print, screen and (min-width: 64em) { /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .large-up-1 > .cell { width: 100%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .large-up-2 > .cell { width: 50%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .large-up-3 > .cell { width: 33.33333%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .large-up-4 > .cell { width: 25%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .large-up-5 > .cell { width: 20%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .large-up-6 > .cell { width: 16.66667%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .large-up-7 > .cell { width: 14.28571%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .large-up-8 > .cell { width: 12.5%; } } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-1 > .cell { width: calc(100% - 1.25rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-2 > .cell { width: calc(50% - 1.25rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-3 > .cell { width: calc(33.33333% - 1.25rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-4 > .cell { width: calc(25% - 1.25rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-5 > .cell { width: calc(20% - 1.25rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-6 > .cell { width: calc(16.66667% - 1.25rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-7 > .cell { width: calc(14.28571% - 1.25rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-8 > .cell { width: calc(12.5% - 1.25rem); } @media print, screen and (min-width: 40em) { /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-1 > .cell { width: calc(100% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-2 > .cell { width: calc(50% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-3 > .cell { width: calc(33.33333% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-4 > .cell { width: calc(25% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-5 > .cell { width: calc(20% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-6 > .cell { width: calc(16.66667% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-7 > .cell { width: calc(14.28571% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-8 > .cell { width: calc(12.5% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.medium-up-1 > .cell { width: calc(100% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.medium-up-2 > .cell { width: calc(50% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.medium-up-3 > .cell { width: calc(33.33333% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.medium-up-4 > .cell { width: calc(25% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.medium-up-5 > .cell { width: calc(20% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.medium-up-6 > .cell { width: calc(16.66667% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.medium-up-7 > .cell { width: calc(14.28571% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.medium-up-8 > .cell { width: calc(12.5% - 1.875rem); } } @media print, screen and (min-width: 64em) { /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.large-up-1 > .cell { width: calc(100% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.large-up-2 > .cell { width: calc(50% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.large-up-3 > .cell { width: calc(33.33333% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.large-up-4 > .cell { width: calc(25% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.large-up-5 > .cell { width: calc(20% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.large-up-6 > .cell { width: calc(16.66667% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.large-up-7 > .cell { width: calc(14.28571% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.large-up-8 > .cell { width: calc(12.5% - 1.875rem); } } /* line 232, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .small-margin-collapse { margin-right: 0; margin-left: 0; } /* line 29, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .cell { margin-right: 0; margin-left: 0; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .small-1 { width: 8.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .small-2 { width: 16.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .small-3 { width: 25%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .small-4 { width: 33.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .small-5 { width: 41.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .small-6 { width: 50%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .small-7 { width: 58.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .small-8 { width: 66.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .small-9 { width: 75%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .small-10 { width: 83.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .small-11 { width: 91.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .small-12 { width: 100%; } @media print, screen and (min-width: 40em) { /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .medium-1 { width: 8.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .medium-2 { width: 16.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .medium-3 { width: 25%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .medium-4 { width: 33.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .medium-5 { width: 41.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .medium-6 { width: 50%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .medium-7 { width: 58.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .medium-8 { width: 66.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .medium-9 { width: 75%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .medium-10 { width: 83.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .medium-11 { width: 91.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .medium-12 { width: 100%; } } @media print, screen and (min-width: 64em) { /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .large-1 { width: 8.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .large-2 { width: 16.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .large-3 { width: 25%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .large-4 { width: 33.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .large-5 { width: 41.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .large-6 { width: 50%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .large-7 { width: 58.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .large-8 { width: 66.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .large-9 { width: 75%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .large-10 { width: 83.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .large-11 { width: 91.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .large-12 { width: 100%; } } /* line 238, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .small-padding-collapse { margin-right: 0; margin-left: 0; } /* line 68, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-padding-collapse > .cell { padding-right: 0; padding-left: 0; } @media print, screen and (min-width: 40em) { /* line 232, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-margin-collapse { margin-right: 0; margin-left: 0; } /* line 29, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .cell { margin-right: 0; margin-left: 0; } } @media print, screen and (min-width: 40em) { /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .small-1 { width: 8.33333%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .small-2 { width: 16.66667%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .small-3 { width: 25%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .small-4 { width: 33.33333%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .small-5 { width: 41.66667%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .small-6 { width: 50%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .small-7 { width: 58.33333%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .small-8 { width: 66.66667%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .small-9 { width: 75%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .small-10 { width: 83.33333%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .small-11 { width: 91.66667%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .small-12 { width: 100%; } } @media print, screen and (min-width: 40em) { /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .medium-1 { width: 8.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .medium-2 { width: 16.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .medium-3 { width: 25%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .medium-4 { width: 33.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .medium-5 { width: 41.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .medium-6 { width: 50%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .medium-7 { width: 58.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .medium-8 { width: 66.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .medium-9 { width: 75%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .medium-10 { width: 83.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .medium-11 { width: 91.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .medium-12 { width: 100%; } } @media print, screen and (min-width: 64em) { /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .large-1 { width: 8.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .large-2 { width: 16.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .large-3 { width: 25%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .large-4 { width: 33.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .large-5 { width: 41.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .large-6 { width: 50%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .large-7 { width: 58.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .large-8 { width: 66.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .large-9 { width: 75%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .large-10 { width: 83.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .large-11 { width: 91.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .large-12 { width: 100%; } } @media print, screen and (min-width: 40em) { /* line 238, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-padding-collapse { margin-right: 0; margin-left: 0; } /* line 68, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-padding-collapse > .cell { padding-right: 0; padding-left: 0; } } @media print, screen and (min-width: 64em) { /* line 232, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-margin-collapse { margin-right: 0; margin-left: 0; } /* line 29, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .cell { margin-right: 0; margin-left: 0; } } @media print, screen and (min-width: 64em) { /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .small-1 { width: 8.33333%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .small-2 { width: 16.66667%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .small-3 { width: 25%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .small-4 { width: 33.33333%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .small-5 { width: 41.66667%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .small-6 { width: 50%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .small-7 { width: 58.33333%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .small-8 { width: 66.66667%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .small-9 { width: 75%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .small-10 { width: 83.33333%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .small-11 { width: 91.66667%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .small-12 { width: 100%; } } @media print, screen and (min-width: 64em) { /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .medium-1 { width: 8.33333%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .medium-2 { width: 16.66667%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .medium-3 { width: 25%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .medium-4 { width: 33.33333%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .medium-5 { width: 41.66667%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .medium-6 { width: 50%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .medium-7 { width: 58.33333%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .medium-8 { width: 66.66667%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .medium-9 { width: 75%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .medium-10 { width: 83.33333%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .medium-11 { width: 91.66667%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .medium-12 { width: 100%; } } @media print, screen and (min-width: 64em) { /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .large-1 { width: 8.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .large-2 { width: 16.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .large-3 { width: 25%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .large-4 { width: 33.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .large-5 { width: 41.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .large-6 { width: 50%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .large-7 { width: 58.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .large-8 { width: 66.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .large-9 { width: 75%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .large-10 { width: 83.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .large-11 { width: 91.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .large-12 { width: 100%; } } @media print, screen and (min-width: 64em) { /* line 238, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-padding-collapse { margin-right: 0; margin-left: 0; } /* line 68, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-padding-collapse > .cell { padding-right: 0; padding-left: 0; } } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .small-offset-0 { margin-left: 0%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-offset-0 { margin-left: calc(0% + 0.625rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .small-offset-1 { margin-left: 8.33333%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-offset-1 { margin-left: calc(8.33333% + 0.625rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .small-offset-2 { margin-left: 16.66667%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-offset-2 { margin-left: calc(16.66667% + 0.625rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .small-offset-3 { margin-left: 25%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-offset-3 { margin-left: calc(25% + 0.625rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .small-offset-4 { margin-left: 33.33333%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-offset-4 { margin-left: calc(33.33333% + 0.625rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .small-offset-5 { margin-left: 41.66667%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-offset-5 { margin-left: calc(41.66667% + 0.625rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .small-offset-6 { margin-left: 50%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-offset-6 { margin-left: calc(50% + 0.625rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .small-offset-7 { margin-left: 58.33333%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-offset-7 { margin-left: calc(58.33333% + 0.625rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .small-offset-8 { margin-left: 66.66667%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-offset-8 { margin-left: calc(66.66667% + 0.625rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .small-offset-9 { margin-left: 75%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-offset-9 { margin-left: calc(75% + 0.625rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .small-offset-10 { margin-left: 83.33333%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-offset-10 { margin-left: calc(83.33333% + 0.625rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .small-offset-11 { margin-left: 91.66667%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-offset-11 { margin-left: calc(91.66667% + 0.625rem); } @media print, screen and (min-width: 40em) { /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-offset-0 { margin-left: 0%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-offset-0 { margin-left: calc(0% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-offset-1 { margin-left: 8.33333%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-offset-1 { margin-left: calc(8.33333% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-offset-2 { margin-left: 16.66667%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-offset-2 { margin-left: calc(16.66667% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-offset-3 { margin-left: 25%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-offset-3 { margin-left: calc(25% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-offset-4 { margin-left: 33.33333%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-offset-4 { margin-left: calc(33.33333% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-offset-5 { margin-left: 41.66667%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-offset-5 { margin-left: calc(41.66667% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-offset-6 { margin-left: 50%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-offset-6 { margin-left: calc(50% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-offset-7 { margin-left: 58.33333%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-offset-7 { margin-left: calc(58.33333% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-offset-8 { margin-left: 66.66667%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-offset-8 { margin-left: calc(66.66667% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-offset-9 { margin-left: 75%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-offset-9 { margin-left: calc(75% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-offset-10 { margin-left: 83.33333%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-offset-10 { margin-left: calc(83.33333% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-offset-11 { margin-left: 91.66667%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-offset-11 { margin-left: calc(91.66667% + 0.9375rem); } } @media print, screen and (min-width: 64em) { /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-offset-0 { margin-left: 0%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-offset-0 { margin-left: calc(0% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-offset-1 { margin-left: 8.33333%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-offset-1 { margin-left: calc(8.33333% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-offset-2 { margin-left: 16.66667%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-offset-2 { margin-left: calc(16.66667% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-offset-3 { margin-left: 25%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-offset-3 { margin-left: calc(25% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-offset-4 { margin-left: 33.33333%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-offset-4 { margin-left: calc(33.33333% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-offset-5 { margin-left: 41.66667%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-offset-5 { margin-left: calc(41.66667% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-offset-6 { margin-left: 50%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-offset-6 { margin-left: calc(50% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-offset-7 { margin-left: 58.33333%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-offset-7 { margin-left: calc(58.33333% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-offset-8 { margin-left: 66.66667%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-offset-8 { margin-left: calc(66.66667% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-offset-9 { margin-left: 75%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-offset-9 { margin-left: calc(75% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-offset-10 { margin-left: 83.33333%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-offset-10 { margin-left: calc(83.33333% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-offset-11 { margin-left: 91.66667%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-offset-11 { margin-left: calc(91.66667% + 0.9375rem); } } /* line 274, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y { display: flex; flex-flow: column nowrap; } /* line 278, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .cell { height: auto; max-height: none; } /* line 282, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .auto { height: auto; } /* line 286, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .shrink { height: auto; } /* line 300, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .small-shrink, .grid-y > .small-full, .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 { flex-basis: auto; } @media print, screen and (min-width: 40em) { /* line 300, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-shrink, .grid-y > .medium-full, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 { flex-basis: auto; } } @media print, screen and (min-width: 64em) { /* line 300, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-shrink, .grid-y > .large-full, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 { flex-basis: auto; } } /* line 313, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 { flex: 0 0 auto; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .small-1 { height: 8.33333%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .small-2 { height: 16.66667%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .small-3 { height: 25%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .small-4 { height: 33.33333%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .small-5 { height: 41.66667%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .small-6 { height: 50%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .small-7 { height: 58.33333%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .small-8 { height: 66.66667%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .small-9 { height: 75%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .small-10 { height: 83.33333%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .small-11 { height: 91.66667%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .small-12 { height: 100%; } @media print, screen and (min-width: 40em) { /* line 308, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-auto { flex: 1 1 0px; height: auto; } /* line 313, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-shrink, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 { flex: 0 0 auto; } /* line 319, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-shrink { height: auto; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-1 { height: 8.33333%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-2 { height: 16.66667%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-3 { height: 25%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-4 { height: 33.33333%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-5 { height: 41.66667%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-6 { height: 50%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-7 { height: 58.33333%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-8 { height: 66.66667%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-9 { height: 75%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-10 { height: 83.33333%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-11 { height: 91.66667%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-12 { height: 100%; } } @media print, screen and (min-width: 64em) { /* line 308, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-auto { flex: 1 1 0px; height: auto; } /* line 313, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-shrink, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 { flex: 0 0 auto; } /* line 319, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-shrink { height: auto; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-1 { height: 8.33333%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-2 { height: 16.66667%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-3 { height: 25%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-4 { height: 33.33333%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-5 { height: 41.66667%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-6 { height: 50%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-7 { height: 58.33333%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-8 { height: 66.66667%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-9 { height: 75%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-10 { height: 83.33333%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-11 { height: 91.66667%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-12 { height: 100%; } } /* line 340, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-padding-y .grid-padding-y { margin-top: -0.625rem; margin-bottom: -0.625rem; } @media print, screen and (min-width: 40em) { /* line 340, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-padding-y .grid-padding-y { margin-top: -0.9375rem; margin-bottom: -0.9375rem; } } /* line 345, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-padding-y > .cell { padding-top: 0.625rem; padding-bottom: 0.625rem; } @media print, screen and (min-width: 40em) { /* line 345, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-padding-y > .cell { padding-top: 0.9375rem; padding-bottom: 0.9375rem; } } /* line 136, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y { margin-top: -0.625rem; margin-bottom: -0.625rem; } @media print, screen and (min-width: 40em) { /* line 136, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y { margin-top: -0.9375rem; margin-bottom: -0.9375rem; } } /* line 140, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .cell { height: calc(100% - 1.25rem); margin-top: 0.625rem; margin-bottom: 0.625rem; } @media print, screen and (min-width: 40em) { /* line 147, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .cell { height: calc(100% - 1.875rem); margin-top: 0.9375rem; margin-bottom: 0.9375rem; } } /* line 112, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .auto { height: auto; } /* line 116, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .shrink { height: auto; } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-1 { height: calc(8.33333% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-2 { height: calc(16.66667% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-3 { height: calc(25% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-4 { height: calc(33.33333% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-5 { height: calc(41.66667% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-6 { height: calc(50% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-7 { height: calc(58.33333% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-8 { height: calc(66.66667% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-9 { height: calc(75% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-10 { height: calc(83.33333% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-11 { height: calc(91.66667% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-12 { height: calc(100% - 1.25rem); } @media print, screen and (min-width: 40em) { /* line 112, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .auto { height: auto; } /* line 116, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .shrink { height: auto; } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-1 { height: calc(8.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-2 { height: calc(16.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-3 { height: calc(25% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-4 { height: calc(33.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-5 { height: calc(41.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-6 { height: calc(50% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-7 { height: calc(58.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-8 { height: calc(66.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-9 { height: calc(75% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-10 { height: calc(83.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-11 { height: calc(91.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-12 { height: calc(100% - 1.875rem); } /* line 112, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-auto { height: auto; } /* line 116, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-shrink { height: auto; } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-1 { height: calc(8.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-2 { height: calc(16.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-3 { height: calc(25% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-4 { height: calc(33.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-5 { height: calc(41.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-6 { height: calc(50% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-7 { height: calc(58.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-8 { height: calc(66.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-9 { height: calc(75% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-10 { height: calc(83.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-11 { height: calc(91.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-12 { height: calc(100% - 1.875rem); } } @media print, screen and (min-width: 64em) { /* line 112, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-auto { height: auto; } /* line 116, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-shrink { height: auto; } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-1 { height: calc(8.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-2 { height: calc(16.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-3 { height: calc(25% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-4 { height: calc(33.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-5 { height: calc(41.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-6 { height: calc(50% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-7 { height: calc(58.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-8 { height: calc(66.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-9 { height: calc(75% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-10 { height: calc(83.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-11 { height: calc(91.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-12 { height: calc(100% - 1.875rem); } } /* line 359, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-frame { overflow: hidden; position: relative; flex-wrap: nowrap; align-items: stretch; width: 100vw; } /* line 363, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .cell .grid-frame { width: 100%; } /* line 367, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .cell-block { overflow-x: auto; max-width: 100%; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar; } /* line 371, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .cell-block-y { overflow-y: auto; max-height: 100%; min-height: 100%; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar; } /* line 376, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .cell-block-container { display: flex; flex-direction: column; max-height: 100%; } /* line 82, ../node_modules/foundation-sites/scss/xy-grid/_frame.scss */ .cell-block-container > .grid-x { max-height: 100%; flex-wrap: nowrap; } @media print, screen and (min-width: 40em) { /* line 383, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-grid-frame { overflow: hidden; position: relative; flex-wrap: nowrap; align-items: stretch; width: 100vw; } /* line 387, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .cell .medium-grid-frame { width: 100%; } /* line 391, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-cell-block { overflow-x: auto; max-width: 100%; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar; } /* line 395, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-cell-block-container { display: flex; flex-direction: column; max-height: 100%; } /* line 82, ../node_modules/foundation-sites/scss/xy-grid/_frame.scss */ .medium-cell-block-container > .grid-x { max-height: 100%; flex-wrap: nowrap; } /* line 399, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-cell-block-y { overflow-y: auto; max-height: 100%; min-height: 100%; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar; } } @media print, screen and (min-width: 64em) { /* line 383, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-grid-frame { overflow: hidden; position: relative; flex-wrap: nowrap; align-items: stretch; width: 100vw; } /* line 387, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .cell .large-grid-frame { width: 100%; } /* line 391, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-cell-block { overflow-x: auto; max-width: 100%; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar; } /* line 395, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-cell-block-container { display: flex; flex-direction: column; max-height: 100%; } /* line 82, ../node_modules/foundation-sites/scss/xy-grid/_frame.scss */ .large-cell-block-container > .grid-x { max-height: 100%; flex-wrap: nowrap; } /* line 399, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-cell-block-y { overflow-y: auto; max-height: 100%; min-height: 100%; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar; } } /* line 406, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y.grid-frame { width: auto; overflow: hidden; position: relative; flex-wrap: nowrap; align-items: stretch; height: 100vh; } @media print, screen and (min-width: 40em) { /* line 412, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y.medium-grid-frame { width: auto; overflow: hidden; position: relative; flex-wrap: nowrap; align-items: stretch; height: 100vh; } } @media print, screen and (min-width: 64em) { /* line 412, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y.large-grid-frame { width: auto; overflow: hidden; position: relative; flex-wrap: nowrap; align-items: stretch; height: 100vh; } } /* line 420, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .cell .grid-y.grid-frame { height: 100%; } @media print, screen and (min-width: 40em) { /* line 424, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .cell .grid-y.medium-grid-frame { height: 100%; } } @media print, screen and (min-width: 64em) { /* line 424, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .cell .grid-y.large-grid-frame { height: 100%; } } /* line 136, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y { margin-top: -0.625rem; margin-bottom: -0.625rem; } @media print, screen and (min-width: 40em) { /* line 136, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y { margin-top: -0.9375rem; margin-bottom: -0.9375rem; } } /* line 140, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .cell { height: calc(100% - 1.25rem); margin-top: 0.625rem; margin-bottom: 0.625rem; } @media print, screen and (min-width: 40em) { /* line 147, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .cell { height: calc(100% - 1.875rem); margin-top: 0.9375rem; margin-bottom: 0.9375rem; } } /* line 112, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .auto { height: auto; } /* line 116, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .shrink { height: auto; } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-1 { height: calc(8.33333% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-2 { height: calc(16.66667% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-3 { height: calc(25% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-4 { height: calc(33.33333% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-5 { height: calc(41.66667% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-6 { height: calc(50% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-7 { height: calc(58.33333% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-8 { height: calc(66.66667% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-9 { height: calc(75% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-10 { height: calc(83.33333% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-11 { height: calc(91.66667% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-12 { height: calc(100% - 1.25rem); } @media print, screen and (min-width: 40em) { /* line 112, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .auto { height: auto; } /* line 116, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .shrink { height: auto; } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-1 { height: calc(8.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-2 { height: calc(16.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-3 { height: calc(25% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-4 { height: calc(33.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-5 { height: calc(41.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-6 { height: calc(50% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-7 { height: calc(58.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-8 { height: calc(66.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-9 { height: calc(75% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-10 { height: calc(83.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-11 { height: calc(91.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-12 { height: calc(100% - 1.875rem); } /* line 112, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-auto { height: auto; } /* line 116, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-shrink { height: auto; } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-1 { height: calc(8.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-2 { height: calc(16.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-3 { height: calc(25% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-4 { height: calc(33.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-5 { height: calc(41.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-6 { height: calc(50% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-7 { height: calc(58.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-8 { height: calc(66.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-9 { height: calc(75% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-10 { height: calc(83.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-11 { height: calc(91.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-12 { height: calc(100% - 1.875rem); } } @media print, screen and (min-width: 64em) { /* line 112, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-auto { height: auto; } /* line 116, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-shrink { height: auto; } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-1 { height: calc(8.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-2 { height: calc(16.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-3 { height: calc(25% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-4 { height: calc(33.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-5 { height: calc(41.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-6 { height: calc(50% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-7 { height: calc(58.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-8 { height: calc(66.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-9 { height: calc(75% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-10 { height: calc(83.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-11 { height: calc(91.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-12 { height: calc(100% - 1.875rem); } } /* line 432, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-frame.grid-margin-y { height: calc(100vh + 1.25rem); } @media print, screen and (min-width: 40em) { /* line 432, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-frame.grid-margin-y { height: calc(100vh + 1.875rem); } } @media print, screen and (min-width: 64em) { /* line 432, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-frame.grid-margin-y { height: calc(100vh + 1.875rem); } } @media print, screen and (min-width: 40em) { /* line 436, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y.medium-grid-frame { height: calc(100vh + 1.875rem); } } @media print, screen and (min-width: 64em) { /* line 436, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y.large-grid-frame { height: calc(100vh + 1.875rem); } } /* line 306, ../node_modules/foundation-sites/scss/components/_table.scss */ table { border-collapse: collapse; width: 100%; margin-bottom: 1rem; border-radius: 0; } /* line 111, ../node_modules/foundation-sites/scss/components/_table.scss */ thead, tbody, tfoot { border: 1px solid #f1f1f1; background-color: #fefefe; } /* line 119, ../node_modules/foundation-sites/scss/components/_table.scss */ caption { padding: 0.5rem 0.625rem 0.625rem; font-weight: bold; } /* line 125, ../node_modules/foundation-sites/scss/components/_table.scss */ thead { background: #f8f8f8; color: #0a0a0a; } /* line 131, ../node_modules/foundation-sites/scss/components/_table.scss */ tfoot { background: #f1f1f1; color: #0a0a0a; } /* line 140, ../node_modules/foundation-sites/scss/components/_table.scss */ thead tr, tfoot tr { background: transparent; } /* line 145, ../node_modules/foundation-sites/scss/components/_table.scss */ thead th, thead td, tfoot th, tfoot td { padding: 0.5rem 0.625rem 0.625rem; font-weight: bold; text-align: left; } /* line 155, ../node_modules/foundation-sites/scss/components/_table.scss */ tbody th, tbody td { padding: 0.5rem 0.625rem 0.625rem; } /* line 87, ../node_modules/foundation-sites/scss/components/_table.scss */ tbody tr:nth-child(even) { border-bottom: 0; background-color: #f1f1f1; } /* line 168, ../node_modules/foundation-sites/scss/components/_table.scss */ table.unstriped tbody { background-color: #fefefe; } /* line 103, ../node_modules/foundation-sites/scss/components/_table.scss */ table.unstriped tbody tr { border-bottom: 0; border-bottom: 1px solid #f1f1f1; background-color: #fefefe; } @media print, screen and (max-width: 63.99875em) { /* line 285, ../node_modules/foundation-sites/scss/components/_table.scss */ table.stack thead { display: none; } /* line 290, ../node_modules/foundation-sites/scss/components/_table.scss */ table.stack tfoot { display: none; } /* line 294, ../node_modules/foundation-sites/scss/components/_table.scss */ table.stack tr, table.stack th, table.stack td { display: block; } /* line 300, ../node_modules/foundation-sites/scss/components/_table.scss */ table.stack td { border-top: 0; } } /* line 316, ../node_modules/foundation-sites/scss/components/_table.scss */ table.scroll { display: block; width: 100%; overflow-x: auto; } /* line 222, ../node_modules/foundation-sites/scss/components/_table.scss */ table.hover thead tr:hover { background-color: #f3f3f3; } /* line 229, ../node_modules/foundation-sites/scss/components/_table.scss */ table.hover tfoot tr:hover { background-color: #ececec; } /* line 236, ../node_modules/foundation-sites/scss/components/_table.scss */ table.hover tbody tr:hover { background-color: #f9f9f9; } /* line 244, ../node_modules/foundation-sites/scss/components/_table.scss */ table.hover:not(.unstriped) tr:nth-of-type(even):hover { background-color: #ececec; } /* line 324, ../node_modules/foundation-sites/scss/components/_table.scss */ .table-scroll { overflow-x: auto; } /* line 361, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu { padding: 0; margin: 0; list-style: none; position: relative; display: flex; flex-wrap: wrap; } /* line 202, ../node_modules/foundation-sites/scss/util/_mixins.scss */ [data-whatinput='mouse'] .menu li { outline: 0; } /* line 72, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu a, .menu .button { line-height: 1; text-decoration: none; display: block; padding: 0.7rem 1rem; } /* line 81, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu input, .menu select, .menu a, .menu button { margin-bottom: 0; } /* line 88, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu input { display: inline-block; } /* line 365, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu, .menu.horizontal { flex-wrap: wrap; flex-direction: row; } /* line 370, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.vertical { flex-wrap: nowrap; flex-direction: column; } /* line 96, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.expanded li { flex: 1 1 0px; } /* line 380, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.simple { align-items: center; } /* line 214, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.simple li + li { margin-left: 1rem; } /* line 218, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.simple a { padding: 0; } @media print, screen and (min-width: 40em) { /* line 386, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.medium-horizontal { flex-wrap: wrap; flex-direction: row; } /* line 390, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.medium-vertical { flex-wrap: nowrap; flex-direction: column; } /* line 96, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.medium-expanded li { flex: 1 1 0px; } /* line 96, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.medium-simple li { flex: 1 1 0px; } } @media print, screen and (min-width: 64em) { /* line 386, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.large-horizontal { flex-wrap: wrap; flex-direction: row; } /* line 390, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.large-vertical { flex-wrap: nowrap; flex-direction: column; } /* line 96, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.large-expanded li { flex: 1 1 0px; } /* line 96, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.large-simple li { flex: 1 1 0px; } } /* line 404, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.nested { margin-right: 0; margin-left: 1rem; } /* line 244, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.icons a { display: flex; } /* line 244, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.icon-top a, .menu.icon-right a, .menu.icon-bottom a, .menu.icon-left a { display: flex; } /* line 264, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.icon-left li a { flex-flow: row nowrap; } /* line 269, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.icon-left li a img, .menu.icon-left li a i, .menu.icon-left li a svg { margin-right: 0.25rem; } /* line 281, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.icon-right li a { flex-flow: row nowrap; } /* line 286, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.icon-right li a img, .menu.icon-right li a i, .menu.icon-right li a svg { margin-left: 0.25rem; } /* line 298, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.icon-top li a { flex-flow: column nowrap; } /* line 306, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.icon-top li a img, .menu.icon-top li a i, .menu.icon-top li a svg { align-self: stretch; margin-bottom: 0.25rem; text-align: center; } /* line 322, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.icon-bottom li a { flex-flow: column nowrap; } /* line 330, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.icon-bottom li a img, .menu.icon-bottom li a i, .menu.icon-bottom li a svg { align-self: stretch; margin-bottom: 0.25rem; text-align: center; } /* line 444, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu .is-active > a { background: #1779ba; color: #fefefe; } /* line 450, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu .active > a { background: #1779ba; color: #fefefe; } /* line 456, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.align-left { justify-content: flex-start; } /* line 123, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.align-right li { display: flex; justify-content: flex-end; } /* line 127, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.align-right li .submenu li { justify-content: flex-start; } /* line 132, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.align-right.vertical li { display: block; text-align: right; } /* line 136, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.align-right.vertical li .submenu li { text-align: right; } /* line 464, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.align-right .nested { margin-right: 1rem; margin-left: 0; } /* line 157, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.align-center li { display: flex; justify-content: center; } /* line 161, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.align-center li .submenu li { justify-content: flex-start; } /* line 474, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu .menu-text { padding: 0.7rem 1rem; font-weight: bold; line-height: 1; color: inherit; } /* line 481, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu-centered > .menu { justify-content: center; } /* line 157, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu-centered > .menu li { display: flex; justify-content: center; } /* line 161, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu-centered > .menu li .submenu li { justify-content: flex-start; } /* line 492, ../node_modules/foundation-sites/scss/components/_menu.scss */ .no-js [data-responsive-menu] ul { display: none; } /* line 83, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .accordion-menu li { width: 100%; } /* line 92, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .accordion-menu a { padding: 0.7rem 1rem; } /* line 99, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .accordion-menu .is-accordion-submenu a { padding: 0.7rem 1rem; } /* line 103, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .accordion-menu .nested.is-accordion-submenu { margin-right: 0; margin-left: 0.2em; } /* line 108, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .accordion-menu.align-right .nested.is-accordion-submenu { margin-right: 0.2em; margin-left: 0; } /* line 54, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a { position: relative; } /* line 57, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a::after { display: block; width: 0; height: 0; border: inset 6px; content: ''; border-bottom-width: 0; border-top-style: solid; border-color: #333 transparent transparent; position: absolute; top: 50%; margin-top: -3px; right: 1rem; } /* line 66, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .accordion-menu.align-left .is-accordion-submenu-parent > a::after { right: 1rem; left: auto; } /* line 71, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .accordion-menu.align-right .is-accordion-submenu-parent > a::after { right: auto; left: 1rem; } /* line 116, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .accordion-menu .is-accordion-submenu-parent[aria-expanded='true'] > a::after { transform: rotate(180deg); transform-origin: 50% 50%; } /* line 130, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .is-accordion-submenu-parent { position: relative; } /* line 134, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .has-submenu-toggle > a { margin-right: 40px; } /* line 139, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .submenu-toggle { position: absolute; top: 0; right: 0; width: 40px; height: 40px; cursor: pointer; } /* line 156, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .submenu-toggle::after { display: block; width: 0; height: 0; border: inset 6px; content: ''; border-bottom-width: 0; border-top-style: solid; border-color: #333 transparent transparent; top: 0; bottom: 0; margin: auto; } /* line 166, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .submenu-toggle[aria-expanded='true']::after { transform: scaleY(-1); transform-origin: 50% 50%; } /* line 171, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .submenu-toggle-text { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; } /* line 12, ../sass/style.scss */ h1 { font-size: 2.5em; text-transform: capitalize; } /* line 17, ../sass/style.scss */ h2 { font-size: 1.75em; text-transform: uppercase; border-bottom: 1px solid #ccc; } /* line 23, ../sass/style.scss */ h3 { font-size: 1.75em; margin: 0; color: #0c658c; } /* line 29, ../sass/style.scss */ h4 { font-size: 1em; margin-bottom: 0; } /* line 34, ../sass/style.scss */ h5 { font-size: 1em; margin-bottom: 0; } /* line 39, ../sass/style.scss */ body { overflow: hidden; } /* line 43, ../sass/style.scss */ #human-section { height: 100vh; overflow-y: scroll; } /* line 47, ../sass/style.scss */ #human-section .block-description { color: #666; } @media print, screen and (max-width: 74.99875em) { /* line 43, ../sass/style.scss */ #human-section { padding-right: 1.5em; } } @media print, screen and (max-width: 39.99875em) { /* line 43, ../sass/style.scss */ #human-section { padding-left: 1.5em; } } /* line 60, ../sass/style.scss */ .block-description { margin-top: .5em; } /* line 66, ../sass/style.scss */ .group .content { padding-left: 1em; } /* line 71, ../sass/style.scss */ .ressource { margin-bottom: 2em; } /* line 77, ../sass/style.scss */ .attributes .variable-table .name { vertical-align: top; } /* line 80, ../sass/style.scss */ .attributes .variable-table .description { display: block; } /* line 88, ../sass/style.scss */ .variable-table tbody { border: none; } /* line 92, ../sass/style.scss */ .variable-table tr { padding-top: .5em; border-color: #eee; } /* line 97, ../sass/style.scss */ .variable-table .name { font-family: monospace; font-size: 1.1em; font-weight: bold; } /* line 103, ../sass/style.scss */ .variable-table .datatype { font-family: monospace; font-size: 1.1em; vertical-align: top; } /* line 109, ../sass/style.scss */ .variable-table .default-value { font-family: monospace; } /* line 113, ../sass/style.scss */ .variable-table .required, .variable-table .optional { border: 1px solid white; border-radius: 8px; padding: .3em .5em; font-family: monospace; } /* line 121, ../sass/style.scss */ .variable-table .required { border-color: #D91E18; color: #D91E18; } /* line 126, ../sass/style.scss */ .variable-table .optional { border-color: #95A5A6; color: #95A5A6; } /* line 135, ../sass/style.scss */ .action { height: auto; border: 1px solid #fff; background-color: #f2f2f2; display: flex; } /* line 141, ../sass/style.scss */ .action:hover { background-color: #eee; cursor: pointer; } /* line 146, ../sass/style.scss */ .action .http-method-flag { display: block; width: 8px; } /* line 150, ../sass/style.scss */ .action .http-method-flag.get { background-color: #2baf3b; } /* line 154, ../sass/style.scss */ .action .http-method-flag.post { background-color: #1E8BC3; } /* line 158, ../sass/style.scss */ .action .http-method-flag.put { background-color: #947CB0; } /* line 162, ../sass/style.scss */ .action .http-method-flag.patch { background-color: #E87E04; } /* line 166, ../sass/style.scss */ .action .http-method-flag.delete { background-color: #D91E18; } /* line 171, ../sass/style.scss */ .action .action-name { display: block; margin: .3em 0 .3em 1em; font-weight: bold; font-size: 1.4em; text-transform: uppercase; width: 5em; } /* line 180, ../sass/style.scss */ .action .action-url { display: block; margin: .4em 0 .4em 1em; font-size: 1.2em; text-transform: lowercase; color: gray; } /* line 189, ../sass/style.scss */ .http-method-badge { border: 1px solid white; border-radius: 5px; padding: .1em .6em; font-weight: bold; font-family: monospace; } /* line 196, ../sass/style.scss */ .http-method-badge.get { color: #2baf3b; border-color: #2baf3b; } /* line 201, ../sass/style.scss */ .http-method-badge.post { color: #1E8BC3; border-color: #1E8BC3; } /* line 206, ../sass/style.scss */ .http-method-badge.put { color: #947CB0; border-color: #947CB0; } /* line 211, ../sass/style.scss */ .http-method-badge.patch { color: #E87E04; border-color: #E87E04; } /* line 216, ../sass/style.scss */ .http-method-badge.delete { color: #D91E18; border-color: #D91E18; } /* line 222, ../sass/style.scss */ #toc { padding: 1.5em 1em 0 1em; background-color: #f2f2f2; overflow-y: scroll; height: 100vh; } /* line 228, ../sass/style.scss */ #toc a { padding-left: 0 !important; color: black; } /* line 231, ../sass/style.scss */ #toc a:hover { color: black; } /* line 234, ../sass/style.scss */ #toc a:visited { color: black; } /* line 239, ../sass/style.scss */ #toc li:hover > a:first-child { color: #777; } @media print, screen and (min-width: 40em) { /* line 222, ../sass/style.scss */ #toc { display: block; } } @media print, screen and (max-width: 39.99875em) { /* line 222, ../sass/style.scss */ #toc { position: absolute; top: 0; left: 0; } } /* line 254, ../sass/style.scss */ .toc-button { position: absolute; top: 2em; left: .5em; z-index: 100; } @media print, screen and (min-width: 40em) { /* line 254, ../sass/style.scss */ .toc-button { display: none; } } /* line 269, ../sass/style.scss */ .toc-action .title { display: block; margin-top: .4em; } /*# sourceMappingURL=style.css.map */
css/style.css
* Foundation for Sites by ZURB * Version 6.6.1 * foundation.zurb.com * Licensed under MIT Open Source */ /* line 4, ../sass/machine-section.scss */ .machine-section { padding: 0 1.5em; background-color: #282f3a; color: white; height: 100vh; overflow-y: scroll; } /* line 11, ../sass/machine-section.scss */ .machine-section .seperator { border-top: 1px solid #aaa; margin-top: 2em; } /* line 16, ../sass/machine-section.scss */ .machine-section .variable-table tr { border-color: #aaa; } /* line 20, ../sass/machine-section.scss */ .machine-section .block-description { color: #aaa; } /* line 24, ../sass/machine-section.scss */ .machine-section h3 { color: white; } @media print, screen and (max-width: 63.99875em) { /* line 4, ../sass/machine-section.scss */ .machine-section { position: absolute; top: 0; left: 0; height: 100vh; width: 100vw; } } /* line 37, ../sass/machine-section.scss */ .ms-head { display: flex; padding-top: 1em; padding-bottom: 1em; border-bottom: 1px solid #aaa; } /* line 43, ../sass/machine-section.scss */ .ms-head .closeMsButton { color: white; width: 1em; } /* line 46, ../sass/machine-section.scss */ .ms-head .closeMsButton:hover { cursor: pointer; color: #ddd; } /* line 52, ../sass/machine-section.scss */ .ms-head .ms-heading { margin-top: 0; margin-left: 1em; } /* line 58, ../sass/machine-section.scss */ .ms-url { display: flex; margin-bottom: 1.5em; padding: 1em 0; border-bottom: 1px solid #aaa; font-family: monospace; font-size: 1.2em; } /* line 67, ../sass/machine-section.scss */ .ms-url .url { margin-top: 0; margin-bottom: 0; margin-left: 1.5em; padding-top: .2em; } /* line 73, ../sass/machine-section.scss */ .ms-url .url .url-action { font-weight: bold; } /* line 77, ../sass/machine-section.scss */ .ms-url .url .url-parameter { font-weight: bold; color: #E87E04; } /* line 87, ../sass/machine-section.scss */ .machine-section .attributes tbody, .machine-section .attributes tr, .machine-section .parameters tbody, .machine-section .parameters tr { background-color: transparent; } /* line 92, ../sass/machine-section.scss */ .hide { display: none; } /* line 96, ../sass/machine-section.scss */ .response .heading { display: flex; align-items: center; } /* line 100, ../sass/machine-section.scss */ .response .heading .message-code { margin-left: 2em; } /* line 105, ../sass/machine-section.scss */ .message-code { font-family: monospace; font-size: 1.2em; } /* line 109, ../sass/machine-section.scss */ .message-code .code { background-color: white; padding: .3em .5em; color: white; font-weight: bold; } /* line 117, ../sass/machine-section.scss */ .message-code.information .code { background-color: #95A5A6; } /* line 120, ../sass/machine-section.scss */ .message-code.information .status { color: #95A5A6; } /* line 126, ../sass/machine-section.scss */ .message-code.success .code { background-color: #2baf3b; } /* line 129, ../sass/machine-section.scss */ .message-code.success .status { color: #2baf3b; } /* line 135, ../sass/machine-section.scss */ .message-code.redirect .code { background-color: #F7CA18; } /* line 138, ../sass/machine-section.scss */ .message-code.redirect .status { color: #F7CA18; } /* line 144, ../sass/machine-section.scss */ .message-code.client-error .code { background-color: #D91E18; } /* line 147, ../sass/machine-section.scss */ .message-code.client-error .status { color: #D91E18; } /* line 153, ../sass/machine-section.scss */ .message-code.server-error .code { background-color: #E87E04; } /* line 156, ../sass/machine-section.scss */ .message-code.server-error .status { color: #E87E04; } /* line 162, ../sass/machine-section.scss */ .json { font-family: monospace; font-size: 1.1em; padding: 0 .5em; } /* line 167, ../sass/machine-section.scss */ .json .text { color: #b1bdbd; } /* line 171, ../sass/machine-section.scss */ .json .key { color: #947CB0; } /* line 175, ../sass/machine-section.scss */ .json .nr { color: #F7CA18; } /*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */ /* line 10, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ html { line-height: 1.15; -webkit-text-size-adjust: 100%; } /* line 20, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ body { margin: 0; } /* line 27, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ h1 { font-size: 2em; margin: 0.67em 0; } /* line 38, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ hr { box-sizing: content-box; height: 0; overflow: visible; } /* line 47, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ pre { font-family: monospace, monospace; font-size: 1em; } /* line 57, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ a { background-color: transparent; } /* line 64, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ abbr[title] { border-bottom: none; text-decoration: underline; text-decoration: underline dotted; } /* line 72, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ b, strong { font-weight: bolder; } /* line 80, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ code, kbd, samp { font-family: monospace, monospace; font-size: 1em; } /* line 89, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ small { font-size: 80%; } /* line 96, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } /* line 104, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ sub { bottom: -0.25em; } /* line 108, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ sup { top: -0.5em; } /* line 117, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ img { border-style: none; } /* line 127, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ button, input, optgroup, select, textarea { font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0; } /* line 141, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ button, input { overflow: visible; } /* line 149, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ button, select { text-transform: none; } /* line 156, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ button, [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; } /* line 165, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { border-style: none; padding: 0; } /* line 175, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring { outline: 1px dotted ButtonText; } /* line 184, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ fieldset { padding: 0.35em 0.75em 0.625em; } /* line 193, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ legend { box-sizing: border-box; color: inherit; display: table; max-width: 100%; padding: 0; white-space: normal; } /* line 204, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ progress { vertical-align: baseline; } /* line 210, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ textarea { overflow: auto; } /* line 217, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ [type="checkbox"], [type="radio"] { box-sizing: border-box; padding: 0; } /* line 225, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ [type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; } /* line 233, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ [type="search"] { -webkit-appearance: textfield; outline-offset: -2px; } /* line 240, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ [type="search"]::-webkit-search-decoration { -webkit-appearance: none; } /* line 247, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ ::-webkit-file-upload-button { -webkit-appearance: button; font: inherit; } /* line 257, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ details { display: block; } /* line 263, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ summary { display: list-item; } /* line 272, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ template { display: none; } /* line 278, ../node_modules/foundation-sites/scss/vendor/normalize.scss */ [hidden] { display: none; } /* line 140, ../node_modules/foundation-sites/scss/_global.scss */ .foundation-mq { font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em"; } /* line 144, ../node_modules/foundation-sites/scss/_global.scss */ html { box-sizing: border-box; font-size: 100%; } /* line 150, ../node_modules/foundation-sites/scss/_global.scss */ *, *::before, *::after { box-sizing: inherit; } /* line 157, ../node_modules/foundation-sites/scss/_global.scss */ body { margin: 0; padding: 0; background: #fefefe; font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; font-weight: normal; line-height: 1.5; color: #0a0a0a; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* line 174, ../node_modules/foundation-sites/scss/_global.scss */ img { display: inline-block; vertical-align: middle; max-width: 100%; height: auto; -ms-interpolation-mode: bicubic; } /* line 186, ../node_modules/foundation-sites/scss/_global.scss */ textarea { height: auto; min-height: 50px; border-radius: 0; } /* line 193, ../node_modules/foundation-sites/scss/_global.scss */ select { box-sizing: border-box; width: 100%; border-radius: 0; } /* line 203, ../node_modules/foundation-sites/scss/_global.scss */ .map_canvas img, .map_canvas embed, .map_canvas object, .mqa-display img, .mqa-display embed, .mqa-display object { max-width: none !important; } /* line 211, ../node_modules/foundation-sites/scss/_global.scss */ button { padding: 0; appearance: none; border: 0; border-radius: 0; background: transparent; line-height: 1; cursor: auto; } /* line 202, ../node_modules/foundation-sites/scss/util/_mixins.scss */ [data-whatinput='mouse'] button { outline: 0; } /* line 223, ../node_modules/foundation-sites/scss/_global.scss */ pre { overflow: auto; } /* line 228, ../node_modules/foundation-sites/scss/_global.scss */ button, input, optgroup, select, textarea { font-family: inherit; } /* line 237, ../node_modules/foundation-sites/scss/_global.scss */ .is-visible { display: block !important; } /* line 241, ../node_modules/foundation-sites/scss/_global.scss */ .is-hidden { display: none !important; } /* line 13, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-container { padding-right: 0.625rem; padding-left: 0.625rem; max-width: 75rem; margin-left: auto; margin-right: auto; } @media print, screen and (min-width: 40em) { /* line 13, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-container { padding-right: 0.9375rem; padding-left: 0.9375rem; } } /* line 16, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-container.fluid { padding-right: 0.625rem; padding-left: 0.625rem; max-width: 100%; margin-left: auto; margin-right: auto; } @media print, screen and (min-width: 40em) { /* line 16, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-container.fluid { padding-right: 0.9375rem; padding-left: 0.9375rem; } } /* line 20, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-container.full { padding-right: 0; padding-left: 0; max-width: 100%; margin-left: auto; margin-right: auto; } /* line 26, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x { display: flex; flex-flow: row wrap; } /* line 30, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .cell { flex: 0 0 auto; min-height: 0px; min-width: 0px; width: 100%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .cell.auto { flex: 1 1 0px; } /* line 37, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .cell.shrink { flex: 0 0 auto; } /* line 43, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .auto { width: auto; } /* line 47, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .shrink { width: auto; } /* line 63, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .small-shrink, .grid-x > .small-full, .grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 { flex-basis: auto; } @media print, screen and (min-width: 40em) { /* line 63, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-shrink, .grid-x > .medium-full, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 { flex-basis: auto; } } @media print, screen and (min-width: 64em) { /* line 63, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-shrink, .grid-x > .large-full, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 { flex-basis: auto; } } /* line 77, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 { flex: 0 0 auto; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .small-1 { width: 8.33333%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .small-2 { width: 16.66667%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .small-3 { width: 25%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .small-4 { width: 33.33333%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .small-5 { width: 41.66667%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .small-6 { width: 50%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .small-7 { width: 58.33333%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .small-8 { width: 66.66667%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .small-9 { width: 75%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .small-10 { width: 83.33333%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .small-11 { width: 91.66667%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .small-12 { width: 100%; } @media print, screen and (min-width: 40em) { /* line 72, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-auto { flex: 1 1 0px; width: auto; } /* line 77, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-shrink, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 { flex: 0 0 auto; } /* line 83, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-shrink { width: auto; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-1 { width: 8.33333%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-2 { width: 16.66667%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-3 { width: 25%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-4 { width: 33.33333%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-5 { width: 41.66667%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-6 { width: 50%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-7 { width: 58.33333%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-8 { width: 66.66667%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-9 { width: 75%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-10 { width: 83.33333%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-11 { width: 91.66667%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .medium-12 { width: 100%; } } @media print, screen and (min-width: 64em) { /* line 72, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-auto { flex: 1 1 0px; width: auto; } /* line 77, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-shrink, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 { flex: 0 0 auto; } /* line 83, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-shrink { width: auto; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-1 { width: 8.33333%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-2 { width: 16.66667%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-3 { width: 25%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-4 { width: 33.33333%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-5 { width: 41.66667%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-6 { width: 50%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-7 { width: 58.33333%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-8 { width: 66.66667%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-9 { width: 75%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-10 { width: 83.33333%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-11 { width: 91.66667%; } /* line 92, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-x > .large-12 { width: 100%; } } /* line 100, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x:not(.grid-x) > .cell { width: auto; } /* line 105, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y:not(.grid-y) > .cell { height: auto; } /* line 136, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x { margin-left: -0.625rem; margin-right: -0.625rem; } @media print, screen and (min-width: 40em) { /* line 136, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x { margin-left: -0.9375rem; margin-right: -0.9375rem; } } /* line 140, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .cell { width: calc(100% - 1.25rem); margin-left: 0.625rem; margin-right: 0.625rem; } @media print, screen and (min-width: 40em) { /* line 147, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .cell { width: calc(100% - 1.875rem); margin-left: 0.9375rem; margin-right: 0.9375rem; } } /* line 112, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .auto { width: auto; } /* line 116, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .shrink { width: auto; } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-1 { width: calc(8.33333% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-2 { width: calc(16.66667% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-3 { width: calc(25% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-4 { width: calc(33.33333% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-5 { width: calc(41.66667% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-6 { width: calc(50% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-7 { width: calc(58.33333% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-8 { width: calc(66.66667% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-9 { width: calc(75% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-10 { width: calc(83.33333% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-11 { width: calc(91.66667% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-12 { width: calc(100% - 1.25rem); } @media print, screen and (min-width: 40em) { /* line 112, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .auto { width: auto; } /* line 116, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .shrink { width: auto; } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-1 { width: calc(8.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-2 { width: calc(16.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-3 { width: calc(25% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-4 { width: calc(33.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-5 { width: calc(41.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-6 { width: calc(50% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-7 { width: calc(58.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-8 { width: calc(66.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-9 { width: calc(75% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-10 { width: calc(83.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-11 { width: calc(91.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-12 { width: calc(100% - 1.875rem); } /* line 112, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-auto { width: auto; } /* line 116, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-shrink { width: auto; } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-1 { width: calc(8.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-2 { width: calc(16.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-3 { width: calc(25% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-4 { width: calc(33.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-5 { width: calc(41.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-6 { width: calc(50% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-7 { width: calc(58.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-8 { width: calc(66.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-9 { width: calc(75% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-10 { width: calc(83.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-11 { width: calc(91.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-12 { width: calc(100% - 1.875rem); } } @media print, screen and (min-width: 64em) { /* line 112, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-auto { width: auto; } /* line 116, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-shrink { width: auto; } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-1 { width: calc(8.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-2 { width: calc(16.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-3 { width: calc(25% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-4 { width: calc(33.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-5 { width: calc(41.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-6 { width: calc(50% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-7 { width: calc(58.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-8 { width: calc(66.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-9 { width: calc(75% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-10 { width: calc(83.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-11 { width: calc(91.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-12 { width: calc(100% - 1.875rem); } } /* line 175, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-padding-x .grid-padding-x { margin-right: -0.625rem; margin-left: -0.625rem; } @media print, screen and (min-width: 40em) { /* line 175, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-padding-x .grid-padding-x { margin-right: -0.9375rem; margin-left: -0.9375rem; } } /* line 181, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-container:not(.full) > .grid-padding-x { margin-right: -0.625rem; margin-left: -0.625rem; } @media print, screen and (min-width: 40em) { /* line 181, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-container:not(.full) > .grid-padding-x { margin-right: -0.9375rem; margin-left: -0.9375rem; } } /* line 186, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-padding-x > .cell { padding-right: 0.625rem; padding-left: 0.625rem; } @media print, screen and (min-width: 40em) { /* line 186, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-padding-x > .cell { padding-right: 0.9375rem; padding-left: 0.9375rem; } } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .small-up-1 > .cell { width: 100%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .small-up-2 > .cell { width: 50%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .small-up-3 > .cell { width: 33.33333%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .small-up-4 > .cell { width: 25%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .small-up-5 > .cell { width: 20%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .small-up-6 > .cell { width: 16.66667%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .small-up-7 > .cell { width: 14.28571%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .small-up-8 > .cell { width: 12.5%; } @media print, screen and (min-width: 40em) { /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .medium-up-1 > .cell { width: 100%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .medium-up-2 > .cell { width: 50%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .medium-up-3 > .cell { width: 33.33333%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .medium-up-4 > .cell { width: 25%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .medium-up-5 > .cell { width: 20%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .medium-up-6 > .cell { width: 16.66667%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .medium-up-7 > .cell { width: 14.28571%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .medium-up-8 > .cell { width: 12.5%; } } @media print, screen and (min-width: 64em) { /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .large-up-1 > .cell { width: 100%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .large-up-2 > .cell { width: 50%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .large-up-3 > .cell { width: 33.33333%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .large-up-4 > .cell { width: 25%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .large-up-5 > .cell { width: 20%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .large-up-6 > .cell { width: 16.66667%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .large-up-7 > .cell { width: 14.28571%; } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .large-up-8 > .cell { width: 12.5%; } } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-1 > .cell { width: calc(100% - 1.25rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-2 > .cell { width: calc(50% - 1.25rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-3 > .cell { width: calc(33.33333% - 1.25rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-4 > .cell { width: calc(25% - 1.25rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-5 > .cell { width: calc(20% - 1.25rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-6 > .cell { width: calc(16.66667% - 1.25rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-7 > .cell { width: calc(14.28571% - 1.25rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-8 > .cell { width: calc(12.5% - 1.25rem); } @media print, screen and (min-width: 40em) { /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-1 > .cell { width: calc(100% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-2 > .cell { width: calc(50% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-3 > .cell { width: calc(33.33333% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-4 > .cell { width: calc(25% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-5 > .cell { width: calc(20% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-6 > .cell { width: calc(16.66667% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-7 > .cell { width: calc(14.28571% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.small-up-8 > .cell { width: calc(12.5% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.medium-up-1 > .cell { width: calc(100% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.medium-up-2 > .cell { width: calc(50% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.medium-up-3 > .cell { width: calc(33.33333% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.medium-up-4 > .cell { width: calc(25% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.medium-up-5 > .cell { width: calc(20% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.medium-up-6 > .cell { width: calc(16.66667% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.medium-up-7 > .cell { width: calc(14.28571% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.medium-up-8 > .cell { width: calc(12.5% - 1.875rem); } } @media print, screen and (min-width: 64em) { /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.large-up-1 > .cell { width: calc(100% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.large-up-2 > .cell { width: calc(50% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.large-up-3 > .cell { width: calc(33.33333% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.large-up-4 > .cell { width: calc(25% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.large-up-5 > .cell { width: calc(20% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.large-up-6 > .cell { width: calc(16.66667% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.large-up-7 > .cell { width: calc(14.28571% - 1.875rem); } /* line 33, ../node_modules/foundation-sites/scss/xy-grid/_layout.scss */ .grid-margin-x.large-up-8 > .cell { width: calc(12.5% - 1.875rem); } } /* line 232, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .small-margin-collapse { margin-right: 0; margin-left: 0; } /* line 29, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .cell { margin-right: 0; margin-left: 0; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .small-1 { width: 8.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .small-2 { width: 16.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .small-3 { width: 25%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .small-4 { width: 33.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .small-5 { width: 41.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .small-6 { width: 50%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .small-7 { width: 58.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .small-8 { width: 66.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .small-9 { width: 75%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .small-10 { width: 83.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .small-11 { width: 91.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .small-12 { width: 100%; } @media print, screen and (min-width: 40em) { /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .medium-1 { width: 8.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .medium-2 { width: 16.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .medium-3 { width: 25%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .medium-4 { width: 33.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .medium-5 { width: 41.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .medium-6 { width: 50%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .medium-7 { width: 58.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .medium-8 { width: 66.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .medium-9 { width: 75%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .medium-10 { width: 83.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .medium-11 { width: 91.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .medium-12 { width: 100%; } } @media print, screen and (min-width: 64em) { /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .large-1 { width: 8.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .large-2 { width: 16.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .large-3 { width: 25%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .large-4 { width: 33.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .large-5 { width: 41.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .large-6 { width: 50%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .large-7 { width: 58.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .large-8 { width: 66.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .large-9 { width: 75%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .large-10 { width: 83.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .large-11 { width: 91.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-margin-collapse > .large-12 { width: 100%; } } /* line 238, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .small-padding-collapse { margin-right: 0; margin-left: 0; } /* line 68, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .small-padding-collapse > .cell { padding-right: 0; padding-left: 0; } @media print, screen and (min-width: 40em) { /* line 232, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-margin-collapse { margin-right: 0; margin-left: 0; } /* line 29, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .cell { margin-right: 0; margin-left: 0; } } @media print, screen and (min-width: 40em) { /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .small-1 { width: 8.33333%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .small-2 { width: 16.66667%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .small-3 { width: 25%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .small-4 { width: 33.33333%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .small-5 { width: 41.66667%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .small-6 { width: 50%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .small-7 { width: 58.33333%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .small-8 { width: 66.66667%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .small-9 { width: 75%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .small-10 { width: 83.33333%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .small-11 { width: 91.66667%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .small-12 { width: 100%; } } @media print, screen and (min-width: 40em) { /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .medium-1 { width: 8.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .medium-2 { width: 16.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .medium-3 { width: 25%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .medium-4 { width: 33.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .medium-5 { width: 41.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .medium-6 { width: 50%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .medium-7 { width: 58.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .medium-8 { width: 66.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .medium-9 { width: 75%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .medium-10 { width: 83.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .medium-11 { width: 91.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .medium-12 { width: 100%; } } @media print, screen and (min-width: 64em) { /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .large-1 { width: 8.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .large-2 { width: 16.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .large-3 { width: 25%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .large-4 { width: 33.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .large-5 { width: 41.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .large-6 { width: 50%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .large-7 { width: 58.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .large-8 { width: 66.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .large-9 { width: 75%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .large-10 { width: 83.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .large-11 { width: 91.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-margin-collapse > .large-12 { width: 100%; } } @media print, screen and (min-width: 40em) { /* line 238, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-padding-collapse { margin-right: 0; margin-left: 0; } /* line 68, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .medium-padding-collapse > .cell { padding-right: 0; padding-left: 0; } } @media print, screen and (min-width: 64em) { /* line 232, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-margin-collapse { margin-right: 0; margin-left: 0; } /* line 29, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .cell { margin-right: 0; margin-left: 0; } } @media print, screen and (min-width: 64em) { /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .small-1 { width: 8.33333%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .small-2 { width: 16.66667%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .small-3 { width: 25%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .small-4 { width: 33.33333%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .small-5 { width: 41.66667%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .small-6 { width: 50%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .small-7 { width: 58.33333%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .small-8 { width: 66.66667%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .small-9 { width: 75%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .small-10 { width: 83.33333%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .small-11 { width: 91.66667%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .small-12 { width: 100%; } } @media print, screen and (min-width: 64em) { /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .medium-1 { width: 8.33333%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .medium-2 { width: 16.66667%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .medium-3 { width: 25%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .medium-4 { width: 33.33333%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .medium-5 { width: 41.66667%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .medium-6 { width: 50%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .medium-7 { width: 58.33333%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .medium-8 { width: 66.66667%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .medium-9 { width: 75%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .medium-10 { width: 83.33333%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .medium-11 { width: 91.66667%; } /* line 44, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .medium-12 { width: 100%; } } @media print, screen and (min-width: 64em) { /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .large-1 { width: 8.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .large-2 { width: 16.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .large-3 { width: 25%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .large-4 { width: 33.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .large-5 { width: 41.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .large-6 { width: 50%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .large-7 { width: 58.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .large-8 { width: 66.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .large-9 { width: 75%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .large-10 { width: 83.33333%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .large-11 { width: 91.66667%; } /* line 53, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-margin-collapse > .large-12 { width: 100%; } } @media print, screen and (min-width: 64em) { /* line 238, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-padding-collapse { margin-right: 0; margin-left: 0; } /* line 68, ../node_modules/foundation-sites/scss/xy-grid/_collapse.scss */ .large-padding-collapse > .cell { padding-right: 0; padding-left: 0; } } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .small-offset-0 { margin-left: 0%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-offset-0 { margin-left: calc(0% + 0.625rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .small-offset-1 { margin-left: 8.33333%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-offset-1 { margin-left: calc(8.33333% + 0.625rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .small-offset-2 { margin-left: 16.66667%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-offset-2 { margin-left: calc(16.66667% + 0.625rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .small-offset-3 { margin-left: 25%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-offset-3 { margin-left: calc(25% + 0.625rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .small-offset-4 { margin-left: 33.33333%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-offset-4 { margin-left: calc(33.33333% + 0.625rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .small-offset-5 { margin-left: 41.66667%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-offset-5 { margin-left: calc(41.66667% + 0.625rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .small-offset-6 { margin-left: 50%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-offset-6 { margin-left: calc(50% + 0.625rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .small-offset-7 { margin-left: 58.33333%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-offset-7 { margin-left: calc(58.33333% + 0.625rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .small-offset-8 { margin-left: 66.66667%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-offset-8 { margin-left: calc(66.66667% + 0.625rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .small-offset-9 { margin-left: 75%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-offset-9 { margin-left: calc(75% + 0.625rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .small-offset-10 { margin-left: 83.33333%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-offset-10 { margin-left: calc(83.33333% + 0.625rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .small-offset-11 { margin-left: 91.66667%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .small-offset-11 { margin-left: calc(91.66667% + 0.625rem); } @media print, screen and (min-width: 40em) { /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-offset-0 { margin-left: 0%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-offset-0 { margin-left: calc(0% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-offset-1 { margin-left: 8.33333%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-offset-1 { margin-left: calc(8.33333% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-offset-2 { margin-left: 16.66667%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-offset-2 { margin-left: calc(16.66667% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-offset-3 { margin-left: 25%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-offset-3 { margin-left: calc(25% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-offset-4 { margin-left: 33.33333%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-offset-4 { margin-left: calc(33.33333% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-offset-5 { margin-left: 41.66667%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-offset-5 { margin-left: calc(41.66667% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-offset-6 { margin-left: 50%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-offset-6 { margin-left: calc(50% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-offset-7 { margin-left: 58.33333%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-offset-7 { margin-left: calc(58.33333% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-offset-8 { margin-left: 66.66667%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-offset-8 { margin-left: calc(66.66667% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-offset-9 { margin-left: 75%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-offset-9 { margin-left: calc(75% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-offset-10 { margin-left: 83.33333%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-offset-10 { margin-left: calc(83.33333% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-offset-11 { margin-left: 91.66667%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .medium-offset-11 { margin-left: calc(91.66667% + 0.9375rem); } } @media print, screen and (min-width: 64em) { /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-offset-0 { margin-left: 0%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-offset-0 { margin-left: calc(0% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-offset-1 { margin-left: 8.33333%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-offset-1 { margin-left: calc(8.33333% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-offset-2 { margin-left: 16.66667%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-offset-2 { margin-left: calc(16.66667% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-offset-3 { margin-left: 25%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-offset-3 { margin-left: calc(25% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-offset-4 { margin-left: 33.33333%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-offset-4 { margin-left: calc(33.33333% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-offset-5 { margin-left: 41.66667%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-offset-5 { margin-left: calc(41.66667% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-offset-6 { margin-left: 50%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-offset-6 { margin-left: calc(50% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-offset-7 { margin-left: 58.33333%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-offset-7 { margin-left: calc(58.33333% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-offset-8 { margin-left: 66.66667%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-offset-8 { margin-left: calc(66.66667% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-offset-9 { margin-left: 75%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-offset-9 { margin-left: calc(75% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-offset-10 { margin-left: 83.33333%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-offset-10 { margin-left: calc(83.33333% + 0.9375rem); } /* line 252, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-offset-11 { margin-left: 91.66667%; } /* line 256, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-x > .large-offset-11 { margin-left: calc(91.66667% + 0.9375rem); } } /* line 274, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y { display: flex; flex-flow: column nowrap; } /* line 278, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .cell { height: auto; max-height: none; } /* line 282, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .auto { height: auto; } /* line 286, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .shrink { height: auto; } /* line 300, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .small-shrink, .grid-y > .small-full, .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 { flex-basis: auto; } @media print, screen and (min-width: 40em) { /* line 300, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-shrink, .grid-y > .medium-full, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 { flex-basis: auto; } } @media print, screen and (min-width: 64em) { /* line 300, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-shrink, .grid-y > .large-full, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 { flex-basis: auto; } } /* line 313, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 { flex: 0 0 auto; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .small-1 { height: 8.33333%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .small-2 { height: 16.66667%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .small-3 { height: 25%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .small-4 { height: 33.33333%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .small-5 { height: 41.66667%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .small-6 { height: 50%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .small-7 { height: 58.33333%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .small-8 { height: 66.66667%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .small-9 { height: 75%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .small-10 { height: 83.33333%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .small-11 { height: 91.66667%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .small-12 { height: 100%; } @media print, screen and (min-width: 40em) { /* line 308, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-auto { flex: 1 1 0px; height: auto; } /* line 313, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-shrink, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 { flex: 0 0 auto; } /* line 319, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-shrink { height: auto; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-1 { height: 8.33333%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-2 { height: 16.66667%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-3 { height: 25%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-4 { height: 33.33333%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-5 { height: 41.66667%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-6 { height: 50%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-7 { height: 58.33333%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-8 { height: 66.66667%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-9 { height: 75%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-10 { height: 83.33333%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-11 { height: 91.66667%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .medium-12 { height: 100%; } } @media print, screen and (min-width: 64em) { /* line 308, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-auto { flex: 1 1 0px; height: auto; } /* line 313, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-shrink, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 { flex: 0 0 auto; } /* line 319, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-shrink { height: auto; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-1 { height: 8.33333%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-2 { height: 16.66667%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-3 { height: 25%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-4 { height: 33.33333%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-5 { height: 41.66667%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-6 { height: 50%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-7 { height: 58.33333%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-8 { height: 66.66667%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-9 { height: 75%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-10 { height: 83.33333%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-11 { height: 91.66667%; } /* line 328, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y > .large-12 { height: 100%; } } /* line 340, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-padding-y .grid-padding-y { margin-top: -0.625rem; margin-bottom: -0.625rem; } @media print, screen and (min-width: 40em) { /* line 340, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-padding-y .grid-padding-y { margin-top: -0.9375rem; margin-bottom: -0.9375rem; } } /* line 345, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-padding-y > .cell { padding-top: 0.625rem; padding-bottom: 0.625rem; } @media print, screen and (min-width: 40em) { /* line 345, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-padding-y > .cell { padding-top: 0.9375rem; padding-bottom: 0.9375rem; } } /* line 136, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y { margin-top: -0.625rem; margin-bottom: -0.625rem; } @media print, screen and (min-width: 40em) { /* line 136, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y { margin-top: -0.9375rem; margin-bottom: -0.9375rem; } } /* line 140, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .cell { height: calc(100% - 1.25rem); margin-top: 0.625rem; margin-bottom: 0.625rem; } @media print, screen and (min-width: 40em) { /* line 147, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .cell { height: calc(100% - 1.875rem); margin-top: 0.9375rem; margin-bottom: 0.9375rem; } } /* line 112, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .auto { height: auto; } /* line 116, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .shrink { height: auto; } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-1 { height: calc(8.33333% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-2 { height: calc(16.66667% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-3 { height: calc(25% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-4 { height: calc(33.33333% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-5 { height: calc(41.66667% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-6 { height: calc(50% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-7 { height: calc(58.33333% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-8 { height: calc(66.66667% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-9 { height: calc(75% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-10 { height: calc(83.33333% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-11 { height: calc(91.66667% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-12 { height: calc(100% - 1.25rem); } @media print, screen and (min-width: 40em) { /* line 112, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .auto { height: auto; } /* line 116, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .shrink { height: auto; } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-1 { height: calc(8.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-2 { height: calc(16.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-3 { height: calc(25% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-4 { height: calc(33.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-5 { height: calc(41.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-6 { height: calc(50% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-7 { height: calc(58.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-8 { height: calc(66.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-9 { height: calc(75% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-10 { height: calc(83.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-11 { height: calc(91.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-12 { height: calc(100% - 1.875rem); } /* line 112, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-auto { height: auto; } /* line 116, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-shrink { height: auto; } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-1 { height: calc(8.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-2 { height: calc(16.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-3 { height: calc(25% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-4 { height: calc(33.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-5 { height: calc(41.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-6 { height: calc(50% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-7 { height: calc(58.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-8 { height: calc(66.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-9 { height: calc(75% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-10 { height: calc(83.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-11 { height: calc(91.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-12 { height: calc(100% - 1.875rem); } } @media print, screen and (min-width: 64em) { /* line 112, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-auto { height: auto; } /* line 116, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-shrink { height: auto; } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-1 { height: calc(8.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-2 { height: calc(16.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-3 { height: calc(25% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-4 { height: calc(33.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-5 { height: calc(41.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-6 { height: calc(50% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-7 { height: calc(58.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-8 { height: calc(66.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-9 { height: calc(75% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-10 { height: calc(83.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-11 { height: calc(91.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-12 { height: calc(100% - 1.875rem); } } /* line 359, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-frame { overflow: hidden; position: relative; flex-wrap: nowrap; align-items: stretch; width: 100vw; } /* line 363, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .cell .grid-frame { width: 100%; } /* line 367, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .cell-block { overflow-x: auto; max-width: 100%; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar; } /* line 371, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .cell-block-y { overflow-y: auto; max-height: 100%; min-height: 100%; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar; } /* line 376, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .cell-block-container { display: flex; flex-direction: column; max-height: 100%; } /* line 82, ../node_modules/foundation-sites/scss/xy-grid/_frame.scss */ .cell-block-container > .grid-x { max-height: 100%; flex-wrap: nowrap; } @media print, screen and (min-width: 40em) { /* line 383, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-grid-frame { overflow: hidden; position: relative; flex-wrap: nowrap; align-items: stretch; width: 100vw; } /* line 387, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .cell .medium-grid-frame { width: 100%; } /* line 391, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-cell-block { overflow-x: auto; max-width: 100%; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar; } /* line 395, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-cell-block-container { display: flex; flex-direction: column; max-height: 100%; } /* line 82, ../node_modules/foundation-sites/scss/xy-grid/_frame.scss */ .medium-cell-block-container > .grid-x { max-height: 100%; flex-wrap: nowrap; } /* line 399, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .medium-cell-block-y { overflow-y: auto; max-height: 100%; min-height: 100%; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar; } } @media print, screen and (min-width: 64em) { /* line 383, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-grid-frame { overflow: hidden; position: relative; flex-wrap: nowrap; align-items: stretch; width: 100vw; } /* line 387, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .cell .large-grid-frame { width: 100%; } /* line 391, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-cell-block { overflow-x: auto; max-width: 100%; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar; } /* line 395, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-cell-block-container { display: flex; flex-direction: column; max-height: 100%; } /* line 82, ../node_modules/foundation-sites/scss/xy-grid/_frame.scss */ .large-cell-block-container > .grid-x { max-height: 100%; flex-wrap: nowrap; } /* line 399, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .large-cell-block-y { overflow-y: auto; max-height: 100%; min-height: 100%; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar; } } /* line 406, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y.grid-frame { width: auto; overflow: hidden; position: relative; flex-wrap: nowrap; align-items: stretch; height: 100vh; } @media print, screen and (min-width: 40em) { /* line 412, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y.medium-grid-frame { width: auto; overflow: hidden; position: relative; flex-wrap: nowrap; align-items: stretch; height: 100vh; } } @media print, screen and (min-width: 64em) { /* line 412, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-y.large-grid-frame { width: auto; overflow: hidden; position: relative; flex-wrap: nowrap; align-items: stretch; height: 100vh; } } /* line 420, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .cell .grid-y.grid-frame { height: 100%; } @media print, screen and (min-width: 40em) { /* line 424, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .cell .grid-y.medium-grid-frame { height: 100%; } } @media print, screen and (min-width: 64em) { /* line 424, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .cell .grid-y.large-grid-frame { height: 100%; } } /* line 136, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y { margin-top: -0.625rem; margin-bottom: -0.625rem; } @media print, screen and (min-width: 40em) { /* line 136, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y { margin-top: -0.9375rem; margin-bottom: -0.9375rem; } } /* line 140, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .cell { height: calc(100% - 1.25rem); margin-top: 0.625rem; margin-bottom: 0.625rem; } @media print, screen and (min-width: 40em) { /* line 147, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .cell { height: calc(100% - 1.875rem); margin-top: 0.9375rem; margin-bottom: 0.9375rem; } } /* line 112, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .auto { height: auto; } /* line 116, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .shrink { height: auto; } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-1 { height: calc(8.33333% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-2 { height: calc(16.66667% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-3 { height: calc(25% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-4 { height: calc(33.33333% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-5 { height: calc(41.66667% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-6 { height: calc(50% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-7 { height: calc(58.33333% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-8 { height: calc(66.66667% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-9 { height: calc(75% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-10 { height: calc(83.33333% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-11 { height: calc(91.66667% - 1.25rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-12 { height: calc(100% - 1.25rem); } @media print, screen and (min-width: 40em) { /* line 112, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .auto { height: auto; } /* line 116, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .shrink { height: auto; } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-1 { height: calc(8.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-2 { height: calc(16.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-3 { height: calc(25% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-4 { height: calc(33.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-5 { height: calc(41.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-6 { height: calc(50% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-7 { height: calc(58.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-8 { height: calc(66.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-9 { height: calc(75% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-10 { height: calc(83.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-11 { height: calc(91.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .small-12 { height: calc(100% - 1.875rem); } /* line 112, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-auto { height: auto; } /* line 116, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-shrink { height: auto; } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-1 { height: calc(8.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-2 { height: calc(16.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-3 { height: calc(25% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-4 { height: calc(33.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-5 { height: calc(41.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-6 { height: calc(50% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-7 { height: calc(58.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-8 { height: calc(66.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-9 { height: calc(75% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-10 { height: calc(83.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-11 { height: calc(91.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .medium-12 { height: calc(100% - 1.875rem); } } @media print, screen and (min-width: 64em) { /* line 112, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-auto { height: auto; } /* line 116, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-shrink { height: auto; } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-1 { height: calc(8.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-2 { height: calc(16.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-3 { height: calc(25% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-4 { height: calc(33.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-5 { height: calc(41.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-6 { height: calc(50% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-7 { height: calc(58.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-8 { height: calc(66.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-9 { height: calc(75% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-10 { height: calc(83.33333% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-11 { height: calc(91.66667% - 1.875rem); } /* line 124, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y > .large-12 { height: calc(100% - 1.875rem); } } /* line 432, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-frame.grid-margin-y { height: calc(100vh + 1.25rem); } @media print, screen and (min-width: 40em) { /* line 432, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-frame.grid-margin-y { height: calc(100vh + 1.875rem); } } @media print, screen and (min-width: 64em) { /* line 432, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-frame.grid-margin-y { height: calc(100vh + 1.875rem); } } @media print, screen and (min-width: 40em) { /* line 436, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y.medium-grid-frame { height: calc(100vh + 1.875rem); } } @media print, screen and (min-width: 64em) { /* line 436, ../node_modules/foundation-sites/scss/xy-grid/_classes.scss */ .grid-margin-y.large-grid-frame { height: calc(100vh + 1.875rem); } } /* line 306, ../node_modules/foundation-sites/scss/components/_table.scss */ table { border-collapse: collapse; width: 100%; margin-bottom: 1rem; border-radius: 0; } /* line 111, ../node_modules/foundation-sites/scss/components/_table.scss */ thead, tbody, tfoot { border: 1px solid #f1f1f1; background-color: #fefefe; } /* line 119, ../node_modules/foundation-sites/scss/components/_table.scss */ caption { padding: 0.5rem 0.625rem 0.625rem; font-weight: bold; } /* line 125, ../node_modules/foundation-sites/scss/components/_table.scss */ thead { background: #f8f8f8; color: #0a0a0a; } /* line 131, ../node_modules/foundation-sites/scss/components/_table.scss */ tfoot { background: #f1f1f1; color: #0a0a0a; } /* line 140, ../node_modules/foundation-sites/scss/components/_table.scss */ thead tr, tfoot tr { background: transparent; } /* line 145, ../node_modules/foundation-sites/scss/components/_table.scss */ thead th, thead td, tfoot th, tfoot td { padding: 0.5rem 0.625rem 0.625rem; font-weight: bold; text-align: left; } /* line 155, ../node_modules/foundation-sites/scss/components/_table.scss */ tbody th, tbody td { padding: 0.5rem 0.625rem 0.625rem; } /* line 87, ../node_modules/foundation-sites/scss/components/_table.scss */ tbody tr:nth-child(even) { border-bottom: 0; background-color: #f1f1f1; } /* line 168, ../node_modules/foundation-sites/scss/components/_table.scss */ table.unstriped tbody { background-color: #fefefe; } /* line 103, ../node_modules/foundation-sites/scss/components/_table.scss */ table.unstriped tbody tr { border-bottom: 0; border-bottom: 1px solid #f1f1f1; background-color: #fefefe; } @media print, screen and (max-width: 63.99875em) { /* line 285, ../node_modules/foundation-sites/scss/components/_table.scss */ table.stack thead { display: none; } /* line 290, ../node_modules/foundation-sites/scss/components/_table.scss */ table.stack tfoot { display: none; } /* line 294, ../node_modules/foundation-sites/scss/components/_table.scss */ table.stack tr, table.stack th, table.stack td { display: block; } /* line 300, ../node_modules/foundation-sites/scss/components/_table.scss */ table.stack td { border-top: 0; } } /* line 316, ../node_modules/foundation-sites/scss/components/_table.scss */ table.scroll { display: block; width: 100%; overflow-x: auto; } /* line 222, ../node_modules/foundation-sites/scss/components/_table.scss */ table.hover thead tr:hover { background-color: #f3f3f3; } /* line 229, ../node_modules/foundation-sites/scss/components/_table.scss */ table.hover tfoot tr:hover { background-color: #ececec; } /* line 236, ../node_modules/foundation-sites/scss/components/_table.scss */ table.hover tbody tr:hover { background-color: #f9f9f9; } /* line 244, ../node_modules/foundation-sites/scss/components/_table.scss */ table.hover:not(.unstriped) tr:nth-of-type(even):hover { background-color: #ececec; } /* line 324, ../node_modules/foundation-sites/scss/components/_table.scss */ .table-scroll { overflow-x: auto; } /* line 361, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu { padding: 0; margin: 0; list-style: none; position: relative; display: flex; flex-wrap: wrap; } /* line 202, ../node_modules/foundation-sites/scss/util/_mixins.scss */ [data-whatinput='mouse'] .menu li { outline: 0; } /* line 72, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu a, .menu .button { line-height: 1; text-decoration: none; display: block; padding: 0.7rem 1rem; } /* line 81, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu input, .menu select, .menu a, .menu button { margin-bottom: 0; } /* line 88, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu input { display: inline-block; } /* line 365, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu, .menu.horizontal { flex-wrap: wrap; flex-direction: row; } /* line 370, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.vertical { flex-wrap: nowrap; flex-direction: column; } /* line 96, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.expanded li { flex: 1 1 0px; } /* line 380, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.simple { align-items: center; } /* line 214, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.simple li + li { margin-left: 1rem; } /* line 218, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.simple a { padding: 0; } @media print, screen and (min-width: 40em) { /* line 386, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.medium-horizontal { flex-wrap: wrap; flex-direction: row; } /* line 390, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.medium-vertical { flex-wrap: nowrap; flex-direction: column; } /* line 96, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.medium-expanded li { flex: 1 1 0px; } /* line 96, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.medium-simple li { flex: 1 1 0px; } } @media print, screen and (min-width: 64em) { /* line 386, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.large-horizontal { flex-wrap: wrap; flex-direction: row; } /* line 390, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.large-vertical { flex-wrap: nowrap; flex-direction: column; } /* line 96, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.large-expanded li { flex: 1 1 0px; } /* line 96, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.large-simple li { flex: 1 1 0px; } } /* line 404, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.nested { margin-right: 0; margin-left: 1rem; } /* line 244, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.icons a { display: flex; } /* line 244, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.icon-top a, .menu.icon-right a, .menu.icon-bottom a, .menu.icon-left a { display: flex; } /* line 264, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.icon-left li a { flex-flow: row nowrap; } /* line 269, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.icon-left li a img, .menu.icon-left li a i, .menu.icon-left li a svg { margin-right: 0.25rem; } /* line 281, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.icon-right li a { flex-flow: row nowrap; } /* line 286, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.icon-right li a img, .menu.icon-right li a i, .menu.icon-right li a svg { margin-left: 0.25rem; } /* line 298, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.icon-top li a { flex-flow: column nowrap; } /* line 306, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.icon-top li a img, .menu.icon-top li a i, .menu.icon-top li a svg { align-self: stretch; margin-bottom: 0.25rem; text-align: center; } /* line 322, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.icon-bottom li a { flex-flow: column nowrap; } /* line 330, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.icon-bottom li a img, .menu.icon-bottom li a i, .menu.icon-bottom li a svg { align-self: stretch; margin-bottom: 0.25rem; text-align: center; } /* line 444, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu .is-active > a { background: #1779ba; color: #fefefe; } /* line 450, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu .active > a { background: #1779ba; color: #fefefe; } /* line 456, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.align-left { justify-content: flex-start; } /* line 123, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.align-right li { display: flex; justify-content: flex-end; } /* line 127, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.align-right li .submenu li { justify-content: flex-start; } /* line 132, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.align-right.vertical li { display: block; text-align: right; } /* line 136, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.align-right.vertical li .submenu li { text-align: right; } /* line 464, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.align-right .nested { margin-right: 1rem; margin-left: 0; } /* line 157, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.align-center li { display: flex; justify-content: center; } /* line 161, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu.align-center li .submenu li { justify-content: flex-start; } /* line 474, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu .menu-text { padding: 0.7rem 1rem; font-weight: bold; line-height: 1; color: inherit; } /* line 481, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu-centered > .menu { justify-content: center; } /* line 157, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu-centered > .menu li { display: flex; justify-content: center; } /* line 161, ../node_modules/foundation-sites/scss/components/_menu.scss */ .menu-centered > .menu li .submenu li { justify-content: flex-start; } /* line 492, ../node_modules/foundation-sites/scss/components/_menu.scss */ .no-js [data-responsive-menu] ul { display: none; } /* line 83, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .accordion-menu li { width: 100%; } /* line 92, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .accordion-menu a { padding: 0.7rem 1rem; } /* line 99, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .accordion-menu .is-accordion-submenu a { padding: 0.7rem 1rem; } /* line 103, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .accordion-menu .nested.is-accordion-submenu { margin-right: 0; margin-left: 0.2em; } /* line 108, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .accordion-menu.align-right .nested.is-accordion-submenu { margin-right: 0.2em; margin-left: 0; } /* line 54, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a { position: relative; } /* line 57, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a::after { display: block; width: 0; height: 0; border: inset 6px; content: ''; border-bottom-width: 0; border-top-style: solid; border-color: #333 transparent transparent; position: absolute; top: 50%; margin-top: -3px; right: 1rem; } /* line 66, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .accordion-menu.align-left .is-accordion-submenu-parent > a::after { right: 1rem; left: auto; } /* line 71, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .accordion-menu.align-right .is-accordion-submenu-parent > a::after { right: auto; left: 1rem; } /* line 116, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .accordion-menu .is-accordion-submenu-parent[aria-expanded='true'] > a::after { transform: rotate(180deg); transform-origin: 50% 50%; } /* line 130, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .is-accordion-submenu-parent { position: relative; } /* line 134, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .has-submenu-toggle > a { margin-right: 40px; } /* line 139, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .submenu-toggle { position: absolute; top: 0; right: 0; width: 40px; height: 40px; cursor: pointer; } /* line 156, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .submenu-toggle::after { display: block; width: 0; height: 0; border: inset 6px; content: ''; border-bottom-width: 0; border-top-style: solid; border-color: #333 transparent transparent; top: 0; bottom: 0; margin: auto; } /* line 166, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .submenu-toggle[aria-expanded='true']::after { transform: scaleY(-1); transform-origin: 50% 50%; } /* line 171, ../node_modules/foundation-sites/scss/components/_accordion-menu.scss */ .submenu-toggle-text { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; } /* line 12, ../sass/style.scss */ h1 { font-size: 2.5em; text-transform: capitalize; } /* line 17, ../sass/style.scss */ h2 { font-size: 1.75em; text-transform: uppercase; border-bottom: 1px solid #ccc; } /* line 23, ../sass/style.scss */ h3 { font-size: 1.75em; margin: 0; color: #0c658c; } /* line 29, ../sass/style.scss */ h4 { font-size: 1em; margin-bottom: 0; } /* line 34, ../sass/style.scss */ h5 { font-size: 1em; margin-bottom: 0; } /* line 39, ../sass/style.scss */ body { overflow: hidden; } /* line 43, ../sass/style.scss */ #human-section { height: 100vh; overflow-y: scroll; } /* line 47, ../sass/style.scss */ #human-section .block-description { color: #666; } @media print, screen and (max-width: 74.99875em) { /* line 43, ../sass/style.scss */ #human-section { padding-right: 1.5em; } } @media print, screen and (max-width: 39.99875em) { /* line 43, ../sass/style.scss */ #human-section { padding-left: 1.5em; } } /* line 60, ../sass/style.scss */ .block-description { margin-top: .5em; } /* line 66, ../sass/style.scss */ .group .content { padding-left: 1em; } /* line 71, ../sass/style.scss */ .ressource { margin-bottom: 2em; } /* line 77, ../sass/style.scss */ .attributes .variable-table .name { vertical-align: top; } /* line 80, ../sass/style.scss */ .attributes .variable-table .description { display: block; } /* line 88, ../sass/style.scss */ .variable-table tbody { border: none; } /* line 92, ../sass/style.scss */ .variable-table tr { padding-top: .5em; border-color: #eee; } /* line 97, ../sass/style.scss */ .variable-table .name { font-family: monospace; font-size: 1.1em; font-weight: bold; } /* line 103, ../sass/style.scss */ .variable-table .datatype { font-family: monospace; font-size: 1.1em; vertical-align: top; } /* line 109, ../sass/style.scss */ .variable-table .default-value { font-family: monospace; } /* line 113, ../sass/style.scss */ .variable-table .required, .variable-table .optional { border: 1px solid white; border-radius: 8px; padding: .3em .5em; font-family: monospace; } /* line 121, ../sass/style.scss */ .variable-table .required { border-color: #D91E18; color: #D91E18; } /* line 126, ../sass/style.scss */ .variable-table .optional { border-color: #95A5A6; color: #95A5A6; } /* line 135, ../sass/style.scss */ .action { height: auto; border: 1px solid #fff; background-color: #f2f2f2; display: flex; } /* line 141, ../sass/style.scss */ .action:hover { background-color: #eee; cursor: pointer; } /* line 146, ../sass/style.scss */ .action .http-method-flag { display: block; width: 8px; } /* line 150, ../sass/style.scss */ .action .http-method-flag.get { background-color: #2baf3b; } /* line 154, ../sass/style.scss */ .action .http-method-flag.post { background-color: #1E8BC3; } /* line 158, ../sass/style.scss */ .action .http-method-flag.put { background-color: #947CB0; } /* line 162, ../sass/style.scss */ .action .http-method-flag.patch { background-color: #E87E04; } /* line 166, ../sass/style.scss */ .action .http-method-flag.delete { background-color: #D91E18; } /* line 171, ../sass/style.scss */ .action .action-name { display: block; margin: .3em 0 .3em 1em; font-weight: bold; font-size: 1.4em; text-transform: uppercase; width: 5em; } /* line 180, ../sass/style.scss */ .action .action-url { display: block; margin: .4em 0 .4em 1em; font-size: 1.2em; text-transform: lowercase; color: gray; } /* line 189, ../sass/style.scss */ .http-method-badge { border: 1px solid white; border-radius: 5px; padding: .1em .6em; font-weight: bold; font-family: monospace; } /* line 196, ../sass/style.scss */ .http-method-badge.get { color: #2baf3b; border-color: #2baf3b; } /* line 201, ../sass/style.scss */ .http-method-badge.post { color: #1E8BC3; border-color: #1E8BC3; } /* line 206, ../sass/style.scss */ .http-method-badge.put { color: #947CB0; border-color: #947CB0; } /* line 211, ../sass/style.scss */ .http-method-badge.patch { color: #E87E04; border-color: #E87E04; } /* line 216, ../sass/style.scss */ .http-method-badge.delete { color: #D91E18; border-color: #D91E18; } /* line 222, ../sass/style.scss */ #toc { padding: 1.5em 1em 0 1em; background-color: #f2f2f2; overflow-y: scroll; height: 100vh; } /* line 228, ../sass/style.scss */ #toc a { padding-left: 0 !important; color: black; } /* line 231, ../sass/style.scss */ #toc a:hover { color: black; } /* line 234, ../sass/style.scss */ #toc a:visited { color: black; } /* line 239, ../sass/style.scss */ #toc li:hover > a:first-child { color: #777; } @media print, screen and (min-width: 40em) { /* line 222, ../sass/style.scss */ #toc { display: block; } } @media print, screen and (max-width: 39.99875em) { /* line 222, ../sass/style.scss */ #toc { position: absolute; top: 0; left: 0; } } /* line 254, ../sass/style.scss */ .toc-button { position: absolute; top: 2em; left: .5em; z-index: 100; } @media print, screen and (min-width: 40em) { /* line 254, ../sass/style.scss */ .toc-button { display: none; } } /* line 269, ../sass/style.scss */ .toc-action .title { display: block; margin-top: .4em; } /*# sourceMappingURL=style.css.map */
0.360151
0.075756
@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Dancing+Script&family=Lobster&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap"); html { font-size: 10px; background: url(https://c0.wallpaperflare.com/preview/305/356/840/black-and-white-drum-set.jpg) bottom center; background-size: cover; } body, html { margin: 0; padding: 0; font-family: sans-serif; } .title-card { display: flex; justify-content: center; align-items: center; flex-direction: column; width: 50%; height: auto; font-size: 3rem; border: 2px solid black; margin: 10% auto 0 auto; background-color: antiquewhite; border-radius: 20px; /* border-left: 50px solid transparent; */ /* border-right: 50px solid transparent; */ } @media (max-width: 900px) { .title-card { display: flex; justify-content: center; align-items: center; flex-direction: column; width: 70%; height: 40vh; font-size: 2.5rem; border: 2px solid black; margin: 10% auto 0 auto; background-color: antiquewhite; border-radius: 20px; } h1 { width: auto; display: flex; flex-wrap: wrap; display: flex; text-align: center; /* align-content: center; */ /* justify-content: center; */ margin: 0 auto; } p { width: auto; text-align: center; display: flex; /* align-content: center; */ /* justify-content: center; */ margin: 5% auto; } audio { width: 80%; display: flex; /* align-content: center; */ /* justify-content: center; */ margin: 5% auto; } } @media (max-width: 600px) { .title-card { display: flex; justify-content: center; align-items: center; flex-direction: column; width: 70%; height: auto; font-size: 0.5rem; border: 2px solid black; margin: 10% auto 0 auto; background-color: antiquewhite; border-radius: 20px; } h1 { width: auto; display: flex; flex-wrap: wrap; font-size: 0.2rem; display: flex; text-align: center; /* align-content: center; */ /* justify-content: center; */ margin: 0 auto; } p { width: auto; text-align: center; display: flex; /* align-content: center; */ /* justify-content: center; */ margin: 5% auto; } audio { width: 80%; display: flex; /* align-content: center; */ /* justify-content: center; */ margin: 5% auto; } } @media (max-width: 1100px) { .title-card { display: flex; justify-content: center; align-items: center; flex-direction: column; width: 60%; height: 40vh; border: 2px solid black; margin: 10% auto 0 auto; background-color: antiquewhite; border-radius: 20px; } h1 { width: auto; display: flex; flex-wrap: wrap; display: flex; font-size: 4rem; text-align: center; /* align-content: center; */ /* justify-content: center; */ margin: 0 auto; } p { width: auto; text-align: center; display: flex; font-size: 100rem; /* align-content: center; */ /* justify-content: center; */ margin: 5% auto; } audio { width: 80%; display: flex; /* align-content: center; */ /* justify-content: center; */ margin: 5% auto; } } h1 { font-family: "Lobster", cursive; } p { font-size: 2rem; font-family: "Dancing Script", cursive; /* font-family: "Lobster", cursive; */ } audio { margin-bottom: 3%; } audio:hover, audio:focus, audio:active { -webkit-box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.4); -moz-box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.4); box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.4); -webkit-transform: scale(1.05); -moz-transform: scale(1.05); transform: scale(1.05); } .keys { display: flex; flex: 1; min-height: 40vh; align-items: center; justify-content: center; } @media (max-width: 900px) { .keys { display: flex; flex-wrap: wrap; } } .key { border: 0.4rem solid black; border-radius: 0.5rem; margin: 1rem; font-size: 1.5rem; padding: 1rem 0.5rem; transition: all 0.07s ease; width: 10rem; text-align: center; color: white; background: rgba(201, 240, 203, 0.4); text-shadow: 0 0 0.5rem black; } h5 { text-align: center; color: white; } .playing { transform: scale(1.1); border-color: #ffc600; box-shadow: 0 0 1rem #ffc600; } kbd { display: block; font-size: 4rem; font-family: "Permanent Marker", cursive; } .sound { font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.1rem; color: #ffc600; }
style.css
@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Dancing+Script&family=Lobster&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap"); html { font-size: 10px; background: url(https://c0.wallpaperflare.com/preview/305/356/840/black-and-white-drum-set.jpg) bottom center; background-size: cover; } body, html { margin: 0; padding: 0; font-family: sans-serif; } .title-card { display: flex; justify-content: center; align-items: center; flex-direction: column; width: 50%; height: auto; font-size: 3rem; border: 2px solid black; margin: 10% auto 0 auto; background-color: antiquewhite; border-radius: 20px; /* border-left: 50px solid transparent; */ /* border-right: 50px solid transparent; */ } @media (max-width: 900px) { .title-card { display: flex; justify-content: center; align-items: center; flex-direction: column; width: 70%; height: 40vh; font-size: 2.5rem; border: 2px solid black; margin: 10% auto 0 auto; background-color: antiquewhite; border-radius: 20px; } h1 { width: auto; display: flex; flex-wrap: wrap; display: flex; text-align: center; /* align-content: center; */ /* justify-content: center; */ margin: 0 auto; } p { width: auto; text-align: center; display: flex; /* align-content: center; */ /* justify-content: center; */ margin: 5% auto; } audio { width: 80%; display: flex; /* align-content: center; */ /* justify-content: center; */ margin: 5% auto; } } @media (max-width: 600px) { .title-card { display: flex; justify-content: center; align-items: center; flex-direction: column; width: 70%; height: auto; font-size: 0.5rem; border: 2px solid black; margin: 10% auto 0 auto; background-color: antiquewhite; border-radius: 20px; } h1 { width: auto; display: flex; flex-wrap: wrap; font-size: 0.2rem; display: flex; text-align: center; /* align-content: center; */ /* justify-content: center; */ margin: 0 auto; } p { width: auto; text-align: center; display: flex; /* align-content: center; */ /* justify-content: center; */ margin: 5% auto; } audio { width: 80%; display: flex; /* align-content: center; */ /* justify-content: center; */ margin: 5% auto; } } @media (max-width: 1100px) { .title-card { display: flex; justify-content: center; align-items: center; flex-direction: column; width: 60%; height: 40vh; border: 2px solid black; margin: 10% auto 0 auto; background-color: antiquewhite; border-radius: 20px; } h1 { width: auto; display: flex; flex-wrap: wrap; display: flex; font-size: 4rem; text-align: center; /* align-content: center; */ /* justify-content: center; */ margin: 0 auto; } p { width: auto; text-align: center; display: flex; font-size: 100rem; /* align-content: center; */ /* justify-content: center; */ margin: 5% auto; } audio { width: 80%; display: flex; /* align-content: center; */ /* justify-content: center; */ margin: 5% auto; } } h1 { font-family: "Lobster", cursive; } p { font-size: 2rem; font-family: "Dancing Script", cursive; /* font-family: "Lobster", cursive; */ } audio { margin-bottom: 3%; } audio:hover, audio:focus, audio:active { -webkit-box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.4); -moz-box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.4); box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.4); -webkit-transform: scale(1.05); -moz-transform: scale(1.05); transform: scale(1.05); } .keys { display: flex; flex: 1; min-height: 40vh; align-items: center; justify-content: center; } @media (max-width: 900px) { .keys { display: flex; flex-wrap: wrap; } } .key { border: 0.4rem solid black; border-radius: 0.5rem; margin: 1rem; font-size: 1.5rem; padding: 1rem 0.5rem; transition: all 0.07s ease; width: 10rem; text-align: center; color: white; background: rgba(201, 240, 203, 0.4); text-shadow: 0 0 0.5rem black; } h5 { text-align: center; color: white; } .playing { transform: scale(1.1); border-color: #ffc600; box-shadow: 0 0 1rem #ffc600; } kbd { display: block; font-size: 4rem; font-family: "Permanent Marker", cursive; } .sound { font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.1rem; color: #ffc600; }
0.340595
0.09426
.secondaryButton{ padding: 10px 0px; width: 150px; font-family: 'Montserrat', 'sans-seriff'; font-size: 14px; border-radius: 30px; outline: none; color: #fff; border: 2px solid rgb(255, 255, 255); background-color: rgba(255, 255, 255, 0); transition: .2s ease-in-out 0s; font-weight: 500; } .secondaryButton:hover{ border: 2px solid rgb(255, 255, 255); background-color: rgb(0, 67, 129); color: #000; cursor: pointer; background-color: #fff; } .footer-image{ /* height: 150px; */ /* display: flex; align-items: center; justify-content: center; */ /* overflow-x: hidden; overflow-y: hidden; */ background-image: url(../IMAGES/HOME/footer_3.png); background-position: top center; background-size: cover; background-repeat: no-repeat; height: 170px; display: none; } .footer-image img{ /* margin: 0; padding: 0; height: auto; */ } .footer{ height: 600px; /* font-size: 12px; */ margin: 0 auto; padding: 10px; display: flex; flex-direction: column; align-items: center; justify-content: space-between; /* height: 5vh; */ text-align: center; /* color: rgb(255, 255, 255); */ background-color: rgb(10, 10, 10); } .footer a{ color: rgb(185, 185, 185)!important; } .footer .copy-rights{ margin: 20px 0; padding: 10px 0; } .footer .copy-rights .night-foot{ font-size: .8em; position: absolute; left: 30px; color: rgb(161, 161, 161); } .footer .copy-rights .terms a{ text-decoration: none; } .footer .copy-rights .terms{ font-size: .8em; position: absolute; right: 30px; color: rgb(161, 161, 161); } .footer .copy-rights .dark{ } .footer .content{ margin-top: 55px; width: 100%; /* height: 30vh; */ display: flex; align-items: center; justify-content: center; /* margin: 1px solid red; */ } .footer .about-cont{ height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; height: 100%; margin-left: 20px; /* padding: 0 20px; */ /* background-color: rgb(146, 143, 143); */ } .footer .content .about-cont .logo{ width: 100%; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; } .footer .content .about-cont .logo img{ height: 60px; /* filter: brightness(0) invert(1) ; */ } .footer .about-cont .logo .footer-about{ text-align: left; color: rgb(202, 202, 202); font-size: .8em; line-height: 1.5em; width: 80%; } .content .about-cont .logo .underline{ height: 2px; width: 40px; background-color: darkgray; margin: 0 0 10px 0; } .content .about-cont .address-box{ width: 100%; margin-top: 40px; text-align: left; /* text-transform: uppercase; */ } .footer .content .about-cont .address-box .footer-heading{ font-size: 1em; color: rgb(214, 214, 214); font-weight: 700; text-align: left; } .footer .content .about-cont .address-box .underline{ height: 2px; width: 40px; background-color: darkgray; margin: 10px 0; } .footer .content .about-cont .address-box .address{ font-size: .8em; line-height: 1.5em; color: rgb(202, 202, 202); /* font-weight: 700; */ margin-bottom: 10px; } .footer .content .about-cont .address-box .view-map{ font-size: .8em; line-height: 1.5em; color: rgb(202, 202, 202); text-decoration: none; } .footer .cont-box{ /* margin: 0 10px; */ height: 100%; /* width: 33.3%; */ /* background-color: black; */ } .footer .about-cont{ width: 30%; } .footer .link-cont{ width: 40%; } .footer .subscribe-cont{ width: 30%; } .footer .about-cont .footer-social-links{ width: 100%; margin: 30px 0; list-style: none; display: flex; flex-direction: row; align-items: center; justify-content: flex-start; } .footer .about-cont .footer-social-links li{ margin-right: 20px; } .footer .about-cont .footer-social-links li a .fa{ font-size: 1.5em!important; } .footer .link-cont{ display: flex; align-items: flex-start; justify-content: flex-start; height: 50%; } .footer .link-cont .two , .link-cont .three{ height: 100%; /* display: flex; flex-direction: column; align-items: flex-start; justify-content: center; */ padding-left: 80px; } .footer .two .heading p, .footer .three .heading p{ font-size: 1em; color: rgb(214, 214, 214); font-weight: 700; text-align: left; } .footer .two .underline , .footer .three .underline{ height: 2px; width: 40px; background-color: darkgray; margin: 10px 0; } .footer .two ul, .footer .three ul{ list-style: none; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; /* margin: 20px 0 20px 80px ; */ } .footer .two ul li , .footer .three ul li{ margin: 3px 0; } .footer .two a, .footer .three a{ text-transform: uppercase; font-size: .8em; text-decoration: none; color: rgb(255, 255, 255); } .footer .logo img{ height: 70px; } .footer .subscribe-cont{ height: 50%; padding-left: 10%; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; } .footer .subscribe-cont .btns { margin-bottom: 40px; } .footer .subscribe-cont .btns .heading{ font-size: 1em; color: rgb(214, 214, 214); font-weight: 700; text-align: left; } .footer .subscribe-cont .btns .underline{ height: 2px; width: 40px; background-color: darkgray; margin: 10px 0; } .footer .subscribe-cont .btns button{ margin-top: 10px; } @media screen and (max-width:768px) { .footer{ height: auto; } .footer .content{ flex-direction: column-reverse; } .footer .about-cont{ width: 100%; display: flex; flex-direction: column-reverse; } .footer .about-cont .logo{ margin-top: 20px; order: 2; } .footer .about-cont .footer-social-links{ order: 1; align-items: center; justify-content: center; } .footer .about-cont .address-box{ order: 3; } .footer .two .heading p, .footer .three .heading p{ font-size: .8em; } .footer .content .about-cont .address-box .footer-heading{ font-size: .8em; } .footer .subscribe-cont .btns .heading{ font-size: .8em; } .footer .content .about-cont .address-box .address{ font-size: .65em; } .footer .content .about-cont .address-box .view-map{ font-size: .65em; } .footer .about-cont .logo .footer-about{ font-size: .65em; line-height: 1.5em; } .footer .link-cont{ width: 100%; } .footer .subscribe-cont{ width: 100%; } .footer .link-cont .two { height: 100%; /* display: flex; flex-direction: column; align-items: flex-start; justify-content: center; */ padding-left: 10px; } .footer .link-cont .three{ /* padding-left: 30px; */ } .footer .two a, .footer .three a{ font-size: .65em; /* margin: 20px 0 20px 80px ; */ } .footer .copy-rights{ padding: 0 0; display: flex; flex-direction: column-reverse; } .footer .copy-rights .terms{ font-size: .65em; position: unset; right: 20px; color: rgb(161, 161, 161); padding: 10px 0; } .footer .copy-rights .night-foot{ font-size: .65em; position: unset; left: 20px; color: rgb(161, 161, 161); } } @media screen and (max-width:350px) { .footer .two a, .footer .three a{ font-size: .6em; } .footer .copy-rights .terms{ font-size: .55em; } .footer .copy-rights .night-foot{ font-size: .55em; } }
src/style/components/footer.css
.secondaryButton{ padding: 10px 0px; width: 150px; font-family: 'Montserrat', 'sans-seriff'; font-size: 14px; border-radius: 30px; outline: none; color: #fff; border: 2px solid rgb(255, 255, 255); background-color: rgba(255, 255, 255, 0); transition: .2s ease-in-out 0s; font-weight: 500; } .secondaryButton:hover{ border: 2px solid rgb(255, 255, 255); background-color: rgb(0, 67, 129); color: #000; cursor: pointer; background-color: #fff; } .footer-image{ /* height: 150px; */ /* display: flex; align-items: center; justify-content: center; */ /* overflow-x: hidden; overflow-y: hidden; */ background-image: url(../IMAGES/HOME/footer_3.png); background-position: top center; background-size: cover; background-repeat: no-repeat; height: 170px; display: none; } .footer-image img{ /* margin: 0; padding: 0; height: auto; */ } .footer{ height: 600px; /* font-size: 12px; */ margin: 0 auto; padding: 10px; display: flex; flex-direction: column; align-items: center; justify-content: space-between; /* height: 5vh; */ text-align: center; /* color: rgb(255, 255, 255); */ background-color: rgb(10, 10, 10); } .footer a{ color: rgb(185, 185, 185)!important; } .footer .copy-rights{ margin: 20px 0; padding: 10px 0; } .footer .copy-rights .night-foot{ font-size: .8em; position: absolute; left: 30px; color: rgb(161, 161, 161); } .footer .copy-rights .terms a{ text-decoration: none; } .footer .copy-rights .terms{ font-size: .8em; position: absolute; right: 30px; color: rgb(161, 161, 161); } .footer .copy-rights .dark{ } .footer .content{ margin-top: 55px; width: 100%; /* height: 30vh; */ display: flex; align-items: center; justify-content: center; /* margin: 1px solid red; */ } .footer .about-cont{ height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; height: 100%; margin-left: 20px; /* padding: 0 20px; */ /* background-color: rgb(146, 143, 143); */ } .footer .content .about-cont .logo{ width: 100%; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; } .footer .content .about-cont .logo img{ height: 60px; /* filter: brightness(0) invert(1) ; */ } .footer .about-cont .logo .footer-about{ text-align: left; color: rgb(202, 202, 202); font-size: .8em; line-height: 1.5em; width: 80%; } .content .about-cont .logo .underline{ height: 2px; width: 40px; background-color: darkgray; margin: 0 0 10px 0; } .content .about-cont .address-box{ width: 100%; margin-top: 40px; text-align: left; /* text-transform: uppercase; */ } .footer .content .about-cont .address-box .footer-heading{ font-size: 1em; color: rgb(214, 214, 214); font-weight: 700; text-align: left; } .footer .content .about-cont .address-box .underline{ height: 2px; width: 40px; background-color: darkgray; margin: 10px 0; } .footer .content .about-cont .address-box .address{ font-size: .8em; line-height: 1.5em; color: rgb(202, 202, 202); /* font-weight: 700; */ margin-bottom: 10px; } .footer .content .about-cont .address-box .view-map{ font-size: .8em; line-height: 1.5em; color: rgb(202, 202, 202); text-decoration: none; } .footer .cont-box{ /* margin: 0 10px; */ height: 100%; /* width: 33.3%; */ /* background-color: black; */ } .footer .about-cont{ width: 30%; } .footer .link-cont{ width: 40%; } .footer .subscribe-cont{ width: 30%; } .footer .about-cont .footer-social-links{ width: 100%; margin: 30px 0; list-style: none; display: flex; flex-direction: row; align-items: center; justify-content: flex-start; } .footer .about-cont .footer-social-links li{ margin-right: 20px; } .footer .about-cont .footer-social-links li a .fa{ font-size: 1.5em!important; } .footer .link-cont{ display: flex; align-items: flex-start; justify-content: flex-start; height: 50%; } .footer .link-cont .two , .link-cont .three{ height: 100%; /* display: flex; flex-direction: column; align-items: flex-start; justify-content: center; */ padding-left: 80px; } .footer .two .heading p, .footer .three .heading p{ font-size: 1em; color: rgb(214, 214, 214); font-weight: 700; text-align: left; } .footer .two .underline , .footer .three .underline{ height: 2px; width: 40px; background-color: darkgray; margin: 10px 0; } .footer .two ul, .footer .three ul{ list-style: none; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; /* margin: 20px 0 20px 80px ; */ } .footer .two ul li , .footer .three ul li{ margin: 3px 0; } .footer .two a, .footer .three a{ text-transform: uppercase; font-size: .8em; text-decoration: none; color: rgb(255, 255, 255); } .footer .logo img{ height: 70px; } .footer .subscribe-cont{ height: 50%; padding-left: 10%; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; } .footer .subscribe-cont .btns { margin-bottom: 40px; } .footer .subscribe-cont .btns .heading{ font-size: 1em; color: rgb(214, 214, 214); font-weight: 700; text-align: left; } .footer .subscribe-cont .btns .underline{ height: 2px; width: 40px; background-color: darkgray; margin: 10px 0; } .footer .subscribe-cont .btns button{ margin-top: 10px; } @media screen and (max-width:768px) { .footer{ height: auto; } .footer .content{ flex-direction: column-reverse; } .footer .about-cont{ width: 100%; display: flex; flex-direction: column-reverse; } .footer .about-cont .logo{ margin-top: 20px; order: 2; } .footer .about-cont .footer-social-links{ order: 1; align-items: center; justify-content: center; } .footer .about-cont .address-box{ order: 3; } .footer .two .heading p, .footer .three .heading p{ font-size: .8em; } .footer .content .about-cont .address-box .footer-heading{ font-size: .8em; } .footer .subscribe-cont .btns .heading{ font-size: .8em; } .footer .content .about-cont .address-box .address{ font-size: .65em; } .footer .content .about-cont .address-box .view-map{ font-size: .65em; } .footer .about-cont .logo .footer-about{ font-size: .65em; line-height: 1.5em; } .footer .link-cont{ width: 100%; } .footer .subscribe-cont{ width: 100%; } .footer .link-cont .two { height: 100%; /* display: flex; flex-direction: column; align-items: flex-start; justify-content: center; */ padding-left: 10px; } .footer .link-cont .three{ /* padding-left: 30px; */ } .footer .two a, .footer .three a{ font-size: .65em; /* margin: 20px 0 20px 80px ; */ } .footer .copy-rights{ padding: 0 0; display: flex; flex-direction: column-reverse; } .footer .copy-rights .terms{ font-size: .65em; position: unset; right: 20px; color: rgb(161, 161, 161); padding: 10px 0; } .footer .copy-rights .night-foot{ font-size: .65em; position: unset; left: 20px; color: rgb(161, 161, 161); } } @media screen and (max-width:350px) { .footer .two a, .footer .three a{ font-size: .6em; } .footer .copy-rights .terms{ font-size: .55em; } .footer .copy-rights .night-foot{ font-size: .55em; } }
0.330687
0.057098
body { margin: 0; padding: 0; overflow-x: hidden; font-family: 'Open Sans', Helvetica, Arial, sans-serif; } .container { width: 400px; margin: 40px auto 20px; padding: 30px; background-color: rgb(204, 198, 195); color: #333!important; min-height: 180px; max-height: 400px; overflow: hidden; } h1 { color:#333; font-size: 1.3em; text-align: center } .option-row { display: table-row; } .option-name { display: table-cell; font-weight: bold; margin-top: 3px; padding-right: 16px; padding-top: 16px; white-space: nowrap; } .option-picker { display: table-cell; } .buttons { clear: left; padding: 2em 0 0.7em; } #status { margin-left: 10px; font-weight: bold; padding: 4px; } /* A pen by <NAME> Bootstrap Button designs https://codepen.io/jonathanstoker/pen/ZYMazv */ .button{ display: inline-block; *display: inline; zoom: 1; padding: 6px 20px; margin: 0; cursor: pointer; border: 1px solid #bbb; overflow: visible; font: bold 13px arial, helvetica, sans-serif; text-decoration: none; white-space: nowrap; color: #555; background-color: #ddd; background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,1)), to(rgba(255,255,255,0))); background-image: -webkit-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0)); background-image: -ms-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0)); background-image: -o-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0)); background-image: linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0)); -webkit-transition: background-color .2s ease-out; -moz-transition: background-color .2s ease-out; -ms-transition: background-color .2s ease-out; -o-transition: background-color .2s ease-out; transition: background-color .2s ease-out; background-clip: padding-box; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, .3), 0 2px 2px -1px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .3) inset; -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, .3), 0 2px 2px -1px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .3) inset; box-shadow: 0 1px 0 rgba(0, 0, 0, .3), 0 2px 2px -1px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .3) inset; text-shadow: 0 1px 0 rgba(255,255,255, .9); } .button:hover{ background-color: #eee; color: #555; } .button:active{ background: #e9e9e9; position: relative; top: 1px; text-shadow: none; -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .3) inset; -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .3) inset; box-shadow: 0 1px 1px rgba(0, 0, 0, .3) inset; } .button[disabled], .button[disabled]:hover, .button[disabled]:active{ border-color: #eaeaea; background: #fafafa; cursor: default; position: static; color: #999; -moz-box-shadow: none !important; -webkit-box-shadow: none !important; box-shadow: none !important; text-shadow: none !important; } .button.small{ padding: 4px 12px; } .button.large{ padding: 12px 30px; text-transform: uppercase; } .button.large:active{ top: 2px; } .button.color{ color: #fff; text-shadow: 0 1px 0 rgba(0,0,0,.2); background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,.3)), to(rgba(255,255,255,0))); background-image: -webkit-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0)); background-image: -moz-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0)); background-image: -ms-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0)); background-image: -o-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0)); background-image: linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0)); } .button.green{ background-color: #57a957; border-color: #57a957; } .button.green:hover{ background-color: #62c462; } .button.green:active{ background: #57a957; } /* */ .button.red{ background-color: #c43c35; border-color: #c43c35; } .button.red:hover{ background-color: #ee5f5b; } .button.red:active{ background: #c43c35; } /* */ .button.blue{ background-color: #269CE9; border-color: #269CE9; } .button.blue:hover{ background-color: #70B9E8; } .button.blue:active{ background: #269CE9; } /* */ .green[disabled], .green[disabled]:hover, .green[disabled]:active{ border-color: #57A957; background: #57A957; color: #D2FFD2; } .red[disabled], .red[disabled]:hover, .red[disabled]:active{ border-color: #C43C35; background: #C43C35; color: #FFD3D3; } .blue[disabled], .blue[disabled]:hover, .blue[disabled]:active{ border-color: #269CE9; background: #269CE9; color: #93D5FF; } /* а“б€бƒаПаПаИб€аОаВаКаА аКаНаОаПаОаК */ .button-group, .button-group li{ display: inline-block; *display: inline; zoom: 1; } .button-group{ font-size: 0; /* а—аАаЗаАаОб€ аДаЛб аВбб‚б€аОаЕаНаНаОаГаО баЛаЕаМаЕаНб‚аА */ margin: 0; padding: 0; background: rgba(0, 0, 0, .04); border-bottom: 1px solid rgba(0, 0, 0, .07); padding: 7px; -moz-border-radius: 7px; -webkit-border-radius: 7px; border-radius: 7px; } .button-group li{ margin-right: -1px; /* аŸаЕб€аЕаКб€б‹б‚аИаЕ аКаАаЖаДаОаЙ аПб€аАаВаОаЙ б€аАаМаКаИ */ } .button-group .button{ font-size: 13px; /* аЃбб‚аАаНаАаВаЛаИаВаАаЕаМ б€аАаЗаМаЕб€ бˆб€аИб„б‚аА */ -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0; } .button-group .button:active{ -moz-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset; -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset; box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset; } .button-group li:first-child .button{ -moz-border-radius: 3px 0 0 3px; -webkit-border-radius: 3px 0 0 3px; border-radius: 3px 0 0 3px; } .button-group li:first-child .button:active{ -moz-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset; -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset; box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset; } .button-group li:last-child .button{ -moz-border-radius: 0 3px 3px 0; -webkit-border-radius: 0 3px 3px 0; border-radius: 0 3px 3px 0; } .button-group li:last-child .button:active{ -moz-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset; -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset; box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset; }
src/styles/setting.css
body { margin: 0; padding: 0; overflow-x: hidden; font-family: 'Open Sans', Helvetica, Arial, sans-serif; } .container { width: 400px; margin: 40px auto 20px; padding: 30px; background-color: rgb(204, 198, 195); color: #333!important; min-height: 180px; max-height: 400px; overflow: hidden; } h1 { color:#333; font-size: 1.3em; text-align: center } .option-row { display: table-row; } .option-name { display: table-cell; font-weight: bold; margin-top: 3px; padding-right: 16px; padding-top: 16px; white-space: nowrap; } .option-picker { display: table-cell; } .buttons { clear: left; padding: 2em 0 0.7em; } #status { margin-left: 10px; font-weight: bold; padding: 4px; } /* A pen by <NAME> Bootstrap Button designs https://codepen.io/jonathanstoker/pen/ZYMazv */ .button{ display: inline-block; *display: inline; zoom: 1; padding: 6px 20px; margin: 0; cursor: pointer; border: 1px solid #bbb; overflow: visible; font: bold 13px arial, helvetica, sans-serif; text-decoration: none; white-space: nowrap; color: #555; background-color: #ddd; background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,1)), to(rgba(255,255,255,0))); background-image: -webkit-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0)); background-image: -ms-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0)); background-image: -o-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0)); background-image: linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0)); -webkit-transition: background-color .2s ease-out; -moz-transition: background-color .2s ease-out; -ms-transition: background-color .2s ease-out; -o-transition: background-color .2s ease-out; transition: background-color .2s ease-out; background-clip: padding-box; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, .3), 0 2px 2px -1px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .3) inset; -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, .3), 0 2px 2px -1px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .3) inset; box-shadow: 0 1px 0 rgba(0, 0, 0, .3), 0 2px 2px -1px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .3) inset; text-shadow: 0 1px 0 rgba(255,255,255, .9); } .button:hover{ background-color: #eee; color: #555; } .button:active{ background: #e9e9e9; position: relative; top: 1px; text-shadow: none; -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .3) inset; -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .3) inset; box-shadow: 0 1px 1px rgba(0, 0, 0, .3) inset; } .button[disabled], .button[disabled]:hover, .button[disabled]:active{ border-color: #eaeaea; background: #fafafa; cursor: default; position: static; color: #999; -moz-box-shadow: none !important; -webkit-box-shadow: none !important; box-shadow: none !important; text-shadow: none !important; } .button.small{ padding: 4px 12px; } .button.large{ padding: 12px 30px; text-transform: uppercase; } .button.large:active{ top: 2px; } .button.color{ color: #fff; text-shadow: 0 1px 0 rgba(0,0,0,.2); background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,.3)), to(rgba(255,255,255,0))); background-image: -webkit-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0)); background-image: -moz-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0)); background-image: -ms-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0)); background-image: -o-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0)); background-image: linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0)); } .button.green{ background-color: #57a957; border-color: #57a957; } .button.green:hover{ background-color: #62c462; } .button.green:active{ background: #57a957; } /* */ .button.red{ background-color: #c43c35; border-color: #c43c35; } .button.red:hover{ background-color: #ee5f5b; } .button.red:active{ background: #c43c35; } /* */ .button.blue{ background-color: #269CE9; border-color: #269CE9; } .button.blue:hover{ background-color: #70B9E8; } .button.blue:active{ background: #269CE9; } /* */ .green[disabled], .green[disabled]:hover, .green[disabled]:active{ border-color: #57A957; background: #57A957; color: #D2FFD2; } .red[disabled], .red[disabled]:hover, .red[disabled]:active{ border-color: #C43C35; background: #C43C35; color: #FFD3D3; } .blue[disabled], .blue[disabled]:hover, .blue[disabled]:active{ border-color: #269CE9; background: #269CE9; color: #93D5FF; } /* а“б€бƒаПаПаИб€аОаВаКаА аКаНаОаПаОаК */ .button-group, .button-group li{ display: inline-block; *display: inline; zoom: 1; } .button-group{ font-size: 0; /* а—аАаЗаАаОб€ аДаЛб аВбб‚б€аОаЕаНаНаОаГаО баЛаЕаМаЕаНб‚аА */ margin: 0; padding: 0; background: rgba(0, 0, 0, .04); border-bottom: 1px solid rgba(0, 0, 0, .07); padding: 7px; -moz-border-radius: 7px; -webkit-border-radius: 7px; border-radius: 7px; } .button-group li{ margin-right: -1px; /* аŸаЕб€аЕаКб€б‹б‚аИаЕ аКаАаЖаДаОаЙ аПб€аАаВаОаЙ б€аАаМаКаИ */ } .button-group .button{ font-size: 13px; /* аЃбб‚аАаНаАаВаЛаИаВаАаЕаМ б€аАаЗаМаЕб€ бˆб€аИб„б‚аА */ -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0; } .button-group .button:active{ -moz-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset; -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset; box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset; } .button-group li:first-child .button{ -moz-border-radius: 3px 0 0 3px; -webkit-border-radius: 3px 0 0 3px; border-radius: 3px 0 0 3px; } .button-group li:first-child .button:active{ -moz-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset; -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset; box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset; } .button-group li:last-child .button{ -moz-border-radius: 0 3px 3px 0; -webkit-border-radius: 0 3px 3px 0; border-radius: 0 3px 3px 0; } .button-group li:last-child .button:active{ -moz-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset; -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset; box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset; }
0.396068
0.075041
.project-link { margin-top: 5%; } .project-madeAt { font-size: 17px; } .project-madeAt { font-weight: normal; font-size: 22px; } .project-description { border-radius: 10px; text-align: left; font-size: 15px; font-weight: normal; z-index: 10; width: 140%; margin: 25px 0 0 -40%; padding: 20px; background-color: rgb(23, 42, 69); box-shadow: rgba(2, 12, 27, 0.7) 0px 10px 30px -15px; } .link-svg { width: 22px; } .link-svg:hover { cursor: pointer; transform: scale(1.2); } .project-tool { justify-content: space-between; text-align: right; width: 110%; margin-left: -10%; margin-top: 15px; flex-direction: row; display: flex; font-size: 15px; } .company { color:rgb(100, 255, 218); font-weight: 'bold' } .project-section { margin-top: 40px; } .project-img { width: 85%; } .project-container { margin-top: 10%; font-size: 22px; text-align: right; } @media (min-width: 80em) and (max-width: 119em) { .project-tool { font-size: 12px; } .project-description { font-size: 13.5px; margin-top: 5%; } .project-container { margin-top: 15px; font-size: 22px; text-align: right; } } @media (min-width: 160em) { .project-tool { font-size: 17px; } .project-description { font-size: 18.5px; } } @media (max-width: 480px) { .project-img { width: 100%; } .project-link { display: flex; margin-top: 12.5px; justify-content: flex-end; } .project-container { text-align: left; font-size: 20px; margin: 0; padding: 5%; background-color: rgb(23, 42, 69); box-shadow: rgba(2, 12, 27, 0.7) 0px 10px 30px -15px; } .project-description { box-shadow: none; padding: 0; width: 100%; margin: 10px 0; } .project-tool { width: 100%; margin-left: 0; font-size: 12.5px; } }
section/projects/styles.css
.project-link { margin-top: 5%; } .project-madeAt { font-size: 17px; } .project-madeAt { font-weight: normal; font-size: 22px; } .project-description { border-radius: 10px; text-align: left; font-size: 15px; font-weight: normal; z-index: 10; width: 140%; margin: 25px 0 0 -40%; padding: 20px; background-color: rgb(23, 42, 69); box-shadow: rgba(2, 12, 27, 0.7) 0px 10px 30px -15px; } .link-svg { width: 22px; } .link-svg:hover { cursor: pointer; transform: scale(1.2); } .project-tool { justify-content: space-between; text-align: right; width: 110%; margin-left: -10%; margin-top: 15px; flex-direction: row; display: flex; font-size: 15px; } .company { color:rgb(100, 255, 218); font-weight: 'bold' } .project-section { margin-top: 40px; } .project-img { width: 85%; } .project-container { margin-top: 10%; font-size: 22px; text-align: right; } @media (min-width: 80em) and (max-width: 119em) { .project-tool { font-size: 12px; } .project-description { font-size: 13.5px; margin-top: 5%; } .project-container { margin-top: 15px; font-size: 22px; text-align: right; } } @media (min-width: 160em) { .project-tool { font-size: 17px; } .project-description { font-size: 18.5px; } } @media (max-width: 480px) { .project-img { width: 100%; } .project-link { display: flex; margin-top: 12.5px; justify-content: flex-end; } .project-container { text-align: left; font-size: 20px; margin: 0; padding: 5%; background-color: rgb(23, 42, 69); box-shadow: rgba(2, 12, 27, 0.7) 0px 10px 30px -15px; } .project-description { box-shadow: none; padding: 0; width: 100%; margin: 10px 0; } .project-tool { width: 100%; margin-left: 0; font-size: 12.5px; } }
0.572723
0.169991