code
stringlengths
2k
1.04M
repo_path
stringlengths
5
517
parsed_code
stringlengths
0
1.04M
quality_prob
float64
0.02
0.95
learning_prob
float64
0.02
0.93
@import url('https://fonts.googleapis.com/css2?family=Sriracha&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Pangolin&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap'); @keyframes bounce { 0% { transform: translateY(0); } 50% { transform: translateY(-100px); } 100% { transform: translateY(0); } } html { position:fixed; top: 0; bottom: 0; left: 0; right: 0; } body { height: 100%; width: 100%; background-image: linear-gradient(to right , rgb(129, 224, 69) , rgb(223, 108, 55)); } h1 { text-align: left; font-size: 400%; color: rgb(68, 163, 68); font-family: "Indie Flower", monospace; font-weight:600; text-shadow: 2px 2px 2px black; margin: 0; } /* h2 { display: none; font-size: 200%; text-align: center; color: rgb(68, 163, 68); font-family: "Indie Flower", monospace; font-weight:600; text-shadow: 2px 2px 2px black; } */ .gamearea { display: flex; flex-direction: column; } .petImg { display: none; text-align: center; word-spacing: 2.5em; width: 1000px; padding-left: 10%; } .petImg2 { display: none; text-align: center; margin: 0; padding: 0; animation-duration: 2s; animation-iteration-count: infinite; transform-origin: bottom; } .bounce:hover { animation-name: bounce; animation-timing-function: ease; } #dogImg { height: 300px; width: 300px; cursor:pointer; border-radius: 50%; border: rebeccapurple 2px solid; transition: .2s; } #dogImg:hover { transform: scale(1.5); } #catImg { height: 300px; width: 300px; cursor:pointer; border-radius: 50%; border: rebeccapurple 2px solid; transition: .2s; } #catImg:hover { transform: scale(1.5); } #rabImg { height: 300px; width: 300px; cursor:pointer; border-radius: 50%; border: rebeccapurple 2px solid; transition: .2s; } #rabImg:hover { transform: scale(1.5); } #dogImg2 { height: 280px; width: 330px; cursor:pointer; border-radius: 50%; border: rebeccapurple 2px solid; margin-left: 37%; transition: all .2s ease-in-out; } #dogImg2:hover { transform: scale(1.3); } #catImg2 { height: 280px; width: 330px; cursor:pointer; border-radius: 50%; border: rebeccapurple 2px solid; text-align: center; margin-left: 35%; transition: all .2s ease-in-out; } #catImg2:hover { transform: scale(1.3); } #rabImg2 { height: 280px; width: 330px; cursor:pointer; border-radius: 50%; border: rebeccapurple 2px solid; text-align: center; margin-left: 35%; transition: all .2s ease-in-out; } #rabImg2:hover { transform: scale(1.3); } .startButtons { text-align: center; } #restart { display: none; cursor:pointer; font-family: "Pangolin", monospace; font-size: 200%; background: none; border: none; color: rebeccapurple; transition: .2s; text-shadow: black 1px 1px 1px; margin-left: 2%; } #restart:hover { transform: scale(1.3); } #choose { padding-top: 10%; cursor:pointer; font-family: "Pangolin", monospace; text-shadow: black 2px 2px 2px; font-size: 300%; background: goldenrod; color: rebeccapurple; background: none; border: none; transition: .2s; } #choose:hover { transform: scale(1.8); } #dog { display: none; } #cat { display: none; } #rabbit { display: none; } #selectDog { margin-top: 10%; display: none; font-family: "Indie Flower", monospace; font-size: 150%; text-shadow: black 1px 1px 1px; } #selectCat { margin-top: 10%; display: none; font-family: "Indie Flower", monospace; font-size: 150%; text-shadow: black 1px 1px 1px; } #selectRab { margin-top: 10%; display: none; font-family: "Indie Flower", monospace; font-size: 150%; text-shadow: black 1px 1px 1px; } #placeholder { font-size: 200%; font-family: "Indie Flower", monospace; color: rebeccapurple; margin-top: 0%; margin-bottom: 1%; display: none; text-shadow: black 1px 1px 1px; padding-left: 17%; } #input { text-decoration: none; text-align: center; font-size: 200%; font-family: "Indie Flower", monospace; display: none; color: rebeccapurple; background: none; border: solid 2px rebeccapurple; border-radius: 1em; margin-left: 21.5%; outline: none; } #submit { cursor:pointer; font-size: 200%; font-family: "Indie Flower", monospace; display: none; color: rebeccapurple; background: none; border: none; padding-left: 33%; text-decoration: underline; } .info { padding-left: 20%; display: none; color: rebeccapurple; font-style: oblique; } .petButtons { display: none; word-spacing: 2.5rem; padding-left: 34%; cursor:pointer; } #feed { font-size: 200%; font-family: "Indie Flower", monospace; color: rebeccapurple; background-color: lightgreen; cursor:pointer; transition: 0.7s; } #feed:hover { transform: scale(1.3); } #drink { font-size: 200%; font-family: "Indie Flower", monospace; color: rebeccapurple; background-color: lightgreen; cursor:pointer; transition: 0.7s; } #drink:hover { transform: scale(1.3); } #play { font-size: 200%; font-family: "Indie Flower", monospace; color: rebeccapurple; background-color: lightgreen; cursor:pointer; transition: 0.7s; } #play:hover { transform: scale(1.3); } .dogButtons { display: none; } .catButtons { display: none; } .rabButtons { display: none; } .progress { display: none; font-family: "Indie Flower", monospace; font-size: 20px; }
main.css
@import url('https://fonts.googleapis.com/css2?family=Sriracha&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Pangolin&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap'); @keyframes bounce { 0% { transform: translateY(0); } 50% { transform: translateY(-100px); } 100% { transform: translateY(0); } } html { position:fixed; top: 0; bottom: 0; left: 0; right: 0; } body { height: 100%; width: 100%; background-image: linear-gradient(to right , rgb(129, 224, 69) , rgb(223, 108, 55)); } h1 { text-align: left; font-size: 400%; color: rgb(68, 163, 68); font-family: "Indie Flower", monospace; font-weight:600; text-shadow: 2px 2px 2px black; margin: 0; } /* h2 { display: none; font-size: 200%; text-align: center; color: rgb(68, 163, 68); font-family: "Indie Flower", monospace; font-weight:600; text-shadow: 2px 2px 2px black; } */ .gamearea { display: flex; flex-direction: column; } .petImg { display: none; text-align: center; word-spacing: 2.5em; width: 1000px; padding-left: 10%; } .petImg2 { display: none; text-align: center; margin: 0; padding: 0; animation-duration: 2s; animation-iteration-count: infinite; transform-origin: bottom; } .bounce:hover { animation-name: bounce; animation-timing-function: ease; } #dogImg { height: 300px; width: 300px; cursor:pointer; border-radius: 50%; border: rebeccapurple 2px solid; transition: .2s; } #dogImg:hover { transform: scale(1.5); } #catImg { height: 300px; width: 300px; cursor:pointer; border-radius: 50%; border: rebeccapurple 2px solid; transition: .2s; } #catImg:hover { transform: scale(1.5); } #rabImg { height: 300px; width: 300px; cursor:pointer; border-radius: 50%; border: rebeccapurple 2px solid; transition: .2s; } #rabImg:hover { transform: scale(1.5); } #dogImg2 { height: 280px; width: 330px; cursor:pointer; border-radius: 50%; border: rebeccapurple 2px solid; margin-left: 37%; transition: all .2s ease-in-out; } #dogImg2:hover { transform: scale(1.3); } #catImg2 { height: 280px; width: 330px; cursor:pointer; border-radius: 50%; border: rebeccapurple 2px solid; text-align: center; margin-left: 35%; transition: all .2s ease-in-out; } #catImg2:hover { transform: scale(1.3); } #rabImg2 { height: 280px; width: 330px; cursor:pointer; border-radius: 50%; border: rebeccapurple 2px solid; text-align: center; margin-left: 35%; transition: all .2s ease-in-out; } #rabImg2:hover { transform: scale(1.3); } .startButtons { text-align: center; } #restart { display: none; cursor:pointer; font-family: "Pangolin", monospace; font-size: 200%; background: none; border: none; color: rebeccapurple; transition: .2s; text-shadow: black 1px 1px 1px; margin-left: 2%; } #restart:hover { transform: scale(1.3); } #choose { padding-top: 10%; cursor:pointer; font-family: "Pangolin", monospace; text-shadow: black 2px 2px 2px; font-size: 300%; background: goldenrod; color: rebeccapurple; background: none; border: none; transition: .2s; } #choose:hover { transform: scale(1.8); } #dog { display: none; } #cat { display: none; } #rabbit { display: none; } #selectDog { margin-top: 10%; display: none; font-family: "Indie Flower", monospace; font-size: 150%; text-shadow: black 1px 1px 1px; } #selectCat { margin-top: 10%; display: none; font-family: "Indie Flower", monospace; font-size: 150%; text-shadow: black 1px 1px 1px; } #selectRab { margin-top: 10%; display: none; font-family: "Indie Flower", monospace; font-size: 150%; text-shadow: black 1px 1px 1px; } #placeholder { font-size: 200%; font-family: "Indie Flower", monospace; color: rebeccapurple; margin-top: 0%; margin-bottom: 1%; display: none; text-shadow: black 1px 1px 1px; padding-left: 17%; } #input { text-decoration: none; text-align: center; font-size: 200%; font-family: "Indie Flower", monospace; display: none; color: rebeccapurple; background: none; border: solid 2px rebeccapurple; border-radius: 1em; margin-left: 21.5%; outline: none; } #submit { cursor:pointer; font-size: 200%; font-family: "Indie Flower", monospace; display: none; color: rebeccapurple; background: none; border: none; padding-left: 33%; text-decoration: underline; } .info { padding-left: 20%; display: none; color: rebeccapurple; font-style: oblique; } .petButtons { display: none; word-spacing: 2.5rem; padding-left: 34%; cursor:pointer; } #feed { font-size: 200%; font-family: "Indie Flower", monospace; color: rebeccapurple; background-color: lightgreen; cursor:pointer; transition: 0.7s; } #feed:hover { transform: scale(1.3); } #drink { font-size: 200%; font-family: "Indie Flower", monospace; color: rebeccapurple; background-color: lightgreen; cursor:pointer; transition: 0.7s; } #drink:hover { transform: scale(1.3); } #play { font-size: 200%; font-family: "Indie Flower", monospace; color: rebeccapurple; background-color: lightgreen; cursor:pointer; transition: 0.7s; } #play:hover { transform: scale(1.3); } .dogButtons { display: none; } .catButtons { display: none; } .rabButtons { display: none; } .progress { display: none; font-family: "Indie Flower", monospace; font-size: 20px; }
0.354545
0.164752
body{ font-family: "Nunito Sans", sans-serif; font-size: 16px; font-weight: 300; } h1{ font-size: 65px; line-height: 73px; } h2{ font-size: 38px; line-height: 51px; } @media only screen and (max-width: 768px){ h1{ font-size: 42px; line-height: 61px; } h2{ font-size: 32px; line-height: 48px; } } h4{ font-size: 28px; line-height: 38px; } h5{ font-size: 20px; line-height: 32px; } p { font-size: 20px; font-weight: 300; line-height: 32px; color: #444444; } .container{ width: 90%; max-width: 1500px; } /** HOME PAGE **/ .video-wrapper { position: relative; } .video-wrapper>video { width: 100%; vertical-align: middle; } .video-wrapper>video.has-media-controls-hidden::-webkit-media-controls { display: none; } .video-overlay-play-button { box-sizing: border-box; width: 100%; height: 100%; padding: 10px calc(50% - 50px); position: absolute; top: 0; left: 0; display: block; opacity: 0.95; cursor: pointer; background-image: linear-gradient(transparent, #000); transition: opacity 150ms; } .video-overlay-play-button:hover { opacity: 1; } .video-overlay-play-button.is-hidden { display: none; } .scroll{ cursor: pointer; } .scroll-down::before { content: '╲╱'; color: #fff; position: absolute; opacity: 0.7; text-shadow: 0 0 6px rgba(0, 0, 0, 0.5); font-size: 20px; width: 30px; height: 30px; line-height: 40px; border-radius: 10px; animation: bounce 1s ease infinite; } @keyframes bounce { 50% { transform: translateY(-50%); } 100% { transform: translateY(0); } } .btn{ background-color: #000; padding: 14px 29px; text-transform: uppercase; color: #fff; border-radius: 0px; height: 52px; width: 249px; } a.btn{ font-size: 16px; font-weight: 800; line-height: 22px; } .btn-white{ background-color: #fff; color: #000; } .page-header { background-color: #000; padding: 200px 0px; color: #fff; margin-bottom: 100px; } .page-header h1 { font-weight: 200; font-size: 65px; line-height: 73px; } @media screen and (max-width: 991px){ .page-header{ padding: 100px 0px; } .page-header h1 { font-size: 36px; } }
assets/css/style.css
body{ font-family: "Nunito Sans", sans-serif; font-size: 16px; font-weight: 300; } h1{ font-size: 65px; line-height: 73px; } h2{ font-size: 38px; line-height: 51px; } @media only screen and (max-width: 768px){ h1{ font-size: 42px; line-height: 61px; } h2{ font-size: 32px; line-height: 48px; } } h4{ font-size: 28px; line-height: 38px; } h5{ font-size: 20px; line-height: 32px; } p { font-size: 20px; font-weight: 300; line-height: 32px; color: #444444; } .container{ width: 90%; max-width: 1500px; } /** HOME PAGE **/ .video-wrapper { position: relative; } .video-wrapper>video { width: 100%; vertical-align: middle; } .video-wrapper>video.has-media-controls-hidden::-webkit-media-controls { display: none; } .video-overlay-play-button { box-sizing: border-box; width: 100%; height: 100%; padding: 10px calc(50% - 50px); position: absolute; top: 0; left: 0; display: block; opacity: 0.95; cursor: pointer; background-image: linear-gradient(transparent, #000); transition: opacity 150ms; } .video-overlay-play-button:hover { opacity: 1; } .video-overlay-play-button.is-hidden { display: none; } .scroll{ cursor: pointer; } .scroll-down::before { content: '╲╱'; color: #fff; position: absolute; opacity: 0.7; text-shadow: 0 0 6px rgba(0, 0, 0, 0.5); font-size: 20px; width: 30px; height: 30px; line-height: 40px; border-radius: 10px; animation: bounce 1s ease infinite; } @keyframes bounce { 50% { transform: translateY(-50%); } 100% { transform: translateY(0); } } .btn{ background-color: #000; padding: 14px 29px; text-transform: uppercase; color: #fff; border-radius: 0px; height: 52px; width: 249px; } a.btn{ font-size: 16px; font-weight: 800; line-height: 22px; } .btn-white{ background-color: #fff; color: #000; } .page-header { background-color: #000; padding: 200px 0px; color: #fff; margin-bottom: 100px; } .page-header h1 { font-weight: 200; font-size: 65px; line-height: 73px; } @media screen and (max-width: 991px){ .page-header{ padding: 100px 0px; } .page-header h1 { font-size: 36px; } }
0.458834
0.079675
@media (min-width:992px) { html.w-mod-js:not(.w-mod-ix) [data-w-id="44c65c4e-eeb9-db79-2957-3dc3ecb05d7b"] { opacity: 0; -webkit-transform: translate3d(0, 20px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); -moz-transform: translate3d(0, 20px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); -ms-transform: translate3d(0, 20px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); transform: translate3d(0, 20px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); } } @media (max-width:991px) and (min-width:768px) { html.w-mod-js:not(.w-mod-ix) [data-w-id="Div Block 11"] { -webkit-transform: translate3d(0, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); -moz-transform: translate3d(0, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); -ms-transform: translate3d(0, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); transform: translate3d(0, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); opacity: 1; display: none; } } @media (max-width:767px) and (min-width:480px) { html.w-mod-js:not(.w-mod-ix) [data-w-id="Div Block 11"] { -webkit-transform: translate3d(0, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); -moz-transform: translate3d(0, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); -ms-transform: translate3d(0, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); transform: translate3d(0, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); opacity: 1; display: none; } } @media (max-width:479px) { html.w-mod-js:not(.w-mod-ix) [data-w-id="Div Block 11"] { -webkit-transform: translate3d(0, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); -moz-transform: translate3d(0, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); -ms-transform: translate3d(0, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); transform: translate3d(0, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); opacity: 1; display: none; } } #yoko{ display: flex; justify-content: center; margin-top: 50px; } #yoko img{ width: 200px; } #yoko .modal-img{ width: 400px; } .middle{ margin: 10px; } .top-title{ font-size: 1.1em; font-weight: 500; text-align: center; letter-spacing: 0.1em; } .second-title{ margin-top: 50px; margin-bottom: 50px; } footer{ background-color: white; height: 155px; color: black; } .footer-text{ position: relative; top: 75px; } #footer-c{ font-size: 1.3em; font-weight: 800; } .use-app{ text-align: center; } .modal-ms{ margin-bottom: 50px; font-size: 2em; padding: 10px; } .modal-title{ font-size: 3em; padding: 10px; } @media screen and (max-width: 600px) { .modal-ms{ display: none; } .modal-title{ display: none; } #yoko .modal-img{ width: 250px; } }
front/src/assets/css/responsive.css
@media (min-width:992px) { html.w-mod-js:not(.w-mod-ix) [data-w-id="44c65c4e-eeb9-db79-2957-3dc3ecb05d7b"] { opacity: 0; -webkit-transform: translate3d(0, 20px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); -moz-transform: translate3d(0, 20px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); -ms-transform: translate3d(0, 20px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); transform: translate3d(0, 20px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); } } @media (max-width:991px) and (min-width:768px) { html.w-mod-js:not(.w-mod-ix) [data-w-id="Div Block 11"] { -webkit-transform: translate3d(0, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); -moz-transform: translate3d(0, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); -ms-transform: translate3d(0, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); transform: translate3d(0, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); opacity: 1; display: none; } } @media (max-width:767px) and (min-width:480px) { html.w-mod-js:not(.w-mod-ix) [data-w-id="Div Block 11"] { -webkit-transform: translate3d(0, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); -moz-transform: translate3d(0, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); -ms-transform: translate3d(0, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); transform: translate3d(0, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); opacity: 1; display: none; } } @media (max-width:479px) { html.w-mod-js:not(.w-mod-ix) [data-w-id="Div Block 11"] { -webkit-transform: translate3d(0, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); -moz-transform: translate3d(0, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); -ms-transform: translate3d(0, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); transform: translate3d(0, 0px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0); opacity: 1; display: none; } } #yoko{ display: flex; justify-content: center; margin-top: 50px; } #yoko img{ width: 200px; } #yoko .modal-img{ width: 400px; } .middle{ margin: 10px; } .top-title{ font-size: 1.1em; font-weight: 500; text-align: center; letter-spacing: 0.1em; } .second-title{ margin-top: 50px; margin-bottom: 50px; } footer{ background-color: white; height: 155px; color: black; } .footer-text{ position: relative; top: 75px; } #footer-c{ font-size: 1.3em; font-weight: 800; } .use-app{ text-align: center; } .modal-ms{ margin-bottom: 50px; font-size: 2em; padding: 10px; } .modal-title{ font-size: 3em; padding: 10px; } @media screen and (max-width: 600px) { .modal-ms{ display: none; } .modal-title{ display: none; } #yoko .modal-img{ width: 250px; } }
0.295738
0.257304
body { display: flex; flex-direction: column; background-color: inherit; color: var(--vscode-foreground); } .modal-backdrop { z-index: 1040 !important; } .modal-content { z-index: 1100 !important; background-color: var(--vscode-editor-background); color: var(--vscode-foreground); } .clickable { cursor: pointer; } #contents { width: 100%; height: 100%; overflow: hidden; border: none; resize: none; } .button { color: var(--vscode-button-foreground); background-color: var(--vscode-button-background); } .button:hover { background-color: var(--vscode-button-hoverBackground); } button.close { color: var(--vscode-foreground); text-shadow: none; } .btn-primary { border-color: var(--vscode-button-background); color: var(--vscode-button-foreground); background-color: var(--vscode-button-background); } .btn-primary:hover { background-color: var(--vscode-button-hoverBackground); } pre.code { float: left; } #top-bar { border-bottom: 1px solid var(--vscode-scrollbarSlider-background); } .button span .material-icons { font-size: 1rem; } /* View splitter */ #split-container { height: 100%; width: 100%; display: block; position: relative; overflow: hidden; } .gutter { background-color: var(--vscode-scrollbarSlider-background); background-repeat: no-repeat; background-position: 50%; } .gutter.gutter-vertical { background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAFAQMAAABo7865AAAABlBMVEVHcEzMzMzyAv2sAAAAAXRSTlMAQObYZgAAABBJREFUeF5jOAMEEAIEEFwAn3kMwcB6I2AAAAAASUVORK5CYII='); cursor: row-resize; } .gutter.gutter-horizontal { background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAeCAYAAADkftS9AAAAIklEQVQoU2M4c+bMfxAGAgYYmwGrIIiDjrELjpo5aiZeMwF+yNnOs5KSvgAAAABJRU5ErkJggg=='); cursor: col-resize; } /* End view splitter */ /* Top bar */ #top-bar { display: flex; flex-direction: row; font-size: .9rem; } #top-bar #search-bar-wrapper { height: 100%; } #top-bar #search-bar-wrapper #search-bar { height: 100%; display: flex; flex-direction: row; align-items: center; } #top-bar #search-bar #search { padding: .3rem .1rem; margin-right: .2rem; background-color: var(--vscode-input-background); color: var(--vscode-input-foreground); border: 1px solid var(--vscode-input-placeholderForeground); } #top-bar #search-bar #search::placeholder { color: var(--vscode-input-placeholderForeground); } #search-case-sensitive-btn { height: 1.3rem; width: 1.3rem; margin-left: -1.6rem; margin-top: 0.2rem; padding: -0.3rem 1rem; border-radius: 0; user-select: none; outline: 0 none; } #search-case-text { margin-left: -0.2rem; color: var(--vscode-input-placeholderForeground); } #top-bar #button-bar-wrapper { flex-grow: 1; } #top-bar #button-bar { margin: .5rem 0; display: flex; flex-direction: row; } #button-bar .button { margin: 0 .1rem; user-select: none; } #button-bar .spacer { width: .6rem; height: 100%; display: block; background-color: transparent; color: transparent; user-select: none; } #button-bar #breakpoint-btn { margin-left: auto; } /* End top bar */ /* Processing overlay */ #processing-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(61, 61, 61, 0.8); z-index: 3; /* Center the content */ display: flex; justify-content: center; align-items: center; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } #processing-overlay-spinner-container { display: flex; justify-content: center; align-items: center; } #processing-overlay-spinner { border: .5rem solid #ccc; border-top: .5rem solid #aaa; border-radius: 50%; width: 3rem; height: 3rem; animation: spin 2s linear infinite; } #processing-overlay-msg-container { margin-top: .5rem; } #processing-overlay-msg { font-weight: lighter; font-size: 2rem; user-select: none; } /* End processing overlay */ /* Info container/box */ #info-container { width: 100%; height: 100%; overflow-y: scroll; } .split-container-vertical>#info-container { padding-top: .5rem; } .split-container-horizontal>#info-container { padding-left: .5rem; padding-right: .5rem; } #info-header { display: flex; flex-direction: row; align-items: baseline; padding-bottom: .5rem; } .flex-spacer { flex-grow: 1; } #goto-source-btn, #goto-cpp-btn { font-size: .9rem; margin: .2rem 0 .2rem 1rem; } #info-clear-btn { font-size: .9rem; margin: .2rem 1rem; } #info-clear-btn span { display: block; height: 100%; } #info-clear-btn .material-icons { display: inline-flex; vertical-align: middle; } #info-contents { width: 100%; margin-bottom: 1rem; } #info-contents .info-subtitle { font-size: 1rem; } #info-contents .material-icons { display: inline-flex; vertical-align: middle; } .attr-cat-toggle-btn { width: 100%; text-align: left; background-color: var(--vscode-list-inactiveSelectionBackground); color: var(--vscode-list-inactiveSelectionForeground); padding: .3rem; margin: 0; border: 1px solid var(--vscode-list-inactiveSelectionBackground); } .attr-cat-toggle-btn:hover { background-color: var(--vscode-list-hoverBackground); color: var(--vscode-list-hoverForeground); } .attr-cat-toggle-btn>.attr-cat-toggle-btn-indicator { float: right; transition: all .5s; } .attr-cat-toggle-btn.active>.attr-cat-toggle-btn-indicator { transform: rotate(180deg); } .attr-table { border: 1px solid var(--vscode-list-inactiveSelectionBackground); padding-left: 0; padding-right: 0; } .attr-table-cat-container { padding: 0; } .attr-table-row { padding: .5rem 0; border-bottom: 1px solid var(--vscode-list-inactiveSelectionBackground); margin-left: 0; margin-right: 0; } .attr-table-cell { text-align: left; display: flex; align-items: center; } .attr-table-cell-nopad { padding-left: 0; } .attr-table-heading { font-weight: bold; } .popup-editable-property-container { width: 100%; display: flex; align-items: center; } .property-add-row-btn { font-size: 2rem; cursor: pointer; } .property-edit-btn { margin-left: .8rem; cursor: pointer; } .property-key-input { width: 100%; } .property-edit-modal-body { padding: 0; } .range-input-label { user-select: none; } .range-input { width: 100%; } .form-check.form-switch>label::before { cursor: pointer; } .form-check.form-switch>label::after { cursor: pointer; } /* End info container/box */ /* Context menu */ #contextmenu { background-color: var(--vscode-editor-background); } .context_menu_option { margin: .2rem 0 -.2rem; background-color: var(--vscode-editor-background); } .context_menu_option:hover { background-color: var(--vscode-inputOption-activeBackground); } /* End context menu */ /* SDFV Toolbar */ #sdfv-toolbar { position: absolute; top: .5rem; left: .5rem; } #sdfv-toolbar .sdfv-toolbar-button { padding-bottom: 0; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; cursor: pointer; } /* End SDFV Toolbar */ #info-contents .transformation-button-container { display: flex; flex-direction: row; align-items: baseline; justify-items: left; width: 100%; } #info-contents .transformation-button-container .button { margin-right: .3rem; } #info-contents .transformation-info-container { margin-top: .3rem; border-top: 1px solid var(--vscode-list-hoverBackground); padding-top: .3rem; font-size: 1rem; } #info-contents .transformation-info-container .transformation-image { max-width: 100%; } .sdfv-property-code { resize: none; margin-right: .5rem; } .sdfv-property-text, .sdfv-property-code, .sdfv-property-number { border-width: 1px; border-style: solid; background-color: var(--vscode-input-background); color: var(--vscode-input-foreground); border-color: var(--vscode-input-border); } .sdfv-property-dropdown { background-color: var(--vscode-dropdown-background); color: var(--vscode-dropdown-foreground); border-color: var(--vscode-dropdown-border); } .sdfv-property-expand-libnode-btn { margin-left: 1rem; } .sdfv-property-delete-btn { color: var(--vscode-inputValidation-errorBorder); margin-right: .5rem; user-select: none; } .sdfv-property-delete-btn:hover { cursor: pointer; } .sdfv-property-range-delete-cell { display: flex; flex-direction: row; align-items: center; } .sdfv-property-code-container { display: flex; flex-direction: row; align-items: center; justify-content: left; width: 100%; } .sdfv-property-monaco { flex-grow: 1; height: 6rem; margin-right: .8rem; border: 1px solid; border-bottom: 1px solid; border-color: var(--vscode-input-border); } .es-list { background-color: var(--vscode-input-background); color: var(--vscode-input-foreground); }
src/webclients/components/sdfv/vscode_sdfv.css
body { display: flex; flex-direction: column; background-color: inherit; color: var(--vscode-foreground); } .modal-backdrop { z-index: 1040 !important; } .modal-content { z-index: 1100 !important; background-color: var(--vscode-editor-background); color: var(--vscode-foreground); } .clickable { cursor: pointer; } #contents { width: 100%; height: 100%; overflow: hidden; border: none; resize: none; } .button { color: var(--vscode-button-foreground); background-color: var(--vscode-button-background); } .button:hover { background-color: var(--vscode-button-hoverBackground); } button.close { color: var(--vscode-foreground); text-shadow: none; } .btn-primary { border-color: var(--vscode-button-background); color: var(--vscode-button-foreground); background-color: var(--vscode-button-background); } .btn-primary:hover { background-color: var(--vscode-button-hoverBackground); } pre.code { float: left; } #top-bar { border-bottom: 1px solid var(--vscode-scrollbarSlider-background); } .button span .material-icons { font-size: 1rem; } /* View splitter */ #split-container { height: 100%; width: 100%; display: block; position: relative; overflow: hidden; } .gutter { background-color: var(--vscode-scrollbarSlider-background); background-repeat: no-repeat; background-position: 50%; } .gutter.gutter-vertical { background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAFAQMAAABo7865AAAABlBMVEVHcEzMzMzyAv2sAAAAAXRSTlMAQObYZgAAABBJREFUeF5jOAMEEAIEEFwAn3kMwcB6I2AAAAAASUVORK5CYII='); cursor: row-resize; } .gutter.gutter-horizontal { background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAeCAYAAADkftS9AAAAIklEQVQoU2M4c+bMfxAGAgYYmwGrIIiDjrELjpo5aiZeMwF+yNnOs5KSvgAAAABJRU5ErkJggg=='); cursor: col-resize; } /* End view splitter */ /* Top bar */ #top-bar { display: flex; flex-direction: row; font-size: .9rem; } #top-bar #search-bar-wrapper { height: 100%; } #top-bar #search-bar-wrapper #search-bar { height: 100%; display: flex; flex-direction: row; align-items: center; } #top-bar #search-bar #search { padding: .3rem .1rem; margin-right: .2rem; background-color: var(--vscode-input-background); color: var(--vscode-input-foreground); border: 1px solid var(--vscode-input-placeholderForeground); } #top-bar #search-bar #search::placeholder { color: var(--vscode-input-placeholderForeground); } #search-case-sensitive-btn { height: 1.3rem; width: 1.3rem; margin-left: -1.6rem; margin-top: 0.2rem; padding: -0.3rem 1rem; border-radius: 0; user-select: none; outline: 0 none; } #search-case-text { margin-left: -0.2rem; color: var(--vscode-input-placeholderForeground); } #top-bar #button-bar-wrapper { flex-grow: 1; } #top-bar #button-bar { margin: .5rem 0; display: flex; flex-direction: row; } #button-bar .button { margin: 0 .1rem; user-select: none; } #button-bar .spacer { width: .6rem; height: 100%; display: block; background-color: transparent; color: transparent; user-select: none; } #button-bar #breakpoint-btn { margin-left: auto; } /* End top bar */ /* Processing overlay */ #processing-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(61, 61, 61, 0.8); z-index: 3; /* Center the content */ display: flex; justify-content: center; align-items: center; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } #processing-overlay-spinner-container { display: flex; justify-content: center; align-items: center; } #processing-overlay-spinner { border: .5rem solid #ccc; border-top: .5rem solid #aaa; border-radius: 50%; width: 3rem; height: 3rem; animation: spin 2s linear infinite; } #processing-overlay-msg-container { margin-top: .5rem; } #processing-overlay-msg { font-weight: lighter; font-size: 2rem; user-select: none; } /* End processing overlay */ /* Info container/box */ #info-container { width: 100%; height: 100%; overflow-y: scroll; } .split-container-vertical>#info-container { padding-top: .5rem; } .split-container-horizontal>#info-container { padding-left: .5rem; padding-right: .5rem; } #info-header { display: flex; flex-direction: row; align-items: baseline; padding-bottom: .5rem; } .flex-spacer { flex-grow: 1; } #goto-source-btn, #goto-cpp-btn { font-size: .9rem; margin: .2rem 0 .2rem 1rem; } #info-clear-btn { font-size: .9rem; margin: .2rem 1rem; } #info-clear-btn span { display: block; height: 100%; } #info-clear-btn .material-icons { display: inline-flex; vertical-align: middle; } #info-contents { width: 100%; margin-bottom: 1rem; } #info-contents .info-subtitle { font-size: 1rem; } #info-contents .material-icons { display: inline-flex; vertical-align: middle; } .attr-cat-toggle-btn { width: 100%; text-align: left; background-color: var(--vscode-list-inactiveSelectionBackground); color: var(--vscode-list-inactiveSelectionForeground); padding: .3rem; margin: 0; border: 1px solid var(--vscode-list-inactiveSelectionBackground); } .attr-cat-toggle-btn:hover { background-color: var(--vscode-list-hoverBackground); color: var(--vscode-list-hoverForeground); } .attr-cat-toggle-btn>.attr-cat-toggle-btn-indicator { float: right; transition: all .5s; } .attr-cat-toggle-btn.active>.attr-cat-toggle-btn-indicator { transform: rotate(180deg); } .attr-table { border: 1px solid var(--vscode-list-inactiveSelectionBackground); padding-left: 0; padding-right: 0; } .attr-table-cat-container { padding: 0; } .attr-table-row { padding: .5rem 0; border-bottom: 1px solid var(--vscode-list-inactiveSelectionBackground); margin-left: 0; margin-right: 0; } .attr-table-cell { text-align: left; display: flex; align-items: center; } .attr-table-cell-nopad { padding-left: 0; } .attr-table-heading { font-weight: bold; } .popup-editable-property-container { width: 100%; display: flex; align-items: center; } .property-add-row-btn { font-size: 2rem; cursor: pointer; } .property-edit-btn { margin-left: .8rem; cursor: pointer; } .property-key-input { width: 100%; } .property-edit-modal-body { padding: 0; } .range-input-label { user-select: none; } .range-input { width: 100%; } .form-check.form-switch>label::before { cursor: pointer; } .form-check.form-switch>label::after { cursor: pointer; } /* End info container/box */ /* Context menu */ #contextmenu { background-color: var(--vscode-editor-background); } .context_menu_option { margin: .2rem 0 -.2rem; background-color: var(--vscode-editor-background); } .context_menu_option:hover { background-color: var(--vscode-inputOption-activeBackground); } /* End context menu */ /* SDFV Toolbar */ #sdfv-toolbar { position: absolute; top: .5rem; left: .5rem; } #sdfv-toolbar .sdfv-toolbar-button { padding-bottom: 0; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; cursor: pointer; } /* End SDFV Toolbar */ #info-contents .transformation-button-container { display: flex; flex-direction: row; align-items: baseline; justify-items: left; width: 100%; } #info-contents .transformation-button-container .button { margin-right: .3rem; } #info-contents .transformation-info-container { margin-top: .3rem; border-top: 1px solid var(--vscode-list-hoverBackground); padding-top: .3rem; font-size: 1rem; } #info-contents .transformation-info-container .transformation-image { max-width: 100%; } .sdfv-property-code { resize: none; margin-right: .5rem; } .sdfv-property-text, .sdfv-property-code, .sdfv-property-number { border-width: 1px; border-style: solid; background-color: var(--vscode-input-background); color: var(--vscode-input-foreground); border-color: var(--vscode-input-border); } .sdfv-property-dropdown { background-color: var(--vscode-dropdown-background); color: var(--vscode-dropdown-foreground); border-color: var(--vscode-dropdown-border); } .sdfv-property-expand-libnode-btn { margin-left: 1rem; } .sdfv-property-delete-btn { color: var(--vscode-inputValidation-errorBorder); margin-right: .5rem; user-select: none; } .sdfv-property-delete-btn:hover { cursor: pointer; } .sdfv-property-range-delete-cell { display: flex; flex-direction: row; align-items: center; } .sdfv-property-code-container { display: flex; flex-direction: row; align-items: center; justify-content: left; width: 100%; } .sdfv-property-monaco { flex-grow: 1; height: 6rem; margin-right: .8rem; border: 1px solid; border-bottom: 1px solid; border-color: var(--vscode-input-border); } .es-list { background-color: var(--vscode-input-background); color: var(--vscode-input-foreground); }
0.373647
0.076064
@charset "UTF-8"; /*! * Start Bootstrap - SB Admin v6.0.0 (https://startbootstrap.com/templates/sb-admin) * Copyright 2013-2020 Start Bootstrap * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap-sb-admin/blob/master/LICENSE) */ /*! * Bootstrap v4.4.1 (https://getbootstrap.com/) * Copyright 2011-2019 The Bootstrap Authors * Copyright 2011-2019 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ :root { --blue: #007bff; --indigo: #6610f2; --purple: #6f42c1; --pink: #e83e8c; --red: #dc3545; --orange: #fd7e14; --yellow: #ffc107; --green: #28a745; --teal: #20c997; --cyan: #17a2b8; --white: #fff; --gray: #6c757d; --gray-dark: #343a40; --primary: #007bff; --secondary: #6c757d; --success: #28a745; --info: #17a2b8; --warning: #ffc107; --danger: #dc3545; --light: #f8f9fa; --dark: #343a40; --breakpoint-xs: 0; --breakpoint-sm: 576px; --breakpoint-md: 768px; --breakpoint-lg: 992px; --breakpoint-xl: 1200px; --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } *, *::before, *::after { box-sizing: border-box; } .fixed-top, .sb-nav-fixed #layoutSidenav #layoutSidenav_nav, .sb-nav-fixed .sb-topnav { position: fixed; top: 0; right: 0; left: 0; z-index: 1030; } .fixed-bottom { position: fixed; right: 0; bottom: 0; left: 0; z-index: 1030; } html, body { height: 100%; } .container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl { padding-left: 1.5rem; padding-right: 1.5rem; } #layoutAuthentication { display: flex; flex-direction: column; min-height: 100vh; } #layoutAuthentication #layoutAuthentication_content { min-width: 0; flex-grow: 1; } #layoutAuthentication #layoutAuthentication_footer { min-width: 0; } #layoutSidenav { display: flex; } #layoutSidenav #layoutSidenav_nav { flex-basis: 225px; flex-shrink: 0; transition: transform 0.15s ease-in-out; z-index: 1038; transform: translateX(-225px); } #layoutSidenav #layoutSidenav_content { position: relative; display: flex; flex-direction: column; justify-content: space-between; min-width: 0; flex-grow: 1; min-height: calc(100vh - 56px); margin-left: -225px; } .sb-sidenav-toggled #layoutSidenav #layoutSidenav_nav { transform: translateX(0); } .sb-sidenav-toggled #layoutSidenav #layoutSidenav_content:before { content: ""; display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #000; z-index: 1037; opacity: 0.5; transition: opacity 0.3s ease-in-out; } @media (min-width: 992px) { #layoutSidenav #layoutSidenav_nav { transform: translateX(0); } #layoutSidenav #layoutSidenav_content { margin-left: 0; transition: margin 0.15s ease-in-out; } .sb-sidenav-toggled #layoutSidenav #layoutSidenav_nav { transform: translateX(-225px); } .sb-sidenav-toggled #layoutSidenav #layoutSidenav_content { margin-left: -225px; } .sb-sidenav-toggled #layoutSidenav #layoutSidenav_content:before { display: none; } } .sb-nav-fixed .sb-topnav { z-index: 1039; } .sb-nav-fixed #layoutSidenav #layoutSidenav_nav { width: 225px; height: 100%; z-index: 1038; } .sb-nav-fixed #layoutSidenav #layoutSidenav_nav .sb-sidenav { padding-top: 56px; } .sb-nav-fixed #layoutSidenav #layoutSidenav_nav .sb-sidenav .sb-sidenav-menu { overflow-y: auto; } .sb-nav-fixed #layoutSidenav #layoutSidenav_content { padding-left: 225px; top: 56px; } #layoutError { display: flex; flex-direction: column; min-height: 100vh; } #layoutError #layoutError_content { min-width: 0; flex-grow: 1; } #layoutError #layoutError_footer { min-width: 0; } .img-error { max-width: 20rem; } .nav .nav-link .sb-nav-link-icon, .sb-sidenav-menu .nav-link .sb-nav-link-icon { margin-right: 0.5rem; } .sb-topnav { padding-left: 0; height: 56px; z-index: 1039; } .sb-topnav .navbar-brand { width: 225px; padding-left: 1rem; padding-right: 1rem; margin: 0; } .sb-topnav.navbar-dark #sidebarToggle { color: rgba(255, 255, 255, 0.5); } .sb-topnav.navbar-light #sidebarToggle { color: #212529; } .sb-sidenav { display: flex; flex-direction: column; height: 100%; flex-wrap: nowrap; } .sb-sidenav .sb-sidenav-menu { flex-grow: 1; } .sb-sidenav .sb-sidenav-menu .nav { flex-direction: column; flex-wrap: nowrap; } .sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-heading { padding: 1.75rem 1rem 0.75rem; font-size: 0.75rem; font-weight: bold; text-transform: uppercase; } .sb-sidenav .sb-sidenav-menu .nav .nav-link { display: flex; align-items: center; padding-top: 0.75rem; padding-bottom: 0.75rem; position: relative; } .sb-sidenav .sb-sidenav-menu .nav .nav-link .sb-nav-link-icon { font-size: 0.9rem; } .sb-sidenav .sb-sidenav-menu .nav .nav-link .sb-sidenav-collapse-arrow { display: inline-block; margin-left: auto; transition: transform 0.15s ease; } .sb-sidenav .sb-sidenav-menu .nav .nav-link.collapsed .sb-sidenav-collapse-arrow { transform: rotate(-90deg); } .sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-nested { margin-left: 1.5rem; flex-direction: column; } .sb-sidenav .sb-sidenav-footer { padding: 0.75rem; flex-shrink: 0; } .sb-sidenav-dark { background-color: #212529; color: rgba(255, 255, 255, 0.5); } .sb-sidenav-dark .sb-sidenav-menu .sb-sidenav-menu-heading { color: rgba(255, 255, 255, 0.25); } .sb-sidenav-dark .sb-sidenav-menu .nav-link { color: rgba(255, 255, 255, 0.5); } .sb-sidenav-dark .sb-sidenav-menu .nav-link .sb-nav-link-icon { color: rgba(255, 255, 255, 0.25); } .sb-sidenav-dark .sb-sidenav-menu .nav-link .sb-sidenav-collapse-arrow { color: rgba(255, 255, 255, 0.25); } .sb-sidenav-dark .sb-sidenav-menu .nav-link:hover { color: #fff; } .sb-sidenav-dark .sb-sidenav-menu .nav-link.active { color: #fff; } .sb-sidenav-dark .sb-sidenav-menu .nav-link.active .sb-nav-link-icon { color: #fff; } .sb-sidenav-dark .sb-sidenav-footer { background-color: #343a40; } .sb-sidenav-light { background-color: #f8f9fa; color: #212529; } .sb-sidenav-light .sb-sidenav-menu .sb-sidenav-menu-heading { color: #adb5bd; } .sb-sidenav-light .sb-sidenav-menu .nav-link { color: #212529; } .sb-sidenav-light .sb-sidenav-menu .nav-link .sb-nav-link-icon { color: #adb5bd; } .sb-sidenav-light .sb-sidenav-menu .nav-link .sb-sidenav-collapse-arrow { color: #adb5bd; } .sb-sidenav-light .sb-sidenav-menu .nav-link:hover { color: #007bff; } .sb-sidenav-light .sb-sidenav-menu .nav-link.active { color: #007bff; } .sb-sidenav-light .sb-sidenav-menu .nav-link.active .sb-nav-link-icon { color: #007bff; } .sb-sidenav-light .sb-sidenav-footer { background-color: #e9ecef; }
angular-frontend/src/styles.css
@charset "UTF-8"; /*! * Start Bootstrap - SB Admin v6.0.0 (https://startbootstrap.com/templates/sb-admin) * Copyright 2013-2020 Start Bootstrap * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap-sb-admin/blob/master/LICENSE) */ /*! * Bootstrap v4.4.1 (https://getbootstrap.com/) * Copyright 2011-2019 The Bootstrap Authors * Copyright 2011-2019 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ :root { --blue: #007bff; --indigo: #6610f2; --purple: #6f42c1; --pink: #e83e8c; --red: #dc3545; --orange: #fd7e14; --yellow: #ffc107; --green: #28a745; --teal: #20c997; --cyan: #17a2b8; --white: #fff; --gray: #6c757d; --gray-dark: #343a40; --primary: #007bff; --secondary: #6c757d; --success: #28a745; --info: #17a2b8; --warning: #ffc107; --danger: #dc3545; --light: #f8f9fa; --dark: #343a40; --breakpoint-xs: 0; --breakpoint-sm: 576px; --breakpoint-md: 768px; --breakpoint-lg: 992px; --breakpoint-xl: 1200px; --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } *, *::before, *::after { box-sizing: border-box; } .fixed-top, .sb-nav-fixed #layoutSidenav #layoutSidenav_nav, .sb-nav-fixed .sb-topnav { position: fixed; top: 0; right: 0; left: 0; z-index: 1030; } .fixed-bottom { position: fixed; right: 0; bottom: 0; left: 0; z-index: 1030; } html, body { height: 100%; } .container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl { padding-left: 1.5rem; padding-right: 1.5rem; } #layoutAuthentication { display: flex; flex-direction: column; min-height: 100vh; } #layoutAuthentication #layoutAuthentication_content { min-width: 0; flex-grow: 1; } #layoutAuthentication #layoutAuthentication_footer { min-width: 0; } #layoutSidenav { display: flex; } #layoutSidenav #layoutSidenav_nav { flex-basis: 225px; flex-shrink: 0; transition: transform 0.15s ease-in-out; z-index: 1038; transform: translateX(-225px); } #layoutSidenav #layoutSidenav_content { position: relative; display: flex; flex-direction: column; justify-content: space-between; min-width: 0; flex-grow: 1; min-height: calc(100vh - 56px); margin-left: -225px; } .sb-sidenav-toggled #layoutSidenav #layoutSidenav_nav { transform: translateX(0); } .sb-sidenav-toggled #layoutSidenav #layoutSidenav_content:before { content: ""; display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #000; z-index: 1037; opacity: 0.5; transition: opacity 0.3s ease-in-out; } @media (min-width: 992px) { #layoutSidenav #layoutSidenav_nav { transform: translateX(0); } #layoutSidenav #layoutSidenav_content { margin-left: 0; transition: margin 0.15s ease-in-out; } .sb-sidenav-toggled #layoutSidenav #layoutSidenav_nav { transform: translateX(-225px); } .sb-sidenav-toggled #layoutSidenav #layoutSidenav_content { margin-left: -225px; } .sb-sidenav-toggled #layoutSidenav #layoutSidenav_content:before { display: none; } } .sb-nav-fixed .sb-topnav { z-index: 1039; } .sb-nav-fixed #layoutSidenav #layoutSidenav_nav { width: 225px; height: 100%; z-index: 1038; } .sb-nav-fixed #layoutSidenav #layoutSidenav_nav .sb-sidenav { padding-top: 56px; } .sb-nav-fixed #layoutSidenav #layoutSidenav_nav .sb-sidenav .sb-sidenav-menu { overflow-y: auto; } .sb-nav-fixed #layoutSidenav #layoutSidenav_content { padding-left: 225px; top: 56px; } #layoutError { display: flex; flex-direction: column; min-height: 100vh; } #layoutError #layoutError_content { min-width: 0; flex-grow: 1; } #layoutError #layoutError_footer { min-width: 0; } .img-error { max-width: 20rem; } .nav .nav-link .sb-nav-link-icon, .sb-sidenav-menu .nav-link .sb-nav-link-icon { margin-right: 0.5rem; } .sb-topnav { padding-left: 0; height: 56px; z-index: 1039; } .sb-topnav .navbar-brand { width: 225px; padding-left: 1rem; padding-right: 1rem; margin: 0; } .sb-topnav.navbar-dark #sidebarToggle { color: rgba(255, 255, 255, 0.5); } .sb-topnav.navbar-light #sidebarToggle { color: #212529; } .sb-sidenav { display: flex; flex-direction: column; height: 100%; flex-wrap: nowrap; } .sb-sidenav .sb-sidenav-menu { flex-grow: 1; } .sb-sidenav .sb-sidenav-menu .nav { flex-direction: column; flex-wrap: nowrap; } .sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-heading { padding: 1.75rem 1rem 0.75rem; font-size: 0.75rem; font-weight: bold; text-transform: uppercase; } .sb-sidenav .sb-sidenav-menu .nav .nav-link { display: flex; align-items: center; padding-top: 0.75rem; padding-bottom: 0.75rem; position: relative; } .sb-sidenav .sb-sidenav-menu .nav .nav-link .sb-nav-link-icon { font-size: 0.9rem; } .sb-sidenav .sb-sidenav-menu .nav .nav-link .sb-sidenav-collapse-arrow { display: inline-block; margin-left: auto; transition: transform 0.15s ease; } .sb-sidenav .sb-sidenav-menu .nav .nav-link.collapsed .sb-sidenav-collapse-arrow { transform: rotate(-90deg); } .sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-nested { margin-left: 1.5rem; flex-direction: column; } .sb-sidenav .sb-sidenav-footer { padding: 0.75rem; flex-shrink: 0; } .sb-sidenav-dark { background-color: #212529; color: rgba(255, 255, 255, 0.5); } .sb-sidenav-dark .sb-sidenav-menu .sb-sidenav-menu-heading { color: rgba(255, 255, 255, 0.25); } .sb-sidenav-dark .sb-sidenav-menu .nav-link { color: rgba(255, 255, 255, 0.5); } .sb-sidenav-dark .sb-sidenav-menu .nav-link .sb-nav-link-icon { color: rgba(255, 255, 255, 0.25); } .sb-sidenav-dark .sb-sidenav-menu .nav-link .sb-sidenav-collapse-arrow { color: rgba(255, 255, 255, 0.25); } .sb-sidenav-dark .sb-sidenav-menu .nav-link:hover { color: #fff; } .sb-sidenav-dark .sb-sidenav-menu .nav-link.active { color: #fff; } .sb-sidenav-dark .sb-sidenav-menu .nav-link.active .sb-nav-link-icon { color: #fff; } .sb-sidenav-dark .sb-sidenav-footer { background-color: #343a40; } .sb-sidenav-light { background-color: #f8f9fa; color: #212529; } .sb-sidenav-light .sb-sidenav-menu .sb-sidenav-menu-heading { color: #adb5bd; } .sb-sidenav-light .sb-sidenav-menu .nav-link { color: #212529; } .sb-sidenav-light .sb-sidenav-menu .nav-link .sb-nav-link-icon { color: #adb5bd; } .sb-sidenav-light .sb-sidenav-menu .nav-link .sb-sidenav-collapse-arrow { color: #adb5bd; } .sb-sidenav-light .sb-sidenav-menu .nav-link:hover { color: #007bff; } .sb-sidenav-light .sb-sidenav-menu .nav-link.active { color: #007bff; } .sb-sidenav-light .sb-sidenav-menu .nav-link.active .sb-nav-link-icon { color: #007bff; } .sb-sidenav-light .sb-sidenav-footer { background-color: #e9ecef; }
0.70202
0.046034
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification for details on configuring this project to bundle and minify static web assets. */ a.navbar-brand { white-space: normal; text-align: center; word-break: break-all; } @media screen and (max-width: 600px) { #typedwords { visibility: hidden; clear: both; display: none; } } .object-fit_fill { object-fit: fill } .object-fit_contain { object-fit: contain } .object-fit_cover { object-fit: cover } .object-fit_none { object-fit: none } .object-fit_scale-down { object-fit: scale-down } /* Sticky footer styles -------------------------------------------------- */ html { font-size: 14px; } @media (min-width: 768px) { html { font-size: 16px; } } .disabled { cursor: not-allowed; pointer-events: none; /*Button disabled - CSS color class*/ color: #c0c0c0; background-color: #ffffff; } .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; Set the fixed height of the footer here height: 60px; line-height: 60px; Vertically center the text there }*/ .jumbotron { padding-top: 3rem; padding-bottom: 3rem; margin-bottom: 0; background-color: #fff; } @media (min-width: 768px) { .jumbotron { padding-top: 6rem; padding-bottom: 6rem; } } .jumbotron p:last-child { margin-bottom: 0; } .jumbotron-heading { font-weight: 300; } .jumbotron .container { max-width: 40rem; } footer { padding-top: 3rem; padding-bottom: 3rem; } footer p { margin-bottom: .25rem; } .bd-placeholder-img { font-size: 1.125rem; text-anchor: middle; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } @media (min-width: 768px) { .bd-placeholder-img-lg { font-size: 3.5rem; } }
Syriatech.WebUI/wwwroot/css/site.css
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification for details on configuring this project to bundle and minify static web assets. */ a.navbar-brand { white-space: normal; text-align: center; word-break: break-all; } @media screen and (max-width: 600px) { #typedwords { visibility: hidden; clear: both; display: none; } } .object-fit_fill { object-fit: fill } .object-fit_contain { object-fit: contain } .object-fit_cover { object-fit: cover } .object-fit_none { object-fit: none } .object-fit_scale-down { object-fit: scale-down } /* Sticky footer styles -------------------------------------------------- */ html { font-size: 14px; } @media (min-width: 768px) { html { font-size: 16px; } } .disabled { cursor: not-allowed; pointer-events: none; /*Button disabled - CSS color class*/ color: #c0c0c0; background-color: #ffffff; } .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; Set the fixed height of the footer here height: 60px; line-height: 60px; Vertically center the text there }*/ .jumbotron { padding-top: 3rem; padding-bottom: 3rem; margin-bottom: 0; background-color: #fff; } @media (min-width: 768px) { .jumbotron { padding-top: 6rem; padding-bottom: 6rem; } } .jumbotron p:last-child { margin-bottom: 0; } .jumbotron-heading { font-weight: 300; } .jumbotron .container { max-width: 40rem; } footer { padding-top: 3rem; padding-bottom: 3rem; } footer p { margin-bottom: .25rem; } .bd-placeholder-img { font-size: 1.125rem; text-anchor: middle; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } @media (min-width: 768px) { .bd-placeholder-img-lg { font-size: 3.5rem; } }
0.51562
0.084985
*{ margin: 0; padding: 0; box-sizing: border-box; font-family: 'Noto Sans TC', sans-serif; } body{ overflow-x: hidden; background: #8ab0b0; height: 100vh; cursor: url('../image/cursor.svg'), auto; } a:hover{ cursor: url('../image/hover.svg'), auto; } .loading{ position: fixed; width: 100%; height: 100vh; max-width:100%; z-index: 9999; background-color: #5aa6a5; display: flex; align-items: center; justify-content: center; } .wavy{ position: relative; -webkit-box-reflect: below -12px linear-gradient(transparent, rgba(0,0,0,0.2)) ; } .wavy span{ position: relative; display: inline-block; color: white; font-size: 2em; animation: animate 2s ease-in-out infinite; animation-delay: calc(0.2s * var(--i)); } @keyframes animate{ 0%{ transform: translateY(0px); } 20%{ transform: translateY(-20px); } 40%,100%{ transform: translateY(0px); } } .s1{ overflow-x: hidden; height: 128vh; width: 100%; background: url(../image/s1.png); background-size: cover; background-position: center; } .s1 .scrollToTop{ position: fixed; bottom: 800px; right: 40px; width: 60px; height: 60px; z-index: 9997; visibility: hidden; opacity: 0; transition: 0.5s; cursor: pointer; } .s1 .scrollToTop.active{ bottom: 40px; opacity: 1; visibility: visible; } .fa-arrow-alt-circle-up{ font-size: 60px; color: #555656; } .s1 .upper{ position: relative; top: 7%; } .s1 .image{ position: relative; width: 35%; height: auto; margin-left: 70px; margin-bottom: 25px; } .s1 .image img{ width: 80%; height: 100%; } .s1 .heading{ letter-spacing: 5px; position: relative; left: 1.5%; color: white; font-weight: 700; } .s1 .heading p{ margin-left: 70px; font-size: 20px; } .slogan{ color: white; font-weight: 700; font-size: 24px; position: relative; top: 10%; left: 10%; letter-spacing: 6px; margin-top: 60px; } .slogan p:nth-child(2){ margin-left: 40px; } .lower{ position: absolute; bottom: 15px; text-align: center; display: inline-block; left: 55px; color: #fff; z-index: 9; } .lower a{ text-decoration: none; color: #fff; } .arrow{ top: 20px; position: relative; text-align: center; margin-left: auto; margin-right: auto; display: inline-block; left: 0; right: 0; color: white; font-size: 35px; text-shadow: 0.1em 0.1em 3px #305351; animation: bounce 2s ease infinite; } .scrolldown{ font-size: 15px; font-weight: 700; text-shadow: 0.15em 0.1em 1px #305351; margin-bottom: -20px; animation: bounce 2s ease infinite; } .arrowcolor:hover{ color: #fff; } .arrowcolor{ color: #fff; } @keyframes bounce{ 0%, 25%, 55%, 75% 100%{ transform: translateY(0); } 45%{ transform: translateY(-20px); } 65%{ transform: translateY(-10px); } 85%{ transform: translateY(-5px); } } .header{ height: 8vh; width: 100%; position: absolute; top: 0; left: 0; display: flex; justify-content: flex-end; position: absolute; } #headerContainer{ width: 100%; position: absolute; background-color: transparent; display: flex; min-height: 10vh; align-items: center; justify-content: space-around; transition: 0.8s ease; } .mainNav{ position: absolute; right: 17%; } .headerContainer .mainNav ul li{ display: block; float: left; list-style: none; } .headerContainer .mainNav ul li a{ color: white; text-decoration: none; transition: 0.5s ease-in-out; padding: 5px 20px; } .headerContainer .mainNav ul li a:hover{ background-color: white; color: #6a9d9f; text-decoration: none; } .burgerwrapper{ position: fixed; top: 10px; right: 10px; z-index: 9999; } .menulogo{ position: relative; max-width: 250px; } .menulogo img{ width: 100%; height: 100%; } .menu{ position: fixed; opacity: 0; width: 100%; height: 100vh; display: flex; justify-content: center; align-items: center; transition: 0.8s ease-in-out; } .menu.active{ opacity: 1; background: #5aa6a5; z-index: 9998; } .data_wrapper{ position: fixed; display: flex; flex-direction: column; align-items: center; } .data{ opacity: 0; pointer-events: none; transition: 0.8s; } .data.active{ opacity: 1; pointer-events: all; } .data ul{ letter-spacing: 3px; list-style: none; margin-bottom: 0; padding-left: 0; } .data li{ margin-top: 35px; margin-bottom: 35px; } .data ul a{ color: #fff; text-decoration: none; } .rwdBurger{ display: none; cursor: pointer; margin-top: 20px; } .rwdBurger div{ background-color: white; width: 25px; height: 2px; margin: 5px; } .img-container{ height: 100vh; background: black; } .img-container img{ width: 100%; position: absolute; height: 100vh; object-fit: cover; } .s2{ /*background: url(../image/s2.png); background-position: center; background-size: cover; /*background: #90bab9;*/ position: relative; width: 100%; min-height: 132vh; display: flex; flex-direction: column; justify-content: center; align-items: center; } .phone img{ position: absolute; /* Position the image in the middle of its container. */ top: -9999px; right: -9999px; bottom: -9999px; left: -9999px; margin: auto; /* The following values determine the exact image behaviour. */ /* You can simulate background-size: cover/contain/etc. by changing between min/max/standard width/height values. These values simulate background-size: cover */ width: 100%; min-height: 100%; object-fit: cover; } .text{ transform: translateX(45%); line-height: 2.5em; letter-spacing: 6px; color: #305351; font-size: 1.5em; font-weight: 700; } .text h2{ font-weight: 700; color: #b4bcb7; font-size: 1.8em; opacity: 0; transition: 0.5s; } .text h2[data-scroll="in"]{ opacity: 1; transition-delay: 0.3s; } .text p{ opacity: 0; transition: 0.5s; } .text p[data-scroll="in"]{ opacity: 1; transition-delay: 0.5s; } .s2 .coverContent{ display: flex; align-items: center; position: relative; top: 7%; left: 2.5%; transform: translateX(31%); margin-top: 60px; } .s2 .coverContent .left{ display: flex; align-items: center; flex-direction: column; align-items: flex-start; } .s2 .coverContent .right{ display: flex; align-items: center; flex-direction: column; align-items: flex-start; } .s2 .coverContent div{ margin: 0px 12px; } .s2 .coverContent .date{ font-size: 1.8em; font-weight: 700; } .s2 .coverContent h2{ color: #5aa6a5; font-size: 1.5em; letter-spacing: 7px; padding: 7px 13px; background: white; margin-bottom: 20px; } .s2 .coverContent p{ color: #526D68; font-weight: 500; letter-spacing: 3.5px; margin-top: -5px; } .client-wrap{ width: 90%; height: auto; margin: 0 auto; } .client-in{ max-width: 1600px; height: auto; text-align: center; margin: 0 auto; } .client-in ul{ padding: 0; margin: 0; } .client-in ul li{ list-style: none; display: inline-block; width: 180px; height: auto; margin: 0 20px; position: relative; opacity: 0; transition: 0.5s; transition-delay: 0.5s; } .client-in ul li[data-scroll="in"]{ opacity: 1; } .client-in ul li img{ width: 100%; height: 100%; } .s3{ width: 100%; background: #8ab0b0; } .s3 h2{ margin-bottom: 3rem; color: white; padding-top: 100px; text-align: center; } .s3 .pictures a { color: #fff; text-decoration: none; text-align: center; } .slide-container{ max-width: 1600px; margin: 0 auto; } .slick-slide{ margin: 0px 20px; } .slick-slide img{ border-radius: 10px; border: 4px solid #fff; width: 100%; } .control-c { max-width: 30px; position: absolute; top: 50%; transform: translateY(-50%); } .slick-prev { left: -40px; } .slick-next { right: -40px; } .mail{ position: relative; text-align: center; padding-bottom: 60px; padding-top: 60px; } .mail a{ background-color: inherit; text-decoration: none; color: white; padding: 10px 20px; border: 2px solid white; transition: 0.5s ease-in-out; } .mail a:hover{ background-color: white; color: #6a9d9f; } footer{ overflow-x: hidden; width: 100%; bottom: 0; left: 0; position: relative; background-color: white; } .content{ padding: 20px 0; width: 90%; height: auto; margin: 0 auto; } .content .top{ width: 100%; height: auto; text-align: center; } .content .top ul{ padding: 0; margin: 0; } .content .top ul li{ list-style: none; text-align: center; display: inline-block; width: 250px; height: auto; margin: 10px 60px; position: relative; } .content .top ul li img{ width: 100%; height: 100%; } .school{ width: 55%; } .ICS{ width: 85%; } .social-media{ display: flex; justify-content: center; } .social-media a{ width: 40px; height: 40px; margin: 0 8px; border-radius: 50%; text-align: center; color: white; text-decoration: none; font-size: 17px; display: flex; align-items: center; justify-content: center; } .social-media a:nth-child(1){ background-color: #4267B2; border: 2px solid #4267B2; transition: 0.5s; } .social-media a:nth-child(1):hover{ color: #4267B2; background-color: #fff; } .social-media a:nth-child(2){ background-color: #E1306C; border: 2px solid #E1306C; transition: 0.5s; } .social-media a:nth-child(2):hover{ color: #E1306C; background-color: #fff; } footer .copyrights{ margin-top: 20px; white-space: nowrap; display: flex; flex-direction: row; justify-content: center; font-weight: 300; } .copyrights p{ margin-bottom: 0; } .copyrights p:nth-child(1){ margin-right: 10px; } .copyrights p:nth-child(2){ margin-left: 10px; } @media (max-width: 1600px){ .s1 .heading{ left: 0; } .s1 .coverContent{ font-size: 0.8em; left: 2%; } .text{ font-size: 1em; width: 50%; } } @media (max-width: 1441px),(max-height: 800px){ .s1 .heading h3{ font-size: 1.3em; } .s1 .image{ margin-bottom: 35px; } .s3 h2{ padding-top: 50px; margin-bottom: 1em; } .client-in{ max-width: 1200px; height: auto; text-align: center; margin: 0 auto; } .slide-container{ max-width: 1000px; } } @media (max-width: 1366px){ .social-media{ justify-content: center; } .s1 .heading h3{ font-size: 1.5em; } .s1 .coverContent{ flex-direction: column; align-items: flex-start; top: 7%; } .s2 .text p{ text-align: justify; } } @media only screen and (max-width: 992px){ .s1 .coverContent{ top: 5%; flex-direction: column; justify-content: center; align-items: flex-start; } .nav-links{ visibility: hidden; } .header{ justify-content: flex-end; } .mainNav{ display: none; } .rwdBurger{ display: inherit; cursor: pointer; z-index: 9999; } .rwdBurger div{ display: inherit; } .rwdText{ display: inherit; } } @media (max-width: 830px){ .lower{ display: none; left: 0; right: 0; margin-left: 0; margin-right: 0; } .content{ width: 100%; } .s1 .scrollToTop{ right: 10px; width: 45px; height: 45px; } .fa-arrow-alt-circle-up{ font-size: 45px; } footer .copyrights{ margin-top: 0; flex-direction: column; } .copyrights p{ font-size: 12px; } .copyrights p:nth-child(1){ margin-right: 0px; } .copyrights p:nth-child(2){ margin-left: 0px; } } @media (max-width: 768px){ .s1{ background: url(../image/phone_s1.svg); background-repeat: no-repeat; background-size: cover; background-position: center; } .s1 .heading p{ font-size: 10px; margin-left: 0; text-align: center; } .s1 .image { position: relative; width: 60%; height: auto; margin: 0 auto; } .s1 .image img{ width: 100%; } .slogan { color: white; font-weight: 700; font-size: 15px; position: absolute; top: initial; left: 0; right: 0; margin-left: 0; margin-right: 30px; bottom: -120px; text-align: center; letter-spacing: 6px; margin-top: 0; } .s2{ background: #F4F1E6; justify-content: space-around; } .phone{ max-width: 200px; max-height: 200px; } .phone img{ width: 100%; position: relative; top: initial; right: initial; bottom: initial; left: initial; } .text{ transform: initial; line-height: 2em; width: 80%; margin-top: 150px; } .s2 .coverContent{ display: flex; align-items: center; position: relative; top: initial; left: initial; transform: initial; margin-top: 20px; flex-direction: column; } } @media (max-height: 500px){ .data_wrapper{ flex-direction: row; } .data li { margin-top: 20px; margin-bottom: 20px; } }
css/mainpage2.css
*{ margin: 0; padding: 0; box-sizing: border-box; font-family: 'Noto Sans TC', sans-serif; } body{ overflow-x: hidden; background: #8ab0b0; height: 100vh; cursor: url('../image/cursor.svg'), auto; } a:hover{ cursor: url('../image/hover.svg'), auto; } .loading{ position: fixed; width: 100%; height: 100vh; max-width:100%; z-index: 9999; background-color: #5aa6a5; display: flex; align-items: center; justify-content: center; } .wavy{ position: relative; -webkit-box-reflect: below -12px linear-gradient(transparent, rgba(0,0,0,0.2)) ; } .wavy span{ position: relative; display: inline-block; color: white; font-size: 2em; animation: animate 2s ease-in-out infinite; animation-delay: calc(0.2s * var(--i)); } @keyframes animate{ 0%{ transform: translateY(0px); } 20%{ transform: translateY(-20px); } 40%,100%{ transform: translateY(0px); } } .s1{ overflow-x: hidden; height: 128vh; width: 100%; background: url(../image/s1.png); background-size: cover; background-position: center; } .s1 .scrollToTop{ position: fixed; bottom: 800px; right: 40px; width: 60px; height: 60px; z-index: 9997; visibility: hidden; opacity: 0; transition: 0.5s; cursor: pointer; } .s1 .scrollToTop.active{ bottom: 40px; opacity: 1; visibility: visible; } .fa-arrow-alt-circle-up{ font-size: 60px; color: #555656; } .s1 .upper{ position: relative; top: 7%; } .s1 .image{ position: relative; width: 35%; height: auto; margin-left: 70px; margin-bottom: 25px; } .s1 .image img{ width: 80%; height: 100%; } .s1 .heading{ letter-spacing: 5px; position: relative; left: 1.5%; color: white; font-weight: 700; } .s1 .heading p{ margin-left: 70px; font-size: 20px; } .slogan{ color: white; font-weight: 700; font-size: 24px; position: relative; top: 10%; left: 10%; letter-spacing: 6px; margin-top: 60px; } .slogan p:nth-child(2){ margin-left: 40px; } .lower{ position: absolute; bottom: 15px; text-align: center; display: inline-block; left: 55px; color: #fff; z-index: 9; } .lower a{ text-decoration: none; color: #fff; } .arrow{ top: 20px; position: relative; text-align: center; margin-left: auto; margin-right: auto; display: inline-block; left: 0; right: 0; color: white; font-size: 35px; text-shadow: 0.1em 0.1em 3px #305351; animation: bounce 2s ease infinite; } .scrolldown{ font-size: 15px; font-weight: 700; text-shadow: 0.15em 0.1em 1px #305351; margin-bottom: -20px; animation: bounce 2s ease infinite; } .arrowcolor:hover{ color: #fff; } .arrowcolor{ color: #fff; } @keyframes bounce{ 0%, 25%, 55%, 75% 100%{ transform: translateY(0); } 45%{ transform: translateY(-20px); } 65%{ transform: translateY(-10px); } 85%{ transform: translateY(-5px); } } .header{ height: 8vh; width: 100%; position: absolute; top: 0; left: 0; display: flex; justify-content: flex-end; position: absolute; } #headerContainer{ width: 100%; position: absolute; background-color: transparent; display: flex; min-height: 10vh; align-items: center; justify-content: space-around; transition: 0.8s ease; } .mainNav{ position: absolute; right: 17%; } .headerContainer .mainNav ul li{ display: block; float: left; list-style: none; } .headerContainer .mainNav ul li a{ color: white; text-decoration: none; transition: 0.5s ease-in-out; padding: 5px 20px; } .headerContainer .mainNav ul li a:hover{ background-color: white; color: #6a9d9f; text-decoration: none; } .burgerwrapper{ position: fixed; top: 10px; right: 10px; z-index: 9999; } .menulogo{ position: relative; max-width: 250px; } .menulogo img{ width: 100%; height: 100%; } .menu{ position: fixed; opacity: 0; width: 100%; height: 100vh; display: flex; justify-content: center; align-items: center; transition: 0.8s ease-in-out; } .menu.active{ opacity: 1; background: #5aa6a5; z-index: 9998; } .data_wrapper{ position: fixed; display: flex; flex-direction: column; align-items: center; } .data{ opacity: 0; pointer-events: none; transition: 0.8s; } .data.active{ opacity: 1; pointer-events: all; } .data ul{ letter-spacing: 3px; list-style: none; margin-bottom: 0; padding-left: 0; } .data li{ margin-top: 35px; margin-bottom: 35px; } .data ul a{ color: #fff; text-decoration: none; } .rwdBurger{ display: none; cursor: pointer; margin-top: 20px; } .rwdBurger div{ background-color: white; width: 25px; height: 2px; margin: 5px; } .img-container{ height: 100vh; background: black; } .img-container img{ width: 100%; position: absolute; height: 100vh; object-fit: cover; } .s2{ /*background: url(../image/s2.png); background-position: center; background-size: cover; /*background: #90bab9;*/ position: relative; width: 100%; min-height: 132vh; display: flex; flex-direction: column; justify-content: center; align-items: center; } .phone img{ position: absolute; /* Position the image in the middle of its container. */ top: -9999px; right: -9999px; bottom: -9999px; left: -9999px; margin: auto; /* The following values determine the exact image behaviour. */ /* You can simulate background-size: cover/contain/etc. by changing between min/max/standard width/height values. These values simulate background-size: cover */ width: 100%; min-height: 100%; object-fit: cover; } .text{ transform: translateX(45%); line-height: 2.5em; letter-spacing: 6px; color: #305351; font-size: 1.5em; font-weight: 700; } .text h2{ font-weight: 700; color: #b4bcb7; font-size: 1.8em; opacity: 0; transition: 0.5s; } .text h2[data-scroll="in"]{ opacity: 1; transition-delay: 0.3s; } .text p{ opacity: 0; transition: 0.5s; } .text p[data-scroll="in"]{ opacity: 1; transition-delay: 0.5s; } .s2 .coverContent{ display: flex; align-items: center; position: relative; top: 7%; left: 2.5%; transform: translateX(31%); margin-top: 60px; } .s2 .coverContent .left{ display: flex; align-items: center; flex-direction: column; align-items: flex-start; } .s2 .coverContent .right{ display: flex; align-items: center; flex-direction: column; align-items: flex-start; } .s2 .coverContent div{ margin: 0px 12px; } .s2 .coverContent .date{ font-size: 1.8em; font-weight: 700; } .s2 .coverContent h2{ color: #5aa6a5; font-size: 1.5em; letter-spacing: 7px; padding: 7px 13px; background: white; margin-bottom: 20px; } .s2 .coverContent p{ color: #526D68; font-weight: 500; letter-spacing: 3.5px; margin-top: -5px; } .client-wrap{ width: 90%; height: auto; margin: 0 auto; } .client-in{ max-width: 1600px; height: auto; text-align: center; margin: 0 auto; } .client-in ul{ padding: 0; margin: 0; } .client-in ul li{ list-style: none; display: inline-block; width: 180px; height: auto; margin: 0 20px; position: relative; opacity: 0; transition: 0.5s; transition-delay: 0.5s; } .client-in ul li[data-scroll="in"]{ opacity: 1; } .client-in ul li img{ width: 100%; height: 100%; } .s3{ width: 100%; background: #8ab0b0; } .s3 h2{ margin-bottom: 3rem; color: white; padding-top: 100px; text-align: center; } .s3 .pictures a { color: #fff; text-decoration: none; text-align: center; } .slide-container{ max-width: 1600px; margin: 0 auto; } .slick-slide{ margin: 0px 20px; } .slick-slide img{ border-radius: 10px; border: 4px solid #fff; width: 100%; } .control-c { max-width: 30px; position: absolute; top: 50%; transform: translateY(-50%); } .slick-prev { left: -40px; } .slick-next { right: -40px; } .mail{ position: relative; text-align: center; padding-bottom: 60px; padding-top: 60px; } .mail a{ background-color: inherit; text-decoration: none; color: white; padding: 10px 20px; border: 2px solid white; transition: 0.5s ease-in-out; } .mail a:hover{ background-color: white; color: #6a9d9f; } footer{ overflow-x: hidden; width: 100%; bottom: 0; left: 0; position: relative; background-color: white; } .content{ padding: 20px 0; width: 90%; height: auto; margin: 0 auto; } .content .top{ width: 100%; height: auto; text-align: center; } .content .top ul{ padding: 0; margin: 0; } .content .top ul li{ list-style: none; text-align: center; display: inline-block; width: 250px; height: auto; margin: 10px 60px; position: relative; } .content .top ul li img{ width: 100%; height: 100%; } .school{ width: 55%; } .ICS{ width: 85%; } .social-media{ display: flex; justify-content: center; } .social-media a{ width: 40px; height: 40px; margin: 0 8px; border-radius: 50%; text-align: center; color: white; text-decoration: none; font-size: 17px; display: flex; align-items: center; justify-content: center; } .social-media a:nth-child(1){ background-color: #4267B2; border: 2px solid #4267B2; transition: 0.5s; } .social-media a:nth-child(1):hover{ color: #4267B2; background-color: #fff; } .social-media a:nth-child(2){ background-color: #E1306C; border: 2px solid #E1306C; transition: 0.5s; } .social-media a:nth-child(2):hover{ color: #E1306C; background-color: #fff; } footer .copyrights{ margin-top: 20px; white-space: nowrap; display: flex; flex-direction: row; justify-content: center; font-weight: 300; } .copyrights p{ margin-bottom: 0; } .copyrights p:nth-child(1){ margin-right: 10px; } .copyrights p:nth-child(2){ margin-left: 10px; } @media (max-width: 1600px){ .s1 .heading{ left: 0; } .s1 .coverContent{ font-size: 0.8em; left: 2%; } .text{ font-size: 1em; width: 50%; } } @media (max-width: 1441px),(max-height: 800px){ .s1 .heading h3{ font-size: 1.3em; } .s1 .image{ margin-bottom: 35px; } .s3 h2{ padding-top: 50px; margin-bottom: 1em; } .client-in{ max-width: 1200px; height: auto; text-align: center; margin: 0 auto; } .slide-container{ max-width: 1000px; } } @media (max-width: 1366px){ .social-media{ justify-content: center; } .s1 .heading h3{ font-size: 1.5em; } .s1 .coverContent{ flex-direction: column; align-items: flex-start; top: 7%; } .s2 .text p{ text-align: justify; } } @media only screen and (max-width: 992px){ .s1 .coverContent{ top: 5%; flex-direction: column; justify-content: center; align-items: flex-start; } .nav-links{ visibility: hidden; } .header{ justify-content: flex-end; } .mainNav{ display: none; } .rwdBurger{ display: inherit; cursor: pointer; z-index: 9999; } .rwdBurger div{ display: inherit; } .rwdText{ display: inherit; } } @media (max-width: 830px){ .lower{ display: none; left: 0; right: 0; margin-left: 0; margin-right: 0; } .content{ width: 100%; } .s1 .scrollToTop{ right: 10px; width: 45px; height: 45px; } .fa-arrow-alt-circle-up{ font-size: 45px; } footer .copyrights{ margin-top: 0; flex-direction: column; } .copyrights p{ font-size: 12px; } .copyrights p:nth-child(1){ margin-right: 0px; } .copyrights p:nth-child(2){ margin-left: 0px; } } @media (max-width: 768px){ .s1{ background: url(../image/phone_s1.svg); background-repeat: no-repeat; background-size: cover; background-position: center; } .s1 .heading p{ font-size: 10px; margin-left: 0; text-align: center; } .s1 .image { position: relative; width: 60%; height: auto; margin: 0 auto; } .s1 .image img{ width: 100%; } .slogan { color: white; font-weight: 700; font-size: 15px; position: absolute; top: initial; left: 0; right: 0; margin-left: 0; margin-right: 30px; bottom: -120px; text-align: center; letter-spacing: 6px; margin-top: 0; } .s2{ background: #F4F1E6; justify-content: space-around; } .phone{ max-width: 200px; max-height: 200px; } .phone img{ width: 100%; position: relative; top: initial; right: initial; bottom: initial; left: initial; } .text{ transform: initial; line-height: 2em; width: 80%; margin-top: 150px; } .s2 .coverContent{ display: flex; align-items: center; position: relative; top: initial; left: initial; transform: initial; margin-top: 20px; flex-direction: column; } } @media (max-height: 500px){ .data_wrapper{ flex-direction: row; } .data li { margin-top: 20px; margin-bottom: 20px; } }
0.404272
0.061255
html { background-color: #e6e6e6; } #workspace { background-color: #e6e6e6; margin: 0 0 0 0; } #doc { -moz-box-shadow: 0 0 4px 2px #888888; -webkit-box-shadow: 0 0 4px 2px #888888; margin: 1% 20% 6% 20%; box-shadow: 0 0 4px 2px #888888; padding: 2em 4em 6em 4em; background-color: #ffffff; } h1 { margin-bottom: 5px; } h2 { margin-top: 5px } h1, h2 { text-align: center; } h2 { font-size: 1em; } a:link, a:visited { color: #000000; text-decoration: none; } a:hover { color: #0000ff; text-decoration: underline; } hr { margin: 20px 0 20px 0; } div.clear > hr { border: 0; margin: 0 0 0 0; visibility: hidden; } h3 { padding-left: 1em; margin: 10px 0px 10px 0px; } table { width: 100%; margin-left: 2em; margin-right: 2em; } td { vertical-align: top; } .right { text-align: right; float: right; } .left { float: left; } .clear { clear: both; } p { margin: 0; padding-left: 1em; } .tab1 { padding-left: 2em; } .tab2 { padding-left: 3em; } .experience { margin: 20px 0 20px 0; padding-left: 2em; } #back { float: left; max-width: 5%; margin-top: 1%; margin-left: 1%; } #back p { visibility: hidden; } #back img { max-width:100%; height: auto; opacity: .1; border-radius: 1em; } #back img:hover { opacity: .3; -moz-box-shadow: 0 0 4px 2px #888888; -webkit-box-shadow: 0 0 4px 2px #888888; box-shadow: 0 0 4px 2px #888888; } @media only screen and (orientation:portrait) { body { margin: 3% 3% 6% 3%; } #doc { -moz-box-shadow: 0 0 4px 2px #888888; -webkit-box-shadow: 0 0 4px 2px #888888; box-shadow: 0 0 4px 2px #888888; margin: 3% 3% 6% 3%; padding: 2em 1em 4em 1em; } table, tr, td { display: block; margin-left: 1em; margin-right: 0; } div.clear > hr { border: 1px solid #888888; border-top: 1px; margin-left: 1em; margin-right: 1em; background-color: #888888; visibility: visible; } .experience { padding-left: 0; } .tab1 { padding-left: 0; } .tab2 { padding-left: 1em; } #back { float: none; margin: 0; padding: 0; font-family: sans-serif; color: #b3b3b3; } #back:hover { color: #888888; text-decoration: none; } #back img { height: 0; visibility: hidden; } #back p { visibility: visible; } }
css/resume.css
html { background-color: #e6e6e6; } #workspace { background-color: #e6e6e6; margin: 0 0 0 0; } #doc { -moz-box-shadow: 0 0 4px 2px #888888; -webkit-box-shadow: 0 0 4px 2px #888888; margin: 1% 20% 6% 20%; box-shadow: 0 0 4px 2px #888888; padding: 2em 4em 6em 4em; background-color: #ffffff; } h1 { margin-bottom: 5px; } h2 { margin-top: 5px } h1, h2 { text-align: center; } h2 { font-size: 1em; } a:link, a:visited { color: #000000; text-decoration: none; } a:hover { color: #0000ff; text-decoration: underline; } hr { margin: 20px 0 20px 0; } div.clear > hr { border: 0; margin: 0 0 0 0; visibility: hidden; } h3 { padding-left: 1em; margin: 10px 0px 10px 0px; } table { width: 100%; margin-left: 2em; margin-right: 2em; } td { vertical-align: top; } .right { text-align: right; float: right; } .left { float: left; } .clear { clear: both; } p { margin: 0; padding-left: 1em; } .tab1 { padding-left: 2em; } .tab2 { padding-left: 3em; } .experience { margin: 20px 0 20px 0; padding-left: 2em; } #back { float: left; max-width: 5%; margin-top: 1%; margin-left: 1%; } #back p { visibility: hidden; } #back img { max-width:100%; height: auto; opacity: .1; border-radius: 1em; } #back img:hover { opacity: .3; -moz-box-shadow: 0 0 4px 2px #888888; -webkit-box-shadow: 0 0 4px 2px #888888; box-shadow: 0 0 4px 2px #888888; } @media only screen and (orientation:portrait) { body { margin: 3% 3% 6% 3%; } #doc { -moz-box-shadow: 0 0 4px 2px #888888; -webkit-box-shadow: 0 0 4px 2px #888888; box-shadow: 0 0 4px 2px #888888; margin: 3% 3% 6% 3%; padding: 2em 1em 4em 1em; } table, tr, td { display: block; margin-left: 1em; margin-right: 0; } div.clear > hr { border: 1px solid #888888; border-top: 1px; margin-left: 1em; margin-right: 1em; background-color: #888888; visibility: visible; } .experience { padding-left: 0; } .tab1 { padding-left: 0; } .tab2 { padding-left: 1em; } #back { float: none; margin: 0; padding: 0; font-family: sans-serif; color: #b3b3b3; } #back:hover { color: #888888; text-decoration: none; } #back img { height: 0; visibility: hidden; } #back p { visibility: visible; } }
0.330039
0.179135
.tool.menu-container { text-align: center; } .tool.menu-container .tool-menu { position: absolute; background: #181b1e; right: 0; display: none; top: 100%; min-width: 7em; z-index: 150; } .tool-menu .nav_bar_dropdown div { /*so we don't restyle the menu*/ text-align: left; white-space: nowrap; padding: 0 10px; } .tool-menu .nav_bar_dropdown div:hover { background: #202225; } .tool.menu-container:focus .tool-menu { display: block; } .tool .tool-tip { display: block; position: absolute; overflow: visible; z-index: 170; margin-left: -7.5px; background: #181b1e; color: #b4c9e0; visibility: hidden; border-radius: 5px; padding: 10px; font-size: 9pt; white-space: nowrap; line-height: initial; } .tool .tool-tip.left { margin-top: -0.75em; transform: translate(-100%, -50%); } .tool:hover .tool-tip { /*visibility: visible;*/ animation: reveal 1s; animation-fill-mode: forwards; } .tool .tool-tip.left::after { content: " "; position: absolute; top: 50%; left: 100%; margin-top: -5px; border-width: 5px; border-style: solid; border-color: transparent transparent transparent #181b1e; } .tool .tool-tip.bottom::after { content: " "; position: absolute; bottom: 100%; /* At the top of the tooltip */ left: 20px; margin-left: -5px; border-width: 5px; border-style: solid; border-color: transparent transparent #181b1e transparent } .tool, button { color: #eee; font-size: 11pt; border-radius: 9px; border: 0; margin: 3px; min-width: 35px; min-height: 35px; background: transparent; cursor: pointer; text-align: center; position: relative; /*To allow the menu to align itself relative to something*/ line-height: 34px; } .tool i { transition: 100ms ease; } .tool:hover, button:hover { background: rgba(102, 112, 123, 0.55); color: white; } .tool:hover i { color: white; } .tool:active, button:active { background: rgba(124, 136, 149, 0.55); } @keyframes reveal { 0% { visibility: hidden; } 99% { visibility: hidden; } 100% { visibility: visible; } }
src/css/tooltip.css
.tool.menu-container { text-align: center; } .tool.menu-container .tool-menu { position: absolute; background: #181b1e; right: 0; display: none; top: 100%; min-width: 7em; z-index: 150; } .tool-menu .nav_bar_dropdown div { /*so we don't restyle the menu*/ text-align: left; white-space: nowrap; padding: 0 10px; } .tool-menu .nav_bar_dropdown div:hover { background: #202225; } .tool.menu-container:focus .tool-menu { display: block; } .tool .tool-tip { display: block; position: absolute; overflow: visible; z-index: 170; margin-left: -7.5px; background: #181b1e; color: #b4c9e0; visibility: hidden; border-radius: 5px; padding: 10px; font-size: 9pt; white-space: nowrap; line-height: initial; } .tool .tool-tip.left { margin-top: -0.75em; transform: translate(-100%, -50%); } .tool:hover .tool-tip { /*visibility: visible;*/ animation: reveal 1s; animation-fill-mode: forwards; } .tool .tool-tip.left::after { content: " "; position: absolute; top: 50%; left: 100%; margin-top: -5px; border-width: 5px; border-style: solid; border-color: transparent transparent transparent #181b1e; } .tool .tool-tip.bottom::after { content: " "; position: absolute; bottom: 100%; /* At the top of the tooltip */ left: 20px; margin-left: -5px; border-width: 5px; border-style: solid; border-color: transparent transparent #181b1e transparent } .tool, button { color: #eee; font-size: 11pt; border-radius: 9px; border: 0; margin: 3px; min-width: 35px; min-height: 35px; background: transparent; cursor: pointer; text-align: center; position: relative; /*To allow the menu to align itself relative to something*/ line-height: 34px; } .tool i { transition: 100ms ease; } .tool:hover, button:hover { background: rgba(102, 112, 123, 0.55); color: white; } .tool:hover i { color: white; } .tool:active, button:active { background: rgba(124, 136, 149, 0.55); } @keyframes reveal { 0% { visibility: hidden; } 99% { visibility: hidden; } 100% { visibility: visible; } }
0.601828
0.077553
.logo{ width: 75px; padding-left: 10px; } .naveg{ padding-top: 10px; padding-right: 40px; width: 500px; font-family: Arial; font-size: 18px; float: right; } ul, ol{ list-style: none; } .menu > li{ float: right; } .menu li a{ background-color: #ffff; color: black; text-decoration: none; padding: 10px 12px; display: block; } .menu li a:hover{ background-color: grey; transition: 0.6s; } .menu li ul{ display: none; position: absolute; min-width: 140px; } .menu li:hover > ul{ display: block; } .menu li ul li{ position: relative; } .menu li ul li ul{ right: -140px; top: 0; } /*Form*/ @import url(https://fonts.googleapis.com/css?family=Lato:100,300,400); input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { color: #aca49c; font-size: 0.875em; } input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder { color: #bbb5af; } input::-moz-placeholder, textarea::-moz-placeholder { color: #aca49c; font-size: 0.875em; } input:focus::-moz-placeholder, textarea:focus::-moz-placeholder { color: #bbb5af; } input::placeholder, textarea::placeholder { color: #aca49c; font-size: 0.875em; } input:focus::placeholder, textarea::focus:placeholder { color: #bbb5af; } input::-ms-placeholder, textarea::-ms-placeholder { color: #aca49c; font-size: 0.875em; } input:focus::-ms-placeholder, textarea:focus::-ms-placeholder { color: #bbb5af; } /* on hover placeholder */ input:hover::-webkit-input-placeholder, textarea:hover::-webkit-input-placeholder { color: #e2dedb; font-size: 0.875em; } input:hover:focus::-webkit-input-placeholder, textarea:hover:focus::-webkit-input-placeholder { color: #cbc6c1; } input:hover::-moz-placeholder, textarea:hover::-moz-placeholder { color: #e2dedb; font-size: 0.875em; } input:hover:focus::-moz-placeholder, textarea:hover:focus::-moz-placeholder { color: #cbc6c1; } input:hover::placeholder, textarea:hover::placeholder { color: #e2dedb; font-size: 0.875em; } input:hover:focus::placeholder, textarea:hover:focus::placeholder { color: #cbc6c1; } input:hover::placeholder, textarea:hover::placeholder { color: #e2dedb; font-size: 0.875em; } input:hover:focus::-ms-placeholder, textarea:hover::focus:-ms-placeholder { color: #cbc6c1; } /* body { */ font-family: 'Lato', sans-serif; background: #e2dedb; color: #b3aca7; } header { position: relative; margin: 100px 0 25px 0; font-size: 2.3em; text-align: center; letter-spacing: 7px; } #form { position: relative; width: 500px; margin: 50px auto 100px auto; } input { font-family: 'Lato', sans-serif; font-size: 0.875em; width: 470px; height: 50px; padding: 0px 15px 0px 15px; background: transparent; outline: none; color: #726659; border: solid 1px #b3aca7; border-bottom: none; transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -ms-transition: all 0.3s ease-in-out; } input:hover { background: #b3aca7; color: #e2dedb; } textarea { width: 470px; max-width: 470px; height: 110px; max-height: 110px; padding: 15px; background: transparent; outline: none; color: #726659; font-family: 'Lato', sans-serif; font-size: 0.875em; border: solid 1px #b3aca7; transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -ms-transition: all 0.3s ease-in-out; } textarea:hover { background: #b3aca7; color: #e2dedb; } #submit { width: 470px; padding: 0; margin: -5px 0px 0px 0px; font-family: 'Lato', sans-serif; font-size: 0.875em; color: #b3aca7; outline:none; cursor: pointer; border: solid 1px #b3aca7; border-top: none; } #submit:hover { color: #e2dedb; } /*Footer*/ .footer-dark { padding:50px 0; color:#f0f9ff; background-color:#282d32; } .footer-dark h3 { margin-top:0; margin-bottom:12px; font-weight:bold; font-size:16px; } .footer-dark ul { padding:0; list-style:none; line-height:1.6; font-size:14px; margin-bottom:0; } .footer-dark ul a { color:inherit; text-decoration:none; opacity:0.6; } .footer-dark ul a:hover { opacity:0.8; } @media (max-width:767px) { .footer-dark .item:not(.social) { text-align:center; padding-bottom:20px; } } .footer-dark .item.text { margin-bottom:36px; } @media (max-width:767px) { .footer-dark .item.text { margin-bottom:0; } } .footer-dark .item.text p { opacity:0.6; margin-bottom:0; } .footer-dark .item.social { text-align:center; } @media (max-width:991px) { .footer-dark .item.social { text-align:center; margin-top:20px; } } .footer-dark .item.social > a { font-size:20px; width:36px; height:36px; line-height:36px; display:inline-block; text-align:center; border-radius:50%; box-shadow:0 0 0 1px rgba(255,255,255,0.4); margin:0 8px; color:#fff; opacity:0.75; } .footer-dark .item.social > a:hover { opacity:0.9; } .footer-dark .copyright { text-align:center; padding-top:24px; opacity:0.3; font-size:13px; margin-bottom:0; } @media(max-width: 600px) { html { scroll-behavior: smooth; } html body{ width: 100%; height: 100%; margin: 0; padding: 0; overflow-x: hidden; } @media(max-width: 600px) { .logo{ width: 75px; padding-left: 10px; } .naveg{ padding-top: 10px; padding-right: 40px; width: 500px; font-family: Arial; font-size: 18px; float: right; } ul, ol{ list-style: none; } .menu > li{ float: right; } .menu li a{ background-color: #ffff; color: black; text-decoration: none; padding: 10px 12px; display: block; } .menu li a:hover{ background-color: grey; transition: 0.6s; } .menu li ul{ display: none; position: absolute; min-width: 140px; } .menu li:hover > ul{ display: block; } .menu li ul li{ position: relative; } .menu li ul li ul{ right: -140px; top: 0; } /*Form*/ @import url(https://fonts.googleapis.com/css?family=Lato:100,300,400); input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { color: #aca49c; font-size: 0.875em; } input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder { color: #bbb5af; } input::-moz-placeholder, textarea::-moz-placeholder { color: #aca49c; font-size: 0.875em; } input:focus::-moz-placeholder, textarea:focus::-moz-placeholder { color: #bbb5af; } input::placeholder, textarea::placeholder { color: #aca49c; font-size: 0.875em; } input:focus::placeholder, textarea::focus:placeholder { color: #bbb5af; } input::-ms-placeholder, textarea::-ms-placeholder { color: #aca49c; font-size: 0.875em; } input:focus::-ms-placeholder, textarea:focus::-ms-placeholder { color: #bbb5af; } /* on hover placeholder */ input:hover::-webkit-input-placeholder, textarea:hover::-webkit-input-placeholder { color: #e2dedb; font-size: 0.875em; } input:hover:focus::-webkit-input-placeholder, textarea:hover:focus::-webkit-input-placeholder { color: #cbc6c1; } input:hover::-moz-placeholder, textarea:hover::-moz-placeholder { color: #e2dedb; font-size: 0.875em; } input:hover:focus::-moz-placeholder, textarea:hover:focus::-moz-placeholder { color: #cbc6c1; } input:hover::placeholder, textarea:hover::placeholder { color: #e2dedb; font-size: 0.875em; } input:hover:focus::placeholder, textarea:hover:focus::placeholder { color: #cbc6c1; } input:hover::placeholder, textarea:hover::placeholder { color: #e2dedb; font-size: 0.875em; } input:hover:focus::-ms-placeholder, textarea:hover::focus:-ms-placeholder { color: #cbc6c1; } /* body { */ font-family: 'Lato', sans-serif; background: #e2dedb; color: #b3aca7; } header { position: relative; margin: 100px 0 25px 0; font-size: 2.3em; text-align: center; letter-spacing: 7px; } #form { position: relative; width: 500px; margin: 50px auto 100px auto; } input { font-family: 'Lato', sans-serif; font-size: 0.875em; width: 470px; height: 50px; padding: 0px 15px 0px 15px; background: transparent; outline: none; color: #726659; border: solid 1px #b3aca7; border-bottom: none; transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -ms-transition: all 0.3s ease-in-out; } input:hover { background: #b3aca7; color: #e2dedb; } textarea { width: 470px; max-width: 470px; height: 110px; max-height: 110px; padding: 15px; background: transparent; outline: none; color: #726659; font-family: 'Lato', sans-serif; font-size: 0.875em; border: solid 1px #b3aca7; transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -ms-transition: all 0.3s ease-in-out; } textarea:hover { background: #b3aca7; color: #e2dedb; } #submit { width: 470px; padding: 0; margin: -5px 0px 0px 0px; font-family: 'Lato', sans-serif; font-size: 0.875em; color: #b3aca7; outline:none; cursor: pointer; border: solid 1px #b3aca7; border-top: none; } #submit:hover { color: #e2dedb; } /*Footer*/ .footer-dark { padding:50px 0; color:#f0f9ff; background-color:#282d32; } .footer-dark h3 { margin-top:0; margin-bottom:12px; font-weight:bold; font-size:16px; } .footer-dark ul { padding:0; list-style:none; line-height:1.6; font-size:14px; margin-bottom:0; } .footer-dark ul a { color:inherit; text-decoration:none; opacity:0.6; } .footer-dark ul a:hover { opacity:0.8; } @media (max-width:767px) { .footer-dark .item:not(.social) { text-align:center; padding-bottom:20px; } } .footer-dark .item.text { margin-bottom:36px; } @media (max-width:767px) { .footer-dark .item.text { margin-bottom:0; } } .footer-dark .item.text p { opacity:0.6; margin-bottom:0; } .footer-dark .item.social { text-align:center; } @media (max-width:991px) { .footer-dark .item.social { text-align:center; margin-top:20px; } } .footer-dark .item.social > a { font-size:20px; width:36px; height:36px; line-height:36px; display:inline-block; text-align:center; border-radius:50%; box-shadow:0 0 0 1px rgba(255,255,255,0.4); margin:0 8px; color:#fff; opacity:0.75; } .footer-dark .item.social > a:hover { opacity:0.9; } .footer-dark .copyright { text-align:center; padding-top:24px; opacity:0.3; font-size:13px; margin-bottom:0; } @media(max-width: 600px) { html { scroll-behavior: smooth; } html body{ width: 100%; height: 100%; margin: 0; padding: 0; overflow-x: hidden; } }
Public/Assets/css/Form.css
.logo{ width: 75px; padding-left: 10px; } .naveg{ padding-top: 10px; padding-right: 40px; width: 500px; font-family: Arial; font-size: 18px; float: right; } ul, ol{ list-style: none; } .menu > li{ float: right; } .menu li a{ background-color: #ffff; color: black; text-decoration: none; padding: 10px 12px; display: block; } .menu li a:hover{ background-color: grey; transition: 0.6s; } .menu li ul{ display: none; position: absolute; min-width: 140px; } .menu li:hover > ul{ display: block; } .menu li ul li{ position: relative; } .menu li ul li ul{ right: -140px; top: 0; } /*Form*/ @import url(https://fonts.googleapis.com/css?family=Lato:100,300,400); input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { color: #aca49c; font-size: 0.875em; } input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder { color: #bbb5af; } input::-moz-placeholder, textarea::-moz-placeholder { color: #aca49c; font-size: 0.875em; } input:focus::-moz-placeholder, textarea:focus::-moz-placeholder { color: #bbb5af; } input::placeholder, textarea::placeholder { color: #aca49c; font-size: 0.875em; } input:focus::placeholder, textarea::focus:placeholder { color: #bbb5af; } input::-ms-placeholder, textarea::-ms-placeholder { color: #aca49c; font-size: 0.875em; } input:focus::-ms-placeholder, textarea:focus::-ms-placeholder { color: #bbb5af; } /* on hover placeholder */ input:hover::-webkit-input-placeholder, textarea:hover::-webkit-input-placeholder { color: #e2dedb; font-size: 0.875em; } input:hover:focus::-webkit-input-placeholder, textarea:hover:focus::-webkit-input-placeholder { color: #cbc6c1; } input:hover::-moz-placeholder, textarea:hover::-moz-placeholder { color: #e2dedb; font-size: 0.875em; } input:hover:focus::-moz-placeholder, textarea:hover:focus::-moz-placeholder { color: #cbc6c1; } input:hover::placeholder, textarea:hover::placeholder { color: #e2dedb; font-size: 0.875em; } input:hover:focus::placeholder, textarea:hover:focus::placeholder { color: #cbc6c1; } input:hover::placeholder, textarea:hover::placeholder { color: #e2dedb; font-size: 0.875em; } input:hover:focus::-ms-placeholder, textarea:hover::focus:-ms-placeholder { color: #cbc6c1; } /* body { */ font-family: 'Lato', sans-serif; background: #e2dedb; color: #b3aca7; } header { position: relative; margin: 100px 0 25px 0; font-size: 2.3em; text-align: center; letter-spacing: 7px; } #form { position: relative; width: 500px; margin: 50px auto 100px auto; } input { font-family: 'Lato', sans-serif; font-size: 0.875em; width: 470px; height: 50px; padding: 0px 15px 0px 15px; background: transparent; outline: none; color: #726659; border: solid 1px #b3aca7; border-bottom: none; transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -ms-transition: all 0.3s ease-in-out; } input:hover { background: #b3aca7; color: #e2dedb; } textarea { width: 470px; max-width: 470px; height: 110px; max-height: 110px; padding: 15px; background: transparent; outline: none; color: #726659; font-family: 'Lato', sans-serif; font-size: 0.875em; border: solid 1px #b3aca7; transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -ms-transition: all 0.3s ease-in-out; } textarea:hover { background: #b3aca7; color: #e2dedb; } #submit { width: 470px; padding: 0; margin: -5px 0px 0px 0px; font-family: 'Lato', sans-serif; font-size: 0.875em; color: #b3aca7; outline:none; cursor: pointer; border: solid 1px #b3aca7; border-top: none; } #submit:hover { color: #e2dedb; } /*Footer*/ .footer-dark { padding:50px 0; color:#f0f9ff; background-color:#282d32; } .footer-dark h3 { margin-top:0; margin-bottom:12px; font-weight:bold; font-size:16px; } .footer-dark ul { padding:0; list-style:none; line-height:1.6; font-size:14px; margin-bottom:0; } .footer-dark ul a { color:inherit; text-decoration:none; opacity:0.6; } .footer-dark ul a:hover { opacity:0.8; } @media (max-width:767px) { .footer-dark .item:not(.social) { text-align:center; padding-bottom:20px; } } .footer-dark .item.text { margin-bottom:36px; } @media (max-width:767px) { .footer-dark .item.text { margin-bottom:0; } } .footer-dark .item.text p { opacity:0.6; margin-bottom:0; } .footer-dark .item.social { text-align:center; } @media (max-width:991px) { .footer-dark .item.social { text-align:center; margin-top:20px; } } .footer-dark .item.social > a { font-size:20px; width:36px; height:36px; line-height:36px; display:inline-block; text-align:center; border-radius:50%; box-shadow:0 0 0 1px rgba(255,255,255,0.4); margin:0 8px; color:#fff; opacity:0.75; } .footer-dark .item.social > a:hover { opacity:0.9; } .footer-dark .copyright { text-align:center; padding-top:24px; opacity:0.3; font-size:13px; margin-bottom:0; } @media(max-width: 600px) { html { scroll-behavior: smooth; } html body{ width: 100%; height: 100%; margin: 0; padding: 0; overflow-x: hidden; } @media(max-width: 600px) { .logo{ width: 75px; padding-left: 10px; } .naveg{ padding-top: 10px; padding-right: 40px; width: 500px; font-family: Arial; font-size: 18px; float: right; } ul, ol{ list-style: none; } .menu > li{ float: right; } .menu li a{ background-color: #ffff; color: black; text-decoration: none; padding: 10px 12px; display: block; } .menu li a:hover{ background-color: grey; transition: 0.6s; } .menu li ul{ display: none; position: absolute; min-width: 140px; } .menu li:hover > ul{ display: block; } .menu li ul li{ position: relative; } .menu li ul li ul{ right: -140px; top: 0; } /*Form*/ @import url(https://fonts.googleapis.com/css?family=Lato:100,300,400); input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { color: #aca49c; font-size: 0.875em; } input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder { color: #bbb5af; } input::-moz-placeholder, textarea::-moz-placeholder { color: #aca49c; font-size: 0.875em; } input:focus::-moz-placeholder, textarea:focus::-moz-placeholder { color: #bbb5af; } input::placeholder, textarea::placeholder { color: #aca49c; font-size: 0.875em; } input:focus::placeholder, textarea::focus:placeholder { color: #bbb5af; } input::-ms-placeholder, textarea::-ms-placeholder { color: #aca49c; font-size: 0.875em; } input:focus::-ms-placeholder, textarea:focus::-ms-placeholder { color: #bbb5af; } /* on hover placeholder */ input:hover::-webkit-input-placeholder, textarea:hover::-webkit-input-placeholder { color: #e2dedb; font-size: 0.875em; } input:hover:focus::-webkit-input-placeholder, textarea:hover:focus::-webkit-input-placeholder { color: #cbc6c1; } input:hover::-moz-placeholder, textarea:hover::-moz-placeholder { color: #e2dedb; font-size: 0.875em; } input:hover:focus::-moz-placeholder, textarea:hover:focus::-moz-placeholder { color: #cbc6c1; } input:hover::placeholder, textarea:hover::placeholder { color: #e2dedb; font-size: 0.875em; } input:hover:focus::placeholder, textarea:hover:focus::placeholder { color: #cbc6c1; } input:hover::placeholder, textarea:hover::placeholder { color: #e2dedb; font-size: 0.875em; } input:hover:focus::-ms-placeholder, textarea:hover::focus:-ms-placeholder { color: #cbc6c1; } /* body { */ font-family: 'Lato', sans-serif; background: #e2dedb; color: #b3aca7; } header { position: relative; margin: 100px 0 25px 0; font-size: 2.3em; text-align: center; letter-spacing: 7px; } #form { position: relative; width: 500px; margin: 50px auto 100px auto; } input { font-family: 'Lato', sans-serif; font-size: 0.875em; width: 470px; height: 50px; padding: 0px 15px 0px 15px; background: transparent; outline: none; color: #726659; border: solid 1px #b3aca7; border-bottom: none; transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -ms-transition: all 0.3s ease-in-out; } input:hover { background: #b3aca7; color: #e2dedb; } textarea { width: 470px; max-width: 470px; height: 110px; max-height: 110px; padding: 15px; background: transparent; outline: none; color: #726659; font-family: 'Lato', sans-serif; font-size: 0.875em; border: solid 1px #b3aca7; transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -ms-transition: all 0.3s ease-in-out; } textarea:hover { background: #b3aca7; color: #e2dedb; } #submit { width: 470px; padding: 0; margin: -5px 0px 0px 0px; font-family: 'Lato', sans-serif; font-size: 0.875em; color: #b3aca7; outline:none; cursor: pointer; border: solid 1px #b3aca7; border-top: none; } #submit:hover { color: #e2dedb; } /*Footer*/ .footer-dark { padding:50px 0; color:#f0f9ff; background-color:#282d32; } .footer-dark h3 { margin-top:0; margin-bottom:12px; font-weight:bold; font-size:16px; } .footer-dark ul { padding:0; list-style:none; line-height:1.6; font-size:14px; margin-bottom:0; } .footer-dark ul a { color:inherit; text-decoration:none; opacity:0.6; } .footer-dark ul a:hover { opacity:0.8; } @media (max-width:767px) { .footer-dark .item:not(.social) { text-align:center; padding-bottom:20px; } } .footer-dark .item.text { margin-bottom:36px; } @media (max-width:767px) { .footer-dark .item.text { margin-bottom:0; } } .footer-dark .item.text p { opacity:0.6; margin-bottom:0; } .footer-dark .item.social { text-align:center; } @media (max-width:991px) { .footer-dark .item.social { text-align:center; margin-top:20px; } } .footer-dark .item.social > a { font-size:20px; width:36px; height:36px; line-height:36px; display:inline-block; text-align:center; border-radius:50%; box-shadow:0 0 0 1px rgba(255,255,255,0.4); margin:0 8px; color:#fff; opacity:0.75; } .footer-dark .item.social > a:hover { opacity:0.9; } .footer-dark .copyright { text-align:center; padding-top:24px; opacity:0.3; font-size:13px; margin-bottom:0; } @media(max-width: 600px) { html { scroll-behavior: smooth; } html body{ width: 100%; height: 100%; margin: 0; padding: 0; overflow-x: hidden; } }
0.26923
0.09782
.switcher { width: 30px !important; height: 40px !important; display: inline-block; margin: 4px 8px; border-radius: 5px; border: 0px solid #000; } .swichermainleft { width: 100%; float: left; margin: 0; padding: 0; } .colorcode { display: inline-block; margin: 4px 8px; width: 25px; height: 25px; border-radius: 5px; cursor: pointer; } /*-- color-1 --*/ .color1{ background: #8667ff !important; } /*-- color-2 --*/ .color2{ background: #824bab !important; } /*-- color-3 --*/ .color3{ background: #1b9783 !important; } /*-- color-4 --*/ .color4{ background:#4680ff !important; } /*-- color-5 --*/ .color5{ background: #e65145 !important; } /* ////////////////// switch-1 //////////////// */ /* ////////////////// switch-1 //////////////// */ .onoffswitch { position: relative; width: 30px; -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none; } .onoffswitch-checkbox { display: none; } .onoffswitch-label { display: block; overflow: hidden; cursor: pointer; height: 15px; padding: 0; line-height: 16px; border: 1px solid #CCCCCC; border-radius: 15px; background-color: #FFFFFF; transition: background-color 0.3s ease-in; } .onoffswitch-label:before { content: ""; height: 16px; display: block; width: 17px; margin: 0px; background: #FFFFFF; position: absolute; top: 0; bottom: 0; right: 13px; border: 1px solid #CCCCCC; border-radius: 15px; transition: all 0.3s ease-in 0s; } .onoffswitch-checkbox:checked + .onoffswitch-label { background-color: #0fa751; } .onoffswitch-checkbox:checked + .onoffswitch-label, .onoffswitch-checkbox:checked + .onoffswitch-label:before { border-color: #0fa751; } .onoffswitch-checkbox:checked + .onoffswitch-label:before { right: 0px; } /* ////////////////// switch-2 //////////////// */ .onoffswitch2 { position: relative; width: 30px; -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none; } .onoffswitch2-checkbox { display: none; } .onoffswitch2-label { display: block; overflow: hidden; cursor: pointer; height: 15px; padding: 0; line-height: 16px; border: 1px solid #CCCCCC; border-radius: 15px; background-color: #FFFFFF; transition: background-color 0.3s ease-in; } .onoffswitch2-label:before { content: ""; height: 16px; display: block; width: 17px; margin: 0px; background: #FFFFFF; position: absolute; top: 0; bottom: 0; right: 13px; border: 1px solid #CCCCCC; border-radius: 15px; transition: all 0.3s ease-in 0s; } .onoffswitch2-checkbox:checked + .onoffswitch2-label { background-color: #6259ca; } .onoffswitch2-checkbox:checked + .onoffswitch-label2, .onoffswitch2-checkbox:checked + .onoffswitch2-label:before { border-color: #6259ca; } .onoffswitch2-checkbox:checked + .onoffswitch2-label:before { right: 0px; } /* ////////////////// switch-3 //////////////// */ .onoffswitch3 { position: relative; width: 30px; -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none; } .onoffswitch3-checkbox { display: none; } .onoffswitch3-label { display: block; overflow: hidden; cursor: pointer; height: 15px; padding: 0; line-height: 16px; border: 1px solid #CCCCCC; border-radius: 15px; background-color: #FFFFFF; transition: background-color 0.3s ease-in; } .onoffswitch3-label:before { content: ""; height: 16px; display: block; width: 17px; margin: 0px; background: #FFFFFF; position: absolute; top: 0; bottom: 0; right: 13px; border: 1px solid #CCCCCC; border-radius: 15px; transition: all 0.3s ease-in 0s; } .onoffswitch3-checkbox:checked + .onoffswitch3-label { background-color: #0fa751; } .onoffswitch3-checkbox:checked + .onoffswitch-label3, .onoffswitch3-checkbox:checked + .onoffswitch3-label:before { border-color: #0fa751; } .onoffswitch3-checkbox:checked + .onoffswitch3-label:before { right: 0px; } .switch-toggle{ padding:3px 0; font-size: 16px; } .full-width .container{ max-width:inherit !important; width:95% !important; transition:all 0.5s ease; } .unbox { margin:0; } .switch_section { width: 100%; height: auto; list-style: none; font-size: 1.1em; margin: 0 auto; padding: 0px 22px; } a.switcher-style{ padding: 6px 20px; color: #000; background-color: #f8f6fb; border:1px solid #e3dfe8; display: block; margin-bottom: 8px; font-size: 14px; } a.switcher-style.active{ background-color: #2205bf; color:#fff; } .wscolorcode.color { display: inline-block; margin: 4px 8px; width: 30px; height: 30px; border-radius: 5px; } .button-image{ border: 3px solid #f4f7fe; margin: 3px; border-radius: 8px; background: #ffffff; width: 90px; height: 70px; margin-bottom: 5px; box-shadow:0 5px 6px rgba(6, 10, 48, .1); } .bg-left1{ background: url(img/ll.png) !important; background-repeat: no-repeat; } .bg-left2{ background: url(img/ldark.png) !important; background-repeat: no-repeat; } .bg1 { background: url(img/hl.png) !important; background-repeat: no-repeat; } .bg2 { background: url(img/hc.png) !important; background-repeat: no-repeat; } .bg3 { background: url(img/hd.png) !important; background-repeat: no-repeat; } .bg4 { background: url(img/lel.png) !important; background-repeat: no-repeat; } .bg5 { background: url(img/lec.png) !important; background-repeat: no-repeat; } .bg6 { background: url(img/led.png) !important; background-repeat: no-repeat; } .bg7 { background: url(img/leg.png) !important; background-repeat: no-repeat; } .bg9 { background: url(img/leimage.html) !important; background-repeat: no-repeat; } .bg8 { background: url(img/hg.png) !important; background-repeat: no-repeat; } .bg-hor1{ background: url(img/hor1.png) !important; background-repeat: no-repeat; } .bg-hor2{ background: url(img/hor2.png) !important; background-repeat: no-repeat; } .bg-hor3{ background: url(img/hor3.png) !important; background-repeat: no-repeat; } .bg-hor4{ background: url(img/hor4.png) !important; background-repeat: no-repeat; } .bg-hor5{ background: url(img/hor5.png) !important; background-repeat: no-repeat; } .bg-hor6{ background: url(img/hor6.png) !important; background-repeat: no-repeat; } .bg-hor7{ background: url(img/hor7.png) !important; background-repeat: no-repeat; } .bg-hor8{ background: url(img/hor8.png) !important; background-repeat: no-repeat; } .bg-hor9{ background: url(img/hor9.png) !important; background-repeat: no-repeat; } .bg-hor10{ background: url(img/hor10.png) !important; background-repeat: no-repeat; } .bg-hor11{ background: url(img/lay-boxhor.png) !important; background-repeat: no-repeat; } .light-bg{ display: none !important; } .dark-mode .dark-bg{ display: none !important; } .dark-mode .light-bg{ display: block !important; } .dark-mode .dark-bgmenu{ display:none !important; } .dark-mode .bg_dark{ background:#fff; } .dark-mode .demo_changer i{ color:#000; } .leftmenu-bgimage .bg9{ border:2px solid #04b372; } .leftmenu-bgimage .bg9:after{ content: ""; width: 20px; height: 20px; line-height: 17px; border-style: solid; border-width: 0 35px 35px 0px; border-color: #04b372 #04b372 transparent; display: block; position: absolute; top: 4px; right: 19px; } .leftmenu-bgimage .bg9:before{ content: "\2713"; z-index: 999; position: absolute; top: 4px; right: 22px; font-size: 14px; color: #ffffff; } .bg-layf{ background: url(img/lay-full.png) !important; background-repeat: no-repeat; } .bg-laybx{ background: url(img/lay-box.png) !important; background-repeat: no-repeat; } .bg-sided{ background: url(img/lay-sided.png) !important; background-repeat: no-repeat; } .bg-sideictxt{ background: url(img/lay-sideitx.png) !important; background-repeat: no-repeat; } .bg-sideicon{ background: url(img/lay-sideic.png) !important; background-repeat: no-repeat; } .switcher-demo .demo_changer{ z-index: 9; } .dark-mode .bg-left2:before, .light-mode #background-left1::before, .dark-mode .bg-hor2:before, .light-mode .bg-hor1:before, .layout-fullwidth #background14:before, .layout-boxed #background15:before, .fixed-layout #background16:before, .scrollable-layout #background17:before{ content: "\2713"; z-index: 999; position: absolute; top: 4px; right: 21px; font-size: 14px; color: #ffffff; } .dark-mode .bg-left2:after, .light-mode #background-left1:after, .dark-mode .bg-hor2:after, .light-mode .bg-hor1:after, .layout-fullwidth #background14:after, .layout-boxed #background15:after, .fixed-layout #background16:after, .scrollable-layout #background17:after{ content: ""; width: 20px; height: 20px; line-height: 17px; border-style: solid; border-width: 0 35px 35px 0px; border-color: #13bfa6 #13bfa6 transparent; display: block; position: absolute; top: 4px; right: 18px; } .light-header .bg1:before, .color-header .bg2:before, .dark-header .bg3:before, .gradient-header .bg8:before, .light-menu .bg4:before, .color-menu .bg5:before, .dark-menu .bg6:before, .gradient-menu .bg7:before, .menu1 .bg-sided:before, .menu2 .bg-sideictxt:before, .menu3 .bg-sideicon:before, .light-header .bg-hor3:before, .color-header .bg-hor4:before, .dark-header .bg-hor5:before, .gradient-header .bg-hor10:before, .light-hormenu #background7:before, .color-hormenu .bg-hor7:before, .dark-hormenu .bg-hor8:before, .gradient-hormenu .bg-hor9:before{ content: "\2713"; z-index: 999; position: absolute; top: 4px; right: 24px; font-size: 14px; color: #ffffff; } .light-header .bg1:after, .color-header .bg2:after, .dark-header .bg3:after, .gradient-header .bg8:after, .light-menu .bg4:after, .color-menu .bg5:after, .dark-menu .bg6:after, .gradient-menu .bg7:after, .menu1 .bg-sided:after, .menu2 .bg-sideictxt:after, .menu3 .bg-sideicon:after, .light-header .bg-hor3:after, .color-header .bg-hor4:after, .dark-header .bg-hor5:after, .gradient-header .bg-hor10:after, .light-hormenu #background7:after, .color-hormenu .bg-hor7:after, .dark-hormenu .bg-hor8:after, .gradient-hormenu .bg-hor9:after{ content: ""; width: 20px; height: 20px; line-height: 17px; border-style: solid; border-width: 0 35px 35px 0px; border-color: #13bfa6 #13bfa6 transparent; display: block; position: absolute; top: 4px; right: 20px; } .dark-mode .bg-left2, .light-mode #background-left1, .light-header .bg1, .color-header .bg2, .dark-header .bg3, .gradient-header .bg8, .light-menu .bg4, .color-menu .bg5, .dark-menu .bg6, .gradient-menu .bg7, .layout-fullwidth #background14, .layout-boxed #background15, .menu1 .bg-sided, .menu2 .bg-sideictxt, .menu3 .bg-sideicon, .fixed-layout #background16, .scrollable-layout #background17, .dark-mode .bg-hor2, .light-mode .bg-hor1, .light-header .bg-hor3, .color-header .bg-hor4, .dark-header .bg-hor5, .gradient-header .bg-hor10, .light-hormenu #background7, .color-hormenu .bg-hor7, .dark-hormenu .bg-hor8, .gradient-hormenu .bg-hor9{ border: 3px solid #13bfa6; }
public/admin_assets/assets/switcher/demo.css
.switcher { width: 30px !important; height: 40px !important; display: inline-block; margin: 4px 8px; border-radius: 5px; border: 0px solid #000; } .swichermainleft { width: 100%; float: left; margin: 0; padding: 0; } .colorcode { display: inline-block; margin: 4px 8px; width: 25px; height: 25px; border-radius: 5px; cursor: pointer; } /*-- color-1 --*/ .color1{ background: #8667ff !important; } /*-- color-2 --*/ .color2{ background: #824bab !important; } /*-- color-3 --*/ .color3{ background: #1b9783 !important; } /*-- color-4 --*/ .color4{ background:#4680ff !important; } /*-- color-5 --*/ .color5{ background: #e65145 !important; } /* ////////////////// switch-1 //////////////// */ /* ////////////////// switch-1 //////////////// */ .onoffswitch { position: relative; width: 30px; -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none; } .onoffswitch-checkbox { display: none; } .onoffswitch-label { display: block; overflow: hidden; cursor: pointer; height: 15px; padding: 0; line-height: 16px; border: 1px solid #CCCCCC; border-radius: 15px; background-color: #FFFFFF; transition: background-color 0.3s ease-in; } .onoffswitch-label:before { content: ""; height: 16px; display: block; width: 17px; margin: 0px; background: #FFFFFF; position: absolute; top: 0; bottom: 0; right: 13px; border: 1px solid #CCCCCC; border-radius: 15px; transition: all 0.3s ease-in 0s; } .onoffswitch-checkbox:checked + .onoffswitch-label { background-color: #0fa751; } .onoffswitch-checkbox:checked + .onoffswitch-label, .onoffswitch-checkbox:checked + .onoffswitch-label:before { border-color: #0fa751; } .onoffswitch-checkbox:checked + .onoffswitch-label:before { right: 0px; } /* ////////////////// switch-2 //////////////// */ .onoffswitch2 { position: relative; width: 30px; -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none; } .onoffswitch2-checkbox { display: none; } .onoffswitch2-label { display: block; overflow: hidden; cursor: pointer; height: 15px; padding: 0; line-height: 16px; border: 1px solid #CCCCCC; border-radius: 15px; background-color: #FFFFFF; transition: background-color 0.3s ease-in; } .onoffswitch2-label:before { content: ""; height: 16px; display: block; width: 17px; margin: 0px; background: #FFFFFF; position: absolute; top: 0; bottom: 0; right: 13px; border: 1px solid #CCCCCC; border-radius: 15px; transition: all 0.3s ease-in 0s; } .onoffswitch2-checkbox:checked + .onoffswitch2-label { background-color: #6259ca; } .onoffswitch2-checkbox:checked + .onoffswitch-label2, .onoffswitch2-checkbox:checked + .onoffswitch2-label:before { border-color: #6259ca; } .onoffswitch2-checkbox:checked + .onoffswitch2-label:before { right: 0px; } /* ////////////////// switch-3 //////////////// */ .onoffswitch3 { position: relative; width: 30px; -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none; } .onoffswitch3-checkbox { display: none; } .onoffswitch3-label { display: block; overflow: hidden; cursor: pointer; height: 15px; padding: 0; line-height: 16px; border: 1px solid #CCCCCC; border-radius: 15px; background-color: #FFFFFF; transition: background-color 0.3s ease-in; } .onoffswitch3-label:before { content: ""; height: 16px; display: block; width: 17px; margin: 0px; background: #FFFFFF; position: absolute; top: 0; bottom: 0; right: 13px; border: 1px solid #CCCCCC; border-radius: 15px; transition: all 0.3s ease-in 0s; } .onoffswitch3-checkbox:checked + .onoffswitch3-label { background-color: #0fa751; } .onoffswitch3-checkbox:checked + .onoffswitch-label3, .onoffswitch3-checkbox:checked + .onoffswitch3-label:before { border-color: #0fa751; } .onoffswitch3-checkbox:checked + .onoffswitch3-label:before { right: 0px; } .switch-toggle{ padding:3px 0; font-size: 16px; } .full-width .container{ max-width:inherit !important; width:95% !important; transition:all 0.5s ease; } .unbox { margin:0; } .switch_section { width: 100%; height: auto; list-style: none; font-size: 1.1em; margin: 0 auto; padding: 0px 22px; } a.switcher-style{ padding: 6px 20px; color: #000; background-color: #f8f6fb; border:1px solid #e3dfe8; display: block; margin-bottom: 8px; font-size: 14px; } a.switcher-style.active{ background-color: #2205bf; color:#fff; } .wscolorcode.color { display: inline-block; margin: 4px 8px; width: 30px; height: 30px; border-radius: 5px; } .button-image{ border: 3px solid #f4f7fe; margin: 3px; border-radius: 8px; background: #ffffff; width: 90px; height: 70px; margin-bottom: 5px; box-shadow:0 5px 6px rgba(6, 10, 48, .1); } .bg-left1{ background: url(img/ll.png) !important; background-repeat: no-repeat; } .bg-left2{ background: url(img/ldark.png) !important; background-repeat: no-repeat; } .bg1 { background: url(img/hl.png) !important; background-repeat: no-repeat; } .bg2 { background: url(img/hc.png) !important; background-repeat: no-repeat; } .bg3 { background: url(img/hd.png) !important; background-repeat: no-repeat; } .bg4 { background: url(img/lel.png) !important; background-repeat: no-repeat; } .bg5 { background: url(img/lec.png) !important; background-repeat: no-repeat; } .bg6 { background: url(img/led.png) !important; background-repeat: no-repeat; } .bg7 { background: url(img/leg.png) !important; background-repeat: no-repeat; } .bg9 { background: url(img/leimage.html) !important; background-repeat: no-repeat; } .bg8 { background: url(img/hg.png) !important; background-repeat: no-repeat; } .bg-hor1{ background: url(img/hor1.png) !important; background-repeat: no-repeat; } .bg-hor2{ background: url(img/hor2.png) !important; background-repeat: no-repeat; } .bg-hor3{ background: url(img/hor3.png) !important; background-repeat: no-repeat; } .bg-hor4{ background: url(img/hor4.png) !important; background-repeat: no-repeat; } .bg-hor5{ background: url(img/hor5.png) !important; background-repeat: no-repeat; } .bg-hor6{ background: url(img/hor6.png) !important; background-repeat: no-repeat; } .bg-hor7{ background: url(img/hor7.png) !important; background-repeat: no-repeat; } .bg-hor8{ background: url(img/hor8.png) !important; background-repeat: no-repeat; } .bg-hor9{ background: url(img/hor9.png) !important; background-repeat: no-repeat; } .bg-hor10{ background: url(img/hor10.png) !important; background-repeat: no-repeat; } .bg-hor11{ background: url(img/lay-boxhor.png) !important; background-repeat: no-repeat; } .light-bg{ display: none !important; } .dark-mode .dark-bg{ display: none !important; } .dark-mode .light-bg{ display: block !important; } .dark-mode .dark-bgmenu{ display:none !important; } .dark-mode .bg_dark{ background:#fff; } .dark-mode .demo_changer i{ color:#000; } .leftmenu-bgimage .bg9{ border:2px solid #04b372; } .leftmenu-bgimage .bg9:after{ content: ""; width: 20px; height: 20px; line-height: 17px; border-style: solid; border-width: 0 35px 35px 0px; border-color: #04b372 #04b372 transparent; display: block; position: absolute; top: 4px; right: 19px; } .leftmenu-bgimage .bg9:before{ content: "\2713"; z-index: 999; position: absolute; top: 4px; right: 22px; font-size: 14px; color: #ffffff; } .bg-layf{ background: url(img/lay-full.png) !important; background-repeat: no-repeat; } .bg-laybx{ background: url(img/lay-box.png) !important; background-repeat: no-repeat; } .bg-sided{ background: url(img/lay-sided.png) !important; background-repeat: no-repeat; } .bg-sideictxt{ background: url(img/lay-sideitx.png) !important; background-repeat: no-repeat; } .bg-sideicon{ background: url(img/lay-sideic.png) !important; background-repeat: no-repeat; } .switcher-demo .demo_changer{ z-index: 9; } .dark-mode .bg-left2:before, .light-mode #background-left1::before, .dark-mode .bg-hor2:before, .light-mode .bg-hor1:before, .layout-fullwidth #background14:before, .layout-boxed #background15:before, .fixed-layout #background16:before, .scrollable-layout #background17:before{ content: "\2713"; z-index: 999; position: absolute; top: 4px; right: 21px; font-size: 14px; color: #ffffff; } .dark-mode .bg-left2:after, .light-mode #background-left1:after, .dark-mode .bg-hor2:after, .light-mode .bg-hor1:after, .layout-fullwidth #background14:after, .layout-boxed #background15:after, .fixed-layout #background16:after, .scrollable-layout #background17:after{ content: ""; width: 20px; height: 20px; line-height: 17px; border-style: solid; border-width: 0 35px 35px 0px; border-color: #13bfa6 #13bfa6 transparent; display: block; position: absolute; top: 4px; right: 18px; } .light-header .bg1:before, .color-header .bg2:before, .dark-header .bg3:before, .gradient-header .bg8:before, .light-menu .bg4:before, .color-menu .bg5:before, .dark-menu .bg6:before, .gradient-menu .bg7:before, .menu1 .bg-sided:before, .menu2 .bg-sideictxt:before, .menu3 .bg-sideicon:before, .light-header .bg-hor3:before, .color-header .bg-hor4:before, .dark-header .bg-hor5:before, .gradient-header .bg-hor10:before, .light-hormenu #background7:before, .color-hormenu .bg-hor7:before, .dark-hormenu .bg-hor8:before, .gradient-hormenu .bg-hor9:before{ content: "\2713"; z-index: 999; position: absolute; top: 4px; right: 24px; font-size: 14px; color: #ffffff; } .light-header .bg1:after, .color-header .bg2:after, .dark-header .bg3:after, .gradient-header .bg8:after, .light-menu .bg4:after, .color-menu .bg5:after, .dark-menu .bg6:after, .gradient-menu .bg7:after, .menu1 .bg-sided:after, .menu2 .bg-sideictxt:after, .menu3 .bg-sideicon:after, .light-header .bg-hor3:after, .color-header .bg-hor4:after, .dark-header .bg-hor5:after, .gradient-header .bg-hor10:after, .light-hormenu #background7:after, .color-hormenu .bg-hor7:after, .dark-hormenu .bg-hor8:after, .gradient-hormenu .bg-hor9:after{ content: ""; width: 20px; height: 20px; line-height: 17px; border-style: solid; border-width: 0 35px 35px 0px; border-color: #13bfa6 #13bfa6 transparent; display: block; position: absolute; top: 4px; right: 20px; } .dark-mode .bg-left2, .light-mode #background-left1, .light-header .bg1, .color-header .bg2, .dark-header .bg3, .gradient-header .bg8, .light-menu .bg4, .color-menu .bg5, .dark-menu .bg6, .gradient-menu .bg7, .layout-fullwidth #background14, .layout-boxed #background15, .menu1 .bg-sided, .menu2 .bg-sideictxt, .menu3 .bg-sideicon, .fixed-layout #background16, .scrollable-layout #background17, .dark-mode .bg-hor2, .light-mode .bg-hor1, .light-header .bg-hor3, .color-header .bg-hor4, .dark-header .bg-hor5, .gradient-header .bg-hor10, .light-hormenu #background7, .color-hormenu .bg-hor7, .dark-hormenu .bg-hor8, .gradient-hormenu .bg-hor9{ border: 3px solid #13bfa6; }
0.245356
0.06885
body{ font-family: '微软雅黑'; font-size: 9pt; } .container { padding: 50px 0 0 10px; width: 980px; position: relative; } /*待办事项*/ .toDo { border: 1px solid #d7d7d7; overflow: hidden; } ul { display: block; margin: 0; padding: 0; list-style: none; } .toDo li { float: left; /* width: 194px; */ width: 162px; height: 70px; padding-top: 70px; border-left: 1px solid #d7d7d7; overflow: hidden; text-align: center; position: relative; } i{ font-style: normal; } li { display: block; margin: 0; padding: 0; list-style: none; } .toDo .font { position: absolute; top: -5px; right: -5px; text-align: center; line-height: 16px; padding: 0 5px; border-radius: 8px; background: #ff7100; color: #fff; } .toDo .title { color: #222; display: block; font-size: 14px; font-weight: normal; line-height: 35px; } .toDo .text { color: #999; display: block; } a, a:focus { text-decoration: none; color: #000; outline: none; } .toDop1 { width: 40px; height: 37px; background: url(../images/toDo.png) no-repeat 0 0; position: absolute; top: 50%; left: 50%; margin: -39px 0 0 -20px; } .toDop2 { width: 40px; height: 37px; background: url(../images/toDo.png) no-repeat 0 0; position: absolute; top: 50%; left: 50%; margin: -39px 0 0 -20px; background-position: -60px 0px; } .toDop3{ width: 40px; height: 37px; background: url(../images/toDo.png) no-repeat 0 0; position: absolute; top: 50%; left: 50%; margin: -39px 0 0 -20px; } .toDop3 { background-position: -120px 0; width: 42px; height: 40px; margin: -40px 0 0 -24px; } .toDop4{ width: 40px; height: 37px; background: url(../images/toDo.png) no-repeat 0 0; position: absolute; top: 50%; left: 50%; margin: -39px 0 0 -20px; } .toDop4 { background-position: -183px 0px; } .toDop5 { width: 40px; height: 37px; background: url(../images/toDo.png) no-repeat 0 0; position: absolute; top: 50%; left: 50%; margin: -39px 0 0 -20px; } .toDop5 { background-position: -252px 0px; width: 22px; height: 33px; margin: -35px 0 0 -11px; } .toDop6 { width: 40px; height: 37px; background: url(../images/toDo.png) no-repeat 0 0; position: absolute; top: 50%; left: 50%; margin: -39px 0 0 -20px; } .toDop6 { background-position: -297px 0; width: 42px; height: 35px; margin: -37px 0 0 -22px; } /*驾驶舱*/ .toDoInfo { border: 1px solid #d7d7d7; border-top: none; position: relative; overflow: hidden; height: 130px; } .toDoInfo .pic { float: left; width: 480px; text-align: center; margin: 0 0 0 0; position: relative; height: 130px; } .toDoInfo .list li { float: right; width: 216px; padding-left: 18px; line-height: 28px; position: relative; } .toDoInfo a { color: #ec6b05; width: 65px; display: inline-block; text-align: right; margin-right: 10px; } .toDoInfo .list i span { background: url(../images/jsc01.png) no-repeat 0 0; width: 17px; height: 17px; display: inline-block; position: absolute; top: 8px; left: 0; } .toDoInfo .list i { width: 90px; display: inline-block; } /*流程图*/ .flowChart { width: 980px; overflow: hidden; padding: 10px 0 0 10px; } .flowChart .menu { position: relative; z-index: 900; background: url(../images/flowChart.png) no-repeat 0 37px; height: 80px; overflow: hidden; } .flowChart .menu li { height: 80px; overflow: hidden; display: inline-block; width: 188px; } .flowChart .menu .title1 { width: 155px; padding-right: 20px; text-align: center; cursor: pointer; position: absolute; top: 0; left: 0; } .flowChart .menu .hover span { display: block; } .flowChart .menu .title1 i { left: 50px; } .flowChart .menu .fci1 { left: 0; width: 185px; display:block; } .flowChart .menu span { background: url(../images/flowChart.png) no-repeat 0 -68px; position: absolute; bottom: -75px; height: 38px; z-index: 1; display: inline-block; } .flowChart .menu li i { font-size: 15px; font-style: normal; display: inline-block; padding-top: 10px; color: #939da6; z-index: 9; height: 80px; left: 70px; position: absolute; } .flowChart .menu .title2 i { left: 80px; } .flowChart .menu .title2 { width: 200px; padding-left: 10px; text-align: center; cursor: pointer; position: absolute; top: 0; left: 175px; } .flowChart .menu .fci2 { left: -175px; width: 385px; display:none; } .flowChart .menu .title3 { width: 210px; text-align: center; cursor: pointer; position: absolute; top: 0; left: 385px; } .flowChart .menu .fci3 { left: -385px; width: 595px; display:none; } .flowChart .menu .title4 { width: 210px; text-align: center; cursor: pointer; position: absolute; top: 0; left: 595px; } .flowChart .menu .fci4 { left: -595px; width: 805px; display:none; } .flowChart .menu .title5 { width: 165px; padding-left: 10px; text-align: center; cursor: pointer; position: absolute; top: 0; left: 805px; } .flowChart .menu .fci5 { left: -805px; width: 980px; display:none; } .flowChart .cont { width: 938px; border: 1px solid #dedede; border-top: none; overflow: hidden; border-radius: 0 0 5px 5px; padding: 20px 20px 17px 20px; background: #fdfdfd; display: none; position: relative; top: -25px; } .flowChart .cont li { float: left; margin-top: 10px; height: 30px; position: relative; } .flowChart .cont li a { width: 120px; height: 25px; line-height: 25px; border-radius: 5px; background: #ff8b3d; border: 1px solid #f46c00; display: inline-block; color: #fff; text-align: center; font-size: 12px; margin-top: 2px; } .flowChart .point2 { width: 13px; height: 25px; background: url(../images/pane_2.png) no-repeat 0 8px; display: inline-block; margin: 0px 14px; } .hint { width: 18px; height: 18px; font-style: normal; line-height: 18px; font-weight: bold; text-align: center; padding: 0 1px 0 0; font-family: Arial; border-radius: 12px; background: red; color: #fff; display: inline-block; } .flowChart .cont li .hint { position: absolute; right: -10px; top: 6px; }
WebRoot/css/login/show/css/showpage.css
body{ font-family: '微软雅黑'; font-size: 9pt; } .container { padding: 50px 0 0 10px; width: 980px; position: relative; } /*待办事项*/ .toDo { border: 1px solid #d7d7d7; overflow: hidden; } ul { display: block; margin: 0; padding: 0; list-style: none; } .toDo li { float: left; /* width: 194px; */ width: 162px; height: 70px; padding-top: 70px; border-left: 1px solid #d7d7d7; overflow: hidden; text-align: center; position: relative; } i{ font-style: normal; } li { display: block; margin: 0; padding: 0; list-style: none; } .toDo .font { position: absolute; top: -5px; right: -5px; text-align: center; line-height: 16px; padding: 0 5px; border-radius: 8px; background: #ff7100; color: #fff; } .toDo .title { color: #222; display: block; font-size: 14px; font-weight: normal; line-height: 35px; } .toDo .text { color: #999; display: block; } a, a:focus { text-decoration: none; color: #000; outline: none; } .toDop1 { width: 40px; height: 37px; background: url(../images/toDo.png) no-repeat 0 0; position: absolute; top: 50%; left: 50%; margin: -39px 0 0 -20px; } .toDop2 { width: 40px; height: 37px; background: url(../images/toDo.png) no-repeat 0 0; position: absolute; top: 50%; left: 50%; margin: -39px 0 0 -20px; background-position: -60px 0px; } .toDop3{ width: 40px; height: 37px; background: url(../images/toDo.png) no-repeat 0 0; position: absolute; top: 50%; left: 50%; margin: -39px 0 0 -20px; } .toDop3 { background-position: -120px 0; width: 42px; height: 40px; margin: -40px 0 0 -24px; } .toDop4{ width: 40px; height: 37px; background: url(../images/toDo.png) no-repeat 0 0; position: absolute; top: 50%; left: 50%; margin: -39px 0 0 -20px; } .toDop4 { background-position: -183px 0px; } .toDop5 { width: 40px; height: 37px; background: url(../images/toDo.png) no-repeat 0 0; position: absolute; top: 50%; left: 50%; margin: -39px 0 0 -20px; } .toDop5 { background-position: -252px 0px; width: 22px; height: 33px; margin: -35px 0 0 -11px; } .toDop6 { width: 40px; height: 37px; background: url(../images/toDo.png) no-repeat 0 0; position: absolute; top: 50%; left: 50%; margin: -39px 0 0 -20px; } .toDop6 { background-position: -297px 0; width: 42px; height: 35px; margin: -37px 0 0 -22px; } /*驾驶舱*/ .toDoInfo { border: 1px solid #d7d7d7; border-top: none; position: relative; overflow: hidden; height: 130px; } .toDoInfo .pic { float: left; width: 480px; text-align: center; margin: 0 0 0 0; position: relative; height: 130px; } .toDoInfo .list li { float: right; width: 216px; padding-left: 18px; line-height: 28px; position: relative; } .toDoInfo a { color: #ec6b05; width: 65px; display: inline-block; text-align: right; margin-right: 10px; } .toDoInfo .list i span { background: url(../images/jsc01.png) no-repeat 0 0; width: 17px; height: 17px; display: inline-block; position: absolute; top: 8px; left: 0; } .toDoInfo .list i { width: 90px; display: inline-block; } /*流程图*/ .flowChart { width: 980px; overflow: hidden; padding: 10px 0 0 10px; } .flowChart .menu { position: relative; z-index: 900; background: url(../images/flowChart.png) no-repeat 0 37px; height: 80px; overflow: hidden; } .flowChart .menu li { height: 80px; overflow: hidden; display: inline-block; width: 188px; } .flowChart .menu .title1 { width: 155px; padding-right: 20px; text-align: center; cursor: pointer; position: absolute; top: 0; left: 0; } .flowChart .menu .hover span { display: block; } .flowChart .menu .title1 i { left: 50px; } .flowChart .menu .fci1 { left: 0; width: 185px; display:block; } .flowChart .menu span { background: url(../images/flowChart.png) no-repeat 0 -68px; position: absolute; bottom: -75px; height: 38px; z-index: 1; display: inline-block; } .flowChart .menu li i { font-size: 15px; font-style: normal; display: inline-block; padding-top: 10px; color: #939da6; z-index: 9; height: 80px; left: 70px; position: absolute; } .flowChart .menu .title2 i { left: 80px; } .flowChart .menu .title2 { width: 200px; padding-left: 10px; text-align: center; cursor: pointer; position: absolute; top: 0; left: 175px; } .flowChart .menu .fci2 { left: -175px; width: 385px; display:none; } .flowChart .menu .title3 { width: 210px; text-align: center; cursor: pointer; position: absolute; top: 0; left: 385px; } .flowChart .menu .fci3 { left: -385px; width: 595px; display:none; } .flowChart .menu .title4 { width: 210px; text-align: center; cursor: pointer; position: absolute; top: 0; left: 595px; } .flowChart .menu .fci4 { left: -595px; width: 805px; display:none; } .flowChart .menu .title5 { width: 165px; padding-left: 10px; text-align: center; cursor: pointer; position: absolute; top: 0; left: 805px; } .flowChart .menu .fci5 { left: -805px; width: 980px; display:none; } .flowChart .cont { width: 938px; border: 1px solid #dedede; border-top: none; overflow: hidden; border-radius: 0 0 5px 5px; padding: 20px 20px 17px 20px; background: #fdfdfd; display: none; position: relative; top: -25px; } .flowChart .cont li { float: left; margin-top: 10px; height: 30px; position: relative; } .flowChart .cont li a { width: 120px; height: 25px; line-height: 25px; border-radius: 5px; background: #ff8b3d; border: 1px solid #f46c00; display: inline-block; color: #fff; text-align: center; font-size: 12px; margin-top: 2px; } .flowChart .point2 { width: 13px; height: 25px; background: url(../images/pane_2.png) no-repeat 0 8px; display: inline-block; margin: 0px 14px; } .hint { width: 18px; height: 18px; font-style: normal; line-height: 18px; font-weight: bold; text-align: center; padding: 0 1px 0 0; font-family: Arial; border-radius: 12px; background: red; color: #fff; display: inline-block; } .flowChart .cont li .hint { position: absolute; right: -10px; top: 6px; }
0.383757
0.151404
body { background: url('../../resources/images/flat.gif'); font-family: 'Rajdhani', sans-serif; font-weight: 400; background-repeat: no-repeat; background-position: center; background-color: #DBFFFF; /*background-attachment: fixed;*/ } html,body { width: 100%; overflow-x: hidden; } html { font-size: 100%; } h1,h2,h3 { font-weight: 500; letter-spacing: 0.3rem; text-transform: uppercase; } h1 { font-size: 2.8rem; font-weight: 700; color: #FFD933; } h2 { color: #ffffff; padding-bottom: 10px; } h3 { font-size: 1rem; line-height: 2rem; } p { color: #828282; letter-spacing: 0.8px; line-height: 28px; } strong { color: #FFD933; font-weight: 700; } #about, #feature, #contact { background: #ffffff; } #about, #feature, #contact, footer { padding-top: 100px; padding-bottom: 100px; } .section-title { padding-bottom: 62px; } .section-title h1 { padding-bottom: 10px; } #about .section-title { padding-bottom: 22px; } #contact .section-title { text-align: center; } /* preloader section */ .preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 99999; display: flex; flex-flow: row nowrap; justify-content: center; align-items: center; background: none repeat scroll 0 0 #ffffff; } .sk-circle { margin: 40px auto; width: 40px; height: 40px; position: relative; } .sk-circle .sk-child { width: 100%; height: 100%; position: absolute; left: 0; top: 0; } .sk-circle .sk-child:before { content: ''; display: block; margin: 0 auto; width: 15%; height: 15%; background-color: #333; border-radius: 100%; -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both; animation: sk-circleBounceDelay 1.2s infinite ease-in-out both; } .sk-circle .sk-circle2 { -webkit-transform: rotate(30deg); -ms-transform: rotate(30deg); transform: rotate(30deg); } .sk-circle .sk-circle3 { -webkit-transform: rotate(60deg); -ms-transform: rotate(60deg); transform: rotate(60deg); } .sk-circle .sk-circle4 { -webkit-transform: rotate(90deg); -ms-transform: rotate(90deg); transform: rotate(90deg); } .sk-circle .sk-circle5 { -webkit-transform: rotate(120deg); -ms-transform: rotate(120deg); transform: rotate(120deg); } .sk-circle .sk-circle6 { -webkit-transform: rotate(150deg); -ms-transform: rotate(150deg); transform: rotate(150deg); } .sk-circle .sk-circle7 { -webkit-transform: rotate(180deg); -ms-transform: rotate(180deg); transform: rotate(180deg); } .sk-circle .sk-circle8 { -webkit-transform: rotate(210deg); -ms-transform: rotate(210deg); transform: rotate(210deg); } .sk-circle .sk-circle9 { -webkit-transform: rotate(240deg); -ms-transform: rotate(240deg); transform: rotate(240deg); } .sk-circle .sk-circle10 { -webkit-transform: rotate(270deg); -ms-transform: rotate(270deg); transform: rotate(270deg); } .sk-circle .sk-circle11 { -webkit-transform: rotate(300deg); -ms-transform: rotate(300deg); transform: rotate(300deg); } .sk-circle .sk-circle12 { -webkit-transform: rotate(330deg); -ms-transform: rotate(330deg); transform: rotate(330deg); } .sk-circle .sk-circle2:before { -webkit-animation-delay: -1.1s; animation-delay: -1.1s; } .sk-circle .sk-circle3:before { -webkit-animation-delay: -1s; animation-delay: -1s; } .sk-circle .sk-circle4:before { -webkit-animation-delay: -0.9s; animation-delay: -0.9s; } .sk-circle .sk-circle5:before { -webkit-animation-delay: -0.8s; animation-delay: -0.8s; } .sk-circle .sk-circle6:before { -webkit-animation-delay: -0.7s; animation-delay: -0.7s; } .sk-circle .sk-circle7:before { -webkit-animation-delay: -0.6s; animation-delay: -0.6s; } .sk-circle .sk-circle8:before { -webkit-animation-delay: -0.5s; animation-delay: -0.5s; } .sk-circle .sk-circle9:before { -webkit-animation-delay: -0.4s; animation-delay: -0.4s; } .sk-circle .sk-circle10:before { -webkit-animation-delay: -0.3s; animation-delay: -0.3s; } .sk-circle .sk-circle11:before { -webkit-animation-delay: -0.2s; animation-delay: -0.2s; } .sk-circle .sk-circle12:before { -webkit-animation-delay: -0.1s; animation-delay: -0.1s; } @-webkit-keyframes sk-circleBounceDelay { 0%, 80%, 100% { -webkit-transform: scale(0); transform: scale(0); } 40% { -webkit-transform: scale(1); transform: scale(1); } } @keyframes sk-circleBounceDelay { 0%, 80%, 100% { -webkit-transform: scale(0); transform: scale(0); } 40% { -webkit-transform: scale(1); transform: scale(1); } } /* home section */ #home { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; text-align: center; height: 100vh; color: #ffffff; } #home .home-thumb { text-align: center; } #home .btn { background: transparent; border: 3px solid #ffffff; border-radius: 0px; color: #ffffff; font-weight: 700; letter-spacing: 1px; padding: 14px 36px; margin-top: 42px; margin-right: 16px; -webkit-transition: all 0.4s ease-in-out; transition: all 0.4s ease-in-out; } #home .btn:hover { background: #f1c11a; color: #ffffff; border-color: transparent; } #home .btn-success { background: #ffffff; color: #242424; border-color: transparent; } /* about section */ #about h3 { margin-top: 0px; } #about .about-thumb { padding-top: 10px; } /* feature section */ #feature { background: #f1c11a; } #feature .icon { color: #ffffff; font-size: 42px; padding-right: 14px; } #feature p { color: #333; } #feature .btn { background: transparent; border: 3px solid #ffffff; border-radius: 0px; color: #ffffff; font-size: 18px; font-weight: 700; letter-spacing: 1px; padding: 14px 36px; margin-top: 62px; margin-right: 16px; -webkit-transition: all 0.4s ease-in-out; transition: all 0.4s ease-in-out; } #feature .btn:hover { background: #ffffff; color: #333; border-color: transparent; } /* Mobile Responsive */ @media (max-width: 980px) { h1 { font-size: 2.4rem; } #home { height: 65vh; } #about .section-title { padding-bottom: 12px; } #feature .col-md-4 { padding-bottom: 32px; } } @media (max-width: 768px) { h1 { font-size: 2rem; } h2 { font-size: 1.6rem; } h3 { font-size: 0.8rem; line-height: 1.3rem; } } @media (max-width: 700px) { #home {height: 100vh;} .modal-dialog .modal-content { padding: 50px 20px; } .modal-dialog .close { font-size: 35px; width: 25px; height: 25px; line-height: 25px; } }
resources/css/style.css
body { background: url('../../resources/images/flat.gif'); font-family: 'Rajdhani', sans-serif; font-weight: 400; background-repeat: no-repeat; background-position: center; background-color: #DBFFFF; /*background-attachment: fixed;*/ } html,body { width: 100%; overflow-x: hidden; } html { font-size: 100%; } h1,h2,h3 { font-weight: 500; letter-spacing: 0.3rem; text-transform: uppercase; } h1 { font-size: 2.8rem; font-weight: 700; color: #FFD933; } h2 { color: #ffffff; padding-bottom: 10px; } h3 { font-size: 1rem; line-height: 2rem; } p { color: #828282; letter-spacing: 0.8px; line-height: 28px; } strong { color: #FFD933; font-weight: 700; } #about, #feature, #contact { background: #ffffff; } #about, #feature, #contact, footer { padding-top: 100px; padding-bottom: 100px; } .section-title { padding-bottom: 62px; } .section-title h1 { padding-bottom: 10px; } #about .section-title { padding-bottom: 22px; } #contact .section-title { text-align: center; } /* preloader section */ .preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 99999; display: flex; flex-flow: row nowrap; justify-content: center; align-items: center; background: none repeat scroll 0 0 #ffffff; } .sk-circle { margin: 40px auto; width: 40px; height: 40px; position: relative; } .sk-circle .sk-child { width: 100%; height: 100%; position: absolute; left: 0; top: 0; } .sk-circle .sk-child:before { content: ''; display: block; margin: 0 auto; width: 15%; height: 15%; background-color: #333; border-radius: 100%; -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both; animation: sk-circleBounceDelay 1.2s infinite ease-in-out both; } .sk-circle .sk-circle2 { -webkit-transform: rotate(30deg); -ms-transform: rotate(30deg); transform: rotate(30deg); } .sk-circle .sk-circle3 { -webkit-transform: rotate(60deg); -ms-transform: rotate(60deg); transform: rotate(60deg); } .sk-circle .sk-circle4 { -webkit-transform: rotate(90deg); -ms-transform: rotate(90deg); transform: rotate(90deg); } .sk-circle .sk-circle5 { -webkit-transform: rotate(120deg); -ms-transform: rotate(120deg); transform: rotate(120deg); } .sk-circle .sk-circle6 { -webkit-transform: rotate(150deg); -ms-transform: rotate(150deg); transform: rotate(150deg); } .sk-circle .sk-circle7 { -webkit-transform: rotate(180deg); -ms-transform: rotate(180deg); transform: rotate(180deg); } .sk-circle .sk-circle8 { -webkit-transform: rotate(210deg); -ms-transform: rotate(210deg); transform: rotate(210deg); } .sk-circle .sk-circle9 { -webkit-transform: rotate(240deg); -ms-transform: rotate(240deg); transform: rotate(240deg); } .sk-circle .sk-circle10 { -webkit-transform: rotate(270deg); -ms-transform: rotate(270deg); transform: rotate(270deg); } .sk-circle .sk-circle11 { -webkit-transform: rotate(300deg); -ms-transform: rotate(300deg); transform: rotate(300deg); } .sk-circle .sk-circle12 { -webkit-transform: rotate(330deg); -ms-transform: rotate(330deg); transform: rotate(330deg); } .sk-circle .sk-circle2:before { -webkit-animation-delay: -1.1s; animation-delay: -1.1s; } .sk-circle .sk-circle3:before { -webkit-animation-delay: -1s; animation-delay: -1s; } .sk-circle .sk-circle4:before { -webkit-animation-delay: -0.9s; animation-delay: -0.9s; } .sk-circle .sk-circle5:before { -webkit-animation-delay: -0.8s; animation-delay: -0.8s; } .sk-circle .sk-circle6:before { -webkit-animation-delay: -0.7s; animation-delay: -0.7s; } .sk-circle .sk-circle7:before { -webkit-animation-delay: -0.6s; animation-delay: -0.6s; } .sk-circle .sk-circle8:before { -webkit-animation-delay: -0.5s; animation-delay: -0.5s; } .sk-circle .sk-circle9:before { -webkit-animation-delay: -0.4s; animation-delay: -0.4s; } .sk-circle .sk-circle10:before { -webkit-animation-delay: -0.3s; animation-delay: -0.3s; } .sk-circle .sk-circle11:before { -webkit-animation-delay: -0.2s; animation-delay: -0.2s; } .sk-circle .sk-circle12:before { -webkit-animation-delay: -0.1s; animation-delay: -0.1s; } @-webkit-keyframes sk-circleBounceDelay { 0%, 80%, 100% { -webkit-transform: scale(0); transform: scale(0); } 40% { -webkit-transform: scale(1); transform: scale(1); } } @keyframes sk-circleBounceDelay { 0%, 80%, 100% { -webkit-transform: scale(0); transform: scale(0); } 40% { -webkit-transform: scale(1); transform: scale(1); } } /* home section */ #home { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; text-align: center; height: 100vh; color: #ffffff; } #home .home-thumb { text-align: center; } #home .btn { background: transparent; border: 3px solid #ffffff; border-radius: 0px; color: #ffffff; font-weight: 700; letter-spacing: 1px; padding: 14px 36px; margin-top: 42px; margin-right: 16px; -webkit-transition: all 0.4s ease-in-out; transition: all 0.4s ease-in-out; } #home .btn:hover { background: #f1c11a; color: #ffffff; border-color: transparent; } #home .btn-success { background: #ffffff; color: #242424; border-color: transparent; } /* about section */ #about h3 { margin-top: 0px; } #about .about-thumb { padding-top: 10px; } /* feature section */ #feature { background: #f1c11a; } #feature .icon { color: #ffffff; font-size: 42px; padding-right: 14px; } #feature p { color: #333; } #feature .btn { background: transparent; border: 3px solid #ffffff; border-radius: 0px; color: #ffffff; font-size: 18px; font-weight: 700; letter-spacing: 1px; padding: 14px 36px; margin-top: 62px; margin-right: 16px; -webkit-transition: all 0.4s ease-in-out; transition: all 0.4s ease-in-out; } #feature .btn:hover { background: #ffffff; color: #333; border-color: transparent; } /* Mobile Responsive */ @media (max-width: 980px) { h1 { font-size: 2.4rem; } #home { height: 65vh; } #about .section-title { padding-bottom: 12px; } #feature .col-md-4 { padding-bottom: 32px; } } @media (max-width: 768px) { h1 { font-size: 2rem; } h2 { font-size: 1.6rem; } h3 { font-size: 0.8rem; line-height: 1.3rem; } } @media (max-width: 700px) { #home {height: 100vh;} .modal-dialog .modal-content { padding: 50px 20px; } .modal-dialog .close { font-size: 35px; width: 25px; height: 25px; line-height: 25px; } }
0.294925
0.076511
width: 100vw; height: 100vh; object-fit: cover; position: fixed; left: 0; right: 0; top: 0; bottom: 0; z-index: -1; } ngb-carousel .picsum-img-wrapper { position: relative; height: 0; padding-top: 55%; /* Keep ratio for 900x500 images */ } ngb-carousel .picsum-img-wrapper>img { position: absolute; top: 0; left: 0; bottom: 0; right:0; } #main{ /* margin-top: 30px; */ font-size: .875rem; line-height: 1.5; color: #000; background-color: #E0DAC2; font-family: adelle,Helvetica neue,Helvetica,sans-serif; font-weight: 400; -webkit-font-smoothing: antialiased; cursor: default; box-sizing: border-box; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; -webkit-box-flex: 1; flex: 1 0 auto; height:max-content; width: 1000px; } section{ font-size: .875rem; line-height: 1.5; /* color: #000; */ font-family: adelle,Helvetica neue,Helvetica,sans-serif; font-weight: 400; -webkit-font-smoothing: antialiased; cursor: default; box-sizing: border-box; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; justify-content: stretch; /* background-color: #000; */ min-height: 100vh; padding-top: 80px; } #video{ font-size: .875rem; line-height: 1.5; color: #000; font-family: adelle,Helvetica neue,Helvetica,sans-serif; font-weight: 400; -webkit-font-smoothing: antialiased; cursor: default; -webkit-box-direction: normal; box-sizing: border-box; position: fixed; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; overflow: visible; z-index: 0; backface-visibility: hidden; } .col-md-1{ background-color: coral; } .col-md-2{ background-color: #92a8d1; } .col-md-3{ background-color: rgb(201, 76, 76); } /* .col-md-6{ background-color: rgba(201, 76, 76, 0.3); } */ .col-sm-1{ background-color: rgba(201, 76, 76, 0.3); } .col-sm-2{ background-color: rgb(201, 76, 76); } .col-sm-3{ background-color: #92a8d1; } .col-sm-6{ background-color: coral; } /* *{ color:#FFFFFF; } */
src/app/home/home.component.css
width: 100vw; height: 100vh; object-fit: cover; position: fixed; left: 0; right: 0; top: 0; bottom: 0; z-index: -1; } ngb-carousel .picsum-img-wrapper { position: relative; height: 0; padding-top: 55%; /* Keep ratio for 900x500 images */ } ngb-carousel .picsum-img-wrapper>img { position: absolute; top: 0; left: 0; bottom: 0; right:0; } #main{ /* margin-top: 30px; */ font-size: .875rem; line-height: 1.5; color: #000; background-color: #E0DAC2; font-family: adelle,Helvetica neue,Helvetica,sans-serif; font-weight: 400; -webkit-font-smoothing: antialiased; cursor: default; box-sizing: border-box; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; -webkit-box-flex: 1; flex: 1 0 auto; height:max-content; width: 1000px; } section{ font-size: .875rem; line-height: 1.5; /* color: #000; */ font-family: adelle,Helvetica neue,Helvetica,sans-serif; font-weight: 400; -webkit-font-smoothing: antialiased; cursor: default; box-sizing: border-box; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; justify-content: stretch; /* background-color: #000; */ min-height: 100vh; padding-top: 80px; } #video{ font-size: .875rem; line-height: 1.5; color: #000; font-family: adelle,Helvetica neue,Helvetica,sans-serif; font-weight: 400; -webkit-font-smoothing: antialiased; cursor: default; -webkit-box-direction: normal; box-sizing: border-box; position: fixed; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; overflow: visible; z-index: 0; backface-visibility: hidden; } .col-md-1{ background-color: coral; } .col-md-2{ background-color: #92a8d1; } .col-md-3{ background-color: rgb(201, 76, 76); } /* .col-md-6{ background-color: rgba(201, 76, 76, 0.3); } */ .col-sm-1{ background-color: rgba(201, 76, 76, 0.3); } .col-sm-2{ background-color: rgb(201, 76, 76); } .col-sm-3{ background-color: #92a8d1; } .col-sm-6{ background-color: coral; } /* *{ color:#FFFFFF; } */
0.430147
0.064271
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap'); *, *::before, *::after { box-sizing: border-box; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -webkit-tap-highlight-color: transparent; } body { --base-bg: #F4F4F4; --navigation-bg: #ffffff; --navigation-text-primary: #3c3c3c; --navigation-text-secondary: #7c7c7c; --base-text-primary: #3c3c3c; --base-text-secondary: #7c7c7c; --base-border-color: #e2e2e2; --base-box-bg: #ffffff; --footer-bg: #ffffff; --footer-text-primary: #3c3c3c; --footer-text-secondary: #7c7c7c; } body:not(.ignore).dark { --base-bg: #121212; --navigation-bg: #1F1F1F; --navigation-text-primary: #a7a7a7; --navigation-text-secondary: #888888; --base-text-primary: #a7a7a7; --base-text-secondary: #888888; --base-border-color: #666666; --base-box-bg: #1F1F1F; --footer-bg: #1F1F1F; --footer-text-primary: #a7a7a7; --footer-text-secondary: #888888; } body:not(.ignore).sepia { --base-bg: #F3F0D7; --navigation-bg: #E8DEBE; --navigation-text-primary: #1c1c1c; --navigation-text-secondary: #3c3c3c; --base-text-primary: #1c1c1c; --base-text-secondary: #3c3c3c; --base-border-color: #7c7c7c; --base-box-bg: #E8DEBE; --footer-bg: #E8DEBE; --footer-text-primary: #1c1c1c; --footer-text-secondary: #3c3c3c; } body, html { font-family: 'Open Sans', sans-serif; margin: 0; padding: 0; background: var(--base-bg); transition: background .2s ease; } #overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 100; display: flex; align-items: center; justify-content: center; } #overlay .inner { position: absolute; max-height: 100%; overflow-y: auto; width: 100%; padding: 20px; display: flex; justify-content: center; align-items: center; } #overlay .inner .box { width: 100%; max-width: 300px; background: white; border-radius: 4px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12); padding: 25px 40px; } #overlay .inner .box h4 { color: #3c3c3c; font-size: 18px; font-weight: 800; margin: 0 0 10px; } #overlay .inner .box span { font-weight: 400; font-size: 14px } #overlay .inner .box .button { margin-top: 20px; display: inline-flex; align-items: center; padding: 0 15px; background: #00B294; border: solid 1px #00B294; border-radius: 5px; color: white; height: 32px; font-size: 14px; position: relative; cursor: pointer; font-family: inherit; transition: background .2s ease, color .2s ease; } #overlay .inner .box .button:hover { background: white; color: #00B294; transition: background .2s ease; } #website { display: flex; flex-direction: column; min-height: 100vh; } #website #content { flex: 1; } .container { max-width: 1200px; margin: 0 auto; color: var(--base-text-primary); } #navigation { background: var(--navigation-bg); padding: 10px; height: 80px; transition: background .2s ease; } #navigation.mainpage { position: absolute; width: 100%; background: transparent; } #navigation .container { display: flex; align-items: center; height: 100%; } #navigation.mainpage .container { border-bottom: solid 1px white; padding: 0 15px 10px; } #navigation .logo { font-size: 18px; font-weight: 600; padding: 5px 10px; color: var(--navigation-text-primary); transition: color .2s ease; } #navigation.mainpage .logo { color: white; font-weight: 500; } #navigation .spacer { flex: 1; } #navigation .profile { display: flex; align-items: center; padding: 5px 10px; border-radius: 5px; cursor: pointer; position: relative; transition: background .2s ease; } #navigation .profile:hover { background: rgba(0, 0, 0, 0.1); } #navigation .profile .image { width: 50px; height: 50px; background-size: cover; background-position: center; border-radius: 50%; } #navigation .profile span { font-weight: 600; text-align: right; margin-right: 15px; color: var(--navigation-text-primary); transition: color .2s ease; } #navigation .profile span small { display: block; font-weight: 500; color: var(--navigation-text-secondary); transition: color .2s ease; } #navigation.mainpage .profile span, #navigation.mainpage .profile span small { color: white; font-weight: 500; } #navigation .profile .menu { position: absolute; top: 100%; right: 0; margin-top: 5px; background: var(--base-box-bg); -webkit-box-shadow: 0 1px 3px 0 rgba(63, 63, 68, .15); -moz-box-shadow: 0 1px 3px 0 rgba(63, 63, 68, .15); box-shadow: 0 1px 3px 0 rgba(63, 63, 68, .15); border-radius: 5px; opacity: 0; pointer-events: none; transition: opacity .2s ease; z-index: 1; width: 200px; padding: 5px 0; } #navigation .profile.open .menu { opacity: 1; pointer-events: auto; } #navigation .profile .menu .item { display: flex; min-height: 38px; color: var(--base-text-secondary); align-items: center; padding: 5px 15px; font-size: 14px; text-decoration: none; white-space: nowrap; transition: background .2s ease, color .2s ease; } #navigation .profile .menu .item i { margin-right: 8px; } #navigation .profile .menu .item:hover { background: rgba(0, 0, 0, 0.04); color: var(--base-text-primary); } #navigation .profile .menu .divider { margin: 5px 0; height: 1px; background: var(--base-border-color); } #navigation .login { background: #1da1f2; color: white; padding: 8px 16px; border-radius: 4px; font-size: 14px; text-decoration: none; transition: background .2s ease; } #navigation.mainpage .login { background: transparent; border: solid 1px white; } #navigation .login i { margin-right: 5px; } #navigation .login:hover { background: #1c94df; } #navigation.mainpage .login:hover { background: white; color: #793470; } #content { padding: 50px 20px; } #content .page-title { margin: 0 0 40px; font-size: 30px; color: var(--navigation-text-primary); transition: color .2s ease; font-weight: 500; } #content .page-title span { color: var(--navigation-text-secondary); transition: color .2s ease; } #content .page-return { margin-bottom: 3px; color: var(--navigation-text-secondary); text-decoration: none; font-size: 13px; transition: color .2s ease; } #content .page-return:hover { color: var(--navigation-text-primary); } #content .page-return i { margin-right: 5px; } .row:not(.title) { display: flex; flex-wrap: wrap; margin: 0 -20px; } .row .column { flex: 1; margin: 20px; min-width: 300px; } .row .column .title { font-size: 15px; font-weight: 600; color: var(--base-text-primary); margin-bottom: 20px; position: relative; padding: 2px 0 2px 8px; transition: color .2s ease; } .row .column .title::before { position: absolute; top: 0; left: 0; width: 2px; height: 100%; background: var(--base-border-color); content: ''; transition: background .2s ease; } .row .column .title.row { display: flex; } .row .column .title.row span { flex: 1; } .row .column .title.row a { color: var(--base-text-secondary); font-size: 13px; font-weight: 500; text-decoration: none; transition: color .2s ease; } .row .column .title small { font-weight: 500; color: var(--base-text-secondary); transition: color .2s ease; } #content .actions { display: flex; margin: 0 -5px 10px; } #content .actions .action { display: flex; align-items: center; padding: 0 15px; background: #00B294; border: solid 1px #00B294; border-radius: 5px; color: white; height: 32px; margin: 5px; font-size: 14px; position: relative; cursor: pointer; transition: background .2s ease, color .2s ease; } #content .actions .action:hover { background: var(--base-bg); color: #00B294; transition: background .2s ease; } #content .actions .action.disabled { pointer-events: none; opacity: .5; } #content .actions .action .base { margin-left: 3px; display: inline-block; font-weight: 600; } #content .actions .action .items { position: absolute; top: 100%; margin-top: 5px; background: var(--base-box-bg); left: 0; -webkit-box-shadow: 0 1px 3px 0 rgba(63, 63, 68, .15); -moz-box-shadow: 0 1px 3px 0 rgba(63, 63, 68, .15); box-shadow: 0 1px 3px 0 rgba(63, 63, 68, .15); border-radius: 5px; min-width: 120px; overflow: hidden; opacity: 0; pointer-events: none; z-index: 10; transition: opacity .2s ease, background .2s ease; } #content .actions .action.opened .items { opacity: 1; pointer-events: auto; } #content .actions .action .items .item { white-space: nowrap; padding: 8px 12px; color: var(--base-text-secondary); transition: background .2s ease, color .2s ease; cursor: pointer; } #content .actions .action .items .item:hover { background: rgba(0, 0, 0, 0.04); } #content .actions .action .items .item+.item { border-top: solid 1px var(--base-border-color); transition: border-top-color .2s ease; } .row .column canvas { max-width: 100%; } .row .column .empty-info { display: flex; align-items: center; justify-content: center; text-align: center; color: var(--base-text-secondary); font-size: 13px; height: 400px; } .row .column .user-card { display: flex; padding: 10px 5px; align-items: center; text-decoration: none; transition: background .2s ease; } .row .column .user-card[href]:hover { background: rgba(0, 0, 0, 0.04); } .row .column .user-card .image { width: 40px; height: 40px; background-size: cover; background-position: center; margin-right: 10px; border-radius: 50%; } .row .column .user-card .name { font-size: 15px; font-weight: 600; color: var(--base-text-primary); flex: 1; transition: color .2s ease; } .row .column .user-card .name small { display: block; font-weight: 500; color: var(--base-text-secondary); transition: color .2s ease; } .row .column .user-card .datestamp { text-align: right; } .row .column .user-card .datestamp span { font-size: 14px; color: var(--base-text-primary); transition: color .2s ease; } .row .column .user-card .datestamp small { display: block; color: var(--base-text-secondary); transition: color .2s ease; } .row.analytics { margin: 0 -10px; flex-wrap: wrap; } .row.analytics .item { background: var(--base-box-bg); margin: 10px; padding: 10px 25px; border-radius: 6px; flex: 1; overflow: hidden; position: relative; min-height: 100px; min-width: 200px; font-size: 14px; color: var(--base-text-primary); transition: background .2s ease, color .2s ease; } .row.analytics .item.number { min-width: 220px; } .row.analytics .item i { font-size: 70px; position: absolute; bottom: -5px; right: -5px; opacity: .1; } .row.analytics .item .label { font-size: 17px; font-weight: 600; color: var(--base-text-secondary); display: block; margin-bottom: 10px; transition: color .2s ease; } .row.analytics .item .name { font-size: 13px; color: var(--base-text-primary); display: block; margin-bottom: 20px; font-weight: 600; transition: color .2s ease; } #content .welcome-message { color: var(--base-text-primary); margin-bottom: 50px; } #content .setting { margin: 20px 0 40px; } #content .setting .label { color: var(--base-text-primary); font-weight: 600; position: relative; margin-bottom: 10px; transition: color .2s ease; } #content .setting .label small { color: var(--base-text-secondary); font-weight: 500; } #content .setting .label::before { position: absolute; top: 0; left: -10px; height: 100%; width: 2px; background: var(--base-border-color); content: ''; transition: background .2s ease; } #content .setting .color-theme-items { display: flex; margin: 0 -5px; } #content .setting .color-theme-items .item { display: flex; align-items: center; height: 70px; padding: 0 30px; border-radius: 4px; border: solid 1px; -webkit-box-shadow: 0 1px 3px 0 rgba(63, 63, 68, .15); -moz-box-shadow: 0 1px 3px 0 rgba(63, 63, 68, .15); box-shadow: 0 1px 3px 0 rgba(63, 63, 68, .15); margin: 5px; min-width: 130px; justify-content: center; font-weight: 600; font-size: 14px; cursor: pointer; flex-direction: column; } #content .setting .color-theme-items .item i { font-size: 12px; font-weight: 500; } #content .setting .color-theme-items .item.dark { background: #121212; border-color: #1f1f1f; color: #a7a7a7; } #content .setting .color-theme-items .item.sepia { background: #F3F0D7; border-color: #E8DEBE; color: #1c1c1c; } #content .setting .color-theme-items .item.light { background: #F4F4F4; border-color: #ffffff; color: #3c3c3c; } #overlayer { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0, 0, 0, 0.7); z-index: 100; display: flex; align-items: center; opacity: 0; pointer-events: none; transition: opacity .2s ease; } #overlayer.reveal { opacity: 1; pointer-events: auto; } #overlayer .inner { max-height: 100%; overflow-y: auto; width: 100%; display: flex; justify-content: center; padding: 20px; } #overlayer .inner .box { background: var(--base-bg); border-radius: 5px; width: 100%; max-width: 400px; padding: 20px; text-align: center; } #overlayer .inner .box .title { color: var(--base-text-primary); font-size: 16px; font-weight: 600; margin-bottom: 10px; } #overlayer .inner .box .message { color: var(--base-text-secondary); font-weight: 500; font-size: 14px; } #overlayer .inner .box .spinner-box { margin-top: 30px; } #mainpage>div:first-child { padding-top: 80px; } #mainpage .purple { background: linear-gradient(to right, #ad5389, #3c1053); } #mainpage .white { background: white; } #mainpage .container { padding: 20px; } #mainpage .container .mainpage-top { align-items: center; } #mainpage .container .description { color: white; flex: 1.5; } #mainpage .container .description h1, #mainpage .container .description h2 { position: relative; font-size: 30px; font-weight: 500; } #mainpage .container .description h1 span, #mainpage .container .description h2 span { font-weight: 600; } #mainpage .container .description h1::before, #mainpage .container .description h2::before { position: absolute; content: ''; bottom: 100%; margin-bottom: 2px; left: 0; width: 30px; height: 2px; background: white; } #mainpage .container .description .text { font-size: 15px; margin-bottom: 30px; line-height: 25px; max-width: 450px; font-weight: 300; } #mainpage .container .description .login { padding: 8px 15px; border: solid 1px white; border-radius: 4px; color: white; font-size: 14px; text-decoration: none; transition: background .2s ease, color .2s ease; } #mainpage .container .description .login:hover { background: white; color: #8D407A; } #mainpage .container .description .login i { margin-right: 5px; } #mainpage .container .mainpage-top .image { text-align: center; } #mainpage .container .mainpage-top .image img { width: 100%; max-width: 400px; } #mainpage .container.wide { max-width: 1400px; } #mainpage .container .overview .description, #mainpage .container .bottom .description { color: #3c3c3c; } #mainpage .container .overview .description h1::before, #mainpage .container .bottom .description h1::before { background: #a7a7a7; } #mainpage .container .overview .image { flex: 1.8; } #mainpage .container .overview .image img { max-width: 100%; -webkit-box-shadow: 0 1px 3px 0 rgba(63, 63, 68, .25); -moz-box-shadow: 0 1px 3px 0 rgba(63, 63, 68, .25); box-shadow: 0 1px 3px 0 rgba(63, 63, 68, .25); border-radius: 6px; } #mainpage .container .bottom .description .login { padding: 8px 15px; border: solid 1px #1da1f2; border-radius: 4px; background: #1da1f2; color: white; font-size: 14px; text-decoration: none; transition: background .2s ease, color .2s ease; } #mainpage .container .bottom .description .login:hover { color: white; background: #1c94df; } #mainpage .container .bottom .column { text-align: center; display: flex; flex-direction: column; align-items: center; } .container .green-card { background: #10893E; padding: 20px 15px; border-radius: 6px; color: white; font-weight: 500; display: inline-block; margin: 20px 0; } .container form { margin: 40px 0; } .container form .input-item { margin: 5px 0; width: 100%; max-width: 300px; } .container form .input-item label { display: block; color: var(--base-text-secondary); font-size: 14px; font-weight: 500; margin-bottom: 3px; } .container form .input-item input, .container form .input-item select, .container form .input-item textarea { background: var(--base-box-bg); color: var(--base-text-primary); border: solid 1px var(--base-border-color); height: 40px; padding: 0 15px; margin-bottom: 10px; width: 100%; border-radius: 4px; } .container form .input-item textarea { padding: 10px 15px; height: auto; min-height: 100px; resize: vertical; } .container form button[type="submit"] { margin-top: 20px; display: inline-flex; align-items: center; padding: 0 15px; background: #00B294; border: solid 1px #00B294; border-radius: 5px; color: white; height: 32px; font-size: 14px; position: relative; cursor: pointer; font-family: inherit; transition: background .2s ease, color .2s ease; } .container form button[type="submit"]:hover { background: var(--base-bg); color: #00B294; transition: background .2s ease; } .spinner { margin: 80px auto 50px; width: 70px; text-align: center; } .spinner>div { width: 18px; height: 18px; background-color: var(--base-text-primary); border-radius: 100%; display: inline-block; -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both; animation: sk-bouncedelay 1.4s infinite ease-in-out both; } .spinner .bounce1 { -webkit-animation-delay: -0.32s; animation-delay: -0.32s; } .spinner .bounce2 { -webkit-animation-delay: -0.16s; animation-delay: -0.16s; } @-webkit-keyframes sk-bouncedelay { 0%, 80%, 100% { -webkit-transform: scale(0) } 40% { -webkit-transform: scale(1.0) } } @keyframes sk-bouncedelay { 0%, 80%, 100% { -webkit-transform: scale(0); transform: scale(0); } 40% { -webkit-transform: scale(1.0); transform: scale(1.0); } } #footer { background: var(--footer-bg); padding: 20px 40px; transition: background .2s ease; } #footer .row { display: flex; flex-wrap: wrap; margin: 0 -5px; padding: 10px; } #footer .row.margin { margin-top: 40px; } #footer .row .column { flex: 1; min-width: 200px; } #footer .row .column .title { position: relative; color: var(--footer-text-primary); font-size: 15px; font-weight: 600; margin-bottom: 10px; padding: 6px 0; transition: color .2s ease; } #footer .row .column .title::before { position: absolute; top: 0; left: -10px; height: 100%; width: 2px; background: var(--base-border-color); content: ''; transition: background .2s ease; } #footer .row .column .item { color: var(--footer-text-secondary); font-size: 13px; font-weight: 500; margin-bottom: 5px; display: block; text-decoration: none; transition: color .2s ease; } #footer .row .column .item i { color: #FF4343; } #footer .row .column.toggle { cursor: pointer; font-size: 13px; color: var(--footer-text-secondary); text-align: center; -webkit-user-select: none; -moz-user-select: none; transition: color .2s ease; } #footer .row .column.toggle span { background: var(--base-bg); padding: 8px 40px; border-radius: 20px; font-weight: 600; transition: background .2s ease; } #footer .row .column.toggle span:hover { color: var(--footer-text-primary); } #footer.mainpage .container { border-top: solid 1px var(--base-border-color); padding-top: 40px; } #footer.mainpage .color-toggle { display: none; } @media (max-width: 900px) { .row:not(.analytics) { flex-direction: column; margin: 0; } .row:not(.analytics).reversed { flex-direction: column-reverse; } #mainpage .container .mainpage-top .image img { max-width: 300px; } } @media (max-width: 700px) { #content .setting .color-theme-items { flex-direction: column; } } @media (max-width: 500px) { #content .page-title { font-size: 22px; } #content { padding: 30px 15px; } #navigation .profile span { display: none; } #navigation .profile { border-radius: 50%; padding: 5px; } .row .column { min-width: 0; margin: 20px 0; } .row .column .user-card .name { font-size: 13px; } .row .column .user-card .datestamp span { font-size: 12px; } .row .column .user-card .datestamp small { font-size: 11px; } #footer .row .column.toggle span { display: inline-block; } }
public/assets/css/panel.css
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap'); *, *::before, *::after { box-sizing: border-box; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -webkit-tap-highlight-color: transparent; } body { --base-bg: #F4F4F4; --navigation-bg: #ffffff; --navigation-text-primary: #3c3c3c; --navigation-text-secondary: #7c7c7c; --base-text-primary: #3c3c3c; --base-text-secondary: #7c7c7c; --base-border-color: #e2e2e2; --base-box-bg: #ffffff; --footer-bg: #ffffff; --footer-text-primary: #3c3c3c; --footer-text-secondary: #7c7c7c; } body:not(.ignore).dark { --base-bg: #121212; --navigation-bg: #1F1F1F; --navigation-text-primary: #a7a7a7; --navigation-text-secondary: #888888; --base-text-primary: #a7a7a7; --base-text-secondary: #888888; --base-border-color: #666666; --base-box-bg: #1F1F1F; --footer-bg: #1F1F1F; --footer-text-primary: #a7a7a7; --footer-text-secondary: #888888; } body:not(.ignore).sepia { --base-bg: #F3F0D7; --navigation-bg: #E8DEBE; --navigation-text-primary: #1c1c1c; --navigation-text-secondary: #3c3c3c; --base-text-primary: #1c1c1c; --base-text-secondary: #3c3c3c; --base-border-color: #7c7c7c; --base-box-bg: #E8DEBE; --footer-bg: #E8DEBE; --footer-text-primary: #1c1c1c; --footer-text-secondary: #3c3c3c; } body, html { font-family: 'Open Sans', sans-serif; margin: 0; padding: 0; background: var(--base-bg); transition: background .2s ease; } #overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 100; display: flex; align-items: center; justify-content: center; } #overlay .inner { position: absolute; max-height: 100%; overflow-y: auto; width: 100%; padding: 20px; display: flex; justify-content: center; align-items: center; } #overlay .inner .box { width: 100%; max-width: 300px; background: white; border-radius: 4px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12); padding: 25px 40px; } #overlay .inner .box h4 { color: #3c3c3c; font-size: 18px; font-weight: 800; margin: 0 0 10px; } #overlay .inner .box span { font-weight: 400; font-size: 14px } #overlay .inner .box .button { margin-top: 20px; display: inline-flex; align-items: center; padding: 0 15px; background: #00B294; border: solid 1px #00B294; border-radius: 5px; color: white; height: 32px; font-size: 14px; position: relative; cursor: pointer; font-family: inherit; transition: background .2s ease, color .2s ease; } #overlay .inner .box .button:hover { background: white; color: #00B294; transition: background .2s ease; } #website { display: flex; flex-direction: column; min-height: 100vh; } #website #content { flex: 1; } .container { max-width: 1200px; margin: 0 auto; color: var(--base-text-primary); } #navigation { background: var(--navigation-bg); padding: 10px; height: 80px; transition: background .2s ease; } #navigation.mainpage { position: absolute; width: 100%; background: transparent; } #navigation .container { display: flex; align-items: center; height: 100%; } #navigation.mainpage .container { border-bottom: solid 1px white; padding: 0 15px 10px; } #navigation .logo { font-size: 18px; font-weight: 600; padding: 5px 10px; color: var(--navigation-text-primary); transition: color .2s ease; } #navigation.mainpage .logo { color: white; font-weight: 500; } #navigation .spacer { flex: 1; } #navigation .profile { display: flex; align-items: center; padding: 5px 10px; border-radius: 5px; cursor: pointer; position: relative; transition: background .2s ease; } #navigation .profile:hover { background: rgba(0, 0, 0, 0.1); } #navigation .profile .image { width: 50px; height: 50px; background-size: cover; background-position: center; border-radius: 50%; } #navigation .profile span { font-weight: 600; text-align: right; margin-right: 15px; color: var(--navigation-text-primary); transition: color .2s ease; } #navigation .profile span small { display: block; font-weight: 500; color: var(--navigation-text-secondary); transition: color .2s ease; } #navigation.mainpage .profile span, #navigation.mainpage .profile span small { color: white; font-weight: 500; } #navigation .profile .menu { position: absolute; top: 100%; right: 0; margin-top: 5px; background: var(--base-box-bg); -webkit-box-shadow: 0 1px 3px 0 rgba(63, 63, 68, .15); -moz-box-shadow: 0 1px 3px 0 rgba(63, 63, 68, .15); box-shadow: 0 1px 3px 0 rgba(63, 63, 68, .15); border-radius: 5px; opacity: 0; pointer-events: none; transition: opacity .2s ease; z-index: 1; width: 200px; padding: 5px 0; } #navigation .profile.open .menu { opacity: 1; pointer-events: auto; } #navigation .profile .menu .item { display: flex; min-height: 38px; color: var(--base-text-secondary); align-items: center; padding: 5px 15px; font-size: 14px; text-decoration: none; white-space: nowrap; transition: background .2s ease, color .2s ease; } #navigation .profile .menu .item i { margin-right: 8px; } #navigation .profile .menu .item:hover { background: rgba(0, 0, 0, 0.04); color: var(--base-text-primary); } #navigation .profile .menu .divider { margin: 5px 0; height: 1px; background: var(--base-border-color); } #navigation .login { background: #1da1f2; color: white; padding: 8px 16px; border-radius: 4px; font-size: 14px; text-decoration: none; transition: background .2s ease; } #navigation.mainpage .login { background: transparent; border: solid 1px white; } #navigation .login i { margin-right: 5px; } #navigation .login:hover { background: #1c94df; } #navigation.mainpage .login:hover { background: white; color: #793470; } #content { padding: 50px 20px; } #content .page-title { margin: 0 0 40px; font-size: 30px; color: var(--navigation-text-primary); transition: color .2s ease; font-weight: 500; } #content .page-title span { color: var(--navigation-text-secondary); transition: color .2s ease; } #content .page-return { margin-bottom: 3px; color: var(--navigation-text-secondary); text-decoration: none; font-size: 13px; transition: color .2s ease; } #content .page-return:hover { color: var(--navigation-text-primary); } #content .page-return i { margin-right: 5px; } .row:not(.title) { display: flex; flex-wrap: wrap; margin: 0 -20px; } .row .column { flex: 1; margin: 20px; min-width: 300px; } .row .column .title { font-size: 15px; font-weight: 600; color: var(--base-text-primary); margin-bottom: 20px; position: relative; padding: 2px 0 2px 8px; transition: color .2s ease; } .row .column .title::before { position: absolute; top: 0; left: 0; width: 2px; height: 100%; background: var(--base-border-color); content: ''; transition: background .2s ease; } .row .column .title.row { display: flex; } .row .column .title.row span { flex: 1; } .row .column .title.row a { color: var(--base-text-secondary); font-size: 13px; font-weight: 500; text-decoration: none; transition: color .2s ease; } .row .column .title small { font-weight: 500; color: var(--base-text-secondary); transition: color .2s ease; } #content .actions { display: flex; margin: 0 -5px 10px; } #content .actions .action { display: flex; align-items: center; padding: 0 15px; background: #00B294; border: solid 1px #00B294; border-radius: 5px; color: white; height: 32px; margin: 5px; font-size: 14px; position: relative; cursor: pointer; transition: background .2s ease, color .2s ease; } #content .actions .action:hover { background: var(--base-bg); color: #00B294; transition: background .2s ease; } #content .actions .action.disabled { pointer-events: none; opacity: .5; } #content .actions .action .base { margin-left: 3px; display: inline-block; font-weight: 600; } #content .actions .action .items { position: absolute; top: 100%; margin-top: 5px; background: var(--base-box-bg); left: 0; -webkit-box-shadow: 0 1px 3px 0 rgba(63, 63, 68, .15); -moz-box-shadow: 0 1px 3px 0 rgba(63, 63, 68, .15); box-shadow: 0 1px 3px 0 rgba(63, 63, 68, .15); border-radius: 5px; min-width: 120px; overflow: hidden; opacity: 0; pointer-events: none; z-index: 10; transition: opacity .2s ease, background .2s ease; } #content .actions .action.opened .items { opacity: 1; pointer-events: auto; } #content .actions .action .items .item { white-space: nowrap; padding: 8px 12px; color: var(--base-text-secondary); transition: background .2s ease, color .2s ease; cursor: pointer; } #content .actions .action .items .item:hover { background: rgba(0, 0, 0, 0.04); } #content .actions .action .items .item+.item { border-top: solid 1px var(--base-border-color); transition: border-top-color .2s ease; } .row .column canvas { max-width: 100%; } .row .column .empty-info { display: flex; align-items: center; justify-content: center; text-align: center; color: var(--base-text-secondary); font-size: 13px; height: 400px; } .row .column .user-card { display: flex; padding: 10px 5px; align-items: center; text-decoration: none; transition: background .2s ease; } .row .column .user-card[href]:hover { background: rgba(0, 0, 0, 0.04); } .row .column .user-card .image { width: 40px; height: 40px; background-size: cover; background-position: center; margin-right: 10px; border-radius: 50%; } .row .column .user-card .name { font-size: 15px; font-weight: 600; color: var(--base-text-primary); flex: 1; transition: color .2s ease; } .row .column .user-card .name small { display: block; font-weight: 500; color: var(--base-text-secondary); transition: color .2s ease; } .row .column .user-card .datestamp { text-align: right; } .row .column .user-card .datestamp span { font-size: 14px; color: var(--base-text-primary); transition: color .2s ease; } .row .column .user-card .datestamp small { display: block; color: var(--base-text-secondary); transition: color .2s ease; } .row.analytics { margin: 0 -10px; flex-wrap: wrap; } .row.analytics .item { background: var(--base-box-bg); margin: 10px; padding: 10px 25px; border-radius: 6px; flex: 1; overflow: hidden; position: relative; min-height: 100px; min-width: 200px; font-size: 14px; color: var(--base-text-primary); transition: background .2s ease, color .2s ease; } .row.analytics .item.number { min-width: 220px; } .row.analytics .item i { font-size: 70px; position: absolute; bottom: -5px; right: -5px; opacity: .1; } .row.analytics .item .label { font-size: 17px; font-weight: 600; color: var(--base-text-secondary); display: block; margin-bottom: 10px; transition: color .2s ease; } .row.analytics .item .name { font-size: 13px; color: var(--base-text-primary); display: block; margin-bottom: 20px; font-weight: 600; transition: color .2s ease; } #content .welcome-message { color: var(--base-text-primary); margin-bottom: 50px; } #content .setting { margin: 20px 0 40px; } #content .setting .label { color: var(--base-text-primary); font-weight: 600; position: relative; margin-bottom: 10px; transition: color .2s ease; } #content .setting .label small { color: var(--base-text-secondary); font-weight: 500; } #content .setting .label::before { position: absolute; top: 0; left: -10px; height: 100%; width: 2px; background: var(--base-border-color); content: ''; transition: background .2s ease; } #content .setting .color-theme-items { display: flex; margin: 0 -5px; } #content .setting .color-theme-items .item { display: flex; align-items: center; height: 70px; padding: 0 30px; border-radius: 4px; border: solid 1px; -webkit-box-shadow: 0 1px 3px 0 rgba(63, 63, 68, .15); -moz-box-shadow: 0 1px 3px 0 rgba(63, 63, 68, .15); box-shadow: 0 1px 3px 0 rgba(63, 63, 68, .15); margin: 5px; min-width: 130px; justify-content: center; font-weight: 600; font-size: 14px; cursor: pointer; flex-direction: column; } #content .setting .color-theme-items .item i { font-size: 12px; font-weight: 500; } #content .setting .color-theme-items .item.dark { background: #121212; border-color: #1f1f1f; color: #a7a7a7; } #content .setting .color-theme-items .item.sepia { background: #F3F0D7; border-color: #E8DEBE; color: #1c1c1c; } #content .setting .color-theme-items .item.light { background: #F4F4F4; border-color: #ffffff; color: #3c3c3c; } #overlayer { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0, 0, 0, 0.7); z-index: 100; display: flex; align-items: center; opacity: 0; pointer-events: none; transition: opacity .2s ease; } #overlayer.reveal { opacity: 1; pointer-events: auto; } #overlayer .inner { max-height: 100%; overflow-y: auto; width: 100%; display: flex; justify-content: center; padding: 20px; } #overlayer .inner .box { background: var(--base-bg); border-radius: 5px; width: 100%; max-width: 400px; padding: 20px; text-align: center; } #overlayer .inner .box .title { color: var(--base-text-primary); font-size: 16px; font-weight: 600; margin-bottom: 10px; } #overlayer .inner .box .message { color: var(--base-text-secondary); font-weight: 500; font-size: 14px; } #overlayer .inner .box .spinner-box { margin-top: 30px; } #mainpage>div:first-child { padding-top: 80px; } #mainpage .purple { background: linear-gradient(to right, #ad5389, #3c1053); } #mainpage .white { background: white; } #mainpage .container { padding: 20px; } #mainpage .container .mainpage-top { align-items: center; } #mainpage .container .description { color: white; flex: 1.5; } #mainpage .container .description h1, #mainpage .container .description h2 { position: relative; font-size: 30px; font-weight: 500; } #mainpage .container .description h1 span, #mainpage .container .description h2 span { font-weight: 600; } #mainpage .container .description h1::before, #mainpage .container .description h2::before { position: absolute; content: ''; bottom: 100%; margin-bottom: 2px; left: 0; width: 30px; height: 2px; background: white; } #mainpage .container .description .text { font-size: 15px; margin-bottom: 30px; line-height: 25px; max-width: 450px; font-weight: 300; } #mainpage .container .description .login { padding: 8px 15px; border: solid 1px white; border-radius: 4px; color: white; font-size: 14px; text-decoration: none; transition: background .2s ease, color .2s ease; } #mainpage .container .description .login:hover { background: white; color: #8D407A; } #mainpage .container .description .login i { margin-right: 5px; } #mainpage .container .mainpage-top .image { text-align: center; } #mainpage .container .mainpage-top .image img { width: 100%; max-width: 400px; } #mainpage .container.wide { max-width: 1400px; } #mainpage .container .overview .description, #mainpage .container .bottom .description { color: #3c3c3c; } #mainpage .container .overview .description h1::before, #mainpage .container .bottom .description h1::before { background: #a7a7a7; } #mainpage .container .overview .image { flex: 1.8; } #mainpage .container .overview .image img { max-width: 100%; -webkit-box-shadow: 0 1px 3px 0 rgba(63, 63, 68, .25); -moz-box-shadow: 0 1px 3px 0 rgba(63, 63, 68, .25); box-shadow: 0 1px 3px 0 rgba(63, 63, 68, .25); border-radius: 6px; } #mainpage .container .bottom .description .login { padding: 8px 15px; border: solid 1px #1da1f2; border-radius: 4px; background: #1da1f2; color: white; font-size: 14px; text-decoration: none; transition: background .2s ease, color .2s ease; } #mainpage .container .bottom .description .login:hover { color: white; background: #1c94df; } #mainpage .container .bottom .column { text-align: center; display: flex; flex-direction: column; align-items: center; } .container .green-card { background: #10893E; padding: 20px 15px; border-radius: 6px; color: white; font-weight: 500; display: inline-block; margin: 20px 0; } .container form { margin: 40px 0; } .container form .input-item { margin: 5px 0; width: 100%; max-width: 300px; } .container form .input-item label { display: block; color: var(--base-text-secondary); font-size: 14px; font-weight: 500; margin-bottom: 3px; } .container form .input-item input, .container form .input-item select, .container form .input-item textarea { background: var(--base-box-bg); color: var(--base-text-primary); border: solid 1px var(--base-border-color); height: 40px; padding: 0 15px; margin-bottom: 10px; width: 100%; border-radius: 4px; } .container form .input-item textarea { padding: 10px 15px; height: auto; min-height: 100px; resize: vertical; } .container form button[type="submit"] { margin-top: 20px; display: inline-flex; align-items: center; padding: 0 15px; background: #00B294; border: solid 1px #00B294; border-radius: 5px; color: white; height: 32px; font-size: 14px; position: relative; cursor: pointer; font-family: inherit; transition: background .2s ease, color .2s ease; } .container form button[type="submit"]:hover { background: var(--base-bg); color: #00B294; transition: background .2s ease; } .spinner { margin: 80px auto 50px; width: 70px; text-align: center; } .spinner>div { width: 18px; height: 18px; background-color: var(--base-text-primary); border-radius: 100%; display: inline-block; -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both; animation: sk-bouncedelay 1.4s infinite ease-in-out both; } .spinner .bounce1 { -webkit-animation-delay: -0.32s; animation-delay: -0.32s; } .spinner .bounce2 { -webkit-animation-delay: -0.16s; animation-delay: -0.16s; } @-webkit-keyframes sk-bouncedelay { 0%, 80%, 100% { -webkit-transform: scale(0) } 40% { -webkit-transform: scale(1.0) } } @keyframes sk-bouncedelay { 0%, 80%, 100% { -webkit-transform: scale(0); transform: scale(0); } 40% { -webkit-transform: scale(1.0); transform: scale(1.0); } } #footer { background: var(--footer-bg); padding: 20px 40px; transition: background .2s ease; } #footer .row { display: flex; flex-wrap: wrap; margin: 0 -5px; padding: 10px; } #footer .row.margin { margin-top: 40px; } #footer .row .column { flex: 1; min-width: 200px; } #footer .row .column .title { position: relative; color: var(--footer-text-primary); font-size: 15px; font-weight: 600; margin-bottom: 10px; padding: 6px 0; transition: color .2s ease; } #footer .row .column .title::before { position: absolute; top: 0; left: -10px; height: 100%; width: 2px; background: var(--base-border-color); content: ''; transition: background .2s ease; } #footer .row .column .item { color: var(--footer-text-secondary); font-size: 13px; font-weight: 500; margin-bottom: 5px; display: block; text-decoration: none; transition: color .2s ease; } #footer .row .column .item i { color: #FF4343; } #footer .row .column.toggle { cursor: pointer; font-size: 13px; color: var(--footer-text-secondary); text-align: center; -webkit-user-select: none; -moz-user-select: none; transition: color .2s ease; } #footer .row .column.toggle span { background: var(--base-bg); padding: 8px 40px; border-radius: 20px; font-weight: 600; transition: background .2s ease; } #footer .row .column.toggle span:hover { color: var(--footer-text-primary); } #footer.mainpage .container { border-top: solid 1px var(--base-border-color); padding-top: 40px; } #footer.mainpage .color-toggle { display: none; } @media (max-width: 900px) { .row:not(.analytics) { flex-direction: column; margin: 0; } .row:not(.analytics).reversed { flex-direction: column-reverse; } #mainpage .container .mainpage-top .image img { max-width: 300px; } } @media (max-width: 700px) { #content .setting .color-theme-items { flex-direction: column; } } @media (max-width: 500px) { #content .page-title { font-size: 22px; } #content { padding: 30px 15px; } #navigation .profile span { display: none; } #navigation .profile { border-radius: 50%; padding: 5px; } .row .column { min-width: 0; margin: 20px 0; } .row .column .user-card .name { font-size: 13px; } .row .column .user-card .datestamp span { font-size: 12px; } .row .column .user-card .datestamp small { font-size: 11px; } #footer .row .column.toggle span { display: inline-block; } }
0.372962
0.041288
html{ font-size: 62.5%; } body{ font-size:1.6rem; font-family: sans-serif; color: white; font-weight: 300; } *{ box-sizing: border-box; margin: 0; padding: 0; } /* Header styles */ /* ======================================= */ header{ display: flex; flex-flow: column nowrap; background: linear-gradient(to bottom right, #26D0CE 0%, #687CEB 100%); color:#ffffff; min-width: 42rem; padding: 0.5rem; border-bottom:#50a3a2 3px solid; align-items: center; } header #branding{ font-weight:bold; padding: 1rem; } header nav ul { margin:0; padding:0; text-align: center; } header nav ul li{ display:inline; padding: 0 1rem 0 1rem ; } header a{ color: #ffffff; text-decoration:none; text-transform: uppercase; } header .current a{ color:#fff; font-weight:bold; font-size: 1.8rem; /* text-decoration: underline; */ /* text-decoration-color: #229c69; */ border-bottom: 4px solid #53e3a6; } header a:hover{ color:#53e3a6; font-weight:bold; } header a:hover{ color:#53e3a6; font-weight:bold; } /* Background animation */ /* ======================================= */ body ::-webkit-input-placeholder { /* WebKit browsers */ font-family: sans-serif; color: white; font-weight: 300; } body :-moz-placeholder { /* Mozilla Firefox 4 to 18 */ font-family: sans-serif; color: white; opacity: 1; font-weight: 300; } body ::-moz-placeholder { /* Mozilla Firefox 19+ */ font-family: sans-serif; color: white; opacity: 1; font-weight: 300; } body :-ms-input-placeholder { /* Internet Explorer 10+ */ font-family: sans-serif; color: white; font-weight: 300; } .animation-wrapper{ background: #50a3a2; background: linear-gradient(to bottom right, #26D0CE 0%,#687CEB 100%); position: absolute; overflow: hidden; margin: auto; width: 100%; height: 120vh; min-width: 42rem; } .epicmails { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; } .epicmails li { position: absolute; list-style: none; display: block; background-color: rgba(255, 255, 255, 0.15); bottom: -80px; -webkit-animation: epicmailanimation 25s infinite; animation: epicmailanimation 25s infinite; transition-timing-function: linear; } .epicmails li:nth-child(1) { left: 10%; width:0px; height:0px; border-top: 40px solid rgba(255, 255, 255, 0.2); border-left: 40px solid rgba(255, 255, 255, 0.1); border-bottom: 20px solid rgba(255, 255, 255, 0.1); border-right: 10px solid rgba(255, 255, 255, 0.1); border-radius: 5%; } .epicmails li:nth-child(2) { left: 20%; width:0px; height:0px; border-top: 40px solid rgba(255, 255, 255, 0.2); border-left: 40px solid rgba(255, 255, 255, 0.1); border-bottom: 20px solid rgba(255, 255, 255, 0.1); border-right: 40px solid rgba(255, 255, 255, 0.1); border-radius: 5%; -webkit-animation-delay: 2s; animation-delay: 2s; -webkit-animation-duration: 17s; animation-duration: 17s; } .epicmails li:nth-child(3) { left: 25%; width:0px; height:0px; border-top: 20px solid rgba(255, 255, 255, 0.2); border-left: 20px solid rgba(255, 255, 255, 0.1); border-bottom: 10px solid rgba(255, 255, 255, 0.1); border-right: 20px solid rgba(255, 255, 255, 0.1); border-radius: 5%; -webkit-animation-delay: 4s; animation-delay: 4s; } .epicmails li:nth-child(4) { left: 40%; width:0px; height:0px; border-top: 30px solid rgba(255, 255, 255, 0.25); border-left: 30px solid rgba(255, 255, 255, 0.15); border-bottom: 15px solid rgba(255, 255, 255, 0.15); border-right: 30px solid rgba(255, 255, 255, 0.15); border-radius: 5%; -webkit-animation-duration: 22s; animation-duration: 22s; background-color: rgba(255, 255, 255, 0.25); } .epicmails li:nth-child(5) { left: 70%; width:0px; height:0px; border-top: 20px solid rgba(255, 255, 255, 0.22); border-left: 20px solid rgba(255, 255, 255, 0.12); border-bottom: 10px solid rgba(255, 255, 255, 0.12); border-right: 20px solid rgba(255, 255, 255, 0.12); border-radius: 5%; } .epicmails li:nth-child(6) { left: 80%; width:0px; height:0px; border-top: 60px solid rgba(255, 255, 255, 0.2); border-left: 60px solid rgba(255, 255, 255, 0.1); border-bottom: 30px solid rgba(255, 255, 255, 0.1); border-right: 60px solid rgba(255, 255, 255, 0.1); border-radius: 5%; -webkit-animation-delay: 2s; animation-delay: 2s; background-color: rgba(255, 255, 255, 0.2); } .epicmails li:nth-child(7) { left: 32%; width:0px; height:0px; border-top: 80px solid rgba(255, 255, 255, 0.2); border-left: 80px solid rgba(255, 255, 255, 0.1); border-bottom: 40px solid rgba(255, 255, 255, 0.1); border-right: 80px solid rgba(255, 255, 255, 0.1); border-radius: 5%; -webkit-animation-delay: 5s; animation-delay: 5s; } .epicmails li:nth-child(8) { left: 55%; width:0px; height:0px; border-top: 10px solid rgba(255, 255, 255, 0.2); border-left: 10px solid rgba(255, 255, 255, 0.1); border-bottom: 5px solid rgba(255, 255, 255, 0.1); border-right: 10px solid rgba(255, 255, 255, 0.1); border-radius: 5%; -webkit-animation-delay: 10s; animation-delay: 10s; -webkit-animation-duration: 40s; animation-duration: 40s; } .epicmails li:nth-child(9) { left: 25%; width:0px; height:0px; border-top: 5px solid rgba(255, 255, 255, 0.4); border-left: 5px solid rgba(255, 255, 255, 0.2); border-bottom: 2.5px solid rgba(255, 255, 255, 0.2); border-right: 5px solid rgba(255, 255, 255, 0.2); border-radius: 5%; -webkit-animation-delay: 2s; animation-delay: 2s; -webkit-animation-duration: 40s; animation-duration: 40s; background-color: rgba(255, 255, 255, 0.3); } .epicmails li:nth-child(10) { left: 90%; width:0px; height:0px; border-top: 80px solid rgba(255, 255, 255, 0.2); border-left: 80px solid rgba(255, 255, 255, 0.1); border-bottom: 40px solid rgba(255, 255, 255, 0.1); border-right: 80px solid rgba(255, 255, 255, 0.1); border-radius: 5%; -webkit-animation-delay: 8s; animation-delay: 8Ss; } @-webkit-keyframes epicmailanimation { 0% { -webkit-transform: translateY(0); transform: translateY(0); } 100% { -webkit-transform: translateY(-1000px) rotate(600deg); transform: translateY(-1000px) rotate(600deg); } } @keyframes epicmailanimation { 0% { -webkit-transform: translateY(0); transform: translateY(0); } 100% { -webkit-transform: translateY(-1000px) rotate(600deg); transform: translateY(-1000px) rotate(600deg); } } /* Signup form */ .form-container { margin: -90px auto 0 auto; max-width: 600px; padding: 150px 0; height: 400px; text-align: center; } .form-container h1 { font-size: 40px; font-weight: 200; } form { padding: 20px 0; position: relative; z-index: 2; } form input { -webkit-appearance: none; -moz-appearance: none; appearance: none; outline: 0; border: none; border-radius: 10px; border-bottom: 1px solid #fff; background: none; width: 250px; padding: 10px 15px; margin: 0 auto 10px auto; display: block; font-size: 18px; color: white; transition-duration: 0.25s; font-weight: 300; } form input:hover { background-color: rgba(255, 255, 255, 0.4); } form input:focus { background-color: white; width: 300px; color: #53e3a6; } form button { -webkit-appearance: none; -moz-appearance: none; appearance: none; outline: 0; margin-top: 10px; background-color: #fff; border: 0; padding: 10px 15px; color: #229c69; border-radius: 10px; width: 250px; cursor: pointer; font-size: 18px; transition-duration: 0.25s; } form button:hover { background:#fff; box-shadow:0px 2px 10px 5px #97B1BF; color:#53e3a6; } form .reset-password a{ text-decoration: none; color: white; font-size: 1.2rem; transition: font-size 0.25s, text-shadow 0.5s; } form .reset-password a:hover{ color: white; font-size: 1.6rem; text-shadow:1px 1px 1px #eee; } form .reset-password{ padding: 1rem; padding-right: 12.5rem; text-align: center; } /* reset password text */ .reset-info{ margin: 2rem 1rem; } /* Dashboard styling */ .dash-menu-overlay{ display: none; height: 100%; width: 100%; position: fixed; z-index: 10; top: 0; left: 0; background-color: rgba(0,0,0,.5); overflow-x: hidden; padding-top: 16px; } .dash-menu{ position: relative; top: 0%; } .dash-margin{ padding: 5rem; } .content{ min-width: 32rem; } .content-menu { background: rgba(255,255,255,0.1); min-width: 32rem; text-align: center; } .content-menu div { display: inline-block; padding: 2rem 0.5rem; } #reload-messages{ font-size: 2rem; color: #fff; font-weight: bold; text-decoration: none; } #hamburger-link { margin-left: auto; font-size: 3rem; color: #fff; padding: 1rem; } .content-messages ul li{ background: rgba(255, 255, 255, 0.924); text-align: left; padding: 0.5rem; border-bottom: 3px solid #eee; list-style-type: none; transition: all 0.15s; margin-bottom: 1rem; } .content-messages ul{ margin-top: 0.5rem; } .content-messages ul li:hover{ /* padding: 10px; */ box-shadow:2px 2px 10px 2px #97B1BF; /* box-shadow: inset 0 -1px 0 0 rgba(100,121,143,0.122); */ background: #53e3a6 } /* menu edit */ .compose{ padding: 2rem; text-align: center; } .compose button{ margin-top: 3rem; outline:0; margin-left: 2.7rem; padding: 2rem 6rem; font-size: 2rem; border-radius: 30%; border: none; box-shadow:0px 2px 3px 1px #97B1BF; background-color: #fff; cursor: pointer; color: #229c69; transition-duration: 0.25s; } .compose button:hover { background:#fff; box-shadow:0px 2px 10px 7px #97B1BF; color:#53e3a6; } .options div{ display: block; background: linear-gradient(to bottom right, #26D0CE 0%, #687CEB 100%); text-align: center; margin: 1rem; padding: 1.5rem; border: 1px solid #26D0CE; } .options a{ text-decoration: none; color: #fff; } .options .current-dash{ background: #fff; color: #229c69; /* box-shadow:0px 2px 10px 1px #fff; */ border: 2px solid #eee; } .options div:hover { background: #fff; color: #53e3a6; box-shadow:1px 2px 10px 2px #97B1BF; } /* Groups page */ .create-group{ background: rgba(255,255,255,0.1); } .create-group form{ display: flex; flex-flow: row wrap; margin: 20px; } .create-group form button{ display: inline-block; margin: 2rem; margin: auto; } .create-group form input{ display: inline-block; margin: 2rem; width: 60%; } /* center align */ .add-user-style{ text-align: center; font-size: 2rem; } .add-user-style h3{ margin: 3rem; } .select-user-checkbox{ display: block; position: relative; cursor: pointer; font-size: 22px; } .select-user-checkbox label{ margin: 3rem 1rem; } .select-style{ margin-left: 10px; margin-bottom: 15px; width: 30%; height:25px; background: none; outline: 0; border: 1px solid #e0e0e0; transition-duration: 0.25s; color: #444; } /* compose modal */ .compose-modal{ font-size: 0.7rem; display: none; width: 100%; height: 100%; position:fixed; bottom:0; right:0; top:0; left:0; margin:0em; color: #fff; background: linear-gradient(to bottom right, #26D0CE 0%, #687CEB 100%); box-shadow:0.1em 0.2em 1em 0.2em #444; z-index: 5; } .compose-modal-header{ display: flex; background: linear-gradient(to bottom right, #26D0CE 0%, #687CEB 100%); padding: 1em; height: 5em; } .compose-modal-header h3{ font-size: 2em; } .modal-close{ font-size: 3em; margin-left: auto; transition: font-size 0.25s; } .modal-close:hover{ font-size: 4em; text-shadow: 0.1em 0.1em 0.1em #000; cursor: pointer; } .compose-modal-body{ padding-left: 1em; } .compose-modal-body input{ display: inline-block; margin: 0.5em; width: 80%; } .compose-modal-body input:focus { width: 90%; } .compose-modal-body textarea{ margin: 2em 0.5em 1em 1em; resize:none; font-size: 1.7em; } .compose-modal-body button{ margin-left: 1em; } #compose-send-button{ background: #fff; } #mobile-cancel-button{ display: block; background: rgba(212, 10, 10, 0.76); } /* compose modal select */ .compose-modal-select{ margin-left: 2em; font-size: 1.6em; } .compose-modal-select select{ margin-left: 1em; margin-bottom: 1.5em; width: 58%; height:2.5em; background: none; outline: 0; border: 0.1em solid #e0e0e0; transition-duration: 0.25s; color: #fff; } .compose-modal-select select option{ color: #444; } /* page state */ .page-state{ font-size: 2rem; color: #fff; font-weight: bold; margin-right: 4rem; } /* NEW VIEW MESSAGES THREAD */ .thread { background-color: #eee; color: #444; cursor: pointer; padding: 18px; width: 100%; border: none; text-align: left; outline: none; font-size: 15px; transition: 0.4s; } .active, .thread:hover { background-color: #ccc; } .panel { background: #fff; } .panel p{ color:black; padding: 4rem; } .panel { padding: 0 18px; display: block; background-color: white; overflow: hidden; } /* retract message */ .retract-message{ color: #444; margin: 0.5rem; } span.retract-message:hover{ color: red; text-shadow: 0.4px 0.4px #fff; cursor: pointer; } .send-draft-message{ color: #444; margin: 0.5rem; color: rgb(3, 80, 3); } span.send-draft-message:hover{ color: green; cursor: pointer; text-shadow: 0.4px 0.4px #fff; } .delete-draft-message{ color: rgb(148, 12, 12); margin: 0.5rem; } span.delete-draft-message:hover{ color: red; text-shadow: 0.4px 0.4px #fff; cursor: pointer; } /* Media queries */ /* ======================================= */ @media screen and (min-width: 768px) { header{ flex-direction: row; align-items: center; } header nav{ margin-left: auto; margin-right: 7rem; } header #branding{ margin-left: 7rem; } .dash-menu-overlay{ display: none; height: 100%; width: 25%; position: fixed; z-index: 1; top: 0; left: 0; background-color: rgba(0,0,0,.5); overflow-x: hidden; padding-top: 16px; } .compose-modal{ font-size: 1rem; width: 60em; height: 64em; bottom:0em; right:5em; top: auto; left: auto; } #mobile-cancel-button{ display: none; } .compose-modal{ font-size: 1rem; width: 60em; height: 64em; position:fixed; bottom:0em; right:5em; margin:0em; color: #fff; background: linear-gradient(to bottom right, #26D0CE 0%, #687CEB 100%); box-shadow:0.1em 0.2em 1em 0.2em #444; } #hide-x-desktop{ display: none; } .content-messages ul{ margin-top: 2rem; } .options div{ background: rgba(255,255,255,0.1); } } /* Javascript added classes for desktop/mobile */ /* Dashboard Grid */ .main{ display: grid; grid-template-columns: [menu] 2fr [content] 8fr; grid-template-rows: [body] auto [footer] 50px; grid-gap: 2rem; margin: 0px 50px; } .menu{ grid-row: body; grid-column: menu; margin-top: -5rem; } .content{ grid-row: body; grid-column: content; } footer{ grid-row: footer; grid-column: menu/content; } /* shift x button */ .shift-top{ margin-left: 40rem; } .x-close{ font-size: 3em; transition: font-size 0.25s; } .x-close:hover{ font-size: 4em; text-shadow: 0.1em 0.1em 0.1em #000; cursor: pointer; } /* index-page css */ .welcome-message div{ background: rgba(255,255,255,0.1); } .welcome-message{ margin-top: 5rem; font-size: 3rem; } /* redesign inbox page */ .show-messages-link{ text-decoration: none; color: black; } .show-messages-link li { position: relative; margin-bottom: 10rem; } .message-from{ position: absolute; margin-left: 2rem; margin-right: auto; overflow: hidden; max-width: 50rem; } .message-from h1{ margin: 1rem; } .message-from p{ margin: 1rem; } .user-img{ width: 9rem; height: 9rem; -webkit-clip-path: circle(50% at 50% 50%); clip-path: circle(50% at 50% 50%); margin: 0.4rem; margin-left: 1.5rem; } .remove-link-style{ text-decoration: none; }
UI/css/style.css
html{ font-size: 62.5%; } body{ font-size:1.6rem; font-family: sans-serif; color: white; font-weight: 300; } *{ box-sizing: border-box; margin: 0; padding: 0; } /* Header styles */ /* ======================================= */ header{ display: flex; flex-flow: column nowrap; background: linear-gradient(to bottom right, #26D0CE 0%, #687CEB 100%); color:#ffffff; min-width: 42rem; padding: 0.5rem; border-bottom:#50a3a2 3px solid; align-items: center; } header #branding{ font-weight:bold; padding: 1rem; } header nav ul { margin:0; padding:0; text-align: center; } header nav ul li{ display:inline; padding: 0 1rem 0 1rem ; } header a{ color: #ffffff; text-decoration:none; text-transform: uppercase; } header .current a{ color:#fff; font-weight:bold; font-size: 1.8rem; /* text-decoration: underline; */ /* text-decoration-color: #229c69; */ border-bottom: 4px solid #53e3a6; } header a:hover{ color:#53e3a6; font-weight:bold; } header a:hover{ color:#53e3a6; font-weight:bold; } /* Background animation */ /* ======================================= */ body ::-webkit-input-placeholder { /* WebKit browsers */ font-family: sans-serif; color: white; font-weight: 300; } body :-moz-placeholder { /* Mozilla Firefox 4 to 18 */ font-family: sans-serif; color: white; opacity: 1; font-weight: 300; } body ::-moz-placeholder { /* Mozilla Firefox 19+ */ font-family: sans-serif; color: white; opacity: 1; font-weight: 300; } body :-ms-input-placeholder { /* Internet Explorer 10+ */ font-family: sans-serif; color: white; font-weight: 300; } .animation-wrapper{ background: #50a3a2; background: linear-gradient(to bottom right, #26D0CE 0%,#687CEB 100%); position: absolute; overflow: hidden; margin: auto; width: 100%; height: 120vh; min-width: 42rem; } .epicmails { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; } .epicmails li { position: absolute; list-style: none; display: block; background-color: rgba(255, 255, 255, 0.15); bottom: -80px; -webkit-animation: epicmailanimation 25s infinite; animation: epicmailanimation 25s infinite; transition-timing-function: linear; } .epicmails li:nth-child(1) { left: 10%; width:0px; height:0px; border-top: 40px solid rgba(255, 255, 255, 0.2); border-left: 40px solid rgba(255, 255, 255, 0.1); border-bottom: 20px solid rgba(255, 255, 255, 0.1); border-right: 10px solid rgba(255, 255, 255, 0.1); border-radius: 5%; } .epicmails li:nth-child(2) { left: 20%; width:0px; height:0px; border-top: 40px solid rgba(255, 255, 255, 0.2); border-left: 40px solid rgba(255, 255, 255, 0.1); border-bottom: 20px solid rgba(255, 255, 255, 0.1); border-right: 40px solid rgba(255, 255, 255, 0.1); border-radius: 5%; -webkit-animation-delay: 2s; animation-delay: 2s; -webkit-animation-duration: 17s; animation-duration: 17s; } .epicmails li:nth-child(3) { left: 25%; width:0px; height:0px; border-top: 20px solid rgba(255, 255, 255, 0.2); border-left: 20px solid rgba(255, 255, 255, 0.1); border-bottom: 10px solid rgba(255, 255, 255, 0.1); border-right: 20px solid rgba(255, 255, 255, 0.1); border-radius: 5%; -webkit-animation-delay: 4s; animation-delay: 4s; } .epicmails li:nth-child(4) { left: 40%; width:0px; height:0px; border-top: 30px solid rgba(255, 255, 255, 0.25); border-left: 30px solid rgba(255, 255, 255, 0.15); border-bottom: 15px solid rgba(255, 255, 255, 0.15); border-right: 30px solid rgba(255, 255, 255, 0.15); border-radius: 5%; -webkit-animation-duration: 22s; animation-duration: 22s; background-color: rgba(255, 255, 255, 0.25); } .epicmails li:nth-child(5) { left: 70%; width:0px; height:0px; border-top: 20px solid rgba(255, 255, 255, 0.22); border-left: 20px solid rgba(255, 255, 255, 0.12); border-bottom: 10px solid rgba(255, 255, 255, 0.12); border-right: 20px solid rgba(255, 255, 255, 0.12); border-radius: 5%; } .epicmails li:nth-child(6) { left: 80%; width:0px; height:0px; border-top: 60px solid rgba(255, 255, 255, 0.2); border-left: 60px solid rgba(255, 255, 255, 0.1); border-bottom: 30px solid rgba(255, 255, 255, 0.1); border-right: 60px solid rgba(255, 255, 255, 0.1); border-radius: 5%; -webkit-animation-delay: 2s; animation-delay: 2s; background-color: rgba(255, 255, 255, 0.2); } .epicmails li:nth-child(7) { left: 32%; width:0px; height:0px; border-top: 80px solid rgba(255, 255, 255, 0.2); border-left: 80px solid rgba(255, 255, 255, 0.1); border-bottom: 40px solid rgba(255, 255, 255, 0.1); border-right: 80px solid rgba(255, 255, 255, 0.1); border-radius: 5%; -webkit-animation-delay: 5s; animation-delay: 5s; } .epicmails li:nth-child(8) { left: 55%; width:0px; height:0px; border-top: 10px solid rgba(255, 255, 255, 0.2); border-left: 10px solid rgba(255, 255, 255, 0.1); border-bottom: 5px solid rgba(255, 255, 255, 0.1); border-right: 10px solid rgba(255, 255, 255, 0.1); border-radius: 5%; -webkit-animation-delay: 10s; animation-delay: 10s; -webkit-animation-duration: 40s; animation-duration: 40s; } .epicmails li:nth-child(9) { left: 25%; width:0px; height:0px; border-top: 5px solid rgba(255, 255, 255, 0.4); border-left: 5px solid rgba(255, 255, 255, 0.2); border-bottom: 2.5px solid rgba(255, 255, 255, 0.2); border-right: 5px solid rgba(255, 255, 255, 0.2); border-radius: 5%; -webkit-animation-delay: 2s; animation-delay: 2s; -webkit-animation-duration: 40s; animation-duration: 40s; background-color: rgba(255, 255, 255, 0.3); } .epicmails li:nth-child(10) { left: 90%; width:0px; height:0px; border-top: 80px solid rgba(255, 255, 255, 0.2); border-left: 80px solid rgba(255, 255, 255, 0.1); border-bottom: 40px solid rgba(255, 255, 255, 0.1); border-right: 80px solid rgba(255, 255, 255, 0.1); border-radius: 5%; -webkit-animation-delay: 8s; animation-delay: 8Ss; } @-webkit-keyframes epicmailanimation { 0% { -webkit-transform: translateY(0); transform: translateY(0); } 100% { -webkit-transform: translateY(-1000px) rotate(600deg); transform: translateY(-1000px) rotate(600deg); } } @keyframes epicmailanimation { 0% { -webkit-transform: translateY(0); transform: translateY(0); } 100% { -webkit-transform: translateY(-1000px) rotate(600deg); transform: translateY(-1000px) rotate(600deg); } } /* Signup form */ .form-container { margin: -90px auto 0 auto; max-width: 600px; padding: 150px 0; height: 400px; text-align: center; } .form-container h1 { font-size: 40px; font-weight: 200; } form { padding: 20px 0; position: relative; z-index: 2; } form input { -webkit-appearance: none; -moz-appearance: none; appearance: none; outline: 0; border: none; border-radius: 10px; border-bottom: 1px solid #fff; background: none; width: 250px; padding: 10px 15px; margin: 0 auto 10px auto; display: block; font-size: 18px; color: white; transition-duration: 0.25s; font-weight: 300; } form input:hover { background-color: rgba(255, 255, 255, 0.4); } form input:focus { background-color: white; width: 300px; color: #53e3a6; } form button { -webkit-appearance: none; -moz-appearance: none; appearance: none; outline: 0; margin-top: 10px; background-color: #fff; border: 0; padding: 10px 15px; color: #229c69; border-radius: 10px; width: 250px; cursor: pointer; font-size: 18px; transition-duration: 0.25s; } form button:hover { background:#fff; box-shadow:0px 2px 10px 5px #97B1BF; color:#53e3a6; } form .reset-password a{ text-decoration: none; color: white; font-size: 1.2rem; transition: font-size 0.25s, text-shadow 0.5s; } form .reset-password a:hover{ color: white; font-size: 1.6rem; text-shadow:1px 1px 1px #eee; } form .reset-password{ padding: 1rem; padding-right: 12.5rem; text-align: center; } /* reset password text */ .reset-info{ margin: 2rem 1rem; } /* Dashboard styling */ .dash-menu-overlay{ display: none; height: 100%; width: 100%; position: fixed; z-index: 10; top: 0; left: 0; background-color: rgba(0,0,0,.5); overflow-x: hidden; padding-top: 16px; } .dash-menu{ position: relative; top: 0%; } .dash-margin{ padding: 5rem; } .content{ min-width: 32rem; } .content-menu { background: rgba(255,255,255,0.1); min-width: 32rem; text-align: center; } .content-menu div { display: inline-block; padding: 2rem 0.5rem; } #reload-messages{ font-size: 2rem; color: #fff; font-weight: bold; text-decoration: none; } #hamburger-link { margin-left: auto; font-size: 3rem; color: #fff; padding: 1rem; } .content-messages ul li{ background: rgba(255, 255, 255, 0.924); text-align: left; padding: 0.5rem; border-bottom: 3px solid #eee; list-style-type: none; transition: all 0.15s; margin-bottom: 1rem; } .content-messages ul{ margin-top: 0.5rem; } .content-messages ul li:hover{ /* padding: 10px; */ box-shadow:2px 2px 10px 2px #97B1BF; /* box-shadow: inset 0 -1px 0 0 rgba(100,121,143,0.122); */ background: #53e3a6 } /* menu edit */ .compose{ padding: 2rem; text-align: center; } .compose button{ margin-top: 3rem; outline:0; margin-left: 2.7rem; padding: 2rem 6rem; font-size: 2rem; border-radius: 30%; border: none; box-shadow:0px 2px 3px 1px #97B1BF; background-color: #fff; cursor: pointer; color: #229c69; transition-duration: 0.25s; } .compose button:hover { background:#fff; box-shadow:0px 2px 10px 7px #97B1BF; color:#53e3a6; } .options div{ display: block; background: linear-gradient(to bottom right, #26D0CE 0%, #687CEB 100%); text-align: center; margin: 1rem; padding: 1.5rem; border: 1px solid #26D0CE; } .options a{ text-decoration: none; color: #fff; } .options .current-dash{ background: #fff; color: #229c69; /* box-shadow:0px 2px 10px 1px #fff; */ border: 2px solid #eee; } .options div:hover { background: #fff; color: #53e3a6; box-shadow:1px 2px 10px 2px #97B1BF; } /* Groups page */ .create-group{ background: rgba(255,255,255,0.1); } .create-group form{ display: flex; flex-flow: row wrap; margin: 20px; } .create-group form button{ display: inline-block; margin: 2rem; margin: auto; } .create-group form input{ display: inline-block; margin: 2rem; width: 60%; } /* center align */ .add-user-style{ text-align: center; font-size: 2rem; } .add-user-style h3{ margin: 3rem; } .select-user-checkbox{ display: block; position: relative; cursor: pointer; font-size: 22px; } .select-user-checkbox label{ margin: 3rem 1rem; } .select-style{ margin-left: 10px; margin-bottom: 15px; width: 30%; height:25px; background: none; outline: 0; border: 1px solid #e0e0e0; transition-duration: 0.25s; color: #444; } /* compose modal */ .compose-modal{ font-size: 0.7rem; display: none; width: 100%; height: 100%; position:fixed; bottom:0; right:0; top:0; left:0; margin:0em; color: #fff; background: linear-gradient(to bottom right, #26D0CE 0%, #687CEB 100%); box-shadow:0.1em 0.2em 1em 0.2em #444; z-index: 5; } .compose-modal-header{ display: flex; background: linear-gradient(to bottom right, #26D0CE 0%, #687CEB 100%); padding: 1em; height: 5em; } .compose-modal-header h3{ font-size: 2em; } .modal-close{ font-size: 3em; margin-left: auto; transition: font-size 0.25s; } .modal-close:hover{ font-size: 4em; text-shadow: 0.1em 0.1em 0.1em #000; cursor: pointer; } .compose-modal-body{ padding-left: 1em; } .compose-modal-body input{ display: inline-block; margin: 0.5em; width: 80%; } .compose-modal-body input:focus { width: 90%; } .compose-modal-body textarea{ margin: 2em 0.5em 1em 1em; resize:none; font-size: 1.7em; } .compose-modal-body button{ margin-left: 1em; } #compose-send-button{ background: #fff; } #mobile-cancel-button{ display: block; background: rgba(212, 10, 10, 0.76); } /* compose modal select */ .compose-modal-select{ margin-left: 2em; font-size: 1.6em; } .compose-modal-select select{ margin-left: 1em; margin-bottom: 1.5em; width: 58%; height:2.5em; background: none; outline: 0; border: 0.1em solid #e0e0e0; transition-duration: 0.25s; color: #fff; } .compose-modal-select select option{ color: #444; } /* page state */ .page-state{ font-size: 2rem; color: #fff; font-weight: bold; margin-right: 4rem; } /* NEW VIEW MESSAGES THREAD */ .thread { background-color: #eee; color: #444; cursor: pointer; padding: 18px; width: 100%; border: none; text-align: left; outline: none; font-size: 15px; transition: 0.4s; } .active, .thread:hover { background-color: #ccc; } .panel { background: #fff; } .panel p{ color:black; padding: 4rem; } .panel { padding: 0 18px; display: block; background-color: white; overflow: hidden; } /* retract message */ .retract-message{ color: #444; margin: 0.5rem; } span.retract-message:hover{ color: red; text-shadow: 0.4px 0.4px #fff; cursor: pointer; } .send-draft-message{ color: #444; margin: 0.5rem; color: rgb(3, 80, 3); } span.send-draft-message:hover{ color: green; cursor: pointer; text-shadow: 0.4px 0.4px #fff; } .delete-draft-message{ color: rgb(148, 12, 12); margin: 0.5rem; } span.delete-draft-message:hover{ color: red; text-shadow: 0.4px 0.4px #fff; cursor: pointer; } /* Media queries */ /* ======================================= */ @media screen and (min-width: 768px) { header{ flex-direction: row; align-items: center; } header nav{ margin-left: auto; margin-right: 7rem; } header #branding{ margin-left: 7rem; } .dash-menu-overlay{ display: none; height: 100%; width: 25%; position: fixed; z-index: 1; top: 0; left: 0; background-color: rgba(0,0,0,.5); overflow-x: hidden; padding-top: 16px; } .compose-modal{ font-size: 1rem; width: 60em; height: 64em; bottom:0em; right:5em; top: auto; left: auto; } #mobile-cancel-button{ display: none; } .compose-modal{ font-size: 1rem; width: 60em; height: 64em; position:fixed; bottom:0em; right:5em; margin:0em; color: #fff; background: linear-gradient(to bottom right, #26D0CE 0%, #687CEB 100%); box-shadow:0.1em 0.2em 1em 0.2em #444; } #hide-x-desktop{ display: none; } .content-messages ul{ margin-top: 2rem; } .options div{ background: rgba(255,255,255,0.1); } } /* Javascript added classes for desktop/mobile */ /* Dashboard Grid */ .main{ display: grid; grid-template-columns: [menu] 2fr [content] 8fr; grid-template-rows: [body] auto [footer] 50px; grid-gap: 2rem; margin: 0px 50px; } .menu{ grid-row: body; grid-column: menu; margin-top: -5rem; } .content{ grid-row: body; grid-column: content; } footer{ grid-row: footer; grid-column: menu/content; } /* shift x button */ .shift-top{ margin-left: 40rem; } .x-close{ font-size: 3em; transition: font-size 0.25s; } .x-close:hover{ font-size: 4em; text-shadow: 0.1em 0.1em 0.1em #000; cursor: pointer; } /* index-page css */ .welcome-message div{ background: rgba(255,255,255,0.1); } .welcome-message{ margin-top: 5rem; font-size: 3rem; } /* redesign inbox page */ .show-messages-link{ text-decoration: none; color: black; } .show-messages-link li { position: relative; margin-bottom: 10rem; } .message-from{ position: absolute; margin-left: 2rem; margin-right: auto; overflow: hidden; max-width: 50rem; } .message-from h1{ margin: 1rem; } .message-from p{ margin: 1rem; } .user-img{ width: 9rem; height: 9rem; -webkit-clip-path: circle(50% at 50% 50%); clip-path: circle(50% at 50% 50%); margin: 0.4rem; margin-left: 1.5rem; } .remove-link-style{ text-decoration: none; }
0.315103
0.043548
body { background: #bbb; } .window-2-640-476 { background-color: transparent; background-image: url('../images/userinterface/Window_2_640_476.png'); } .InputText { width: 100%; height: 94px; background-color: transparent; background-image: url('../images/userinterface/Input.png'); background-size: 100% 100%; background-repeat: no-repeat; padding: 30px 10%; } .InputText > input { background: transparent; font-size: 18px; width: 100%; outline: none; border: none; } .DialogBox { position: relative; box-sizing: border-box; width: 640px; height: 476px; padding: 30px 50px; color: DeepSkyBlue ; text-shadow: 1px 1px black; background-size: 100% 100%; } .DialogBox-header { position: absolute; width: 50%; left: 25%; text-align: center; top: -20px; color: gold; text-shadow: 1px 1px 1px black; background: -webkit-linear-gradient(top, transparent 30%, rgba(0,0,7,0.5) 59%, transparent 90%); } .inventoryitem { position: relative; } .inventoryitem > .badge { position: absolute; right: -5px; bottom: -5px; } /* Sprite Sheet Inventory */ .aambeeld, .appelboomzaad, .appelcider, .bijbel, .bijenwas, .blaasbalg, .boek, .bot, .brood, .diamanten, .druiven, .goud, .hooi, .hout, .houtskool, .ijzer, .klei, .kruiden, .metselstenen, .planken, .spijkers, .steen, .touw{ display: inline-block; background: url(../images/inventory/sprites.png) no-repeat; } .aambeeld{ background-position: -1px 0; width: 48px; height: 48px; } .appelboomzaad{ background-position: -51px 0; width: 48px; height: 48px; } .appelcider{ background-position: -100px 0; width: 48px; height: 48px; } .bijbel{ background-position: -151px 0; width: 48px; height: 48px; } .bijenwas{ background-position: -201px 0; width: 48px; height: 48px; } .blaasbalg{ background-position: -250px 0; width: 48px; height: 48px; } .boek{ background-position: -300px 0; width: 48px; height: 48px; } .bot{ background-position: -351px 0; width: 48px; height: 48px; } .brood{ background-position: -400px 0; width: 48px; height: 48px; } .diamanten{ background-position: -451px -1px ; width: 48px; height: 48px; } .druiven{ background-position: -499px 0; width: 48px; height: 48px; } .goud{ background-position: -549px -1px ; width: 48px; height: 48px; } .hooi{ background-position: -1px -49px ; width: 48px; height: 48px; } .hout{ background-position: -50px -50px ; width: 48px; height: 48px; } .houtskool{ background-position: -101px -50px ; width: 48px; height: 48px; } .ijzer{ background-position: -149px -48px ; width: 48px; height: 48px; } .klei{ background-position: -200px -50px ; width: 48px; height: 48px; } .kruiden{ background-position: -251px -50px ; width: 48px; height: 48px; } .metselstenen{ background-position: -301px -51px ; width: 48px; height: 48px; } .planken{ background-position: -350px -48px ; width: 48px; height: 48px; } .spijkers{ background-position: -399px -49px ; width: 48px; height: 48px; } .steen{ background-position: -451px -49px ; width: 48px; height: 48px; } .touw{ background-position: -501px -51px ; width: 48px; height: 48px; }
public_html/css/darkage.css
body { background: #bbb; } .window-2-640-476 { background-color: transparent; background-image: url('../images/userinterface/Window_2_640_476.png'); } .InputText { width: 100%; height: 94px; background-color: transparent; background-image: url('../images/userinterface/Input.png'); background-size: 100% 100%; background-repeat: no-repeat; padding: 30px 10%; } .InputText > input { background: transparent; font-size: 18px; width: 100%; outline: none; border: none; } .DialogBox { position: relative; box-sizing: border-box; width: 640px; height: 476px; padding: 30px 50px; color: DeepSkyBlue ; text-shadow: 1px 1px black; background-size: 100% 100%; } .DialogBox-header { position: absolute; width: 50%; left: 25%; text-align: center; top: -20px; color: gold; text-shadow: 1px 1px 1px black; background: -webkit-linear-gradient(top, transparent 30%, rgba(0,0,7,0.5) 59%, transparent 90%); } .inventoryitem { position: relative; } .inventoryitem > .badge { position: absolute; right: -5px; bottom: -5px; } /* Sprite Sheet Inventory */ .aambeeld, .appelboomzaad, .appelcider, .bijbel, .bijenwas, .blaasbalg, .boek, .bot, .brood, .diamanten, .druiven, .goud, .hooi, .hout, .houtskool, .ijzer, .klei, .kruiden, .metselstenen, .planken, .spijkers, .steen, .touw{ display: inline-block; background: url(../images/inventory/sprites.png) no-repeat; } .aambeeld{ background-position: -1px 0; width: 48px; height: 48px; } .appelboomzaad{ background-position: -51px 0; width: 48px; height: 48px; } .appelcider{ background-position: -100px 0; width: 48px; height: 48px; } .bijbel{ background-position: -151px 0; width: 48px; height: 48px; } .bijenwas{ background-position: -201px 0; width: 48px; height: 48px; } .blaasbalg{ background-position: -250px 0; width: 48px; height: 48px; } .boek{ background-position: -300px 0; width: 48px; height: 48px; } .bot{ background-position: -351px 0; width: 48px; height: 48px; } .brood{ background-position: -400px 0; width: 48px; height: 48px; } .diamanten{ background-position: -451px -1px ; width: 48px; height: 48px; } .druiven{ background-position: -499px 0; width: 48px; height: 48px; } .goud{ background-position: -549px -1px ; width: 48px; height: 48px; } .hooi{ background-position: -1px -49px ; width: 48px; height: 48px; } .hout{ background-position: -50px -50px ; width: 48px; height: 48px; } .houtskool{ background-position: -101px -50px ; width: 48px; height: 48px; } .ijzer{ background-position: -149px -48px ; width: 48px; height: 48px; } .klei{ background-position: -200px -50px ; width: 48px; height: 48px; } .kruiden{ background-position: -251px -50px ; width: 48px; height: 48px; } .metselstenen{ background-position: -301px -51px ; width: 48px; height: 48px; } .planken{ background-position: -350px -48px ; width: 48px; height: 48px; } .spijkers{ background-position: -399px -49px ; width: 48px; height: 48px; } .steen{ background-position: -451px -49px ; width: 48px; height: 48px; } .touw{ background-position: -501px -51px ; width: 48px; height: 48px; }
0.310276
0.062588
svg text { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } svg text::selection { background: none; } .switch { position: relative; display: inline-block; width: 60px; height: 34px; } .switch input { opacity: 0; width: 0; height: 0; } .slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; -webkit-transition: .4s; transition: .4s; } .slider:before { position: absolute; content: ""; height: 26px; width: 26px; left: 4px; bottom: 4px; background-color: white; -webkit-transition: .4s; transition: .4s; } .slider.round { border-radius: 34px; } .slider.round:before { border-radius: 50%; } input:checked + .slider { background-color: #2196F3; } input:focus + .slider { box-shadow: 0 0 1px #2196F3; } input:checked + .slider:before { -webkit-transform: translateX(26px); -ms-transform: translateX(26px); transform: translateX(26px); } .mini-switch { position: relative; display: inline-block; width: 47px; height: 20px; } .mini-switch input { opacity: 0; width: 0; height: 0; } .mini-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; -webkit-transition: .4s; transition: .4s; } .mini-slider:before { position: absolute; content: ""; height: 13px; width: 13px; left: 4px; bottom: 4px; background-color: white; -webkit-transition: .4s; transition: .4s; } table { margin: 25px auto; border-collapse: collapse; border: 1px solid #eee; border-bottom: 2px solid #555555; box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.10), 0px 10px 20px rgba(0, 0, 0, 0.05), 0px 20px 20px rgba(0, 0, 0, 0.05), 0px 30px 20px rgba(0, 0, 0, 0.05); } table tr:hover { background: #f4f4f4; } table tr:hover td { color: #555; } table th, table td { color: #999; border: 1px solid #eee; padding: 12px 35px; border-collapse: collapse; } table th { background: #555555; color: #fff; text-transform: uppercase; font-size: 12px; } table th.last { border-right: none; } .mini-slider.round { border-radius: 34px; } .mini-slider.round:before { border-radius: 50%; } input:checked + .mini-slider { background-color: #2196F3; } input:focus + .mini-slider { box-shadow: 0 0 1px #2196F3; } input:checked + .mini-slider:before { -webkit-transform: translateX(26px); -ms-transform: translateX(26px); transform: translateX(26px); }
iris_validation/interface/template/css/compat.css
svg text { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } svg text::selection { background: none; } .switch { position: relative; display: inline-block; width: 60px; height: 34px; } .switch input { opacity: 0; width: 0; height: 0; } .slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; -webkit-transition: .4s; transition: .4s; } .slider:before { position: absolute; content: ""; height: 26px; width: 26px; left: 4px; bottom: 4px; background-color: white; -webkit-transition: .4s; transition: .4s; } .slider.round { border-radius: 34px; } .slider.round:before { border-radius: 50%; } input:checked + .slider { background-color: #2196F3; } input:focus + .slider { box-shadow: 0 0 1px #2196F3; } input:checked + .slider:before { -webkit-transform: translateX(26px); -ms-transform: translateX(26px); transform: translateX(26px); } .mini-switch { position: relative; display: inline-block; width: 47px; height: 20px; } .mini-switch input { opacity: 0; width: 0; height: 0; } .mini-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; -webkit-transition: .4s; transition: .4s; } .mini-slider:before { position: absolute; content: ""; height: 13px; width: 13px; left: 4px; bottom: 4px; background-color: white; -webkit-transition: .4s; transition: .4s; } table { margin: 25px auto; border-collapse: collapse; border: 1px solid #eee; border-bottom: 2px solid #555555; box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.10), 0px 10px 20px rgba(0, 0, 0, 0.05), 0px 20px 20px rgba(0, 0, 0, 0.05), 0px 30px 20px rgba(0, 0, 0, 0.05); } table tr:hover { background: #f4f4f4; } table tr:hover td { color: #555; } table th, table td { color: #999; border: 1px solid #eee; padding: 12px 35px; border-collapse: collapse; } table th { background: #555555; color: #fff; text-transform: uppercase; font-size: 12px; } table th.last { border-right: none; } .mini-slider.round { border-radius: 34px; } .mini-slider.round:before { border-radius: 50%; } input:checked + .mini-slider { background-color: #2196F3; } input:focus + .mini-slider { box-shadow: 0 0 1px #2196F3; } input:checked + .mini-slider:before { -webkit-transform: translateX(26px); -ms-transform: translateX(26px); transform: translateX(26px); }
0.395134
0.075075
body { margin: 0; font-family: 'Lato'; background: cadetblue; } p{ font-family: 'Catamaran'; } .item1 { grid-area: header; } .item3 { grid-area: main; } .item4 { grid-area: right; } .item5 { grid-area: footer; background: black; } .search > h5 { font-family: "Calibri Light"; color: white; } .active-link{ color: grey; } .content-home{ display: flex; justify-content: space-around; flex-direction: row; align-items: center; flex-wrap: wrap; } .adjusting{ padding-top: 60px; padding-bottom: 0; border-bottom-width: 1px; } .content-home > a > img { width: 120px; height: 171px; border: 1px black; background: black; padding: 3px; margin: 0 10% 10px; z-index: 1; } .content-home > a > img:hover { background: #ff0c00; } .recommend{ width: 290px; height: 450px; border: 1px black; } .headerpost{ font-family: "Calibri Light"; font-weight: bold; color: white; } .datatext{ font-size: 12px; margin-left: 60px; margin-right: 60px; text-align: justify; } .itemview { border: 1px black; } .grid-container { display: grid; grid-template-areas: 'header header header header header header' 'main main main main right right' 'footer footer footer footer footer footer'; } .grid-container > div { text-align: center; font-size: 30px; } ul { display: flex; margin: 0; } li { padding: 0 2rem; font-size: 18px; } .header { background-color: black; box-shadow: 1px 6px 6px 0 rgba(0,0,0,.1); position: fixed; width: 100%; z-index: 3; } .menu > li > a{ color: white; } .menu > li >a:hover{ color: grey; } .header ul { margin: 0; padding: 0; list-style: none; overflow: hidden; background-color: black; } .header li a { display: block; padding: 20px 20px; text-decoration: none; } .header li a:hover, .header .menu-btn:hover { background-color: rgba(0, 0, 0, 0.65); } .header .logo { display: block; float: left; font-size: 1em; padding: 10px 20px; text-decoration: none; color: white; } /* menu */ .header .menu { clear: both; max-height: 0; transition: max-height .2s ease-out; display: block; } /* menu icon */ .header .menu-icon { cursor: pointer; display: inline-block; float: right; padding: 28px 20px; position: relative; user-select: none; } .header .menu-icon .navicon { background: #333; display: block; height: 2px; position: relative; transition: background .2s ease-out; width: 18px; } .header .menu-icon .navicon:before, .header .menu-icon .navicon:after { background: #333; content: ''; display: block; height: 100%; position: absolute; transition: all .2s ease-out; width: 100%; } .header .menu-icon .navicon:before { top: 5px; } .header .menu-icon .navicon:after { top: -5px; } /* menu btn */ .header .menu-btn { display: none; } .header .menu-btn:checked ~ .menu { max-height: 240px; } .header .menu-btn:checked ~ .menu-icon .navicon { background: transparent; } .header .menu-btn:checked ~ .menu-icon .navicon:before { transform: rotate(-45deg); } .header .menu-btn:checked ~ .menu-icon .navicon:after { transform: rotate(45deg); } .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before, .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after { top: 0; } .grid-container > .main { padding: 6rem 0; } .text-white{ color: white; font-size: 15px; } @media (min-width: 48em) { .header li { float: left; } .header li a { padding: 20px 30px; } .header .menu { clear: none; float: right; max-height: none; } .header .menu-icon { display: none; } } @media only screen and (max-width: 575.98px) { .grid-container { grid-template-areas: 'header header header header header header' 'main main main main main main' 'right right right right right right' 'footer footer footer footer footer footer'; } }
css/styles.css
body { margin: 0; font-family: 'Lato'; background: cadetblue; } p{ font-family: 'Catamaran'; } .item1 { grid-area: header; } .item3 { grid-area: main; } .item4 { grid-area: right; } .item5 { grid-area: footer; background: black; } .search > h5 { font-family: "Calibri Light"; color: white; } .active-link{ color: grey; } .content-home{ display: flex; justify-content: space-around; flex-direction: row; align-items: center; flex-wrap: wrap; } .adjusting{ padding-top: 60px; padding-bottom: 0; border-bottom-width: 1px; } .content-home > a > img { width: 120px; height: 171px; border: 1px black; background: black; padding: 3px; margin: 0 10% 10px; z-index: 1; } .content-home > a > img:hover { background: #ff0c00; } .recommend{ width: 290px; height: 450px; border: 1px black; } .headerpost{ font-family: "Calibri Light"; font-weight: bold; color: white; } .datatext{ font-size: 12px; margin-left: 60px; margin-right: 60px; text-align: justify; } .itemview { border: 1px black; } .grid-container { display: grid; grid-template-areas: 'header header header header header header' 'main main main main right right' 'footer footer footer footer footer footer'; } .grid-container > div { text-align: center; font-size: 30px; } ul { display: flex; margin: 0; } li { padding: 0 2rem; font-size: 18px; } .header { background-color: black; box-shadow: 1px 6px 6px 0 rgba(0,0,0,.1); position: fixed; width: 100%; z-index: 3; } .menu > li > a{ color: white; } .menu > li >a:hover{ color: grey; } .header ul { margin: 0; padding: 0; list-style: none; overflow: hidden; background-color: black; } .header li a { display: block; padding: 20px 20px; text-decoration: none; } .header li a:hover, .header .menu-btn:hover { background-color: rgba(0, 0, 0, 0.65); } .header .logo { display: block; float: left; font-size: 1em; padding: 10px 20px; text-decoration: none; color: white; } /* menu */ .header .menu { clear: both; max-height: 0; transition: max-height .2s ease-out; display: block; } /* menu icon */ .header .menu-icon { cursor: pointer; display: inline-block; float: right; padding: 28px 20px; position: relative; user-select: none; } .header .menu-icon .navicon { background: #333; display: block; height: 2px; position: relative; transition: background .2s ease-out; width: 18px; } .header .menu-icon .navicon:before, .header .menu-icon .navicon:after { background: #333; content: ''; display: block; height: 100%; position: absolute; transition: all .2s ease-out; width: 100%; } .header .menu-icon .navicon:before { top: 5px; } .header .menu-icon .navicon:after { top: -5px; } /* menu btn */ .header .menu-btn { display: none; } .header .menu-btn:checked ~ .menu { max-height: 240px; } .header .menu-btn:checked ~ .menu-icon .navicon { background: transparent; } .header .menu-btn:checked ~ .menu-icon .navicon:before { transform: rotate(-45deg); } .header .menu-btn:checked ~ .menu-icon .navicon:after { transform: rotate(45deg); } .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before, .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after { top: 0; } .grid-container > .main { padding: 6rem 0; } .text-white{ color: white; font-size: 15px; } @media (min-width: 48em) { .header li { float: left; } .header li a { padding: 20px 30px; } .header .menu { clear: none; float: right; max-height: none; } .header .menu-icon { display: none; } } @media only screen and (max-width: 575.98px) { .grid-container { grid-template-areas: 'header header header header header header' 'main main main main main main' 'right right right right right right' 'footer footer footer footer footer footer'; } }
0.537041
0.149811
@font-face { font-family: 'Lato'; src: url('../fonts/lato/lato-black.eot'); src: url('../fonts/lato/lato-black.eot?#iefix') format('embedded-opentype'), url('../fonts/lato/lato-black.woff') format('woff'), url('../fonts/lato/lato-black.ttf') format('truetype'), url('../fonts/lato/lato-black.svg#latoblack') format('svg'); font-weight: 900; font-style: normal; } @font-face { font-family: 'Lato'; src: url('../fonts/lato/lato-bold.eot'); src: url('../fonts/lato/lato-bold.eot?#iefix') format('embedded-opentype'), url('../fonts/lato/lato-bold.woff') format('woff'), url('../fonts/lato/lato-bold.ttf') format('truetype'), url('../fonts/lato/lato-bold.svg#latobold') format('svg'); font-weight: bold; font-style: normal; } @font-face { font-family: 'Lato'; src: url('../fonts/lato/lato-bolditalic.eot'); src: url('../fonts/lato/lato-bolditalic.eot?#iefix') format('embedded-opentype'), url('../fonts/lato/lato-bolditalic.woff') format('woff'), url('../fonts/lato/lato-bolditalic.ttf') format('truetype'), url('../fonts/lato/lato-bolditalic.svg#latobold-italic') format('svg'); font-weight: bold; font-style: italic; } @font-face { font-family: 'Lato'; src: url('../fonts/lato/lato-italic.eot'); src: url('../fonts/lato/lato-italic.eot?#iefix') format('embedded-opentype'), url('../fonts/lato/lato-italic.woff') format('woff'), url('../fonts/lato/lato-italic.ttf') format('truetype'), url('../fonts/lato/lato-italic.svg#latoitalic') format('svg'); font-weight: normal; font-style: italic; } @font-face { font-family: 'Lato'; src: url('../fonts/lato/lato-light.eot'); src: url('../fonts/lato/lato-light.eot?#iefix') format('embedded-opentype'), url('../fonts/lato/lato-light.woff') format('woff'), url('../fonts/lato/lato-light.ttf') format('truetype'), url('../fonts/lato/lato-light.svg#latolight') format('svg'); font-weight: 300; font-style: normal; } @font-face { font-family: 'Lato'; src: url('../fonts/lato/lato-regular.eot'); src: url('../fonts/lato/lato-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/lato/lato-regular.woff') format('woff'), url('../fonts/lato/lato-regular.ttf') format('truetype'), url('../fonts/lato/lato-regular.svg#latoregular') format('svg'); font-weight: normal; font-style: normal; } @font-face { font-family: "Flat-UI-Icons"; src: url('../fonts/flat-ui-icons-regular.eot'); src: url('../fonts/flat-ui-icons-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/flat-ui-icons-regular.woff') format('woff'), url('../fonts/flat-ui-icons-regular.ttf') format('truetype'), url('../fonts/flat-ui-icons-regular.svg#flat-ui-icons-regular') format('svg'); font-weight: normal; font-style: normal; } body, html { height: 100%; width: 100%; overflow-x: hidden; } ::-moz-selection { background: #1abc9c; color: white } ::selection { background: #1abc9c; color: white } #preloader { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background-color: #fff; /* change if the mask should have another color then white */ z-index: 99; /* makes sure it stays on top */ } #status { width: 200px; height: 200px; position: absolute; left: 50%; /* centers the loading animation horizontally one the screen */ top: 50%; /* centers the loading animation vertically one the screen */ background-image: url(../img/ajax-loader.gif); /* path to your loading animation */ background-repeat: no-repeat; background-position: center; margin: -100px 0 0 -100px; /* is width and height divided by two */ } /* Button */ .mybutton_standard { border: 1px solid #fff; color: #fff; } .mybutton_cyano { border: 1px solid #4A90BE; color: #fff; background-color: #4A90BE; } .mybutton_cyano:hover { border: 1px solid #4A90BE; color: #4A90BE !important; background: rgba(204, 204, 204, 0); } .button_down img { width: 50px; } .btn-primary { border-color: rgba(52, 73, 94, 0); } .social { font-size: 2em; text-decoration: none; list-style-type: none; color: #1abc9c; } .social > a:hover { color: #1abc9c; } .box-icon { height: 150px; width: 150px; -moz-border-radius: 35px; border-radius: 100%; padding: 47px 10px; background-color: #f0f1ec; color: #034b81; text-align: center; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; transition: all 0.3s; margin-right: 15px; } /* Nav */ .navbar { position: relative; min-height: 60px; margin-bottom: 0; width: 100%; z-index: 999; border-radius: 0; } .navbar-default { position: relative; min-height: 60px; width: 100%; z-index: 999; } .navbar-default .navbar-nav > li > a { color: #ffffff; } .navbar-default .navbar-nav > li > a:hover { color: #ECEBEB; } .navbar-default .navbar-brand { color: #ffffff; } .navbar-default .navbar-brand:hover { color: #ECEBEB; } .intro-header { height: 100%; /* Full PAge */ padding-top: 50px; /* If you're making other pages, make sure there is 50px of padding to make sure the navbar doesn't overlap content! */ padding-bottom: 50px; color: #f8f8f8; background-color: #172c40; background-image: url(../img/intro.png); background-repeat: no-repeat; background-position: center center; background-size: cover; text-align: center; } .network-name { font-weight: 400; letter-spacing: 1.5px; } .content-section-a { background-color: #f8f8f8; padding: 90px 0; } .content-section-b { border-top: 1px solid #e7e7e7; border-bottom: 1px solid #e7e7e7; padding: 90px 0; } .content-section-c { border-top: 1px solid #32465A; border-bottom: 1px solid #32465A; background-color: #34495e; padding: 90px 0; } .section-heading { margin-bottom: 30px; } /* Animate */ .rotate { -webkit-transition-duration: 0.8s; -moz-transition-duration: 0.8s; -o-transition-duration: 0.8s; transition-duration: 0.8s; -webkit-transition-property: -webkit-transform; -moz-transition-property: -moz-transform; -o-transition-property: -o-transform; transition-property: transform; overflow: hidden; } .rotate:hover { -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -o-transform: rotate(360deg); } footer { background-color: #f8f8f8; } @media (max-width: 767px) { ul.intro-social-buttons > li { margin: 3px; padding: 0; } ul.intro-social-buttons > li:last-child { margin-bottom: 0; } } body { height: 100%; width: 100%; font-family: "Lato", Helvetica, Arial, sans-serif; line-height: 1.5; color: #34495e; background-color: #ffffff; } a { color: #34495e; text-decoration: none; -webkit-transition: 0.25s; transition: 0.25s; } a:hover, a:focus { color: #34495e; text-decoration: none; } a:focus { outline: none; } .img-rounded { border-radius: 6px; } h1, h2, h3, h4 { font-family: inherit; font-weight: 700; line-height: 1.1; color: inherit; } h1, h2, h3, h4 { margin-top: 16px; margin-bottom: 12px; } h1 { font-size: 6em; } .intro-header h1 { font-family: arvo; font-weight: 300; letter-spacing: 6px; } h2 { font-size: 5em; } h3 { font-size: 2.5em; } h4 { font-size: 2em; } .intro-header h3 { font-weight: 300; } p { line-height: 1.5; margin: 0 0 15px; } .lead { margin-top: 10px; margin-bottom: 10px; font-size: 1.4em; font-weight: 400; } ul.lead { font-size: 1.2em; font-weight: normal; } .intro-header .lead { font-weight: normal; } .tworow { margin-top: 90px; } .competence-item { padding: 20px 5px; } .navbar-brand { font-size: 2em; font-weight: 300; font-family: arvo; letter-spacing: 3px; } .a-propos { font-size: 1.4em; } /* Tablet */ @media only screen and (min-width: 768px) and (max-width: 991px) { h1 { font-size: 5em; } h2 { font-size: 4em; } h3 { font-size: 3em; } h4 { font-size: 2em; } h1, h2, h3, h4 { margin-top: 14px; margin-bottom: 10px; } .a-propos { font-size: 1.4em; } .lead { margin-top: 6px; margin-bottom: 6px; font-size: 1.4em; font-weight: 300; } .tworow { margin-top: 40px; } } /* All Mobile Sizes (devices and browser) */ @media only screen and (max-width: 767px) { h1 { font-size: 4em; } .intro-header { background-image: none; } .intro-header h1 { font-size: 3em; font-family: arvo; font-weight: 300; letter-spacing: normal; } h2 { font-size: 3em; } h3 { font-size: 2em; } h4 { font-size: 1.6em; } h1, h2, h3, h4 { margin-top: 12px; margin-bottom: 8px; } .a-propos { font-size: 1.2em; } .lead { margin-top: 4px; margin-bottom: 4px; font-size: 1.2em; font-weight: 300; } .tworow { margin-top: 20px; } .navbar-brand { letter-spacing: 2px; } } @media only screen and (max-height: 800px) and (min-width: 768px) { .intro-skills-button { display: none; } } @media only screen and (max-height: 710px) and (min-width: 768px) { .intro-social-buttons { display: none; } } @media only screen and (max-height: 640px) and (min-width: 768px) { .intro-header .lead { display: none; } } @media only screen and (max-height: 540px) and (min-width: 768px) { .button_down { display: none; } } @media only screen and (max-height: 760px) and (max-width: 768px) { .intro-skills-button { display: none; } } @media only screen and (max-height: 680px) and (max-width: 768px) { .intro-social-buttons { display: none; } } @media only screen and (max-height: 480px) and (max-width: 768px) { .intro-header .lead { display: none; } } @media only screen and (max-height: 438px) and (max-width: 768px) { .button_down { display: none; } } .white { color: white; } @media (min-width: 768px) { } ul { margin-bottom: 15px; } blockquote { border-left: 3px solid #e7e9ec; padding: 0 0 0 16px; margin: 0 0 30px; } address { margin-bottom: 30px; line-height: 1.72222; } .btn { font-weight: normal; line-height: 1.4; border-radius: 4px; padding: 10px 15px; -webkit-font-smoothing: subpixel-antialiased; -webkit-transition: border .25s linear, color .25s linear, background-color .25s linear; transition: border .25s linear, color .25s linear, background-color .25s linear; } .btn:hover, .btn:focus { outline: none; color: #ffffff; } .btn:active { outline: none; -webkit-box-shadow: none; box-shadow: none; } .btn-primary { color: #ffffff; background-color: #1abc9c; } .btn-primary:hover, .btn-primary:focus, .btn-primary:active { color: #ffffff; background-color: #48c9b0; border-color: #48c9b0; } .btn-primary:active { background: #16a085; border-color: #16a085; } .btn-embossed { -webkit-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15); box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15); } .btn-embossed:active { -webkit-box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.15); box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.15); } .btn-lg { padding: 10px 19px; line-height: 1.471; border-radius: 6px; } textarea { line-height: 24px; padding: 5px 11px; } label { font-size: 1.4em; line-height: 1.5; } .form-control:-moz-placeholder { color: #b2bcc5; } .form-control::-moz-placeholder { color: #b2bcc5; opacity: 1; } .form-control:-ms-input-placeholder { color: #b2bcc5; } .form-control { border: 2px solid #bdc3c7; color: #34495e; font-family: "Lato", Helvetica, Arial, sans-serif; line-height: 1.467; padding: 8px 12px; height: 42px; -webkit-appearance: none; border-radius: 6px; -webkit-box-shadow: none; box-shadow: none; -webkit-transition: border .25s linear, color .25s linear, background-color .25s linear; transition: border .25s linear, color .25s linear, background-color .25s linear; } .form-control:focus { border-color: #1abc9c; outline: 0; -webkit-box-shadow: none; box-shadow: none; } .has-warning .form-control:-moz-placeholder { color: #f1c40f; } .has-warning .form-control::-moz-placeholder { color: #f1c40f; opacity: 1; } .has-warning .form-control:-ms-input-placeholder { color: #f1c40f; } .has-error .form-control:-moz-placeholder { color: #e74c3c; } .has-error .form-control::-moz-placeholder { color: #e74c3c; opacity: 1; } .has-error .form-control:-ms-input-placeholder { color: #e74c3c; } .has-success .form-control:-moz-placeholder { color: #2ecc71; } .has-success .form-control::-moz-placeholder { color: #2ecc71; opacity: 1; } .has-success .form-control:-ms-input-placeholder { color: #2ecc71; } .form-group { position: relative; margin-bottom: 20px; } .form-group { position: relative; } .input-group-addon { padding: 10px 12px; color: #ffffff; text-align: center; background-color: #bdc3c7; border: 1px solid #bdc3c7; border-radius: 6px; -webkit-transition: border .25s linear, color .25s linear, background-color .25s linear; transition: border .25s linear, color .25s linear, background-color .25s linear; } .input-group .form-control:first-child { border-bottom-right-radius: 0; border-top-right-radius: 0; } .input-group-addon:last-child { border-bottom-left-radius: 0; border-top-left-radius: 0; } @media (min-width: 768px) { .navbar-header { float: left; } } .navbar-collapse { box-shadow: none; padding-right: 21px; padding-left: 21px; } .container > .navbar-header, .container > .navbar-collapse { margin-right: 5px; margin-left: 5px; } @media (max-width: 767px) { .navbar-header > .navbar-toggle { padding-left: 0; padding-right: 5px; } .navbar-header > .navbar-brand { padding-left: 5px; padding-right: 0; } } @media (max-width: 299px) { .navbar-header > .navbar-brand { display: none; } } @media (min-width: 768px) { .container > .navbar-header, .container > .navbar-collapse { margin-right: 0; margin-left: 0; } } .navbar-toggle { border: none; color: #34495e; margin: 0 0 0 0px; padding: 0 21px; height: 53px; line-height: 53px; } .navbar-toggle:before { color: #34495e; content: "\e00c"; font-family: "Flat-UI-Icons"; font-size: 1.8em; font-style: normal; font-weight: normal; -webkit-font-smoothing: antialiased; -webkit-transition: color 0.25s linear; transition: color 0.25s linear; } .navbar-toggle:hover, .navbar-toggle:focus { outline: none; } .navbar-toggle:hover:before, .navbar-toggle:focus:before { color: #18bc9c; } .navbar-toggle .icon-bar { display: none; } @media (min-width: 768px) { .navbar-toggle { display: none; } } .navbar-nav { margin: 0; } .navbar-nav > li > a { line-height: 23px; font-weight: 700; } .navbar-nav > li > a:hover, .navbar-nav > li > a:focus { background-color: transparent; } @media (max-width: 767px) { .navbar-nav { margin: 0 -21px; } .navbar-nav > li > a { padding-top: 7px; padding-bottom: 7px; text-align: center; line-height: 40px; } } .navbar-nav > li > .dropdown-menu { min-width: 100%; border-radius: 4px; } @media (max-width: 767px) { .navbar-nav > li > .dropdown-menu { -webkit-transition: all 0s; transition: all 0s; display: none; } } .navbar-default { background-color: #ecf0f1; } .navbar-default .navbar-brand { color: #34495e; } .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { color: #1abc9c; background-color: transparent; } .navbar-default .navbar-toggle:before { color: #34495e; } .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { background-color: transparent; } .navbar-default .navbar-toggle:hover:before, .navbar-default .navbar-toggle:focus:before { color: #1abc9c; } .navbar-default .navbar-collapse { border-color: #e5e9ea; border-width: 2px; overflow: hidden; } .navbar-default .navbar-nav > li > a { color: #34495e; } .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { color: #1abc9c; background-color: transparent; } .navbar-default .navbar-form .form-control:-moz-placeholder { color: #aeb6bf; } .navbar-default .navbar-form .form-control::-moz-placeholder { color: #aeb6bf; opacity: 1; } .navbar-default .navbar-form .form-control:-ms-input-placeholder { color: #aeb6bf; } .navbar-inverse .navbar-form .form-control:-moz-placeholder { color: #536a81; } .navbar-inverse .navbar-form .form-control::-moz-placeholder { color: #536a81; opacity: 1; } .navbar-inverse .navbar-form .form-control:-ms-input-placeholder { color: #536a81; } .twitter-typeahead .tt-query:-moz-placeholder, .twitter-typeahead .tt-hint:-moz-placeholder { color: #b2bcc5; } .twitter-typeahead .tt-query::-moz-placeholder, .twitter-typeahead .tt-hint::-moz-placeholder { color: #b2bcc5; opacity: 1; } .twitter-typeahead .tt-query:-ms-input-placeholder, .twitter-typeahead .tt-hint:-ms-input-placeholder { color: #b2bcc5; } .dropdown-menu { background-color: #f3f4f5; border: none; margin-top: 8px; padding: 0; -webkit-box-shadow: none; box-shadow: none; -webkit-transition: 0.25s; transition: 0.25s; } .dropdown-menu li:first-child > a { border-radius: 6px 6px 0 0; padding-top: 8px; } .dropdown-menu li:last-child > a { border-radius: 0 0 6px 6px; padding-bottom: 10px; } .dropdown-menu li > a { color: rgba(52, 73, 94, 0.75); padding: 6px 15px 8px; text-decoration: none; -webkit-transition: background-color 0.25s; transition: background-color 0.25s; } .dropdown-menu li > a:before, .dropdown-menu li > a:after { content: " "; /* 1 */ display: table; /* 2 */ } .dropdown-menu li > a:after { clear: both; } .dropdown-menu li > a:hover, .dropdown-menu li > a:active, .dropdown-menu li > a:focus { background: #e1e4e7; color: inherit; outline: none; } .dropdown-menu li > a:before { float: right; margin-top: 3px; } @media (max-width: 991px) { .dropdown-menu { border-radius: 0 0 6px 6px !important; } } /* custom */ .pos-bottom { position: absolute; bottom: 3%; } .pos-top { position: absolute; top: 3%; } .my-picture-container { margin: 25px auto 15px auto; } .my-picture { border: solid #46607a 4px; } .icon-size-100 { width: 100px; height: 100px; } .section-heading { margin-top: 35px; margin-bottom: 15px; } .content-section-a { padding: 25px 0; } .content-section-b { padding: 25px 0; } .content-section-c { padding: 25px 0; } .sub-title { font-weight: bold; } .margin-center { margin: auto; } .valign-middle { vertical-align: middle; } .navbar-right .dropdown-menu { right: auto; } .dropdown-toggle:hover .dropdown-menu { display: block !important; } .green-link, .green-link a { color: #1abc9c; font-weight: bold; } .green-link a:hover, .green-link a:focus { color: #34495e; text-decoration: none; } .footer { background: #34495e } .footer a:hover { color: #1abc9c; } .footer .list-inline { margin: 0; } .clear-both { clear: both; } #submit-contact { font-size: 1.8em; width: 320px; font-weight: bolder; } @media only screen and (max-width: 767px) { .my-picture-container { margin: 15px auto 15px auto; } .pos-top { top: 0; } .pos-bottom { bottom: 15px; } #submit-contact { width: 100%; } } @media (min-width: 768px) { .navbar-nav > li > a { margin-top: 2px; } } blockquote { background: #f9f9f9; border-left: 10px solid #ccc; margin: 0.5em 10px; padding: 0.5em 10px; quotes: "\201C" "\201D" "\2018" "\2019"; } blockquote:before { color: #ccc; content: open-quote; font-size: 4em; line-height: 0.1em; margin-right: 0.25em; vertical-align: -0.4em; } blockquote p { display: inline; } .author { text-align: right; margin-right: 50px; } .a-propos { color: #e9e9e9; } .social-button { padding: 5px } .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { background-color: #ECF0F1; } .navbar-default .navbar-nav > .open > a:hover, .dropdown-menu li > a:hover { color: #1abc9c; } .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus { background-color: #ECF0F1; color: #34495e; } #competences { margin-top: 70px; } .navbar-default .container { padding-right: 0; padding-left: 0; }
css/style.css
@font-face { font-family: 'Lato'; src: url('../fonts/lato/lato-black.eot'); src: url('../fonts/lato/lato-black.eot?#iefix') format('embedded-opentype'), url('../fonts/lato/lato-black.woff') format('woff'), url('../fonts/lato/lato-black.ttf') format('truetype'), url('../fonts/lato/lato-black.svg#latoblack') format('svg'); font-weight: 900; font-style: normal; } @font-face { font-family: 'Lato'; src: url('../fonts/lato/lato-bold.eot'); src: url('../fonts/lato/lato-bold.eot?#iefix') format('embedded-opentype'), url('../fonts/lato/lato-bold.woff') format('woff'), url('../fonts/lato/lato-bold.ttf') format('truetype'), url('../fonts/lato/lato-bold.svg#latobold') format('svg'); font-weight: bold; font-style: normal; } @font-face { font-family: 'Lato'; src: url('../fonts/lato/lato-bolditalic.eot'); src: url('../fonts/lato/lato-bolditalic.eot?#iefix') format('embedded-opentype'), url('../fonts/lato/lato-bolditalic.woff') format('woff'), url('../fonts/lato/lato-bolditalic.ttf') format('truetype'), url('../fonts/lato/lato-bolditalic.svg#latobold-italic') format('svg'); font-weight: bold; font-style: italic; } @font-face { font-family: 'Lato'; src: url('../fonts/lato/lato-italic.eot'); src: url('../fonts/lato/lato-italic.eot?#iefix') format('embedded-opentype'), url('../fonts/lato/lato-italic.woff') format('woff'), url('../fonts/lato/lato-italic.ttf') format('truetype'), url('../fonts/lato/lato-italic.svg#latoitalic') format('svg'); font-weight: normal; font-style: italic; } @font-face { font-family: 'Lato'; src: url('../fonts/lato/lato-light.eot'); src: url('../fonts/lato/lato-light.eot?#iefix') format('embedded-opentype'), url('../fonts/lato/lato-light.woff') format('woff'), url('../fonts/lato/lato-light.ttf') format('truetype'), url('../fonts/lato/lato-light.svg#latolight') format('svg'); font-weight: 300; font-style: normal; } @font-face { font-family: 'Lato'; src: url('../fonts/lato/lato-regular.eot'); src: url('../fonts/lato/lato-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/lato/lato-regular.woff') format('woff'), url('../fonts/lato/lato-regular.ttf') format('truetype'), url('../fonts/lato/lato-regular.svg#latoregular') format('svg'); font-weight: normal; font-style: normal; } @font-face { font-family: "Flat-UI-Icons"; src: url('../fonts/flat-ui-icons-regular.eot'); src: url('../fonts/flat-ui-icons-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/flat-ui-icons-regular.woff') format('woff'), url('../fonts/flat-ui-icons-regular.ttf') format('truetype'), url('../fonts/flat-ui-icons-regular.svg#flat-ui-icons-regular') format('svg'); font-weight: normal; font-style: normal; } body, html { height: 100%; width: 100%; overflow-x: hidden; } ::-moz-selection { background: #1abc9c; color: white } ::selection { background: #1abc9c; color: white } #preloader { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background-color: #fff; /* change if the mask should have another color then white */ z-index: 99; /* makes sure it stays on top */ } #status { width: 200px; height: 200px; position: absolute; left: 50%; /* centers the loading animation horizontally one the screen */ top: 50%; /* centers the loading animation vertically one the screen */ background-image: url(../img/ajax-loader.gif); /* path to your loading animation */ background-repeat: no-repeat; background-position: center; margin: -100px 0 0 -100px; /* is width and height divided by two */ } /* Button */ .mybutton_standard { border: 1px solid #fff; color: #fff; } .mybutton_cyano { border: 1px solid #4A90BE; color: #fff; background-color: #4A90BE; } .mybutton_cyano:hover { border: 1px solid #4A90BE; color: #4A90BE !important; background: rgba(204, 204, 204, 0); } .button_down img { width: 50px; } .btn-primary { border-color: rgba(52, 73, 94, 0); } .social { font-size: 2em; text-decoration: none; list-style-type: none; color: #1abc9c; } .social > a:hover { color: #1abc9c; } .box-icon { height: 150px; width: 150px; -moz-border-radius: 35px; border-radius: 100%; padding: 47px 10px; background-color: #f0f1ec; color: #034b81; text-align: center; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; transition: all 0.3s; margin-right: 15px; } /* Nav */ .navbar { position: relative; min-height: 60px; margin-bottom: 0; width: 100%; z-index: 999; border-radius: 0; } .navbar-default { position: relative; min-height: 60px; width: 100%; z-index: 999; } .navbar-default .navbar-nav > li > a { color: #ffffff; } .navbar-default .navbar-nav > li > a:hover { color: #ECEBEB; } .navbar-default .navbar-brand { color: #ffffff; } .navbar-default .navbar-brand:hover { color: #ECEBEB; } .intro-header { height: 100%; /* Full PAge */ padding-top: 50px; /* If you're making other pages, make sure there is 50px of padding to make sure the navbar doesn't overlap content! */ padding-bottom: 50px; color: #f8f8f8; background-color: #172c40; background-image: url(../img/intro.png); background-repeat: no-repeat; background-position: center center; background-size: cover; text-align: center; } .network-name { font-weight: 400; letter-spacing: 1.5px; } .content-section-a { background-color: #f8f8f8; padding: 90px 0; } .content-section-b { border-top: 1px solid #e7e7e7; border-bottom: 1px solid #e7e7e7; padding: 90px 0; } .content-section-c { border-top: 1px solid #32465A; border-bottom: 1px solid #32465A; background-color: #34495e; padding: 90px 0; } .section-heading { margin-bottom: 30px; } /* Animate */ .rotate { -webkit-transition-duration: 0.8s; -moz-transition-duration: 0.8s; -o-transition-duration: 0.8s; transition-duration: 0.8s; -webkit-transition-property: -webkit-transform; -moz-transition-property: -moz-transform; -o-transition-property: -o-transform; transition-property: transform; overflow: hidden; } .rotate:hover { -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -o-transform: rotate(360deg); } footer { background-color: #f8f8f8; } @media (max-width: 767px) { ul.intro-social-buttons > li { margin: 3px; padding: 0; } ul.intro-social-buttons > li:last-child { margin-bottom: 0; } } body { height: 100%; width: 100%; font-family: "Lato", Helvetica, Arial, sans-serif; line-height: 1.5; color: #34495e; background-color: #ffffff; } a { color: #34495e; text-decoration: none; -webkit-transition: 0.25s; transition: 0.25s; } a:hover, a:focus { color: #34495e; text-decoration: none; } a:focus { outline: none; } .img-rounded { border-radius: 6px; } h1, h2, h3, h4 { font-family: inherit; font-weight: 700; line-height: 1.1; color: inherit; } h1, h2, h3, h4 { margin-top: 16px; margin-bottom: 12px; } h1 { font-size: 6em; } .intro-header h1 { font-family: arvo; font-weight: 300; letter-spacing: 6px; } h2 { font-size: 5em; } h3 { font-size: 2.5em; } h4 { font-size: 2em; } .intro-header h3 { font-weight: 300; } p { line-height: 1.5; margin: 0 0 15px; } .lead { margin-top: 10px; margin-bottom: 10px; font-size: 1.4em; font-weight: 400; } ul.lead { font-size: 1.2em; font-weight: normal; } .intro-header .lead { font-weight: normal; } .tworow { margin-top: 90px; } .competence-item { padding: 20px 5px; } .navbar-brand { font-size: 2em; font-weight: 300; font-family: arvo; letter-spacing: 3px; } .a-propos { font-size: 1.4em; } /* Tablet */ @media only screen and (min-width: 768px) and (max-width: 991px) { h1 { font-size: 5em; } h2 { font-size: 4em; } h3 { font-size: 3em; } h4 { font-size: 2em; } h1, h2, h3, h4 { margin-top: 14px; margin-bottom: 10px; } .a-propos { font-size: 1.4em; } .lead { margin-top: 6px; margin-bottom: 6px; font-size: 1.4em; font-weight: 300; } .tworow { margin-top: 40px; } } /* All Mobile Sizes (devices and browser) */ @media only screen and (max-width: 767px) { h1 { font-size: 4em; } .intro-header { background-image: none; } .intro-header h1 { font-size: 3em; font-family: arvo; font-weight: 300; letter-spacing: normal; } h2 { font-size: 3em; } h3 { font-size: 2em; } h4 { font-size: 1.6em; } h1, h2, h3, h4 { margin-top: 12px; margin-bottom: 8px; } .a-propos { font-size: 1.2em; } .lead { margin-top: 4px; margin-bottom: 4px; font-size: 1.2em; font-weight: 300; } .tworow { margin-top: 20px; } .navbar-brand { letter-spacing: 2px; } } @media only screen and (max-height: 800px) and (min-width: 768px) { .intro-skills-button { display: none; } } @media only screen and (max-height: 710px) and (min-width: 768px) { .intro-social-buttons { display: none; } } @media only screen and (max-height: 640px) and (min-width: 768px) { .intro-header .lead { display: none; } } @media only screen and (max-height: 540px) and (min-width: 768px) { .button_down { display: none; } } @media only screen and (max-height: 760px) and (max-width: 768px) { .intro-skills-button { display: none; } } @media only screen and (max-height: 680px) and (max-width: 768px) { .intro-social-buttons { display: none; } } @media only screen and (max-height: 480px) and (max-width: 768px) { .intro-header .lead { display: none; } } @media only screen and (max-height: 438px) and (max-width: 768px) { .button_down { display: none; } } .white { color: white; } @media (min-width: 768px) { } ul { margin-bottom: 15px; } blockquote { border-left: 3px solid #e7e9ec; padding: 0 0 0 16px; margin: 0 0 30px; } address { margin-bottom: 30px; line-height: 1.72222; } .btn { font-weight: normal; line-height: 1.4; border-radius: 4px; padding: 10px 15px; -webkit-font-smoothing: subpixel-antialiased; -webkit-transition: border .25s linear, color .25s linear, background-color .25s linear; transition: border .25s linear, color .25s linear, background-color .25s linear; } .btn:hover, .btn:focus { outline: none; color: #ffffff; } .btn:active { outline: none; -webkit-box-shadow: none; box-shadow: none; } .btn-primary { color: #ffffff; background-color: #1abc9c; } .btn-primary:hover, .btn-primary:focus, .btn-primary:active { color: #ffffff; background-color: #48c9b0; border-color: #48c9b0; } .btn-primary:active { background: #16a085; border-color: #16a085; } .btn-embossed { -webkit-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15); box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15); } .btn-embossed:active { -webkit-box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.15); box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.15); } .btn-lg { padding: 10px 19px; line-height: 1.471; border-radius: 6px; } textarea { line-height: 24px; padding: 5px 11px; } label { font-size: 1.4em; line-height: 1.5; } .form-control:-moz-placeholder { color: #b2bcc5; } .form-control::-moz-placeholder { color: #b2bcc5; opacity: 1; } .form-control:-ms-input-placeholder { color: #b2bcc5; } .form-control { border: 2px solid #bdc3c7; color: #34495e; font-family: "Lato", Helvetica, Arial, sans-serif; line-height: 1.467; padding: 8px 12px; height: 42px; -webkit-appearance: none; border-radius: 6px; -webkit-box-shadow: none; box-shadow: none; -webkit-transition: border .25s linear, color .25s linear, background-color .25s linear; transition: border .25s linear, color .25s linear, background-color .25s linear; } .form-control:focus { border-color: #1abc9c; outline: 0; -webkit-box-shadow: none; box-shadow: none; } .has-warning .form-control:-moz-placeholder { color: #f1c40f; } .has-warning .form-control::-moz-placeholder { color: #f1c40f; opacity: 1; } .has-warning .form-control:-ms-input-placeholder { color: #f1c40f; } .has-error .form-control:-moz-placeholder { color: #e74c3c; } .has-error .form-control::-moz-placeholder { color: #e74c3c; opacity: 1; } .has-error .form-control:-ms-input-placeholder { color: #e74c3c; } .has-success .form-control:-moz-placeholder { color: #2ecc71; } .has-success .form-control::-moz-placeholder { color: #2ecc71; opacity: 1; } .has-success .form-control:-ms-input-placeholder { color: #2ecc71; } .form-group { position: relative; margin-bottom: 20px; } .form-group { position: relative; } .input-group-addon { padding: 10px 12px; color: #ffffff; text-align: center; background-color: #bdc3c7; border: 1px solid #bdc3c7; border-radius: 6px; -webkit-transition: border .25s linear, color .25s linear, background-color .25s linear; transition: border .25s linear, color .25s linear, background-color .25s linear; } .input-group .form-control:first-child { border-bottom-right-radius: 0; border-top-right-radius: 0; } .input-group-addon:last-child { border-bottom-left-radius: 0; border-top-left-radius: 0; } @media (min-width: 768px) { .navbar-header { float: left; } } .navbar-collapse { box-shadow: none; padding-right: 21px; padding-left: 21px; } .container > .navbar-header, .container > .navbar-collapse { margin-right: 5px; margin-left: 5px; } @media (max-width: 767px) { .navbar-header > .navbar-toggle { padding-left: 0; padding-right: 5px; } .navbar-header > .navbar-brand { padding-left: 5px; padding-right: 0; } } @media (max-width: 299px) { .navbar-header > .navbar-brand { display: none; } } @media (min-width: 768px) { .container > .navbar-header, .container > .navbar-collapse { margin-right: 0; margin-left: 0; } } .navbar-toggle { border: none; color: #34495e; margin: 0 0 0 0px; padding: 0 21px; height: 53px; line-height: 53px; } .navbar-toggle:before { color: #34495e; content: "\e00c"; font-family: "Flat-UI-Icons"; font-size: 1.8em; font-style: normal; font-weight: normal; -webkit-font-smoothing: antialiased; -webkit-transition: color 0.25s linear; transition: color 0.25s linear; } .navbar-toggle:hover, .navbar-toggle:focus { outline: none; } .navbar-toggle:hover:before, .navbar-toggle:focus:before { color: #18bc9c; } .navbar-toggle .icon-bar { display: none; } @media (min-width: 768px) { .navbar-toggle { display: none; } } .navbar-nav { margin: 0; } .navbar-nav > li > a { line-height: 23px; font-weight: 700; } .navbar-nav > li > a:hover, .navbar-nav > li > a:focus { background-color: transparent; } @media (max-width: 767px) { .navbar-nav { margin: 0 -21px; } .navbar-nav > li > a { padding-top: 7px; padding-bottom: 7px; text-align: center; line-height: 40px; } } .navbar-nav > li > .dropdown-menu { min-width: 100%; border-radius: 4px; } @media (max-width: 767px) { .navbar-nav > li > .dropdown-menu { -webkit-transition: all 0s; transition: all 0s; display: none; } } .navbar-default { background-color: #ecf0f1; } .navbar-default .navbar-brand { color: #34495e; } .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { color: #1abc9c; background-color: transparent; } .navbar-default .navbar-toggle:before { color: #34495e; } .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { background-color: transparent; } .navbar-default .navbar-toggle:hover:before, .navbar-default .navbar-toggle:focus:before { color: #1abc9c; } .navbar-default .navbar-collapse { border-color: #e5e9ea; border-width: 2px; overflow: hidden; } .navbar-default .navbar-nav > li > a { color: #34495e; } .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { color: #1abc9c; background-color: transparent; } .navbar-default .navbar-form .form-control:-moz-placeholder { color: #aeb6bf; } .navbar-default .navbar-form .form-control::-moz-placeholder { color: #aeb6bf; opacity: 1; } .navbar-default .navbar-form .form-control:-ms-input-placeholder { color: #aeb6bf; } .navbar-inverse .navbar-form .form-control:-moz-placeholder { color: #536a81; } .navbar-inverse .navbar-form .form-control::-moz-placeholder { color: #536a81; opacity: 1; } .navbar-inverse .navbar-form .form-control:-ms-input-placeholder { color: #536a81; } .twitter-typeahead .tt-query:-moz-placeholder, .twitter-typeahead .tt-hint:-moz-placeholder { color: #b2bcc5; } .twitter-typeahead .tt-query::-moz-placeholder, .twitter-typeahead .tt-hint::-moz-placeholder { color: #b2bcc5; opacity: 1; } .twitter-typeahead .tt-query:-ms-input-placeholder, .twitter-typeahead .tt-hint:-ms-input-placeholder { color: #b2bcc5; } .dropdown-menu { background-color: #f3f4f5; border: none; margin-top: 8px; padding: 0; -webkit-box-shadow: none; box-shadow: none; -webkit-transition: 0.25s; transition: 0.25s; } .dropdown-menu li:first-child > a { border-radius: 6px 6px 0 0; padding-top: 8px; } .dropdown-menu li:last-child > a { border-radius: 0 0 6px 6px; padding-bottom: 10px; } .dropdown-menu li > a { color: rgba(52, 73, 94, 0.75); padding: 6px 15px 8px; text-decoration: none; -webkit-transition: background-color 0.25s; transition: background-color 0.25s; } .dropdown-menu li > a:before, .dropdown-menu li > a:after { content: " "; /* 1 */ display: table; /* 2 */ } .dropdown-menu li > a:after { clear: both; } .dropdown-menu li > a:hover, .dropdown-menu li > a:active, .dropdown-menu li > a:focus { background: #e1e4e7; color: inherit; outline: none; } .dropdown-menu li > a:before { float: right; margin-top: 3px; } @media (max-width: 991px) { .dropdown-menu { border-radius: 0 0 6px 6px !important; } } /* custom */ .pos-bottom { position: absolute; bottom: 3%; } .pos-top { position: absolute; top: 3%; } .my-picture-container { margin: 25px auto 15px auto; } .my-picture { border: solid #46607a 4px; } .icon-size-100 { width: 100px; height: 100px; } .section-heading { margin-top: 35px; margin-bottom: 15px; } .content-section-a { padding: 25px 0; } .content-section-b { padding: 25px 0; } .content-section-c { padding: 25px 0; } .sub-title { font-weight: bold; } .margin-center { margin: auto; } .valign-middle { vertical-align: middle; } .navbar-right .dropdown-menu { right: auto; } .dropdown-toggle:hover .dropdown-menu { display: block !important; } .green-link, .green-link a { color: #1abc9c; font-weight: bold; } .green-link a:hover, .green-link a:focus { color: #34495e; text-decoration: none; } .footer { background: #34495e } .footer a:hover { color: #1abc9c; } .footer .list-inline { margin: 0; } .clear-both { clear: both; } #submit-contact { font-size: 1.8em; width: 320px; font-weight: bolder; } @media only screen and (max-width: 767px) { .my-picture-container { margin: 15px auto 15px auto; } .pos-top { top: 0; } .pos-bottom { bottom: 15px; } #submit-contact { width: 100%; } } @media (min-width: 768px) { .navbar-nav > li > a { margin-top: 2px; } } blockquote { background: #f9f9f9; border-left: 10px solid #ccc; margin: 0.5em 10px; padding: 0.5em 10px; quotes: "\201C" "\201D" "\2018" "\2019"; } blockquote:before { color: #ccc; content: open-quote; font-size: 4em; line-height: 0.1em; margin-right: 0.25em; vertical-align: -0.4em; } blockquote p { display: inline; } .author { text-align: right; margin-right: 50px; } .a-propos { color: #e9e9e9; } .social-button { padding: 5px } .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { background-color: #ECF0F1; } .navbar-default .navbar-nav > .open > a:hover, .dropdown-menu li > a:hover { color: #1abc9c; } .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus { background-color: #ECF0F1; color: #34495e; } #competences { margin-top: 70px; } .navbar-default .container { padding-right: 0; padding-left: 0; }
0.31384
0.056783
*{ margin:0;padding: 0; } ul{ list-style: none; } body{ display: flex; } input[type = 'text']{ width: 230px;height: 20px;text-align: right; } .ssd{ display: flex;flex-direction: column; } .calendar{ width: 230px;background-color: rgb(22, 22, 22);color: rgb(219, 219, 219); box-sizing: border-box;padding: 3px 8px 10px;border-radius: 10px;display: none; } .addCalendar{ display: block; } .calendar .yearMouth{ width: 100%;height: 30px;display: flex;align-items: flex-end;margin: 5px 0 3px; border-bottom: 1px solid rgba(63, 63, 63, 0.278);box-sizing: border-box; padding-bottom: 3px; } .calendar .year{ width: 65%;display: flex;align-items: center;justify-content: space-between; box-sizing: border-box;font-size: 20px; } .calendar .year span{ font-size: 20px;cursor: pointer;opacity: 0.05; } .calendar .yearMouth i{ font-style: normal;cursor: pointer;position: relative; } .calendar .year i b{ font-weight: 540; } .calendar .year:hover span{ animation: arrow 0.2s linear forwards; } .calendar .mouth{ width: 35%;display: flex;align-items: center;justify-content: space-between;font-size: 16px; } .calendar .mouth span{ font-size: 16px;cursor: pointer;opacity: .05; } .calendar .mouth i b{ font-weight: 540; } .calendar .mouth:hover span{ animation: arrow 0.2s linear forwards; } .calendar .yearMouth .shuru{ display: none;position: absolute;top: 0;background-color: rgb(37, 37, 37); border: none;padding: 0px 3px;box-sizing: border-box;color: rgb(219, 219, 219); font-size: 20px;border-radius: 5px; } .calendar .mouth .shuru{ left: -12px; } .calendar .yearMouth .addInput{ display: block; } .calendar .week{ box-sizing: border-box; display: flex;align-items: center;margin-bottom:1px ;padding-bottom: 2px; } .calendar .week li{ width: 14.25%;font-size: 14px;text-align: center;box-sizing: border-box; padding: 2px 0; } .calendar .day{ display: flex;flex-wrap: wrap;text-align: center; } .calendar .day li{ width: 14.25%;font-size: 14px;cursor: pointer;box-sizing: border-box; padding: 2px 0;border-radius: 3px; } .calendar .day .bkc{ background-color: rgb(151, 34, 57);color: rgb(228, 228, 228); } .calendar .select{ width: 80%;display: flex;align-items: center;justify-content: space-around; margin: 0 auto;font-size: 14px;text-align: center;margin-top: 8px; } .calendar .select .no{ width: 40%;cursor: pointer;background-color: rgba(222, 184, 135, 0.062);box-sizing: border-box; padding: 3px 0;border-radius: 3px; } .calendar .select .yes{ width: 40%;cursor: pointer;background-color: rgba(128, 255, 0, 0.048);box-sizing: border-box; padding: 3px 0;border-radius: 3px; } @keyframes arrow{ from{ opacity: 0.05; } to{ opacity: 0.5; } }
src/css/main.css
*{ margin:0;padding: 0; } ul{ list-style: none; } body{ display: flex; } input[type = 'text']{ width: 230px;height: 20px;text-align: right; } .ssd{ display: flex;flex-direction: column; } .calendar{ width: 230px;background-color: rgb(22, 22, 22);color: rgb(219, 219, 219); box-sizing: border-box;padding: 3px 8px 10px;border-radius: 10px;display: none; } .addCalendar{ display: block; } .calendar .yearMouth{ width: 100%;height: 30px;display: flex;align-items: flex-end;margin: 5px 0 3px; border-bottom: 1px solid rgba(63, 63, 63, 0.278);box-sizing: border-box; padding-bottom: 3px; } .calendar .year{ width: 65%;display: flex;align-items: center;justify-content: space-between; box-sizing: border-box;font-size: 20px; } .calendar .year span{ font-size: 20px;cursor: pointer;opacity: 0.05; } .calendar .yearMouth i{ font-style: normal;cursor: pointer;position: relative; } .calendar .year i b{ font-weight: 540; } .calendar .year:hover span{ animation: arrow 0.2s linear forwards; } .calendar .mouth{ width: 35%;display: flex;align-items: center;justify-content: space-between;font-size: 16px; } .calendar .mouth span{ font-size: 16px;cursor: pointer;opacity: .05; } .calendar .mouth i b{ font-weight: 540; } .calendar .mouth:hover span{ animation: arrow 0.2s linear forwards; } .calendar .yearMouth .shuru{ display: none;position: absolute;top: 0;background-color: rgb(37, 37, 37); border: none;padding: 0px 3px;box-sizing: border-box;color: rgb(219, 219, 219); font-size: 20px;border-radius: 5px; } .calendar .mouth .shuru{ left: -12px; } .calendar .yearMouth .addInput{ display: block; } .calendar .week{ box-sizing: border-box; display: flex;align-items: center;margin-bottom:1px ;padding-bottom: 2px; } .calendar .week li{ width: 14.25%;font-size: 14px;text-align: center;box-sizing: border-box; padding: 2px 0; } .calendar .day{ display: flex;flex-wrap: wrap;text-align: center; } .calendar .day li{ width: 14.25%;font-size: 14px;cursor: pointer;box-sizing: border-box; padding: 2px 0;border-radius: 3px; } .calendar .day .bkc{ background-color: rgb(151, 34, 57);color: rgb(228, 228, 228); } .calendar .select{ width: 80%;display: flex;align-items: center;justify-content: space-around; margin: 0 auto;font-size: 14px;text-align: center;margin-top: 8px; } .calendar .select .no{ width: 40%;cursor: pointer;background-color: rgba(222, 184, 135, 0.062);box-sizing: border-box; padding: 3px 0;border-radius: 3px; } .calendar .select .yes{ width: 40%;cursor: pointer;background-color: rgba(128, 255, 0, 0.048);box-sizing: border-box; padding: 3px 0;border-radius: 3px; } @keyframes arrow{ from{ opacity: 0.05; } to{ opacity: 0.5; } }
0.544075
0.068662
#pbOverlay, #pbImage, #pbBottom, #pbCloseBtn { position: fixed; z-index: 9999; } #pbOverlay { left: 0; top: 0; width: 100%; height: 100%; background: #000; cursor: pointer; } #pbCloseBtn { top: 0; right: 0; display: block; width: 50px; height: 50px; background: url(closebutton.png) no-repeat top left; } .pbLoading { background: #000 url(loading.gif) no-repeat center !important; } #pbImage { border: none; background: #000 no-repeat; -moz-box-shadow: 0 0 40px #000; -webkit-box-shadow: 0 0 40px #000; box-shadow: 0 0 40px #000; cursor: move; } #pbBottom { font-family: Verdana, Arial, Geneva, Helvetica, sans-serif; font-size: 10px; text-align: center; color: #EEE; line-height: 1.4em; left: 50%; bottom: 10px; width: 400px; margin-left: -200px; /* half the width */ } #pbCaption { font-weight: bold; padding: 4px; display: inline-block; *display: inline; /* IE 7 */ background-color: rgba(0, 0, 0, 0.7); filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr=#B0000000, EndColorStr=#B0000000); zoom: 1; } #pbNav { display: block; width: 282px; height: 70px; margin: auto; margin-top: 5px; } #pbPrevBtn, #pbNextBtn, #pbZoomBtn, #pbLeftBtn, #pbRightBtn { display: inline-block; height: 70px; outline: none; text-indent: -9000px; background: url(navbtns.png) no-repeat; } #pbPrevBtn { background-position: -223px 0; width: 40px; float: left; } #pbPrevBtn.pbgreyed { background-position: -521px 0; } #pbNextBtn { background-position: -337px 0; width: 40px; float: right; } #pbNextBtn.pbgreyed { background-position: -560px; } #pbZoomBtn { width: 74px; background-position: -263px 0; float: left; } #pbZoomBtn.pbgreyed { background-position: -74px 0; } #pbZoomBtn.pbzoomed { background-position: 0 0; } #pbLeftBtn { background-position: -159px 0; width: 64px; float: left; } #pbRightBtn { background-position: -377px 0; width: 64px; float: right; } /* www.jq22.com */
src/main/webapp/qst/css/picbox.css
#pbOverlay, #pbImage, #pbBottom, #pbCloseBtn { position: fixed; z-index: 9999; } #pbOverlay { left: 0; top: 0; width: 100%; height: 100%; background: #000; cursor: pointer; } #pbCloseBtn { top: 0; right: 0; display: block; width: 50px; height: 50px; background: url(closebutton.png) no-repeat top left; } .pbLoading { background: #000 url(loading.gif) no-repeat center !important; } #pbImage { border: none; background: #000 no-repeat; -moz-box-shadow: 0 0 40px #000; -webkit-box-shadow: 0 0 40px #000; box-shadow: 0 0 40px #000; cursor: move; } #pbBottom { font-family: Verdana, Arial, Geneva, Helvetica, sans-serif; font-size: 10px; text-align: center; color: #EEE; line-height: 1.4em; left: 50%; bottom: 10px; width: 400px; margin-left: -200px; /* half the width */ } #pbCaption { font-weight: bold; padding: 4px; display: inline-block; *display: inline; /* IE 7 */ background-color: rgba(0, 0, 0, 0.7); filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr=#B0000000, EndColorStr=#B0000000); zoom: 1; } #pbNav { display: block; width: 282px; height: 70px; margin: auto; margin-top: 5px; } #pbPrevBtn, #pbNextBtn, #pbZoomBtn, #pbLeftBtn, #pbRightBtn { display: inline-block; height: 70px; outline: none; text-indent: -9000px; background: url(navbtns.png) no-repeat; } #pbPrevBtn { background-position: -223px 0; width: 40px; float: left; } #pbPrevBtn.pbgreyed { background-position: -521px 0; } #pbNextBtn { background-position: -337px 0; width: 40px; float: right; } #pbNextBtn.pbgreyed { background-position: -560px; } #pbZoomBtn { width: 74px; background-position: -263px 0; float: left; } #pbZoomBtn.pbgreyed { background-position: -74px 0; } #pbZoomBtn.pbzoomed { background-position: 0 0; } #pbLeftBtn { background-position: -159px 0; width: 64px; float: left; } #pbRightBtn { background-position: -377px 0; width: 64px; float: right; } /* www.jq22.com */
0.177312
0.054601
p, ol, h2 { margin-top: 2em; } ul ol, ol ol { margin-top: 0; } h1 { clear: both; margin-top: 1.4em; } body { margin: 0; font: 1em/1.7 Arial, sans-serif; background-color: #E9ECF3; } body > div { max-width: 1000px; margin: 0 auto; padding: 3em; background-color: #FFF; } img { border: none; max-width: 100%; height: auto; } ul, ol { padding-left: 2em; } ul li { list-style: none; } ul li:before { content: '\2022'; display: block; position: relative; max-height: 0; left: -1em; color: #CCC; font-size: 1.1em; } ol li { list-style: inherit; } ol li:before { content:none; } code { background-color: #EFEFEF; padding: 1px 4px; font-size: 1.1em; } pre code { padding: 0; } button code { background-color: transparent; } #tom { color: #FFF; background-color: #000; padding: 3em; } #tom small { color: #777; } #tom code { background-color: inherit; padding: inherit; } #tom h1 { margin-top: 0; } #supported-by { max-width: 444px; line-height: 27px; text-align: center; } #supported-by a { color: #FFF; text-decoration: none; } #supported-by img { vertical-align: bottom; } .supported-by-inline { vertical-align: middle; margin: auto 3px; } #header { color: #FFF; background-color: #000; } #header span { color: #777; white-space: nowrap; } #header a { color: #FFF; text-decoration: none; } #footer { color: #B0B0B0; background-color: #272626; } #footer a { color: #FFF; } #reports p { margin-top: 3em; } pre { padding: 1em; background-color: #EFEFEF; overflow-x: auto; } .hl-meta { color: #4C81C9; } .hl-tag { color: #0048AB; } .hl-tag .hl-attr, .hl-key, .hl-header, .hl-dmarc .hl-string .hl-attr { color: #055; } .hl-number { color: #008; } .hl-string, .hl-string .hl-number, .hl-string .hl-tag { color: #194; } #bookmarks { top: 2em; position: sticky; float: right; } #bookmarks > div { padding: 0; margin: 0 1em; background-color: #FFF; opacity: 0.75; } #bookmarks > div:hover { opacity: 1; } #bookmarks a { margin: 0.5em; text-decoration: none; } .hidden { display: none; } .not-supported { color: #F00; font-weight: bold; margin: 2em 0; } .allowed { color: #008000; font-weight: bold; } .blocked { color: #F00; font-weight: bold; } .schroedingers-cat { color: #5F8EE2; font-weight: bold; } .view-source { text-decoration: none; } .view-source.allowed, .view-source.blocked { font-weight: normal; } .view-source .arrow { opacity: 0.25; } .disabled { opacity: 0.5; } @media (max-width: 680px) { body > div { padding: 1em; } } @media (max-width: 500px) { .separator { display: none; } .separator-break { display: block; } }
site/www/assets/style.css
p, ol, h2 { margin-top: 2em; } ul ol, ol ol { margin-top: 0; } h1 { clear: both; margin-top: 1.4em; } body { margin: 0; font: 1em/1.7 Arial, sans-serif; background-color: #E9ECF3; } body > div { max-width: 1000px; margin: 0 auto; padding: 3em; background-color: #FFF; } img { border: none; max-width: 100%; height: auto; } ul, ol { padding-left: 2em; } ul li { list-style: none; } ul li:before { content: '\2022'; display: block; position: relative; max-height: 0; left: -1em; color: #CCC; font-size: 1.1em; } ol li { list-style: inherit; } ol li:before { content:none; } code { background-color: #EFEFEF; padding: 1px 4px; font-size: 1.1em; } pre code { padding: 0; } button code { background-color: transparent; } #tom { color: #FFF; background-color: #000; padding: 3em; } #tom small { color: #777; } #tom code { background-color: inherit; padding: inherit; } #tom h1 { margin-top: 0; } #supported-by { max-width: 444px; line-height: 27px; text-align: center; } #supported-by a { color: #FFF; text-decoration: none; } #supported-by img { vertical-align: bottom; } .supported-by-inline { vertical-align: middle; margin: auto 3px; } #header { color: #FFF; background-color: #000; } #header span { color: #777; white-space: nowrap; } #header a { color: #FFF; text-decoration: none; } #footer { color: #B0B0B0; background-color: #272626; } #footer a { color: #FFF; } #reports p { margin-top: 3em; } pre { padding: 1em; background-color: #EFEFEF; overflow-x: auto; } .hl-meta { color: #4C81C9; } .hl-tag { color: #0048AB; } .hl-tag .hl-attr, .hl-key, .hl-header, .hl-dmarc .hl-string .hl-attr { color: #055; } .hl-number { color: #008; } .hl-string, .hl-string .hl-number, .hl-string .hl-tag { color: #194; } #bookmarks { top: 2em; position: sticky; float: right; } #bookmarks > div { padding: 0; margin: 0 1em; background-color: #FFF; opacity: 0.75; } #bookmarks > div:hover { opacity: 1; } #bookmarks a { margin: 0.5em; text-decoration: none; } .hidden { display: none; } .not-supported { color: #F00; font-weight: bold; margin: 2em 0; } .allowed { color: #008000; font-weight: bold; } .blocked { color: #F00; font-weight: bold; } .schroedingers-cat { color: #5F8EE2; font-weight: bold; } .view-source { text-decoration: none; } .view-source.allowed, .view-source.blocked { font-weight: normal; } .view-source .arrow { opacity: 0.25; } .disabled { opacity: 0.5; } @media (max-width: 680px) { body > div { padding: 1em; } } @media (max-width: 500px) { .separator { display: none; } .separator-break { display: block; } }
0.435661
0.092893
html, body { font-size: 15px; font-family: "Open Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif; background: #FFFFFF; margin: 0px; padding: 0px; color: #555555; min-height: 1000px; text-rendering: optimizeLegibility; min-width: 320px; } p { text-align: justify; } .leftside { background-color: #f7f7f7; padding-bottom: 10em; } .ui.header { font-family: 'Source Sans Pro', "Helvetica Neue", "Helvetica", "Arial", sans-serif; } .page { background-color: #FFFFFF; padding: 2em 0em; } input[type=range] { width: 100%; } .ui .header a { color: #333; } .current { float: right; margin: 0.5em 0em 0em 1em; } .middle.column { padding: 1em 2em; } .middle.column h2 { margin-top: 0em; } .right.column { padding: 1em 2em; background-color: #FFFFFF; } .info { background-color: #fff; border: 2px #444 solid; border-radius: 7px; -webkit-box-shadow: 4px 4px 5px 0px rgba(50, 50, 50, 0.75); -moz-box-shadow: 4px 4px 5px 0px rgba(50, 50, 50, 0.75); box-shadow: 4px 4px 5px 0px rgba(50, 50, 50, 0.75); color: #111; font-size: 32px; position: absolute; bottom: 1em; left: 1em; z-index: 100; font-weight: bold; padding: .2em .5em; white-space: nowrap; line-height: 1.1em; text-align: center; } .info:before { border-top: 6px solid transparent; border-bottom: 6px solid transparent; content: ""; border-right: 6px solid black; border-right-color: inherit; position: absolute; left: -8px; top: 20px; } .render-html .popup-label { padding: 1px; margin: 0; } .render-html .popup-label img { border-radius: 4px; padding: 0; margin: 0; } @media only screen and (max-width : 1250px) { .left.column > .menu .item { font-size: 1rem; } } .fullscreen { width: 100%; height: 480px; } .info { padding: 20px; font-family: 'Lato', sans-serif; font-size: 1em; background: rgba(255, 255, 255, 0.9); box-shadow: 0 0 15px rgba(0, 0, 0, 0.4); } .info h4 { margin: 0 0 5px; color: #3D3938; } .legend { text-align: left; font: 14px/16px Arial, Helvetica, sans-serif; background: rgba(255,255,255, 0.9); box-shadow: 0 0 15px rgba(0,0,0,0.2); border-radius: 5px; padding: 6px 8px; width: 260px; max-height: 300px; overflow: auto; line-height: 18px; color: #555; } .legend i { width: 16px; height: 16px; float: left; margin-right: 8px; opacity: 0.7; } .legend-esri { text-align: left; font: 14px/16px Arial, Helvetica, sans-serif; background: rgba(255,255,255, 0.9); box-shadow: 0 0 15px rgba(0,0,0,0.2); border-radius: 5px; padding: 6px 8px; width: 260px; max-height: 300px; overflow: auto; line-height: 18px; color: #555; } .legend-esri i { width: 16px; height: 16px; float: left; margin-right: 8px; opacity: 0.7; } .legend-esri .outline { border: 1px solid #CCCCCC; border-radius: 6px 6px 6px 6px; float: left; height: 12px; margin: 3px 10px 3px 3px; padding: 2px; width: 12px; } .legend-esri .outline i { border-radius: 4px 4px 4px 4px; float: left; height: 6px; width: 6px; } .legend-esri .inline { clear: both; float: left; margin-right: 10px; } .legend-esri .info-title { clear: both; float: left; font-size: 0.9em; font-weight: bold; margin: 5px 0; width: 100%; } .legend-esri .info-label { float: left; width: 170px; font-size: 0.8em; } .ng-leaflet-control-layers { position: absolute; background: white; z-index: 100; left: 10px; top: 100px; width: 200px; box-shadow: 1px 1px 5px #333; padding: 5px; } .ng-leaflet-control-layers .lf-row label { cursor: pointer; width: 100%; } .ng-leaflet-control-layers .lf-row label .lf-icons { float: right; } .ng-leaflet-control-layers .lf-row label .lf-icon { cursor: pointer; float: left; margin-right: 5px; padding-top: 2px; } .ng-leaflet-control-layers .lf-row label .lf-text { float: left; } .red { border-radius: 120px; opacity: .75; background-color: #FF0000; } .blue { border-radius: 120px; opacity: .75; background-color: #0000FF; } .ng-leaflet-map { height: 480px; } .worldmap { background: rgba(255, 255, 255, 0.9); border-radius: 5px; } div.worldmap.box { position: absolute; top: 2em; right: 2em; z-index: 100; padding: 1em; text-align: center; } div.worldmap.country { font-size: 2em; font-weight: bold; position: absolute; bottom: 3em; left: 1em; z-index: 100; padding: .2em .5em; line-height: 1.1em; text-align: center; }
examples/css/viewer.css
html, body { font-size: 15px; font-family: "Open Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif; background: #FFFFFF; margin: 0px; padding: 0px; color: #555555; min-height: 1000px; text-rendering: optimizeLegibility; min-width: 320px; } p { text-align: justify; } .leftside { background-color: #f7f7f7; padding-bottom: 10em; } .ui.header { font-family: 'Source Sans Pro', "Helvetica Neue", "Helvetica", "Arial", sans-serif; } .page { background-color: #FFFFFF; padding: 2em 0em; } input[type=range] { width: 100%; } .ui .header a { color: #333; } .current { float: right; margin: 0.5em 0em 0em 1em; } .middle.column { padding: 1em 2em; } .middle.column h2 { margin-top: 0em; } .right.column { padding: 1em 2em; background-color: #FFFFFF; } .info { background-color: #fff; border: 2px #444 solid; border-radius: 7px; -webkit-box-shadow: 4px 4px 5px 0px rgba(50, 50, 50, 0.75); -moz-box-shadow: 4px 4px 5px 0px rgba(50, 50, 50, 0.75); box-shadow: 4px 4px 5px 0px rgba(50, 50, 50, 0.75); color: #111; font-size: 32px; position: absolute; bottom: 1em; left: 1em; z-index: 100; font-weight: bold; padding: .2em .5em; white-space: nowrap; line-height: 1.1em; text-align: center; } .info:before { border-top: 6px solid transparent; border-bottom: 6px solid transparent; content: ""; border-right: 6px solid black; border-right-color: inherit; position: absolute; left: -8px; top: 20px; } .render-html .popup-label { padding: 1px; margin: 0; } .render-html .popup-label img { border-radius: 4px; padding: 0; margin: 0; } @media only screen and (max-width : 1250px) { .left.column > .menu .item { font-size: 1rem; } } .fullscreen { width: 100%; height: 480px; } .info { padding: 20px; font-family: 'Lato', sans-serif; font-size: 1em; background: rgba(255, 255, 255, 0.9); box-shadow: 0 0 15px rgba(0, 0, 0, 0.4); } .info h4 { margin: 0 0 5px; color: #3D3938; } .legend { text-align: left; font: 14px/16px Arial, Helvetica, sans-serif; background: rgba(255,255,255, 0.9); box-shadow: 0 0 15px rgba(0,0,0,0.2); border-radius: 5px; padding: 6px 8px; width: 260px; max-height: 300px; overflow: auto; line-height: 18px; color: #555; } .legend i { width: 16px; height: 16px; float: left; margin-right: 8px; opacity: 0.7; } .legend-esri { text-align: left; font: 14px/16px Arial, Helvetica, sans-serif; background: rgba(255,255,255, 0.9); box-shadow: 0 0 15px rgba(0,0,0,0.2); border-radius: 5px; padding: 6px 8px; width: 260px; max-height: 300px; overflow: auto; line-height: 18px; color: #555; } .legend-esri i { width: 16px; height: 16px; float: left; margin-right: 8px; opacity: 0.7; } .legend-esri .outline { border: 1px solid #CCCCCC; border-radius: 6px 6px 6px 6px; float: left; height: 12px; margin: 3px 10px 3px 3px; padding: 2px; width: 12px; } .legend-esri .outline i { border-radius: 4px 4px 4px 4px; float: left; height: 6px; width: 6px; } .legend-esri .inline { clear: both; float: left; margin-right: 10px; } .legend-esri .info-title { clear: both; float: left; font-size: 0.9em; font-weight: bold; margin: 5px 0; width: 100%; } .legend-esri .info-label { float: left; width: 170px; font-size: 0.8em; } .ng-leaflet-control-layers { position: absolute; background: white; z-index: 100; left: 10px; top: 100px; width: 200px; box-shadow: 1px 1px 5px #333; padding: 5px; } .ng-leaflet-control-layers .lf-row label { cursor: pointer; width: 100%; } .ng-leaflet-control-layers .lf-row label .lf-icons { float: right; } .ng-leaflet-control-layers .lf-row label .lf-icon { cursor: pointer; float: left; margin-right: 5px; padding-top: 2px; } .ng-leaflet-control-layers .lf-row label .lf-text { float: left; } .red { border-radius: 120px; opacity: .75; background-color: #FF0000; } .blue { border-radius: 120px; opacity: .75; background-color: #0000FF; } .ng-leaflet-map { height: 480px; } .worldmap { background: rgba(255, 255, 255, 0.9); border-radius: 5px; } div.worldmap.box { position: absolute; top: 2em; right: 2em; z-index: 100; padding: 1em; text-align: center; } div.worldmap.country { font-size: 2em; font-weight: bold; position: absolute; bottom: 3em; left: 1em; z-index: 100; padding: .2em .5em; line-height: 1.1em; text-align: center; }
0.558568
0.147801
*:first-child+html .shadow-left-top { background-image: url('images/top-left.png'); } *:first-child+html .shadow-right-top { background-image: url('images/top-right.png'); } *:first-child+html .shadow-left-bottom { background-image: url('images/bottom-left.png'); } *:first-child+html .shadow-right-bottom { background-image: url('images/bottom-right.png'); } *:first-child+html .shadow-center-top { background-image: url('images/top.png'); } *:first-child+html .shadow-left-middle { background-image: url('images/left.png'); } *:first-child+html .shadow-center-bottom { background-image: url('images/bottom.png'); } *:first-child+html .shadow-right-middle { background-image: url('images/right.png'); } /* IE 6.0 - */ * html .shadow-left-top, * html .shadow-right-top, * html .shadow-left-bottom, * html .shadow-right-bottom, * html .shadow-center-top, * html .shadow-left-middle, * html .shadow-right-middle, * html .shadow-center-bottom { background-image: none; } * html .shadow-left-top { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/top-left.png', sizingMethod='scale'); } * html .shadow-right-top { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/top-right.png', sizingMethod='scale'); } * html .shadow-left-bottom { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/bottom-left.png', sizingMethod='scale'); } * html .shadow-right-bottom { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/bottom-right.png', sizingMethod='scale'); } * html .shadow-center-top { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/top.png', sizingMethod='scale'); } * html .shadow-left-middle { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/left.png', sizingMethod='scale'); } * html .shadow-right-middle { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/right.png', sizingMethod='scale'); } * html .shadow-center-bottom { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/bottom.png', sizingMethod='scale'); } /* IE 7.0 + */ *:first-child+html .shadow-narrow-left-top { background-image: url('images/narrow-top-left.png'); } *:first-child+html .shadow-narrow-right-top { background-image: url('images/narrow-top-right.png'); } *:first-child+html .shadow-narrow-left-bottom { background-image: url('images/narrow-bottom-left.png'); } *:first-child+html .shadow-narrow-right-bottom { background-image: url('images/narrow-bottom-right.png'); } *:first-child+html .shadow-narrow-center-top { background-image: url('images/narrow-top.png'); } *:first-child+html .shadow-narrow-left-middle { background-image: url('images/narrow-left.png'); } *:first-child+html .shadow-narrow-center-bottom { background-image: url('images/narrow-bottom.png'); } *:first-child+html .shadow-narrow-right-middle { background-image: url('images/narrow-right.png'); } /* IE 6.0 - */ * html .shadow-narrow-left-top, * html .shadow-narrow-right-top, * html .shadow-narrow-left-bottom, * html .shadow-narrow-right-bottom, * html .shadow-narrow-center-top, * html .shadow-narrow-left-middle, * html .shadow-narrow-right-middle, * html .shadow-narrow-center-bottom { background-image: none; } * html .shadow-narrow-left-top { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/narrow-top-left.png', sizingMethod='scale'); } * html .shadow-narrow-right-top { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/narrow-top-right.png', sizingMethod='scale'); } * html .shadow-narrow-left-bottom {s filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/narrow-bottom-left.png', sizingMethod='scale'); } * html .shadow-narrow-right-bottom { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/narrow-bottom-right.png', sizingMethod='scale'); } * html .shadow-narrow-center-top { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/narrow-top.png', sizingMethod='scale'); } * html .shadow-narrow-left-middle { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/narrow-left.png', sizingMethod='scale'); } * html .shadow-narrow-right-middle { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/narrow-right.png', sizingMethod='scale'); } * html .shadow-narrow-center-bottom { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/narrow-bottom.png', sizingMethod='scale'); } * html .shell-title-min, * html .shell-title-normal-max, * html .shell-title-close { margin-bottom:0; filter:Alpha(Opacity=80); } .swt-widgets-shell-ie { width:324px; }
src/main/j2slib/org/eclipse/swt/widgets/Shell.IE.css
*:first-child+html .shadow-left-top { background-image: url('images/top-left.png'); } *:first-child+html .shadow-right-top { background-image: url('images/top-right.png'); } *:first-child+html .shadow-left-bottom { background-image: url('images/bottom-left.png'); } *:first-child+html .shadow-right-bottom { background-image: url('images/bottom-right.png'); } *:first-child+html .shadow-center-top { background-image: url('images/top.png'); } *:first-child+html .shadow-left-middle { background-image: url('images/left.png'); } *:first-child+html .shadow-center-bottom { background-image: url('images/bottom.png'); } *:first-child+html .shadow-right-middle { background-image: url('images/right.png'); } /* IE 6.0 - */ * html .shadow-left-top, * html .shadow-right-top, * html .shadow-left-bottom, * html .shadow-right-bottom, * html .shadow-center-top, * html .shadow-left-middle, * html .shadow-right-middle, * html .shadow-center-bottom { background-image: none; } * html .shadow-left-top { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/top-left.png', sizingMethod='scale'); } * html .shadow-right-top { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/top-right.png', sizingMethod='scale'); } * html .shadow-left-bottom { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/bottom-left.png', sizingMethod='scale'); } * html .shadow-right-bottom { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/bottom-right.png', sizingMethod='scale'); } * html .shadow-center-top { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/top.png', sizingMethod='scale'); } * html .shadow-left-middle { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/left.png', sizingMethod='scale'); } * html .shadow-right-middle { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/right.png', sizingMethod='scale'); } * html .shadow-center-bottom { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/bottom.png', sizingMethod='scale'); } /* IE 7.0 + */ *:first-child+html .shadow-narrow-left-top { background-image: url('images/narrow-top-left.png'); } *:first-child+html .shadow-narrow-right-top { background-image: url('images/narrow-top-right.png'); } *:first-child+html .shadow-narrow-left-bottom { background-image: url('images/narrow-bottom-left.png'); } *:first-child+html .shadow-narrow-right-bottom { background-image: url('images/narrow-bottom-right.png'); } *:first-child+html .shadow-narrow-center-top { background-image: url('images/narrow-top.png'); } *:first-child+html .shadow-narrow-left-middle { background-image: url('images/narrow-left.png'); } *:first-child+html .shadow-narrow-center-bottom { background-image: url('images/narrow-bottom.png'); } *:first-child+html .shadow-narrow-right-middle { background-image: url('images/narrow-right.png'); } /* IE 6.0 - */ * html .shadow-narrow-left-top, * html .shadow-narrow-right-top, * html .shadow-narrow-left-bottom, * html .shadow-narrow-right-bottom, * html .shadow-narrow-center-top, * html .shadow-narrow-left-middle, * html .shadow-narrow-right-middle, * html .shadow-narrow-center-bottom { background-image: none; } * html .shadow-narrow-left-top { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/narrow-top-left.png', sizingMethod='scale'); } * html .shadow-narrow-right-top { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/narrow-top-right.png', sizingMethod='scale'); } * html .shadow-narrow-left-bottom {s filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/narrow-bottom-left.png', sizingMethod='scale'); } * html .shadow-narrow-right-bottom { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/narrow-bottom-right.png', sizingMethod='scale'); } * html .shadow-narrow-center-top { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/narrow-top.png', sizingMethod='scale'); } * html .shadow-narrow-left-middle { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/narrow-left.png', sizingMethod='scale'); } * html .shadow-narrow-right-middle { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/narrow-right.png', sizingMethod='scale'); } * html .shadow-narrow-center-bottom { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/narrow-bottom.png', sizingMethod='scale'); } * html .shell-title-min, * html .shell-title-normal-max, * html .shell-title-close { margin-bottom:0; filter:Alpha(Opacity=80); } .swt-widgets-shell-ie { width:324px; }
0.428592
0.068537
@font-face { font-family: 'Work Sans'; font-weight: 400; font-style: normal; src: url('webfonts/work-sans/WorkSans-Regular.woff2') format('woff2'), url('webfonts/work-sans/WorkSans-Regular.woff') format('woff'), url('webfonts/work-sans/WorkSans-Regular.ttf') format('truetype'); } @font-face { font-family: 'Work Sans'; font-weight: 800; font-style: normal; src: url('webfonts/work-sans/WorkSans-ExtraBold.woff2') format('woff2'), url('webfonts/work-sans/WorkSans-ExtraBold.woff') format('woff'), url('webfonts/work-sans/WorkSans-ExtraBold.ttf') format('truetype'); } @font-face { font-family: 'Iosevka'; font-weight: 400; font-style: normal; src: url('webfonts/iosevka/iosevka-regular.woff2') format('woff2'), url('webfonts/iosevka/iosevka-regular.woff') format('woff'), url('webfonts/iosevka/iosevka-regular.ttf') format('truetype'); } @font-face { font-family: 'Iosevka'; font-weight: 400; font-style: italic; src: url('webfonts/iosevka/iosevka-italic.woff2') format('woff2'), url('webfonts/iosevka/iosevka-italic.woff') format('woff'), url('webfonts/iosevka/iosevka-italic.ttf') format('truetype'); } @font-face { font-family: 'Iosevka'; font-weight: 700; font-style: normal; src: url('webfonts/iosevka/iosevka-bold.woff2') format('woff2'), url('webfonts/iosevka/iosevka-bold.woff') format('woff'), url('webfonts/iosevka/iosevka-bold.ttf') format('truetype'); } /*@font-face { font-family: 'Iosevka'; font-weight: 700; font-style: italic; src: url('webfonts/iosevka/iosevka-bolditalic.woff2') format('woff2'), url('webfonts/iosevka/iosevka-bolditalic.woff') format('woff'), url('webfonts/iosevka/iosevka-bolditalic.ttf') format('truetype'); }*/ @font-face { font-family: 'IBM Plex Serif'; font-weight: 400; font-style: normal; src: url('webfonts/ibm-plex-serif/IBMPlexSerif-Regular.woff2') format('woff2'), url('webfonts/ibm-plex-serif/IBMPlexSerif-Regular.woff') format('woff'), url('webfonts/ibm-plex-serif/IBMPlexSerif-Regular.ttf') format('truetype'); } @font-face { font-family: 'IBM Plex Serif'; font-weight: 400; font-style: italic; src: url('webfonts/ibm-plex-serif/IBMPlexSerif-Italic.woff2') format('woff2'), url('webfonts/ibm-plex-serif/IBMPlexSerif-Italic.woff') format('woff'), url('webfonts/ibm-plex-serif/IBMPlexSerif-Italic.ttf') format('truetype'); } @font-face { font-family: 'IBM Plex Serif'; font-weight: 700; font-style: normal; src: url('webfonts/ibm-plex-serif/IBMPlexSerif-Bold.woff2') format('woff2'), url('webfonts/ibm-plex-serif/IBMPlexSerif-Bold.woff') format('woff'), url('webfonts/ibm-plex-serif/IBMPlexSerif-Bold.ttf') format('truetype'); } @font-face { font-family: 'IBM Plex Serif'; font-weight: 700; font-style: italic; src: url('webfonts/ibm-plex-serif/IBMPlexSerif-BoldItalic.woff2') format('woff2'), url('webfonts/ibm-plex-serif/IBMPlexSerif-BoldItalic.woff') format('woff'), url('webfonts/ibm-plex-serif/IBMPlexSerif-BoldItalic.ttf') format('truetype'); }
assets/webfonts.css
@font-face { font-family: 'Work Sans'; font-weight: 400; font-style: normal; src: url('webfonts/work-sans/WorkSans-Regular.woff2') format('woff2'), url('webfonts/work-sans/WorkSans-Regular.woff') format('woff'), url('webfonts/work-sans/WorkSans-Regular.ttf') format('truetype'); } @font-face { font-family: 'Work Sans'; font-weight: 800; font-style: normal; src: url('webfonts/work-sans/WorkSans-ExtraBold.woff2') format('woff2'), url('webfonts/work-sans/WorkSans-ExtraBold.woff') format('woff'), url('webfonts/work-sans/WorkSans-ExtraBold.ttf') format('truetype'); } @font-face { font-family: 'Iosevka'; font-weight: 400; font-style: normal; src: url('webfonts/iosevka/iosevka-regular.woff2') format('woff2'), url('webfonts/iosevka/iosevka-regular.woff') format('woff'), url('webfonts/iosevka/iosevka-regular.ttf') format('truetype'); } @font-face { font-family: 'Iosevka'; font-weight: 400; font-style: italic; src: url('webfonts/iosevka/iosevka-italic.woff2') format('woff2'), url('webfonts/iosevka/iosevka-italic.woff') format('woff'), url('webfonts/iosevka/iosevka-italic.ttf') format('truetype'); } @font-face { font-family: 'Iosevka'; font-weight: 700; font-style: normal; src: url('webfonts/iosevka/iosevka-bold.woff2') format('woff2'), url('webfonts/iosevka/iosevka-bold.woff') format('woff'), url('webfonts/iosevka/iosevka-bold.ttf') format('truetype'); } /*@font-face { font-family: 'Iosevka'; font-weight: 700; font-style: italic; src: url('webfonts/iosevka/iosevka-bolditalic.woff2') format('woff2'), url('webfonts/iosevka/iosevka-bolditalic.woff') format('woff'), url('webfonts/iosevka/iosevka-bolditalic.ttf') format('truetype'); }*/ @font-face { font-family: 'IBM Plex Serif'; font-weight: 400; font-style: normal; src: url('webfonts/ibm-plex-serif/IBMPlexSerif-Regular.woff2') format('woff2'), url('webfonts/ibm-plex-serif/IBMPlexSerif-Regular.woff') format('woff'), url('webfonts/ibm-plex-serif/IBMPlexSerif-Regular.ttf') format('truetype'); } @font-face { font-family: 'IBM Plex Serif'; font-weight: 400; font-style: italic; src: url('webfonts/ibm-plex-serif/IBMPlexSerif-Italic.woff2') format('woff2'), url('webfonts/ibm-plex-serif/IBMPlexSerif-Italic.woff') format('woff'), url('webfonts/ibm-plex-serif/IBMPlexSerif-Italic.ttf') format('truetype'); } @font-face { font-family: 'IBM Plex Serif'; font-weight: 700; font-style: normal; src: url('webfonts/ibm-plex-serif/IBMPlexSerif-Bold.woff2') format('woff2'), url('webfonts/ibm-plex-serif/IBMPlexSerif-Bold.woff') format('woff'), url('webfonts/ibm-plex-serif/IBMPlexSerif-Bold.ttf') format('truetype'); } @font-face { font-family: 'IBM Plex Serif'; font-weight: 700; font-style: italic; src: url('webfonts/ibm-plex-serif/IBMPlexSerif-BoldItalic.woff2') format('woff2'), url('webfonts/ibm-plex-serif/IBMPlexSerif-BoldItalic.woff') format('woff'), url('webfonts/ibm-plex-serif/IBMPlexSerif-BoldItalic.ttf') format('truetype'); }
0.21892
0.03949
.genOrange{ color: #FF4F1F; } .loading-text { font-size: 32px; } .label { color: #FF4F1F; } a { color: #FF4F1F !important; } .form-label { color: #FF4F1F; display: block; font-size: 1rem; font-weight: 700; } .div-section { display: flex; overflow: auto; } .div-info { flex-grow: 50; margin: 20px; } .control-selling-party { display: flex; flex-direction: column; } .radio { margin-left: 10px; } .radio+.radio { margin-left: 10px; } .button { height: 40px; border-radius: 25px; color: #fff !important; background-color: #FF4F1F !important; border: 2px solid #FF4F1F; font-size: 16px; } .button:hover { height: 40px; border-radius: 25px; border-color: #FF4F1F !important; color: #FF4F1F !important; background-color: #fff !important; border: 2px solid #FF4F1F; } .button:focus { box-shadow: 0 0 0 0 !important; border-color: #FF4F1F !important; } button.delete:hover { background-color: #FF4F1F !important; } .button.is-light { height: 40px; border-radius: 25px; border-color: #FF4F1F !important; color: #FF4F1F !important; background-color: #fff !important; border: 2px solid #FF4F1F; } .button.is-light:hover { height: 40px; border-radius: 25px; color: #fff !important; background-color: #FF4F1F !important; border: 2px solid #FF4F1F; font-size: 16px; } .app-hardwareAddons.div-info { margin: 10px; } .textarea:focus { border-color: #FF4F1F !important; box-shadow: 0 0 0 0 !important; } .input:focus { border-color: #FF4F1F !important; box-shadow: 0 0 0 0 !important; } .field.is-grouped { margin: 20px 0px; } .checkbox { margin-left: 10px; } .help.is-danger { color: #FF4F1F !important; } .is-danger.input { border-color: #FF4F1F !important; } .preview-image img { max-height: 100px; } .use-case { margin-bottom: 10px; } #btn-add-useCase { margin-bottom: 10px; } #app-useCases { margin-left: 20px; } .useCase-title { margin-bottom: 10px; } .useCase-benefits { height: 13em !important; } .card-content { padding: 1rem !important; } .card-header-icon { align-items: flex-end !important; padding: 0px !important; justify-content: flex-end !important; } .file-label.btn { margin-bottom: 10px; } .file-cta { height: 40px; border-radius: 25px; border-color: #FF4F1F !important; color: #FF4F1F !important; background-color: #fff !important; border: 2px solid #FF4F1F; } .file-cta:hover { height: 40px; border-radius: 25px; color: #fff !important; background-color: #FF4F1F !important; border: 2px solid #FF4F1F; font-size: 16px; } /* Hide by default */ .preview-loading { display: none; margin-left: 20px; } .devfoundry-comment-notif { color: #9bb; display: none; } .devfoundry-note { background-color: #faffff; } .information-box { background-color: #f5ffff; } section#hero { background-color: #5d3e5d; } section#hero a { color: #FFFFFF; } section#hero a:hover { background-color: #755175; } section#hero img { max-height: 1rem; } section#hero div.hero-body { padding: 1.5rem; } #second-refresh { padding: 14px; padding-right: 22px; } .md-format-text { font-size: 0.65em; text-decoration: underline; color: rgb(255, 124, 88); } .tabs .is-active a{ color: #FF4F1F !important; } .tabs a{ color: #4a4a4a !important; } .control-applicationLocation { display: flex; flex-direction: column; } .control-regionalOAuthGrantType { display: flex; flex-direction: column; } #p-app-icon { margin-left: 20px; } .note-from { float: left; width: 50%; } .note-time { float: right; text-align: right; width: 50%; } .devfoundry-note-message { margin-left: 10px; } #preview-listing-iframe { width: 100%; height: 800px; }
docs/partner-side/styles/main.css
.genOrange{ color: #FF4F1F; } .loading-text { font-size: 32px; } .label { color: #FF4F1F; } a { color: #FF4F1F !important; } .form-label { color: #FF4F1F; display: block; font-size: 1rem; font-weight: 700; } .div-section { display: flex; overflow: auto; } .div-info { flex-grow: 50; margin: 20px; } .control-selling-party { display: flex; flex-direction: column; } .radio { margin-left: 10px; } .radio+.radio { margin-left: 10px; } .button { height: 40px; border-radius: 25px; color: #fff !important; background-color: #FF4F1F !important; border: 2px solid #FF4F1F; font-size: 16px; } .button:hover { height: 40px; border-radius: 25px; border-color: #FF4F1F !important; color: #FF4F1F !important; background-color: #fff !important; border: 2px solid #FF4F1F; } .button:focus { box-shadow: 0 0 0 0 !important; border-color: #FF4F1F !important; } button.delete:hover { background-color: #FF4F1F !important; } .button.is-light { height: 40px; border-radius: 25px; border-color: #FF4F1F !important; color: #FF4F1F !important; background-color: #fff !important; border: 2px solid #FF4F1F; } .button.is-light:hover { height: 40px; border-radius: 25px; color: #fff !important; background-color: #FF4F1F !important; border: 2px solid #FF4F1F; font-size: 16px; } .app-hardwareAddons.div-info { margin: 10px; } .textarea:focus { border-color: #FF4F1F !important; box-shadow: 0 0 0 0 !important; } .input:focus { border-color: #FF4F1F !important; box-shadow: 0 0 0 0 !important; } .field.is-grouped { margin: 20px 0px; } .checkbox { margin-left: 10px; } .help.is-danger { color: #FF4F1F !important; } .is-danger.input { border-color: #FF4F1F !important; } .preview-image img { max-height: 100px; } .use-case { margin-bottom: 10px; } #btn-add-useCase { margin-bottom: 10px; } #app-useCases { margin-left: 20px; } .useCase-title { margin-bottom: 10px; } .useCase-benefits { height: 13em !important; } .card-content { padding: 1rem !important; } .card-header-icon { align-items: flex-end !important; padding: 0px !important; justify-content: flex-end !important; } .file-label.btn { margin-bottom: 10px; } .file-cta { height: 40px; border-radius: 25px; border-color: #FF4F1F !important; color: #FF4F1F !important; background-color: #fff !important; border: 2px solid #FF4F1F; } .file-cta:hover { height: 40px; border-radius: 25px; color: #fff !important; background-color: #FF4F1F !important; border: 2px solid #FF4F1F; font-size: 16px; } /* Hide by default */ .preview-loading { display: none; margin-left: 20px; } .devfoundry-comment-notif { color: #9bb; display: none; } .devfoundry-note { background-color: #faffff; } .information-box { background-color: #f5ffff; } section#hero { background-color: #5d3e5d; } section#hero a { color: #FFFFFF; } section#hero a:hover { background-color: #755175; } section#hero img { max-height: 1rem; } section#hero div.hero-body { padding: 1.5rem; } #second-refresh { padding: 14px; padding-right: 22px; } .md-format-text { font-size: 0.65em; text-decoration: underline; color: rgb(255, 124, 88); } .tabs .is-active a{ color: #FF4F1F !important; } .tabs a{ color: #4a4a4a !important; } .control-applicationLocation { display: flex; flex-direction: column; } .control-regionalOAuthGrantType { display: flex; flex-direction: column; } #p-app-icon { margin-left: 20px; } .note-from { float: left; width: 50%; } .note-time { float: right; text-align: right; width: 50%; } .devfoundry-note-message { margin-left: 10px; } #preview-listing-iframe { width: 100%; height: 800px; }
0.414306
0.139631
@import url('https://fonts.googleapis.com/css?family=Heebo:400,700|Open+Sans:400,700'); :root { --color: #3c3163; --transition-time: 0.5s; } * { box-sizing: border-box; } body { margin: 0; min-height: 100vh; font-family: 'Open Sans'; background: #fafafa; } a { color: inherit; } .cards-wrapper { /* display: grid; */ justify-content: center; align-items: center; grid-template-columns: 1fr 1fr 1fr; grid-gap: 1rem; padding: 1rem; margin: 0 auto; width: max-content; } .card { font-family: 'Heebo'; --bg-filter-opacity: 0.5; background-image: linear-gradient(rgba(0,0,0,var(--bg-filter-opacity)),rgba(0,0,0,var(--bg-filter-opacity))), var(--bg-img); min-height: 12em; max-width: 40em; font-size: 1.4em; color: white; border-radius: 1em; padding: 1em; /* margin: 2em; */ display: flex; align-items: flex-end; background-size: cover; background-position: center; box-shadow: 0 0 5em -1em black; transition: all, var(--transition-time); position: relative; overflow: hidden; border: 10px solid #ccc; text-decoration: none; } .card:hover { transform: rotate(0); } .card h1 { margin: 0; font-size: 1.5em; line-height: 1.2em; } .card p { font-size: 0.75em; font-family: 'Open Sans'; margin-top: 0.5em; line-height: 2em; } .card .tags { display: flex; } .card .tags .tag { font-size: 0.75em; background: rgba(255,255,255,0.5); border-radius: 0.3rem; padding: 0 0.5em; margin-right: 0.5em; line-height: 1.5em; transition: all, var(--transition-time); } .card:hover .tags .tag { background: var(--color); color: white; } .card .date { position: absolute; top: 0; right: 0; font-size: 0.75em; padding: 1em; line-height: 1em; opacity: .7; } .card:before, .card:after { content: ''; transform: scale(0); transform-origin: top left; border-radius: 50%; position: absolute; left: -50%; top: -50%; z-index: -5; transition: all, var(--transition-time); transition-timing-function: ease-in-out; } .card:before { background: #ddd; width: 250%; height: 250%; } .card:after { background: rgb(217, 237, 255); width: 200%; height: 200%; } .card:hover { color: var(--color); } .card:hover:before, .card:hover:after { transform: scale(1); } .card-grid-space .num { font-size: 3em; margin-bottom: 1.2rem; margin-left: 1rem; } .info { font-size: 1.2em; display: flex; padding: 1em 3em; height: 5em; background-color: rgb(0, 24, 48); } /* MEDIA QUERIES */ @media screen and (max-width: 1285px) { .cards-wrapper { grid-template-columns: 1fr 1fr; } } @media screen and (max-width: 900px) { .cards-wrapper { grid-template-columns: 1fr; } .info { justify-content: center; } .card-grid-space .num { margin-left: 0; text-align: center; } } @media screen and (max-width: 500px) { .cards-wrapper { padding: 4rem 2rem; } .card { max-width: calc(100vw - 4rem); } } @media screen and (max-width: 450px) { .info { display: block; text-align: center; } .info h1 { margin: 0; } } body { padding-top:30px; } .widget .panel-body { padding:0px; } .widget .list-group { margin-bottom: 0; } .widget .panel-title { display:inline } .widget .label-info { float: right; } .widget li.list-group-item {border-radius: 0;border: 0;border-top: 1px solid #ddd;} .widget li.list-group-item:hover { background-color: rgba(86,61,124,.1); } .widget .mic-info { color: #666666;font-size: 11px; } .widget .action { margin-top:-2px; } .widget .comment-text { font-size: 24px; } .widget .btn-block { border-top-left-radius:0px;border-top-right-radius:0px; } .clickable { cursor: pointer; outline: none; } .disableDiv{ pointer-events:none; background-color:#666666; filter: alpha(opacity=75); /* internet explorer */ -khtml-opacity: 0.75; /* khtml, old safari */ -moz-opacity: 0.75; /* mozilla, netscape */ opacity: 0.75; /* fx, safari, opera */ } .modal-confirm { color: #636363; width: 550px; } .modal-confirm .modal-content { padding: 20px; border-radius: 5px; border: none; } .modal-confirm .modal-header { padding: 0 15px; border-bottom: none; position: relative; } .modal-confirm h4 { display: inline-block; font-size: 26px; } .modal-confirm .close { position: absolute; top: -5px; right: -5px; } .modal-confirm .modal-body { color: #999; } .modal-confirm .modal-footer { background: #ecf0f1; border-color: #e6eaec; text-align: right; margin: 0 -20px -20px; border-radius: 0 0 5px 5px; } .modal-confirm .btn { color: #fff; border-radius: 4px; transition: all 0.4s; border: none; padding: 8px 20px; outline: none !important; } .modal-confirm .btn-info { background: #b0c1c6; } .modal-confirm .btn-info:hover, .modal-confirm .btn-info:focus { background: #92a9af; } .modal-confirm .btn-danger { background: #f15e5e; } .modal-confirm .btn-danger:hover, .modal-confirm .btn-danger:focus { background: #ee3535; } .modal-confirm .modal-footer .btn + .btn { margin-left: 10px; } .trigger-btn { display: inline-block; margin: 100px auto; } #approved .modal-confirm { color: #636363; width: 325px; } #approved .modal-confirm .modal-content { padding: 20px; border-radius: 5px; border: none; } #approved .modal-confirm .modal-header { border-bottom: none; position: relative; } #approved .modal-confirm h4 { text-align: center; font-size: 26px; margin: 30px 0 -15px; } #approved .modal-confirm .form-control, .modal-confirm .btn { min-height: 40px; border-radius: 3px; } #approved .modal-confirm .close { position: absolute; top: -5px; right: -5px; } #approved .modal-confirm .modal-footer { border: none; text-align: center; border-radius: 5px; font-size: 13px; } #approved .modal-confirm .icon-box { color: #fff; position: absolute; margin: 0 auto; left: 0; right: 0; top: -70px; width: 95px; height: 95px; border-radius: 50%; z-index: 9; background: #82ce34; padding: 15px; text-align: center; box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1); } #approved .modal-confirm .icon-box i { font-size: 58px; position: relative; top: 3px; } #approved .modal-confirm.modal-dialog { margin-top: 80px; } #approved .modal-confirm .btn { color: #fff; border-radius: 4px; background: #82ce34; text-decoration: none; transition: all 0.4s; line-height: normal; border: none; } #approved .modal-confirm .btn:hover, .modal-confirm .btn:focus { background: #6fb32b; outline: none; } #approved .trigger-btn { display: inline-block; margin: 100px auto; } #delete .modal-confirm { color: #636363; width: 400px; } #delete .modal-confirm .modal-content { padding: 20px; border-radius: 5px; border: none; text-align: center; font-size: 14px; } #delete .modal-confirm .modal-header { border-bottom: none; position: relative; } #delete .modal-confirm h4 { text-align: center; font-size: 26px; margin: 30px 0 -10px; } #delete .modal-confirm .close { position: absolute; top: -5px; right: -2px; } #delete .modal-confirm .modal-body { color: #999; } #delete .modal-confirm .modal-footer { border: none; text-align: center; border-radius: 5px; font-size: 13px; padding: 10px 15px 25px; } #delete .modal-confirm .modal-footer a { color: #999; } #delete .modal-confirm .icon-box { width: 80px; height: 80px; margin: 0 auto; border-radius: 50%; z-index: 9; text-align: center; border: 3px solid #f15e5e; } #delete .modal-confirm .icon-box i { color: #f15e5e; font-size: 46px; display: inline-block; margin-top: 13px; } #delete .modal-confirm .btn { color: #fff; border-radius: 4px; background: #60c7c1; text-decoration: none; transition: all 0.4s; line-height: normal; min-width: 120px; border: none; min-height: 40px; border-radius: 3px; margin: 0 5px; outline: none !important; } #delete .modal-confirm .btn-info { background: #c1c1c1; } #delete .modal-confirm .btn-info:hover, .modal-confirm .btn-info:focus { background: #a8a8a8; } #delete .modal-confirm .btn-danger { background: #f15e5e; } #delete .modal-confirm .btn-danger:hover, .modal-confirm .btn-danger:focus { background: #ee3535; } #delete .trigger-btn { display: inline-block; margin: 100px auto; } .bar { background: #4CAF50; width: 100%; height: 82px; display: flex; } .body{ min-height: 600px; }
src/app/tutorial/all-tutorials/all-tutorials.component.css
@import url('https://fonts.googleapis.com/css?family=Heebo:400,700|Open+Sans:400,700'); :root { --color: #3c3163; --transition-time: 0.5s; } * { box-sizing: border-box; } body { margin: 0; min-height: 100vh; font-family: 'Open Sans'; background: #fafafa; } a { color: inherit; } .cards-wrapper { /* display: grid; */ justify-content: center; align-items: center; grid-template-columns: 1fr 1fr 1fr; grid-gap: 1rem; padding: 1rem; margin: 0 auto; width: max-content; } .card { font-family: 'Heebo'; --bg-filter-opacity: 0.5; background-image: linear-gradient(rgba(0,0,0,var(--bg-filter-opacity)),rgba(0,0,0,var(--bg-filter-opacity))), var(--bg-img); min-height: 12em; max-width: 40em; font-size: 1.4em; color: white; border-radius: 1em; padding: 1em; /* margin: 2em; */ display: flex; align-items: flex-end; background-size: cover; background-position: center; box-shadow: 0 0 5em -1em black; transition: all, var(--transition-time); position: relative; overflow: hidden; border: 10px solid #ccc; text-decoration: none; } .card:hover { transform: rotate(0); } .card h1 { margin: 0; font-size: 1.5em; line-height: 1.2em; } .card p { font-size: 0.75em; font-family: 'Open Sans'; margin-top: 0.5em; line-height: 2em; } .card .tags { display: flex; } .card .tags .tag { font-size: 0.75em; background: rgba(255,255,255,0.5); border-radius: 0.3rem; padding: 0 0.5em; margin-right: 0.5em; line-height: 1.5em; transition: all, var(--transition-time); } .card:hover .tags .tag { background: var(--color); color: white; } .card .date { position: absolute; top: 0; right: 0; font-size: 0.75em; padding: 1em; line-height: 1em; opacity: .7; } .card:before, .card:after { content: ''; transform: scale(0); transform-origin: top left; border-radius: 50%; position: absolute; left: -50%; top: -50%; z-index: -5; transition: all, var(--transition-time); transition-timing-function: ease-in-out; } .card:before { background: #ddd; width: 250%; height: 250%; } .card:after { background: rgb(217, 237, 255); width: 200%; height: 200%; } .card:hover { color: var(--color); } .card:hover:before, .card:hover:after { transform: scale(1); } .card-grid-space .num { font-size: 3em; margin-bottom: 1.2rem; margin-left: 1rem; } .info { font-size: 1.2em; display: flex; padding: 1em 3em; height: 5em; background-color: rgb(0, 24, 48); } /* MEDIA QUERIES */ @media screen and (max-width: 1285px) { .cards-wrapper { grid-template-columns: 1fr 1fr; } } @media screen and (max-width: 900px) { .cards-wrapper { grid-template-columns: 1fr; } .info { justify-content: center; } .card-grid-space .num { margin-left: 0; text-align: center; } } @media screen and (max-width: 500px) { .cards-wrapper { padding: 4rem 2rem; } .card { max-width: calc(100vw - 4rem); } } @media screen and (max-width: 450px) { .info { display: block; text-align: center; } .info h1 { margin: 0; } } body { padding-top:30px; } .widget .panel-body { padding:0px; } .widget .list-group { margin-bottom: 0; } .widget .panel-title { display:inline } .widget .label-info { float: right; } .widget li.list-group-item {border-radius: 0;border: 0;border-top: 1px solid #ddd;} .widget li.list-group-item:hover { background-color: rgba(86,61,124,.1); } .widget .mic-info { color: #666666;font-size: 11px; } .widget .action { margin-top:-2px; } .widget .comment-text { font-size: 24px; } .widget .btn-block { border-top-left-radius:0px;border-top-right-radius:0px; } .clickable { cursor: pointer; outline: none; } .disableDiv{ pointer-events:none; background-color:#666666; filter: alpha(opacity=75); /* internet explorer */ -khtml-opacity: 0.75; /* khtml, old safari */ -moz-opacity: 0.75; /* mozilla, netscape */ opacity: 0.75; /* fx, safari, opera */ } .modal-confirm { color: #636363; width: 550px; } .modal-confirm .modal-content { padding: 20px; border-radius: 5px; border: none; } .modal-confirm .modal-header { padding: 0 15px; border-bottom: none; position: relative; } .modal-confirm h4 { display: inline-block; font-size: 26px; } .modal-confirm .close { position: absolute; top: -5px; right: -5px; } .modal-confirm .modal-body { color: #999; } .modal-confirm .modal-footer { background: #ecf0f1; border-color: #e6eaec; text-align: right; margin: 0 -20px -20px; border-radius: 0 0 5px 5px; } .modal-confirm .btn { color: #fff; border-radius: 4px; transition: all 0.4s; border: none; padding: 8px 20px; outline: none !important; } .modal-confirm .btn-info { background: #b0c1c6; } .modal-confirm .btn-info:hover, .modal-confirm .btn-info:focus { background: #92a9af; } .modal-confirm .btn-danger { background: #f15e5e; } .modal-confirm .btn-danger:hover, .modal-confirm .btn-danger:focus { background: #ee3535; } .modal-confirm .modal-footer .btn + .btn { margin-left: 10px; } .trigger-btn { display: inline-block; margin: 100px auto; } #approved .modal-confirm { color: #636363; width: 325px; } #approved .modal-confirm .modal-content { padding: 20px; border-radius: 5px; border: none; } #approved .modal-confirm .modal-header { border-bottom: none; position: relative; } #approved .modal-confirm h4 { text-align: center; font-size: 26px; margin: 30px 0 -15px; } #approved .modal-confirm .form-control, .modal-confirm .btn { min-height: 40px; border-radius: 3px; } #approved .modal-confirm .close { position: absolute; top: -5px; right: -5px; } #approved .modal-confirm .modal-footer { border: none; text-align: center; border-radius: 5px; font-size: 13px; } #approved .modal-confirm .icon-box { color: #fff; position: absolute; margin: 0 auto; left: 0; right: 0; top: -70px; width: 95px; height: 95px; border-radius: 50%; z-index: 9; background: #82ce34; padding: 15px; text-align: center; box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1); } #approved .modal-confirm .icon-box i { font-size: 58px; position: relative; top: 3px; } #approved .modal-confirm.modal-dialog { margin-top: 80px; } #approved .modal-confirm .btn { color: #fff; border-radius: 4px; background: #82ce34; text-decoration: none; transition: all 0.4s; line-height: normal; border: none; } #approved .modal-confirm .btn:hover, .modal-confirm .btn:focus { background: #6fb32b; outline: none; } #approved .trigger-btn { display: inline-block; margin: 100px auto; } #delete .modal-confirm { color: #636363; width: 400px; } #delete .modal-confirm .modal-content { padding: 20px; border-radius: 5px; border: none; text-align: center; font-size: 14px; } #delete .modal-confirm .modal-header { border-bottom: none; position: relative; } #delete .modal-confirm h4 { text-align: center; font-size: 26px; margin: 30px 0 -10px; } #delete .modal-confirm .close { position: absolute; top: -5px; right: -2px; } #delete .modal-confirm .modal-body { color: #999; } #delete .modal-confirm .modal-footer { border: none; text-align: center; border-radius: 5px; font-size: 13px; padding: 10px 15px 25px; } #delete .modal-confirm .modal-footer a { color: #999; } #delete .modal-confirm .icon-box { width: 80px; height: 80px; margin: 0 auto; border-radius: 50%; z-index: 9; text-align: center; border: 3px solid #f15e5e; } #delete .modal-confirm .icon-box i { color: #f15e5e; font-size: 46px; display: inline-block; margin-top: 13px; } #delete .modal-confirm .btn { color: #fff; border-radius: 4px; background: #60c7c1; text-decoration: none; transition: all 0.4s; line-height: normal; min-width: 120px; border: none; min-height: 40px; border-radius: 3px; margin: 0 5px; outline: none !important; } #delete .modal-confirm .btn-info { background: #c1c1c1; } #delete .modal-confirm .btn-info:hover, .modal-confirm .btn-info:focus { background: #a8a8a8; } #delete .modal-confirm .btn-danger { background: #f15e5e; } #delete .modal-confirm .btn-danger:hover, .modal-confirm .btn-danger:focus { background: #ee3535; } #delete .trigger-btn { display: inline-block; margin: 100px auto; } .bar { background: #4CAF50; width: 100%; height: 82px; display: flex; } .body{ min-height: 600px; }
0.493653
0.088899
#common-modal .modal-body p > span { color: #fff !important; font-family: 'UnderDog', sans-serif !important; font-size: 22px !important; } .modal .modal-dialog { width: 90% !important; margin: 40px auto; } h1 { font-size: 2.25em; line-height: 0.9; margin: 0.01em 0; text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.33); } img.lazy { display: block; } /********* BXSLIDER ***********/ .bx-wrapper { position: relative; margin: 0 0 60px; padding: 0; *zoom: 1; } .grid-item-4 .bx-wrapper, .grid-item-4 .bx-viewport { width: 250px !important; max-width: 250px; height: 245px !important; } .grid-item-3 .bx-wrapper, .grid-item-3 .bx-viewport { width: 210px !important; max-width: 210px; height: 205px !important; } .grid-item.grid-item-2 { height: 285px; max-height: 285px; min-height: 285px; margin-bottom: 10px; } .grid-item.grid-item-3.blog { height: 410px; max-height: 410px; min-height: 410px; margin-bottom: 10px; } .grid-item.grid-item-3 { height: 350px; max-height: 350px; min-height: 350px; margin-bottom: 10px; } .grid-item.grid-item-4 { height: 400px; max-height: 400px; min-height: 400px; margin-bottom: 10px; } .grid-item .item-content h5 { font-family: 'UnderDog', sans-serif; cursor: pointer; } .grid-item.grid-item-2 .item-content h5{ line-height: 19px; font-family: 'UnderDog', sans-serif; font-size: 22px !important; word-wrap: break-word; } .grid-item.grid-item-3 .item-content h5{ line-height: 31px; font-family: 'UnderDog', sans-serif; font-size: 30px !important; word-wrap: break-word; padding-top: 5px; word-wrap: break-word; } .grid-item.grid-item-4 .item-content h5{ line-height: 34px; font-family: 'UnderDog', sans-serif; font-size: 35px !important; word-wrap: break-word; padding-top: 5px; word-wrap: break-word; } .grid-item.grid-item-2 .descriptionForGrid { font-size: 22px !important; line-height: 23px; font-family: 'UnderDog', sans-serif !important; word-wrap: break-word; max-height: 90px; overflow: hidden; height: 90px; min-height: 90px; } .grid-item .btn-item-grid{ position: absolute; bottom: 0; left: 50%; } .grid-item-2 .btn-item-grid { margin-left: -68px; } .grid-item-3 .btn-item-grid { margin-left: -70px; } .grid-item-4 .btn-item-grid { margin-left: -71px; } .grid-item-2 .bx-wrapper, .grid-item-2 .bx-viewport { width: 170px !important; max-width: 170px; height: 165px !important; } .bx-wrapper img { width: 100%; display: block; } .bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto { position: absolute; bottom: -30px; width: 100%; } .bx-wrapper .bx-viewport { -moz-box-shadow: 0 0 5px #ccc; -webkit-box-shadow: 0 0 5px #ccc; box-shadow: 0 0 5px #ccc; border: solid #fff 1px; left: -5px; background: inherit; -webkit-transform: translatez(0); -moz-transform: translatez(0); -ms-transform: translatez(0); -o-transform: translatez(0); transform: translatez(0); } .bx-wrapper .bx-loading { min-height: 50px; background: url(../images/icons/loader.gif) center center no-repeat; height: 100%; width: 100%; position: absolute; top: 0; left: 0; z-index: 2000; } .bx-wrapper .bx-next { right: 3px; background: url(../images/icons/controls.png) no-repeat -63px -33px; } .bx-wrapper .bx-next:hover { background: url(../images/icons/controls.png) no-repeat -183px -33px; } .bx-wrapper .bx-prev { left: -7px; background: url(../images/icons/controls.png) no-repeat -3px -33px; } .bx-wrapper .bx-prev:hover { background: url(../images/icons/controls.png) no-repeat -123px -33px; } .bx-wrapper .bx-controls-direction a { position: absolute; top: 50%; margin-top: -20px; outline: 0; width: 55px; height: 55px; text-indent: -9999px; z-index: 9999; } .bx-controls-direction a { opacity: 0; transition: opacity .25s ease-in-out; -moz-transition: opacity .25s ease-in-out; -webkit-transition: opacity .25s ease-in-out; } .bx-wrapper:hover .bx-controls-direction a { opacity: 1; } /*.bx-controls-direction {*/ /*opacity: 1;*/ /*transition: opacity .25s ease-in-out;*/ /*-moz-transition: opacity .25s ease-in-out;*/ /*-webkit-transition: opacity .25s ease-in-out;*/ /*}*/ /*.bx-wrapper:hover .bx-controls-direction a{*/ /*opacity: 1;*/ /*}*/ /*.bx-controls-direction a{*/ /*opacity: 0;*/ /*transition: opacity .25s ease-in-out;*/ /*-moz-transition: opacity .25s ease-in-out;*/ /*-webkit-transition: opacity .25s ease-in-out;*/ /*}*/ /*.bxslider:hover .bx-controls-direction a{*/ /*opacity: 1;*/ /*}*/ /*JSSOR*/ .jssora03l, .jssora03r, .jssora03ldn, .jssora03rdn { position: absolute; cursor: pointer; display: block; background: url('../images/icons/controls.png') no-repeat; overflow: hidden; } .jssora03l { background-position: -3px -33px } .jssora03r { background-position: -63px -33px } .jssora03l:hover { background-position: -123px -33px } .jssora03r:hover { background-position: -183px -33px } .jssora03ldn { background-position: -243px -33px } .jssora03rdn { background-position: -303px -33px } /* jssor slider thumbnail navigator skin 02 css */ /* .jssort02 .p (normal) .jssort02 .p:hover (normal mouseover) .jssort02 .pav (active) .jssort02 .pav:hover (active mouseover) .jssort02 .pdn (mousedown) */ .jssort02 .w { position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; } .jssort02 .c { position: absolute; top: 0px; left: 0px; width: 95px; height: 62px; border: #000 2px solid; } .jssort02 .p:hover .c, .jssort02 .pav:hover .c, .jssort02 .pav .c { background: url('../images/icons/plus.png') center center; border-width: 0px; top: 2px; left: 2px; width: 95px; height: 62px; } .jssort02 .p:hover .c, .jssort02 .pav:hover .c { top: 0px; left: 0px; width: 97px; height: 64px; border: #fff 1px solid; } .modal-populate .panel>.panel-body div { color: #fff !important; font-size: 1.29vw !important; } .video-container { position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden; } .video-container iframe, .video-container object, .video-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .showThumbByDefault #lightGallery-Gallery.open .lightGallery-slide { padding-bottom: 120px; } .showThumbByDefault #lightGallery-Gallery .thumb_cont .thumb_info{ display:none; } /*/ actions */ .showThumbByDefault #lightGallery-action { position: static; } .showThumbByDefault #lightGallery-action a { margin-top: -14px !important; position: absolute; top: 50%; z-index: 9999999; background-color: transparent; font-size: 28px; } .showThumbByDefault #lightGallery-action a#lightGallery-prev { left: 17px; } .showThumbByDefault #lightGallery-action a#lightGallery-next { right: 17px; } .localVideo #lightGallery-action { position: static; } .lightGallery { overflow: hidden!important; float: left; margin-top: 2px; cursor: pointer; margin-left: -7px; } .lightGallery img { height: 150px; max-height: 150px; } #lightGallery-outer, .splash-promo { background: url(../images/bg/background-image-overlay.png) repeat; } .splash-promo { background: url(../images/black.png) repeat; box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.88); -moz-box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.88); -webkit-box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.88); } .customHtml { height: 85px; } .modal-videos, .modal-photos { padding-bottom: 15px; } p.promo { margin:0px; font-size: 16px; } p.promo-one { margin:10px !important; text-align: center; font-size: 60px; } p.promo-two { margin: 8px !important; text-align: center; font-size: 38px; line-height: 32px; } p.promo-three { margin-top: 24px !important; font-size: 38px; text-align: center; line-height: 32px; } p.promo-four { margin-top: 22px !important; text-align: center; font-size: 54px; line-height: 51px; } p.promo-five { margin-top: 15px !important; text-align: center; font-size: 28px; } p.promo-six { margin-top: 22px !important; text-align: right; font-size: 45px; } .descriptionForGrid { font-size: 20px !important; line-height: 25.2px; font-family: 'UnderDog', sans-serif !important; } .customHtml h4 { font-size: 25px !important; line-height: 25.2px; font-family: 'UnderDog', sans-serif !important; font-weight: normal; } .customHtml { background: none repeat scroll 0 0 black; background: none repeat scroll 0 0 rgba(0, 0, 0, 0.75); color: #fff; font-family: 'UnderDog', sans-serif; height: 70px; left: 0; position: absolute; right: 0; top: 0; z-index: 9; } .customHtml p { font-size: 14px; } .customHtml > h4 { font-family: 'UnderDog', sans-serif; font-weight: bold; margin-bottom: 5px; margin-top: 15px; } .grid-item { position: relative; } @media (min-width: 992px) #main-content .grid-item-2 .btn-sm { font-size: 0.95em; position: absolute; bottom: 18px; left: 50%; margin-left: -70px; } /*.grid-item.grid-item-3 .item-content h5{ line-height: 29px; font-family: 'UnderDog', sans-serif; font-size: 36px !important; padding-bottom: 10px; word-wrap: break-word; width: 150px; }*/ .html5gallery-container-0 { display: block; position: absolute; left: 0px; top: 0px; width: 600px; height: 409px; background: none !important; background-color: transparent !important; } .html5gallery-car-0 { position: absolute; display: block; overflow: hidden; left: 12px; top: 337px; width: 480px; height: 60px; border-top: 1px solid #666666; border-bottom: 1px solid #111111; background-color: transparent !important; background: none !important; background: none !important; filter: none !important; -ms-filter: none !important; } .modal-block-text { text-align: left; } .thumbnail.item-content { background: transparent; border: 0px; } .thumbnail.item-content { color: #fff; text-align: center; } .thumbnail.item-content .caption{ padding: 0px; line-height: 0.8; margin-top: 5px; margin-bottom: 0px; font-size: 35px; color: #fff; } .thumbnail.item-content p.descr{ word-break: break-word; } .thumbnail.item-content p.button-wrapper{ position: absolute; left: 50%; margin-top: 40px; }
src/BS/FrontBundle/Resources/public/css/custom.css
#common-modal .modal-body p > span { color: #fff !important; font-family: 'UnderDog', sans-serif !important; font-size: 22px !important; } .modal .modal-dialog { width: 90% !important; margin: 40px auto; } h1 { font-size: 2.25em; line-height: 0.9; margin: 0.01em 0; text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.33); } img.lazy { display: block; } /********* BXSLIDER ***********/ .bx-wrapper { position: relative; margin: 0 0 60px; padding: 0; *zoom: 1; } .grid-item-4 .bx-wrapper, .grid-item-4 .bx-viewport { width: 250px !important; max-width: 250px; height: 245px !important; } .grid-item-3 .bx-wrapper, .grid-item-3 .bx-viewport { width: 210px !important; max-width: 210px; height: 205px !important; } .grid-item.grid-item-2 { height: 285px; max-height: 285px; min-height: 285px; margin-bottom: 10px; } .grid-item.grid-item-3.blog { height: 410px; max-height: 410px; min-height: 410px; margin-bottom: 10px; } .grid-item.grid-item-3 { height: 350px; max-height: 350px; min-height: 350px; margin-bottom: 10px; } .grid-item.grid-item-4 { height: 400px; max-height: 400px; min-height: 400px; margin-bottom: 10px; } .grid-item .item-content h5 { font-family: 'UnderDog', sans-serif; cursor: pointer; } .grid-item.grid-item-2 .item-content h5{ line-height: 19px; font-family: 'UnderDog', sans-serif; font-size: 22px !important; word-wrap: break-word; } .grid-item.grid-item-3 .item-content h5{ line-height: 31px; font-family: 'UnderDog', sans-serif; font-size: 30px !important; word-wrap: break-word; padding-top: 5px; word-wrap: break-word; } .grid-item.grid-item-4 .item-content h5{ line-height: 34px; font-family: 'UnderDog', sans-serif; font-size: 35px !important; word-wrap: break-word; padding-top: 5px; word-wrap: break-word; } .grid-item.grid-item-2 .descriptionForGrid { font-size: 22px !important; line-height: 23px; font-family: 'UnderDog', sans-serif !important; word-wrap: break-word; max-height: 90px; overflow: hidden; height: 90px; min-height: 90px; } .grid-item .btn-item-grid{ position: absolute; bottom: 0; left: 50%; } .grid-item-2 .btn-item-grid { margin-left: -68px; } .grid-item-3 .btn-item-grid { margin-left: -70px; } .grid-item-4 .btn-item-grid { margin-left: -71px; } .grid-item-2 .bx-wrapper, .grid-item-2 .bx-viewport { width: 170px !important; max-width: 170px; height: 165px !important; } .bx-wrapper img { width: 100%; display: block; } .bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto { position: absolute; bottom: -30px; width: 100%; } .bx-wrapper .bx-viewport { -moz-box-shadow: 0 0 5px #ccc; -webkit-box-shadow: 0 0 5px #ccc; box-shadow: 0 0 5px #ccc; border: solid #fff 1px; left: -5px; background: inherit; -webkit-transform: translatez(0); -moz-transform: translatez(0); -ms-transform: translatez(0); -o-transform: translatez(0); transform: translatez(0); } .bx-wrapper .bx-loading { min-height: 50px; background: url(../images/icons/loader.gif) center center no-repeat; height: 100%; width: 100%; position: absolute; top: 0; left: 0; z-index: 2000; } .bx-wrapper .bx-next { right: 3px; background: url(../images/icons/controls.png) no-repeat -63px -33px; } .bx-wrapper .bx-next:hover { background: url(../images/icons/controls.png) no-repeat -183px -33px; } .bx-wrapper .bx-prev { left: -7px; background: url(../images/icons/controls.png) no-repeat -3px -33px; } .bx-wrapper .bx-prev:hover { background: url(../images/icons/controls.png) no-repeat -123px -33px; } .bx-wrapper .bx-controls-direction a { position: absolute; top: 50%; margin-top: -20px; outline: 0; width: 55px; height: 55px; text-indent: -9999px; z-index: 9999; } .bx-controls-direction a { opacity: 0; transition: opacity .25s ease-in-out; -moz-transition: opacity .25s ease-in-out; -webkit-transition: opacity .25s ease-in-out; } .bx-wrapper:hover .bx-controls-direction a { opacity: 1; } /*.bx-controls-direction {*/ /*opacity: 1;*/ /*transition: opacity .25s ease-in-out;*/ /*-moz-transition: opacity .25s ease-in-out;*/ /*-webkit-transition: opacity .25s ease-in-out;*/ /*}*/ /*.bx-wrapper:hover .bx-controls-direction a{*/ /*opacity: 1;*/ /*}*/ /*.bx-controls-direction a{*/ /*opacity: 0;*/ /*transition: opacity .25s ease-in-out;*/ /*-moz-transition: opacity .25s ease-in-out;*/ /*-webkit-transition: opacity .25s ease-in-out;*/ /*}*/ /*.bxslider:hover .bx-controls-direction a{*/ /*opacity: 1;*/ /*}*/ /*JSSOR*/ .jssora03l, .jssora03r, .jssora03ldn, .jssora03rdn { position: absolute; cursor: pointer; display: block; background: url('../images/icons/controls.png') no-repeat; overflow: hidden; } .jssora03l { background-position: -3px -33px } .jssora03r { background-position: -63px -33px } .jssora03l:hover { background-position: -123px -33px } .jssora03r:hover { background-position: -183px -33px } .jssora03ldn { background-position: -243px -33px } .jssora03rdn { background-position: -303px -33px } /* jssor slider thumbnail navigator skin 02 css */ /* .jssort02 .p (normal) .jssort02 .p:hover (normal mouseover) .jssort02 .pav (active) .jssort02 .pav:hover (active mouseover) .jssort02 .pdn (mousedown) */ .jssort02 .w { position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; } .jssort02 .c { position: absolute; top: 0px; left: 0px; width: 95px; height: 62px; border: #000 2px solid; } .jssort02 .p:hover .c, .jssort02 .pav:hover .c, .jssort02 .pav .c { background: url('../images/icons/plus.png') center center; border-width: 0px; top: 2px; left: 2px; width: 95px; height: 62px; } .jssort02 .p:hover .c, .jssort02 .pav:hover .c { top: 0px; left: 0px; width: 97px; height: 64px; border: #fff 1px solid; } .modal-populate .panel>.panel-body div { color: #fff !important; font-size: 1.29vw !important; } .video-container { position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden; } .video-container iframe, .video-container object, .video-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .showThumbByDefault #lightGallery-Gallery.open .lightGallery-slide { padding-bottom: 120px; } .showThumbByDefault #lightGallery-Gallery .thumb_cont .thumb_info{ display:none; } /*/ actions */ .showThumbByDefault #lightGallery-action { position: static; } .showThumbByDefault #lightGallery-action a { margin-top: -14px !important; position: absolute; top: 50%; z-index: 9999999; background-color: transparent; font-size: 28px; } .showThumbByDefault #lightGallery-action a#lightGallery-prev { left: 17px; } .showThumbByDefault #lightGallery-action a#lightGallery-next { right: 17px; } .localVideo #lightGallery-action { position: static; } .lightGallery { overflow: hidden!important; float: left; margin-top: 2px; cursor: pointer; margin-left: -7px; } .lightGallery img { height: 150px; max-height: 150px; } #lightGallery-outer, .splash-promo { background: url(../images/bg/background-image-overlay.png) repeat; } .splash-promo { background: url(../images/black.png) repeat; box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.88); -moz-box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.88); -webkit-box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.88); } .customHtml { height: 85px; } .modal-videos, .modal-photos { padding-bottom: 15px; } p.promo { margin:0px; font-size: 16px; } p.promo-one { margin:10px !important; text-align: center; font-size: 60px; } p.promo-two { margin: 8px !important; text-align: center; font-size: 38px; line-height: 32px; } p.promo-three { margin-top: 24px !important; font-size: 38px; text-align: center; line-height: 32px; } p.promo-four { margin-top: 22px !important; text-align: center; font-size: 54px; line-height: 51px; } p.promo-five { margin-top: 15px !important; text-align: center; font-size: 28px; } p.promo-six { margin-top: 22px !important; text-align: right; font-size: 45px; } .descriptionForGrid { font-size: 20px !important; line-height: 25.2px; font-family: 'UnderDog', sans-serif !important; } .customHtml h4 { font-size: 25px !important; line-height: 25.2px; font-family: 'UnderDog', sans-serif !important; font-weight: normal; } .customHtml { background: none repeat scroll 0 0 black; background: none repeat scroll 0 0 rgba(0, 0, 0, 0.75); color: #fff; font-family: 'UnderDog', sans-serif; height: 70px; left: 0; position: absolute; right: 0; top: 0; z-index: 9; } .customHtml p { font-size: 14px; } .customHtml > h4 { font-family: 'UnderDog', sans-serif; font-weight: bold; margin-bottom: 5px; margin-top: 15px; } .grid-item { position: relative; } @media (min-width: 992px) #main-content .grid-item-2 .btn-sm { font-size: 0.95em; position: absolute; bottom: 18px; left: 50%; margin-left: -70px; } /*.grid-item.grid-item-3 .item-content h5{ line-height: 29px; font-family: 'UnderDog', sans-serif; font-size: 36px !important; padding-bottom: 10px; word-wrap: break-word; width: 150px; }*/ .html5gallery-container-0 { display: block; position: absolute; left: 0px; top: 0px; width: 600px; height: 409px; background: none !important; background-color: transparent !important; } .html5gallery-car-0 { position: absolute; display: block; overflow: hidden; left: 12px; top: 337px; width: 480px; height: 60px; border-top: 1px solid #666666; border-bottom: 1px solid #111111; background-color: transparent !important; background: none !important; background: none !important; filter: none !important; -ms-filter: none !important; } .modal-block-text { text-align: left; } .thumbnail.item-content { background: transparent; border: 0px; } .thumbnail.item-content { color: #fff; text-align: center; } .thumbnail.item-content .caption{ padding: 0px; line-height: 0.8; margin-top: 5px; margin-bottom: 0px; font-size: 35px; color: #fff; } .thumbnail.item-content p.descr{ word-break: break-word; } .thumbnail.item-content p.button-wrapper{ position: absolute; left: 50%; margin-top: 40px; }
0.263694
0.057573
body { font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS Pゴシック", "MS PGothic", sans-serif; font-size: 15px; background: #FBEFF5; } /* スマホ */ @media screen and (min-width:340px){ .container{ width: 340px; } } /* タブレット */ @media screen and (min-width:768px){ .container{ width: 750px; } } /* pc */ @media screen and (min-width:992px){ .container{ width: 970px; } } /* pc */ @media screen and (min-width:1200px){ .container{ width: 1170px; } } body.login-b { padding-top: 70px; background: #99CCFF; } .login-icon-box img { /*width: 96px;*/ } .login-form { background-color: #99CCFF; } .navbar-inverse{ background-color: #99CCFF; } /*リストのクリックできる範囲を広げる*/ li.list-group-item a{ display: block; } /*テーブル周りレイアウト*/ th { white-space: nowrap; } td i { margin-left: 3px; margin-right: 3px; } .tbl-txt-center th { text-align: center !important; } .tbl-pdg th, .tbl-pdg td { padding: 11px !important; } .tbl-input-line th { padding: 0 !important; line-height: 58px !important; } .table-bordered{ border: 2px solid #ccc; } /*フッターを一番下に固定*/ html,body { height: 100%; } h4 { font-size: 21px; } h5 { font-size: 19px; border-bottom: 2px solid #ccc; padding-bottom: 6px; } #wrap { width: 100%; position: relative; min-height: 100%; } #contents { padding: 0 0 30px; } footer { width: 100%; height: 30px; position: absolute; bottom: 0; } /*margin*/ .mt3 { margin-top: 3px; } .mt5 { margin-top: 5px; } .mt10 { margin-top: 10px; } .mt15 { margin-top: 15px; } .mt20 { margin-top: 20px; } .mt30 { margin-top: 30px; } .mb3 { margin-bottom: 3px; } .mb5 { margin-bottom: 5px; } .mb10 { margin-bottom: 10px; } .mb15 { margin-bottom: 15px; } .mb20 { margin-bottom: 20px; } .mb30 { margin-bottom: 30px; } /*padding*/ .pdg0 { padding: 0; } .pdg3 { padding: 3px; } .pdg5 { padding: 5px; } .pdg10 { padding: 10px; } .pdg15 { padding: 15px; } .pdg20 { padding: 20px; } /*color*/ .color-dpink { color: deeppink; } .color-w { color: #fff; } .color-gc { color: #ccc; } /* センタリング */ .center { text-align: center; } /* テーブルのセル 幅 */ .wp30 { width: 30%; } .wp40 { width: 40%; } /* 画像 高さ */ .h40 { height: 40px; } .h60 { height: 60px; } .h80 { height: 80px; } .h100 { height: 100px; } .h150 { height: 150px; } .h200 { height: 200px; } /* キャンペーン input サムネイル表示用 */ .input label { width: 200px; text-align: center; vertical-align: top; border: solid 1px silver; padding: 5px; margin: 3px; } .input label.hansha { width: 260px; text-align: left; vertical-align: top; border: solid 0px silver; padding: 1px; margin: 1px; } /* confirm サムネイル */ .view table{ float:left; text-align: center; border: solid 1px silver; width: 200px; margin: 5px; } .view table td{ padding: 5px; } hr{ margin-top: 1px; margin-bottom: 1px; } /* トピックス一覧のレコードの色分け */ .view_reserve{ background-color: #ffeaea; } .view_finish{ background-color: #fefdb8; } .view_check{ background-color: #bfe7f0; } h2 { font-size: 18px; } .inline-block{ display: inline-block !important; }
public/css/style.css
body { font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS Pゴシック", "MS PGothic", sans-serif; font-size: 15px; background: #FBEFF5; } /* スマホ */ @media screen and (min-width:340px){ .container{ width: 340px; } } /* タブレット */ @media screen and (min-width:768px){ .container{ width: 750px; } } /* pc */ @media screen and (min-width:992px){ .container{ width: 970px; } } /* pc */ @media screen and (min-width:1200px){ .container{ width: 1170px; } } body.login-b { padding-top: 70px; background: #99CCFF; } .login-icon-box img { /*width: 96px;*/ } .login-form { background-color: #99CCFF; } .navbar-inverse{ background-color: #99CCFF; } /*リストのクリックできる範囲を広げる*/ li.list-group-item a{ display: block; } /*テーブル周りレイアウト*/ th { white-space: nowrap; } td i { margin-left: 3px; margin-right: 3px; } .tbl-txt-center th { text-align: center !important; } .tbl-pdg th, .tbl-pdg td { padding: 11px !important; } .tbl-input-line th { padding: 0 !important; line-height: 58px !important; } .table-bordered{ border: 2px solid #ccc; } /*フッターを一番下に固定*/ html,body { height: 100%; } h4 { font-size: 21px; } h5 { font-size: 19px; border-bottom: 2px solid #ccc; padding-bottom: 6px; } #wrap { width: 100%; position: relative; min-height: 100%; } #contents { padding: 0 0 30px; } footer { width: 100%; height: 30px; position: absolute; bottom: 0; } /*margin*/ .mt3 { margin-top: 3px; } .mt5 { margin-top: 5px; } .mt10 { margin-top: 10px; } .mt15 { margin-top: 15px; } .mt20 { margin-top: 20px; } .mt30 { margin-top: 30px; } .mb3 { margin-bottom: 3px; } .mb5 { margin-bottom: 5px; } .mb10 { margin-bottom: 10px; } .mb15 { margin-bottom: 15px; } .mb20 { margin-bottom: 20px; } .mb30 { margin-bottom: 30px; } /*padding*/ .pdg0 { padding: 0; } .pdg3 { padding: 3px; } .pdg5 { padding: 5px; } .pdg10 { padding: 10px; } .pdg15 { padding: 15px; } .pdg20 { padding: 20px; } /*color*/ .color-dpink { color: deeppink; } .color-w { color: #fff; } .color-gc { color: #ccc; } /* センタリング */ .center { text-align: center; } /* テーブルのセル 幅 */ .wp30 { width: 30%; } .wp40 { width: 40%; } /* 画像 高さ */ .h40 { height: 40px; } .h60 { height: 60px; } .h80 { height: 80px; } .h100 { height: 100px; } .h150 { height: 150px; } .h200 { height: 200px; } /* キャンペーン input サムネイル表示用 */ .input label { width: 200px; text-align: center; vertical-align: top; border: solid 1px silver; padding: 5px; margin: 3px; } .input label.hansha { width: 260px; text-align: left; vertical-align: top; border: solid 0px silver; padding: 1px; margin: 1px; } /* confirm サムネイル */ .view table{ float:left; text-align: center; border: solid 1px silver; width: 200px; margin: 5px; } .view table td{ padding: 5px; } hr{ margin-top: 1px; margin-bottom: 1px; } /* トピックス一覧のレコードの色分け */ .view_reserve{ background-color: #ffeaea; } .view_finish{ background-color: #fefdb8; } .view_check{ background-color: #bfe7f0; } h2 { font-size: 18px; } .inline-block{ display: inline-block !important; }
0.219003
0.101634
/* Logos */ .ui-logoDesktop { display: none; font-weight: bold; padding:1em 1em 1em 0; letter-spacing:1em; } .ui-logoMobil { font-weight: bold; padding:1em 1em 1em 0; letter-spacing:1em; } @media screen and (min-width: 500px) { .ui-logoDesktop {display: flex;flex-wrap: wrap;} .ui-logoMobil {display: none;} } /* Responsive Font Titles */ .ui-responsiveTitles h3{ font-size: 1.8em;font-weight: bold;} .ui-responsiveInfosFont {font-size: 0.8em; } @media screen and (min-width: 700px) { .ui-responsiveTitles h3 { font-size: 4.5em; } .ui-responsiveInfosFont {font-size: 1.3em; } } @media screen and (mina-width: 1300px) { .ui-responsiveTitles h3 { font-size: 4.5em; } .ui-responsiveInfosFont {font-size: 1.5em; } } @media screen and (min-width: 1800px) { .ui-responsiveTitles h3 { font-size: 6em; } .ui-responsiveInfosFont {font-size: 2em; } } /* Responsive Font Contact */ .ui-responsiveContactFont{ font-size: 1.3em;font-weight: bold; } @media screen and (min-width: 700px) { .ui-responsiveContactFont{ font-size: 3em; } } @media screen and (min-width: 1300px) { .ui-responsiveContactFont{ font-size: 6em; } } @media screen and (min-width: 1800px) { .ui-responsiveContactFont{ font-size: 7em; } } /* block hover on elements during intro animating */ .section2--blockHover { position: absolute; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 1000; } /* backgrounds previews when hover on titles */ .section2--backgroundsPreviews { position: absolute; top: 0; left: 0; width: 100vw; height: 100vh; background-position: center center; background-size: auto 100%; overflow: hidden; } .section2--backgroundsPreviews img{ width: 100%; height: auto; opacity: 0; transition:opacity 1s; } @media screen and (max-width: 1000px) { .section2--backgroundsPreviews img{ display: none; } } /* backgrounds previews url */ .back1 {background-image: url('https://jlantunes.com/wp-content/uploads/2017/04/graphismBack4.jpg');} .back2 {background-image: url('https://jlantunes.com/wp-content/uploads/2017/04/illusback1.jpg');} .back3 {background-image: url('https://jlantunes.com/wp-content/uploads/2017/04/webback2.jpg');} .back4 {background-image: url('https://jlantunes.com/wp-content/uploads/2017/04/otherBack1.jpg');} .section2--mainContent--titles { cursor: pointer; position: relative; align-items: baseline; } @media screen and (min-width: 1000px) { .section2--mainContent--titles { display: flex; flex-wrap: wrap; transition:color 0.5s; } } .section2--mainContent--titles:hover { color: #CD919E; } .section2--mainContent--titleFont { font-weight: bold; padding-bottom: 2px; } .section2--mainContent--infosTitles { display: flex; flex-wrap:wrap; width:auto; position: relative; } .infosTitles--seeProject{ width: 0; overflow: hidden; position: absolute; left:0; bottom:0; padding-left: 0; transition:all 0.2s; width: 0; color: #CD919E; font-weight: bold; }
css/section2.css
/* Logos */ .ui-logoDesktop { display: none; font-weight: bold; padding:1em 1em 1em 0; letter-spacing:1em; } .ui-logoMobil { font-weight: bold; padding:1em 1em 1em 0; letter-spacing:1em; } @media screen and (min-width: 500px) { .ui-logoDesktop {display: flex;flex-wrap: wrap;} .ui-logoMobil {display: none;} } /* Responsive Font Titles */ .ui-responsiveTitles h3{ font-size: 1.8em;font-weight: bold;} .ui-responsiveInfosFont {font-size: 0.8em; } @media screen and (min-width: 700px) { .ui-responsiveTitles h3 { font-size: 4.5em; } .ui-responsiveInfosFont {font-size: 1.3em; } } @media screen and (mina-width: 1300px) { .ui-responsiveTitles h3 { font-size: 4.5em; } .ui-responsiveInfosFont {font-size: 1.5em; } } @media screen and (min-width: 1800px) { .ui-responsiveTitles h3 { font-size: 6em; } .ui-responsiveInfosFont {font-size: 2em; } } /* Responsive Font Contact */ .ui-responsiveContactFont{ font-size: 1.3em;font-weight: bold; } @media screen and (min-width: 700px) { .ui-responsiveContactFont{ font-size: 3em; } } @media screen and (min-width: 1300px) { .ui-responsiveContactFont{ font-size: 6em; } } @media screen and (min-width: 1800px) { .ui-responsiveContactFont{ font-size: 7em; } } /* block hover on elements during intro animating */ .section2--blockHover { position: absolute; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 1000; } /* backgrounds previews when hover on titles */ .section2--backgroundsPreviews { position: absolute; top: 0; left: 0; width: 100vw; height: 100vh; background-position: center center; background-size: auto 100%; overflow: hidden; } .section2--backgroundsPreviews img{ width: 100%; height: auto; opacity: 0; transition:opacity 1s; } @media screen and (max-width: 1000px) { .section2--backgroundsPreviews img{ display: none; } } /* backgrounds previews url */ .back1 {background-image: url('https://jlantunes.com/wp-content/uploads/2017/04/graphismBack4.jpg');} .back2 {background-image: url('https://jlantunes.com/wp-content/uploads/2017/04/illusback1.jpg');} .back3 {background-image: url('https://jlantunes.com/wp-content/uploads/2017/04/webback2.jpg');} .back4 {background-image: url('https://jlantunes.com/wp-content/uploads/2017/04/otherBack1.jpg');} .section2--mainContent--titles { cursor: pointer; position: relative; align-items: baseline; } @media screen and (min-width: 1000px) { .section2--mainContent--titles { display: flex; flex-wrap: wrap; transition:color 0.5s; } } .section2--mainContent--titles:hover { color: #CD919E; } .section2--mainContent--titleFont { font-weight: bold; padding-bottom: 2px; } .section2--mainContent--infosTitles { display: flex; flex-wrap:wrap; width:auto; position: relative; } .infosTitles--seeProject{ width: 0; overflow: hidden; position: absolute; left:0; bottom:0; padding-left: 0; transition:all 0.2s; width: 0; color: #CD919E; font-weight: bold; }
0.397471
0.093637
@import url('https://fonts.googleapis.com/css2?family=Major+Mono+Display&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700&display=swap'); .navbar-brand { float: left; padding-left: 25px; padding-right: 15px; font-family: 'Major Mono Display', monospace !important; color: #ffffff; font-size: 31px; line-height: 2; } .navbar-brand img { -webkit-backface-visibility: hidden; -ms-transform: translateZ(0); /* IE 9 */ -webkit-transform: translateZ(0); /* Chrome, Safari, Opera */ transform: translateZ(0); } /* –––––––––––––––––––––––––––––––––––––––––––––––––– megamenu.js STYLE STARTS HERE –––––––––––––––––––––––––––––––––––––––––––––––––– */ /* –––––––––––––––––––––––––––––––––––––––––––––––––– Screen style's –––––––––––––––––––––––––––––––––––––––––––––––––– */ .menu-container { width: 100%; margin: 0 auto; background: #000000; position: relative; z-index: 100; height: 75px; } .menu-mobile { display: none; padding: 20px; } .menu-mobile:after { content: "\f394"; font-family: "Ionicons"; font-size: 2.5rem; padding: 0; float: right; position: relative; top: 50%; -webkit-transform: translateY(-25%); -ms-transform: translateY(-25%); transform: translateY(-25%); color: #ffffff; } .menu-dropdown-icon:before { content: "\f489"; font-family: "Ionicons"; display: none; cursor: pointer; float: right; padding: 1.5em 2em; background: #fff; color: #333; } .menu ul { list-style: none; padding:0; } .menu > ul { margin: 0 auto; width: 100%; position: relative; /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */ box-sizing: border-box; } .menu > ul:before, .menu > ul:after { content: ""; display: table; } .menu > ul:after { clear: both; } .menu > ul > li { float: left; background: #ffffff; padding: 0; margin: 0; } .menu > ul > li > ul > li a { text-decoration: none; padding: 0.7em 0; display: block; } .menu > ul > li > a { text-decoration: none; padding: 1.5em 3em; display: block; font-family: 'Roboto', sans-serif; text-transform: uppercase; letter-spacing: 3px; font-size: 13px; height: 75px; line-height: 3; } .menu > ul > ul > li a { padding: 0.7em 3em; } /* navigation hover styles */ .menu > ul > li:hover { background: #000000; } .menu > ul > li > a:hover { color: #ffffff; } /* dropdown background styles */ .menu > ul > li > .mega-menu { display: none; width: 100%; background: #ffffff; padding: 20px; position: absolute; z-index: 99; left: 0; margin: 0; list-style: none; box-sizing: border-box; /* https://getcssscan.com/css-box-shadow-examples */ box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px; } /* dropdown font styles */ .menu > ul li ul li a { color: #000000; } /* dropdown mini styles */ .menu > ul > li > ul { display: none; width: 300px; background: #ffffff; padding: 10px 20px; position: absolute; z-index: 99; left: auto; margin: 0; list-style: none; box-sizing: border-box; box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px; } .menu > ul > li > .mega-menu:before, .menu > ul > li > .mega-menu:after, .menu > ul > li > ul:before, .menu > ul > li > ul:after { content: ""; display: table; } .menu > ul > li > .mega-menu:after, .menu > ul > li > ul:after { clear: both; } .menu > ul > li > .mega-menu li { margin: 0; padding-bottom: 0; list-style: none; width: 25%; background: none; float: left; } .menu > ul > li > .mega-menu li a { padding: .2em 0; width: 95%; display: block; border-bottom: 1px solid #ccc; font-size: 0.8rem; text-transform: uppercase; } .menu > ul > li > .mega-menu li > ul { display: block; padding: 0; margin: 10px 0 0; list-style: none; box-sizing: border-box; } .menu > ul > li > .mega-menu li > ul:before, .menu > ul > li > .mega-menu li > ul:after { content: ""; display: table; } .menu > ul > li > .mega-menu li > ul:after { clear: both; } .menu > ul > li > .mega-menu li > ul > li { float: left; width: 100%; padding: 10px 0; margin: 0; font-size: .8em; } .menu > ul > li > .mega-menu li > ul > li a { border: 0; text-transform: none; font-size: 1rem; } .menu > ul > li > .mega-menu.normal-sub { width: 300px; left: auto; padding: 10px 20px; } .menu > ul > li > .mega-menu.normal-sub > li { width: 100%; } .menu > ul > li > .mega-menu.normal-sub > li a { border: 0; padding: 1em 0; } /* –––––––––––––––––––––––––––––––––––––––––––––––––– Mobile style's –––––––––––––––––––––––––––––––––––––––––––––––––– */ @media only screen and (max-width: 991.98px) { .menu-container { width: 100%; } .menu-mobile { display: block; } .menu-dropdown-icon:before { display: block; background: #e6e6e6; } .menu > ul { display: none; margin-top: 11px; } .menu > ul > li { width: 100%; float: none; display: block; } .menu > ul > li a { padding: 1.5em; width: 100%; display: block; height: 72px; } .menu > ul > li > .mega-menu, .menu > ul > li > ul { position: relative; } .menu > ul > li > .mega-menu.normal-sub, .menu > ul > li > ul { width: 100%; } .menu > ul > li > .mega-menu li { float: none; width: 100%; margin-top: 20px; } .menu > ul > li > .mega-menu li:first-child { margin: 0; } .menu > ul > li > .mega-menu li > ul { position: relative; } .menu > ul > li > .mega-menu li > ul > li { float: none; } .menu .show-on-mobile, .menu .collapse.show { display: block; } }
app/css/megamenu.css
@import url('https://fonts.googleapis.com/css2?family=Major+Mono+Display&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700&display=swap'); .navbar-brand { float: left; padding-left: 25px; padding-right: 15px; font-family: 'Major Mono Display', monospace !important; color: #ffffff; font-size: 31px; line-height: 2; } .navbar-brand img { -webkit-backface-visibility: hidden; -ms-transform: translateZ(0); /* IE 9 */ -webkit-transform: translateZ(0); /* Chrome, Safari, Opera */ transform: translateZ(0); } /* –––––––––––––––––––––––––––––––––––––––––––––––––– megamenu.js STYLE STARTS HERE –––––––––––––––––––––––––––––––––––––––––––––––––– */ /* –––––––––––––––––––––––––––––––––––––––––––––––––– Screen style's –––––––––––––––––––––––––––––––––––––––––––––––––– */ .menu-container { width: 100%; margin: 0 auto; background: #000000; position: relative; z-index: 100; height: 75px; } .menu-mobile { display: none; padding: 20px; } .menu-mobile:after { content: "\f394"; font-family: "Ionicons"; font-size: 2.5rem; padding: 0; float: right; position: relative; top: 50%; -webkit-transform: translateY(-25%); -ms-transform: translateY(-25%); transform: translateY(-25%); color: #ffffff; } .menu-dropdown-icon:before { content: "\f489"; font-family: "Ionicons"; display: none; cursor: pointer; float: right; padding: 1.5em 2em; background: #fff; color: #333; } .menu ul { list-style: none; padding:0; } .menu > ul { margin: 0 auto; width: 100%; position: relative; /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */ box-sizing: border-box; } .menu > ul:before, .menu > ul:after { content: ""; display: table; } .menu > ul:after { clear: both; } .menu > ul > li { float: left; background: #ffffff; padding: 0; margin: 0; } .menu > ul > li > ul > li a { text-decoration: none; padding: 0.7em 0; display: block; } .menu > ul > li > a { text-decoration: none; padding: 1.5em 3em; display: block; font-family: 'Roboto', sans-serif; text-transform: uppercase; letter-spacing: 3px; font-size: 13px; height: 75px; line-height: 3; } .menu > ul > ul > li a { padding: 0.7em 3em; } /* navigation hover styles */ .menu > ul > li:hover { background: #000000; } .menu > ul > li > a:hover { color: #ffffff; } /* dropdown background styles */ .menu > ul > li > .mega-menu { display: none; width: 100%; background: #ffffff; padding: 20px; position: absolute; z-index: 99; left: 0; margin: 0; list-style: none; box-sizing: border-box; /* https://getcssscan.com/css-box-shadow-examples */ box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px; } /* dropdown font styles */ .menu > ul li ul li a { color: #000000; } /* dropdown mini styles */ .menu > ul > li > ul { display: none; width: 300px; background: #ffffff; padding: 10px 20px; position: absolute; z-index: 99; left: auto; margin: 0; list-style: none; box-sizing: border-box; box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px; } .menu > ul > li > .mega-menu:before, .menu > ul > li > .mega-menu:after, .menu > ul > li > ul:before, .menu > ul > li > ul:after { content: ""; display: table; } .menu > ul > li > .mega-menu:after, .menu > ul > li > ul:after { clear: both; } .menu > ul > li > .mega-menu li { margin: 0; padding-bottom: 0; list-style: none; width: 25%; background: none; float: left; } .menu > ul > li > .mega-menu li a { padding: .2em 0; width: 95%; display: block; border-bottom: 1px solid #ccc; font-size: 0.8rem; text-transform: uppercase; } .menu > ul > li > .mega-menu li > ul { display: block; padding: 0; margin: 10px 0 0; list-style: none; box-sizing: border-box; } .menu > ul > li > .mega-menu li > ul:before, .menu > ul > li > .mega-menu li > ul:after { content: ""; display: table; } .menu > ul > li > .mega-menu li > ul:after { clear: both; } .menu > ul > li > .mega-menu li > ul > li { float: left; width: 100%; padding: 10px 0; margin: 0; font-size: .8em; } .menu > ul > li > .mega-menu li > ul > li a { border: 0; text-transform: none; font-size: 1rem; } .menu > ul > li > .mega-menu.normal-sub { width: 300px; left: auto; padding: 10px 20px; } .menu > ul > li > .mega-menu.normal-sub > li { width: 100%; } .menu > ul > li > .mega-menu.normal-sub > li a { border: 0; padding: 1em 0; } /* –––––––––––––––––––––––––––––––––––––––––––––––––– Mobile style's –––––––––––––––––––––––––––––––––––––––––––––––––– */ @media only screen and (max-width: 991.98px) { .menu-container { width: 100%; } .menu-mobile { display: block; } .menu-dropdown-icon:before { display: block; background: #e6e6e6; } .menu > ul { display: none; margin-top: 11px; } .menu > ul > li { width: 100%; float: none; display: block; } .menu > ul > li a { padding: 1.5em; width: 100%; display: block; height: 72px; } .menu > ul > li > .mega-menu, .menu > ul > li > ul { position: relative; } .menu > ul > li > .mega-menu.normal-sub, .menu > ul > li > ul { width: 100%; } .menu > ul > li > .mega-menu li { float: none; width: 100%; margin-top: 20px; } .menu > ul > li > .mega-menu li:first-child { margin: 0; } .menu > ul > li > .mega-menu li > ul { position: relative; } .menu > ul > li > .mega-menu li > ul > li { float: none; } .menu .show-on-mobile, .menu .collapse.show { display: block; } }
0.29523
0.056418
@charset "utf-8"; /* CSS Document */ html,body{ margin: 0px; padding: 0px; font-size:14px; text-align:justify; color:#000; } /***********************************Para el ENCABEZADO******************************************/ header { border: solid transparent; margin: 0 auto;/*para centrarlo*/ text-align: center; background-color: #ffff; font-weight: bold; } a.titulo2{ margin:8px; color:black; font-size:23px; display: none; } @media screen and (max-width: 600px) { a.titulo2{ display:inline; } } @media screen and (max-width: 600px) { a.titulo{ display:none; } } h1 { width:300px; color:#000; font-size:23px; float: left; font-family: "Times New Roman", Times, serif; } nav ul li { /*Para que ponga de manera horizontal*/ display:inline-block; /*Espacio a la derecha de cada uno*/ margin-right:0px; /*Para que aparesca una manita*/ cursor:pointer; padding:20px; color: #777777; } nav ul li:hover { background-color:#EEEEEE; border-radius:15px; } nav ul li a { text-decoration:none; color:#777777; } #actual { background-color:#EEEEEE; border-radius:15px; } /***********************************************************************************************/ /*************************************Para el BANNER********************************************/ #banner { width:100%; background-color: #0f7196; } h2 { color:rgba(255,255,255,1); font-size:32px; font-weight:bold; font-family:Verdana, Geneva, sans-serif; } /***********************************************************************************************/ #menuLogueado { height: 49px; width:100%; background-color:#00395b; } #nombreUsuario { width: 45%; float: left; color:#fff; padding: 0px; } #menu2 { float: right; margin: 0 auto; border:solid transparent; font-weight: bold; } #menu2 > ul >li { display:inline-block; } #menu2 ul { margin:0px; padding: 0px; list-style: none; } #menu2 li a { color:black; } #menu2 li a:hover { color:#ffb903; } #menu2 li ul { display:none; position:absolute; min-width:140px; } #menu2 li:hover > ul { display:block; } #menu2 li ul li { position:relative; } #menu2 li ul li ul { right:-140px; top:15px; } /***********************************************************************************************/ #tLogin{ background-color: #f44849; margin: 0 auto; width: 50%; overflow: hidden; border-radius: 25px; padding: 15px; color:#fec200; font-weight:bold; font-family:Verdana, Geneva, sans-serif; font-size:14px; box-shadow:0px 5px 10px rgba(0,0,0,1); } #tLogin input{ color:black; } #headerLogin { text-align: center; font-size: 22px; color:#fff; font-style: ; box-shadow:2px 2px 0px rgba(0,0,0,.3); } #tLogin input { width: 100%; background-color:#faffbd; } #tLogin td { height: 20px; } #tLogin a { text-align: left; color:#fff; } .dosColumnas{ -webkit-column-count: 2; /* Chrome, Safari, Opera */ -moz-column-count: 2; /* Firefox */ column-count: 2; padding:0%; } .negro{ text-decoration-color: black; } .contenido{ margin: 0 auto; border: solid transparent; margin: 0px 5% 0 5%; } .imagen img{ width: 80%; padding-left: 30px; display: inline-block; } article { padding: 20px; } footer { margin:0 auto; width:100%; text-align:center; background-color:#424242; color:#ffb903; font-weight:bold; } .btn { border-radius: 15px; font-size: 14px; font-weight: bold; cursor: pointer; } .btn:hover { background-color:#ffb903; color: #424242; } table { margin: 0 auto; width:100%; } tr { height: 28px; } input, select { } .formulario{ box-shadow:none; } .derecha { float:right; } .centrado { margin:0 auto; text-align: center; } h4 { text-align:center; font-size:24px; color:#ffb903; } .respuestas ul li { } select{ display: block; width: auto; } .respuestas select{ /*float: right;*/ height: 20px; } .respuestas ul { list-style: none; } /************************************/ legend { font-size: 15px; font-weight: bold; } #formRegistro { margin: 0 auto; } fieldset input { width:100%; } .tRadio { width: 15%; } .pregunta input { cursor:pointer; } /************************************/ .imagenLogo{ width: 60%; } #cuestionario{ } div.barraLateral{ position: relative; z-index: -10; } select#seleccion{ display: none; } select#seleccion2{ position: relative; cursor: pointer; background-color: transparent; border: none; border-bottom: 1px solid #9e9e9e; outline: none; height: 3rem; line-height: 3rem; width: 100%; font-size: 1rem; margin: 0 0 20px 0; padding: 0; display: block; } #seleccion2 option{ font-size: 16px; color: #26a69a; display: block; line-height: 22px; padding: 14px 16px; } .foot-lnk a{ color: azure; text-align: center; font-size: 15px; font-weight: bold; } .foot-lnk { color: azure; text-align: center; }
css/estilo.css
@charset "utf-8"; /* CSS Document */ html,body{ margin: 0px; padding: 0px; font-size:14px; text-align:justify; color:#000; } /***********************************Para el ENCABEZADO******************************************/ header { border: solid transparent; margin: 0 auto;/*para centrarlo*/ text-align: center; background-color: #ffff; font-weight: bold; } a.titulo2{ margin:8px; color:black; font-size:23px; display: none; } @media screen and (max-width: 600px) { a.titulo2{ display:inline; } } @media screen and (max-width: 600px) { a.titulo{ display:none; } } h1 { width:300px; color:#000; font-size:23px; float: left; font-family: "Times New Roman", Times, serif; } nav ul li { /*Para que ponga de manera horizontal*/ display:inline-block; /*Espacio a la derecha de cada uno*/ margin-right:0px; /*Para que aparesca una manita*/ cursor:pointer; padding:20px; color: #777777; } nav ul li:hover { background-color:#EEEEEE; border-radius:15px; } nav ul li a { text-decoration:none; color:#777777; } #actual { background-color:#EEEEEE; border-radius:15px; } /***********************************************************************************************/ /*************************************Para el BANNER********************************************/ #banner { width:100%; background-color: #0f7196; } h2 { color:rgba(255,255,255,1); font-size:32px; font-weight:bold; font-family:Verdana, Geneva, sans-serif; } /***********************************************************************************************/ #menuLogueado { height: 49px; width:100%; background-color:#00395b; } #nombreUsuario { width: 45%; float: left; color:#fff; padding: 0px; } #menu2 { float: right; margin: 0 auto; border:solid transparent; font-weight: bold; } #menu2 > ul >li { display:inline-block; } #menu2 ul { margin:0px; padding: 0px; list-style: none; } #menu2 li a { color:black; } #menu2 li a:hover { color:#ffb903; } #menu2 li ul { display:none; position:absolute; min-width:140px; } #menu2 li:hover > ul { display:block; } #menu2 li ul li { position:relative; } #menu2 li ul li ul { right:-140px; top:15px; } /***********************************************************************************************/ #tLogin{ background-color: #f44849; margin: 0 auto; width: 50%; overflow: hidden; border-radius: 25px; padding: 15px; color:#fec200; font-weight:bold; font-family:Verdana, Geneva, sans-serif; font-size:14px; box-shadow:0px 5px 10px rgba(0,0,0,1); } #tLogin input{ color:black; } #headerLogin { text-align: center; font-size: 22px; color:#fff; font-style: ; box-shadow:2px 2px 0px rgba(0,0,0,.3); } #tLogin input { width: 100%; background-color:#faffbd; } #tLogin td { height: 20px; } #tLogin a { text-align: left; color:#fff; } .dosColumnas{ -webkit-column-count: 2; /* Chrome, Safari, Opera */ -moz-column-count: 2; /* Firefox */ column-count: 2; padding:0%; } .negro{ text-decoration-color: black; } .contenido{ margin: 0 auto; border: solid transparent; margin: 0px 5% 0 5%; } .imagen img{ width: 80%; padding-left: 30px; display: inline-block; } article { padding: 20px; } footer { margin:0 auto; width:100%; text-align:center; background-color:#424242; color:#ffb903; font-weight:bold; } .btn { border-radius: 15px; font-size: 14px; font-weight: bold; cursor: pointer; } .btn:hover { background-color:#ffb903; color: #424242; } table { margin: 0 auto; width:100%; } tr { height: 28px; } input, select { } .formulario{ box-shadow:none; } .derecha { float:right; } .centrado { margin:0 auto; text-align: center; } h4 { text-align:center; font-size:24px; color:#ffb903; } .respuestas ul li { } select{ display: block; width: auto; } .respuestas select{ /*float: right;*/ height: 20px; } .respuestas ul { list-style: none; } /************************************/ legend { font-size: 15px; font-weight: bold; } #formRegistro { margin: 0 auto; } fieldset input { width:100%; } .tRadio { width: 15%; } .pregunta input { cursor:pointer; } /************************************/ .imagenLogo{ width: 60%; } #cuestionario{ } div.barraLateral{ position: relative; z-index: -10; } select#seleccion{ display: none; } select#seleccion2{ position: relative; cursor: pointer; background-color: transparent; border: none; border-bottom: 1px solid #9e9e9e; outline: none; height: 3rem; line-height: 3rem; width: 100%; font-size: 1rem; margin: 0 0 20px 0; padding: 0; display: block; } #seleccion2 option{ font-size: 16px; color: #26a69a; display: block; line-height: 22px; padding: 14px 16px; } .foot-lnk a{ color: azure; text-align: center; font-size: 15px; font-weight: bold; } .foot-lnk { color: azure; text-align: center; }
0.182681
0.069258
* { margin: 0; padding: 0; } img,div,a { behavior: url(css/iepngfix.htc) } body { font-size: 12px; font-family: Arial, Tahoma, Verdana; } a,a:visited { outline: none; text-decoration: none; } img { border: 0; margin: 1px; } p { padding: 3px; } h2 { } input, textarea { padding: 2px; } select { padding: 2px; } /*********************** Some default width ***********************/ .w-auto {width: auto;} /* input, textarea */ .w1 {width: 1px;} .w2 {width: 2px;} .w3 {width: 3px;} .w5 {width: 5px;} .w10 {width: 10px;} .w15 {width: 15px;} .w20 {width: 20px;} .w25 {width: 25px;} .w50 {width: 50px;} .w75 {width: 75px;} .w100 {width: 100px;} .w125 {width: 125px;} .w150 {width: 150px;} .w175 {width: 175px;} .w200 {width: 200px;} .w225 {width: 225px;} .w250 {width: 250px;} .w275 {width: 275px;} .w300 {width: 300px;} .w325 {width: 325px;} .w350 {width: 350px;} .w375 {width: 375px;} .w400 {width: 400px;} .w414 {width: 414px;} .w425 {width: 425px;} .w450 {width: 450px;} .w475 {width: 475px;} .w500 {width: 500px;} .w600 {width: 600px;} .w700 {width: 700px;} .w800 {width: 792px;} .w929 {width: 929px;} .w20p {width: 20%;} .w25p {width: 25%;} .w50p {width: 50%;} .w75p {width: 75%;} .w100p {width: 100%;} /* select */ .sw25 {width: 33px;} .sw50 {width: 58px;} .sw75 {width: 83px;} .sw100 {width: 108px;} .sw125 {width: 133px;} .sw150 {width: 158px;} .sw175 {width: 183px;} .sw200 {width: 208px;} .sw225 {width: 233px;} .sw250 {width: 258px;} .sw275 {width: 283px;} .sw300 {width: 308px;} .sw325 {width: 333px;} .sw350 {width: 358px;} .sw375 {width: 383px;} .sw400 {width: 408px;} .sw425 {width: 433px;} .sw450 {width: 458px;} .sw475 {width: 483px;} .sw500 {width: 508px;} /********************* Some alignments *********************/ .align-left {text-align: left;} .align-right {text-align: right;} .align-justify {text-align: justify;} .align-center {text-align: center;} /********************* Some floats *********************/ .float-left {float: left;} .float-right {float: right;} .float-none {float: none;} /********************* Some clears *********************/ .clear-left {clear: left;} .clear-right {clear: right;} .clear-none {clear: none;} .clear-both, .clear {clear: both;} /********************* Structure *********************/ #container { width: 960px; margin: 0 auto; } #header { height: 135px; position: relative; width: 960px; } #header h2 { padding-top: 20px; } #header h3 { padding-top: 5px; } #content { min-height: 650px; height: auto !important; height: 650px; width: 940px; float: left; margin: 10px 0 10px 0; padding: 10px; } #content_login { background-color: #fff; width: 300px; margin: 200px auto 0; padding: 10px; overflow: hidden; } .status_err { border: 1px solid red; margin: 10px 0; } .status_success { border: 1px solid #375B91; margin: 10px 0; } #sidebar { background: #FFF; width: 170px; float: right; margin: 10px 0 10px 0; padding: 10px; } #footer { clear: both; padding: 5px; margin-top: 10px; overflow: hidden; } .box h3 { padding: 5px; font-size: 14px; } /********************* Sidebar *********************/ #sidebar ul { list-style: none; line-height: 22px; } #sidebar ul li a,#sidebar ul li a:visited { padding-left: 19px; text-decoration: none; margin: 0 3px; display: block; } #sidebar ul li a:hover { text-decoration: underline; } #sidebar ul li ul { margin-left: 10px; } #sidebar h3 { padding: 2px; font-size: 14px; } /********************* TopMenu, Top-Panel *********************/ #topmenu { width: 940px; position: absolute; bottom: 0; left: 0; } #topmenu ul { list-style: none; line-height: 25px; } #topmenu li { display: inline; } #topmenu a,#topmenu a:visited { padding: 5px 7px; text-decoration: none; } #topmenu .current a,#topmenu .current a:hover,#topmenu .current a:visited { padding: 5px 12px 5px 12px; font-weight: bold; } #top-panel { background: #385E85; padding: 0 15px; line-height: 20px; width: 940px; color: #fff; margin-top: 15px; } #top-panel ul,ul.nav { list-style: none; overflow: hidden; } #top-panel ul li,ul.nav li { display: inline; line-height: 20px; } #top-panel ul li a,ul.nav li a { padding-left: 19px; text-decoration: none; margin: 0 3px; display: inline-block; } #top-panel ul li { margin-right: 20px; } #top-panel ul li a { text-decoration: none; margin: 0; display: inline-block; color: rgb(255, 255, 255); padding: 10px 10px 10px 25px; } #top-panel a:hover,#top-panel a.focus,ul.nav a:hover,ul.nav a.focus { text-decoration: underline; } ul.nav { margin: 0 0 5px 0; } /********************* Other *********************/ .a-right { text-align: right; } .a-left { text-align: left; } .a-center { text-align: center; } .bold { font-weight: bold } #pager { margin: 5px; height: 25px; } #styleswitcher { float: right; } #styleswitcher ul { list-style: none; line-height: 10px; } #styleswitcher li { height: 12px; display: inline; } #footer ul { list-style: none; } #footer li { display: inline; } a#defswitch { width: 15px; height: 10px; margin: 3px 0 3px 0; background-color: #bd3f09; font-size: 8px; color: #bd3f09; display: inline-block; } a#blueswitch { width: 15px; height: 10px; margin: 3px 0 3px 0; background-color: #375b91; font-size: 8px; color: #375b91; display: inline-block; } a#greenswitch { width: 15px; height: 10px; margin: 3px 0 3px 0; background-color: #d0e0b8; font-size: 8px; color: #d0e0b8; display: inline-block; } a#brownswitch { width: 15px; height: 10px; margin: 3px 0 3px 0; background-color: #654322; font-size: 8px; color: #654322; display: inline-block; } a#mixswitch { width: 15px; height: 10px; margin: 3px 0 3px 0; background-color: #294145; font-size: 8px; color: #294145; display: inline-block; } #credits { clear: both; width: 300px; float: left; } /********************* Tables *********************/ table { margin: 5px; border-collapse: collapse; table-layout: auto; width: 98%; } td,th { padding: 3px 4px; } th { text-align: left; } thead { } /********************* Home *********************/ #infowrap li { display: inline : } #infobox { width: 365px; float: left; margin-top: 10px; } #infobox h3 { padding: 5px; font-size: 14px; } .margin-left { margin-left: 5px; } #rightnow .reallynow { padding: 5px; font-size: 14px; } #rightnow h3 { padding: 0 10px; font-size: 14px; } #rightnow .reallynow span { display: block; text-align: left; float: left; padding: 0 2px; font-size: 14px } #rightnow .reallynow a { text-decoration: none; display: block; text-align: right; float: right; padding: 0 0 0 18px; margin-left: 4px; font-weight: normal; font-size: 12px; } #rightnow .reallynow a:hover { text-decoration: underline; } #rightnow .youhave { font-size: 12px; padding: 10px; } #rightnow a { font-weight: bold; } /********************* Forms *********************/ form { padding: 0; margin: 0 auto; } form.form fieldset { display: block; padding: 5px 10px 5px 10px; line-height: 20px; margin-bottom: 10px; } form.form legend { font-size: 12px; font-weight: bold; margin-bottom: 5px; padding: 3px; width: 254px; } form.form label.title { clear: left; display: block; float: left; width: 100px; text-align: right; padding: 4px 10px 0 0; margin-bottom: 5px; } form.form label.title-wide { clear: left; display: block; float: left; width: 250px; text-align: left; padding: 4px 10px 0 0; margin-bottom: 5px; } form.form label.title-xwide { clear: left; display: block; float: left; width: 300px; text-align: left; padding: 4px 10px 0 0; margin-bottom: 5px; } form.form label.title-block { clear: both; display: block; float: left; text-align: left; padding: 4px 10px 0 0; margin-bottom: 5px; } form.form label.error { float: none; color: red; font-weight: normal; text-transform: none; width: auto; display: block; padding: 2px 0 0 110px; text-align: left; } .form span.left { padding: 4px 0 0 2px; float: left; } .form p { margin: 5px 10px 5px 10px; overflow: hidden; } form.form input { padding: 3px; } form.form select { } form.form textarea { width: 410px; height: 200px; padding: 5px; overflow: auto; } form.form option { background: #FFF; } form.form optgroup option { } form.form #button1,form.form #button2 { padding-right: 5px; cursor: pointer; width: 205px; margin-left: 8px; font-weight: bold; } form.form #button1:hover,form.form #button2:hover { background-position: center left; } /********************* Icons *********************/ .icon { padding-left: 19px; text-decoration: none; height: 20px; font-size: 12x; margin: 0 3px; display: inline-block; line-height: 20px; white-space: nowrap; } .user { background: transparent url(../img/icons/user.png) no-repeat left; } .useradd { background: transparent url(../img/icons/user_add.png) no-repeat left; } .group { background: transparent url(../img/icons/group.png) no-repeat left; } .search { background: transparent url(../img/icons/magnifier.png) no-repeat left; } .online { background: transparent url(../img/icons/world.png) no-repeat left; } .pagenew { background: transparent url(../img/icons/page_add.png) no-repeat left; } .rss { background: transparent url(../img/icons/rss.png) no-repeat left; } .feed { background: transparent url(../img/icons/feed.png) no-repeat left; } .report { background: transparent url(../img/icons/report.png) no-repeat left; } .house { background: transparent url(../img/icons/house.png) no-repeat left; } .manage { background: transparent url(../img/icons/cog.png) no-repeat left; } .manage_page { background: transparent url(../img/icons/page_gear.png) no-repeat left; } .folder { background: transparent url(../img/icons/folder.png) no-repeat left; } .promotions { background: transparent url(../img/icons/coins.png) no-repeat left; } .cart { background: transparent url(../img/icons/cart.png) no-repeat left; } .cart_add { background: transparent url(../img/icons/cart_add.png) no-repeat left; } .folder_table { background: transparent url(../img/icons/folder_page.png) no-repeat left; } .folder_add { background: transparent url(../img/icons/folder_add.png) no-repeat left; } .shipping { background: transparent url(../img/icons/car.png) no-repeat left; } .invoices { background: transparent url(../img/icons/page_white_text_width.png) no-repeat left; } .addorder { background: transparent url(../img/icons/folder_page_add.png) no-repeat left; } .add { background: transparent url(../img/icons/add.png) no-repeat left; } .app_add { background: transparent url(../img/icons/application_add.png) no-repeat left; } .report_seo { background: transparent url(../img/icons/report_link.png) no-repeat left; } .modules { background: transparent url(../img/icons/bricks.png) no-repeat left; } .modules_manage { background: transparent url(../img/icons/bricks_gear.png) no-repeat left; } .color_swatch { background: transparent url(../img/icons/color_swatch.png) no-repeat left; } .icon_edit { background: transparent url(../img/icons/page_white_edit.png) no-repeat left; } .icon_view { background: transparent url(../img/icons/page_white_edit.png) no-repeat left; } .icon_delete { background: transparent url(../img/icons/delete.png) no-repeat left; } .email_add { background: transparent url(../img/icons/email_add.png) no-repeat left; } .printer_add { background: transparent url(../img/icons/printer_add.png) no-repeat left; } .note_add { background: transparent url(../img/icons/note_add.png) no-repeat left; } .tag_add { background: transparent url(../img/icons/tag_blue_add.png) no-repeat left; } /* margin */ .t5 { margin-top: 5px } .t10 { margin-top: 10px } .t15 { margin-top: 15px } .t20 { margin-top: 20px } .t100 { margin-top: 100px } .t200 { margin-top: 200px } .b5 { margin-bottom: 5px } .b10 { margin-bottom: 10px } .b15 { margin-bottom: 15px } .b20 { margin-bottom: 20px } .l5 { margin-left: 5px } .l10 { margin-left: 10px } .l15 { margin-left: 15px } .l20 { margin-left: 20px } .r5 { margin-right: 5px } .r10 { margin-right: 10px } .r15 { margin-right: 15px } .r20 { margin-right: 20px } /* width */ .w10 { width: 10px } .w20 { width: 20px } .w30 { width: 30px } .w40 { width: 40px } .w50 { width: 50px } .w60 { width: 60px } .w70 { width: 70px } .w80 { width: 80px } .w90 { width: 90px } .w100 { width: 100px } .w150 { width: 150px } .w200 { width: 200px } .w300 { width: 300px } .w350 { width: 350px } .w400 { width: 400px } .w500 { width: 500px } .w550 { width: 550px } .w600 { width: 600px } /* height */ .h10 { height: 10px } .h20 { height: 20px } .h25 { height: 25px } .h30 { height: 30px } .h40 { height: 40px } .h50 { height: 50px } .h60 { height: 60px } .h70 { height: 70px } .h80 { height: 80px } .h90 { height: 90px } .h100 { height: 100px } .h120 { height: 120px } .h150 { height: 150px } .h180 { height: 180px } .h200 { height: 200px } .h300 { height: 300px } .h400 { height: 400px } .h500 { height: 500px } .paid { color: #fff; background-color: #339900; padding: 2px 5px; } .pending { color: #222; background-color: #FF9900; padding: 2px 5px; } .downloaded { color: #fff; background-color: #339900; padding: 2px 5px; } .waiting_download { color: #222; background-color: #FF9900; padding: 2px 5px; } .need_frame_quote { color: #222; background-color: #33CCCC; padding: 2px 5px; } .paginator { list-style: none outside none; margin: 10px auto 0; padding: 0; display: block; text-align: center; } .paginator li { display: inline; margin: 0 1px; } .paginator a:link,.paginator a:visited { padding: 8px 12px; text-decoration: none; background: #F3F9FF; } .paginator a:hover { text-decoration: underline; } .paginator a.focus { background-color: #fff; border: solid 1px #ccc; text-decoration: none; } .role_1,.role_2,.role_3 { padding: 2px 3px; } .role_1 { background-color: #385E85; color: #fff; } .role_2 { background-color: #90652D; color: #fff; } .role_3 { background-color: #843885; color: #fff; } .tplBox { } .tplSelect { border: solid 1px #D9E6F0; float: left; height: 500px; padding: 5px; width: 220px; } .tplSelect a { display: block; padding: 3px 2px; } .tplSelect a:active,.tplSelect a.focus { background-color: #7E9DCC; font-weight: bold } .tplSelect a:hover { background-color: #C7D5E9 } .tplView { float: right; height: 500px; width: 450px; } .progress { clear: left; display: block; height: 10px; margin: 0 0 0 110px; } .progress_1 { background-color: #009900; border: solid 1px #009900; } .progress_2 { border: solid 1px #0066FF; } .progress_2 abbr { background-color: #0066FF; display: block; height: 10px; } .ajax-update-table input { } .ajax-update-table button { cursor: pointer; margin: 1px; } .ajax-update-table button[type="submit"] { border: none; width: 16px; height: 16px; background: transparent url("../img/icons/accept.png") top left no-repeat; } .ajax-update-table button[type="cancel"] { border: none; width: 16px; height: 16px; background: transparent url("../img/icons/cancel.png") top left no-repeat; } .ajax-update-table .pant-size input { width: 20px !important; } .ajax-update-table .shoe-size input { width: 40px !important; } .profile-image-wrapper { position: relative; float: left; } .profile-image-wrapper img {float: left;} .profile-image-wrapper a { position: absolute; top: 0; right: 0; margin: 4px; width: 16px; height: 16px; background: transparent url(../img/icons/delete.png) no-repeat top left; } .corse-hole-table { border-collapse: collapse; border: none; width: 929px; } .corse-hole-table th { text-align: center; } .corse-hole-table td, .corse-hole-table th { padding: 4px; } .corse-hole-table .hole-numbers { font-weight: bold; } .corse-hole-table td { text-align: center; } .corse-hole-table .label { text-align: right; width: 110px; font-weight: bold; }
legacy/app/web/css/style.css
* { margin: 0; padding: 0; } img,div,a { behavior: url(css/iepngfix.htc) } body { font-size: 12px; font-family: Arial, Tahoma, Verdana; } a,a:visited { outline: none; text-decoration: none; } img { border: 0; margin: 1px; } p { padding: 3px; } h2 { } input, textarea { padding: 2px; } select { padding: 2px; } /*********************** Some default width ***********************/ .w-auto {width: auto;} /* input, textarea */ .w1 {width: 1px;} .w2 {width: 2px;} .w3 {width: 3px;} .w5 {width: 5px;} .w10 {width: 10px;} .w15 {width: 15px;} .w20 {width: 20px;} .w25 {width: 25px;} .w50 {width: 50px;} .w75 {width: 75px;} .w100 {width: 100px;} .w125 {width: 125px;} .w150 {width: 150px;} .w175 {width: 175px;} .w200 {width: 200px;} .w225 {width: 225px;} .w250 {width: 250px;} .w275 {width: 275px;} .w300 {width: 300px;} .w325 {width: 325px;} .w350 {width: 350px;} .w375 {width: 375px;} .w400 {width: 400px;} .w414 {width: 414px;} .w425 {width: 425px;} .w450 {width: 450px;} .w475 {width: 475px;} .w500 {width: 500px;} .w600 {width: 600px;} .w700 {width: 700px;} .w800 {width: 792px;} .w929 {width: 929px;} .w20p {width: 20%;} .w25p {width: 25%;} .w50p {width: 50%;} .w75p {width: 75%;} .w100p {width: 100%;} /* select */ .sw25 {width: 33px;} .sw50 {width: 58px;} .sw75 {width: 83px;} .sw100 {width: 108px;} .sw125 {width: 133px;} .sw150 {width: 158px;} .sw175 {width: 183px;} .sw200 {width: 208px;} .sw225 {width: 233px;} .sw250 {width: 258px;} .sw275 {width: 283px;} .sw300 {width: 308px;} .sw325 {width: 333px;} .sw350 {width: 358px;} .sw375 {width: 383px;} .sw400 {width: 408px;} .sw425 {width: 433px;} .sw450 {width: 458px;} .sw475 {width: 483px;} .sw500 {width: 508px;} /********************* Some alignments *********************/ .align-left {text-align: left;} .align-right {text-align: right;} .align-justify {text-align: justify;} .align-center {text-align: center;} /********************* Some floats *********************/ .float-left {float: left;} .float-right {float: right;} .float-none {float: none;} /********************* Some clears *********************/ .clear-left {clear: left;} .clear-right {clear: right;} .clear-none {clear: none;} .clear-both, .clear {clear: both;} /********************* Structure *********************/ #container { width: 960px; margin: 0 auto; } #header { height: 135px; position: relative; width: 960px; } #header h2 { padding-top: 20px; } #header h3 { padding-top: 5px; } #content { min-height: 650px; height: auto !important; height: 650px; width: 940px; float: left; margin: 10px 0 10px 0; padding: 10px; } #content_login { background-color: #fff; width: 300px; margin: 200px auto 0; padding: 10px; overflow: hidden; } .status_err { border: 1px solid red; margin: 10px 0; } .status_success { border: 1px solid #375B91; margin: 10px 0; } #sidebar { background: #FFF; width: 170px; float: right; margin: 10px 0 10px 0; padding: 10px; } #footer { clear: both; padding: 5px; margin-top: 10px; overflow: hidden; } .box h3 { padding: 5px; font-size: 14px; } /********************* Sidebar *********************/ #sidebar ul { list-style: none; line-height: 22px; } #sidebar ul li a,#sidebar ul li a:visited { padding-left: 19px; text-decoration: none; margin: 0 3px; display: block; } #sidebar ul li a:hover { text-decoration: underline; } #sidebar ul li ul { margin-left: 10px; } #sidebar h3 { padding: 2px; font-size: 14px; } /********************* TopMenu, Top-Panel *********************/ #topmenu { width: 940px; position: absolute; bottom: 0; left: 0; } #topmenu ul { list-style: none; line-height: 25px; } #topmenu li { display: inline; } #topmenu a,#topmenu a:visited { padding: 5px 7px; text-decoration: none; } #topmenu .current a,#topmenu .current a:hover,#topmenu .current a:visited { padding: 5px 12px 5px 12px; font-weight: bold; } #top-panel { background: #385E85; padding: 0 15px; line-height: 20px; width: 940px; color: #fff; margin-top: 15px; } #top-panel ul,ul.nav { list-style: none; overflow: hidden; } #top-panel ul li,ul.nav li { display: inline; line-height: 20px; } #top-panel ul li a,ul.nav li a { padding-left: 19px; text-decoration: none; margin: 0 3px; display: inline-block; } #top-panel ul li { margin-right: 20px; } #top-panel ul li a { text-decoration: none; margin: 0; display: inline-block; color: rgb(255, 255, 255); padding: 10px 10px 10px 25px; } #top-panel a:hover,#top-panel a.focus,ul.nav a:hover,ul.nav a.focus { text-decoration: underline; } ul.nav { margin: 0 0 5px 0; } /********************* Other *********************/ .a-right { text-align: right; } .a-left { text-align: left; } .a-center { text-align: center; } .bold { font-weight: bold } #pager { margin: 5px; height: 25px; } #styleswitcher { float: right; } #styleswitcher ul { list-style: none; line-height: 10px; } #styleswitcher li { height: 12px; display: inline; } #footer ul { list-style: none; } #footer li { display: inline; } a#defswitch { width: 15px; height: 10px; margin: 3px 0 3px 0; background-color: #bd3f09; font-size: 8px; color: #bd3f09; display: inline-block; } a#blueswitch { width: 15px; height: 10px; margin: 3px 0 3px 0; background-color: #375b91; font-size: 8px; color: #375b91; display: inline-block; } a#greenswitch { width: 15px; height: 10px; margin: 3px 0 3px 0; background-color: #d0e0b8; font-size: 8px; color: #d0e0b8; display: inline-block; } a#brownswitch { width: 15px; height: 10px; margin: 3px 0 3px 0; background-color: #654322; font-size: 8px; color: #654322; display: inline-block; } a#mixswitch { width: 15px; height: 10px; margin: 3px 0 3px 0; background-color: #294145; font-size: 8px; color: #294145; display: inline-block; } #credits { clear: both; width: 300px; float: left; } /********************* Tables *********************/ table { margin: 5px; border-collapse: collapse; table-layout: auto; width: 98%; } td,th { padding: 3px 4px; } th { text-align: left; } thead { } /********************* Home *********************/ #infowrap li { display: inline : } #infobox { width: 365px; float: left; margin-top: 10px; } #infobox h3 { padding: 5px; font-size: 14px; } .margin-left { margin-left: 5px; } #rightnow .reallynow { padding: 5px; font-size: 14px; } #rightnow h3 { padding: 0 10px; font-size: 14px; } #rightnow .reallynow span { display: block; text-align: left; float: left; padding: 0 2px; font-size: 14px } #rightnow .reallynow a { text-decoration: none; display: block; text-align: right; float: right; padding: 0 0 0 18px; margin-left: 4px; font-weight: normal; font-size: 12px; } #rightnow .reallynow a:hover { text-decoration: underline; } #rightnow .youhave { font-size: 12px; padding: 10px; } #rightnow a { font-weight: bold; } /********************* Forms *********************/ form { padding: 0; margin: 0 auto; } form.form fieldset { display: block; padding: 5px 10px 5px 10px; line-height: 20px; margin-bottom: 10px; } form.form legend { font-size: 12px; font-weight: bold; margin-bottom: 5px; padding: 3px; width: 254px; } form.form label.title { clear: left; display: block; float: left; width: 100px; text-align: right; padding: 4px 10px 0 0; margin-bottom: 5px; } form.form label.title-wide { clear: left; display: block; float: left; width: 250px; text-align: left; padding: 4px 10px 0 0; margin-bottom: 5px; } form.form label.title-xwide { clear: left; display: block; float: left; width: 300px; text-align: left; padding: 4px 10px 0 0; margin-bottom: 5px; } form.form label.title-block { clear: both; display: block; float: left; text-align: left; padding: 4px 10px 0 0; margin-bottom: 5px; } form.form label.error { float: none; color: red; font-weight: normal; text-transform: none; width: auto; display: block; padding: 2px 0 0 110px; text-align: left; } .form span.left { padding: 4px 0 0 2px; float: left; } .form p { margin: 5px 10px 5px 10px; overflow: hidden; } form.form input { padding: 3px; } form.form select { } form.form textarea { width: 410px; height: 200px; padding: 5px; overflow: auto; } form.form option { background: #FFF; } form.form optgroup option { } form.form #button1,form.form #button2 { padding-right: 5px; cursor: pointer; width: 205px; margin-left: 8px; font-weight: bold; } form.form #button1:hover,form.form #button2:hover { background-position: center left; } /********************* Icons *********************/ .icon { padding-left: 19px; text-decoration: none; height: 20px; font-size: 12x; margin: 0 3px; display: inline-block; line-height: 20px; white-space: nowrap; } .user { background: transparent url(../img/icons/user.png) no-repeat left; } .useradd { background: transparent url(../img/icons/user_add.png) no-repeat left; } .group { background: transparent url(../img/icons/group.png) no-repeat left; } .search { background: transparent url(../img/icons/magnifier.png) no-repeat left; } .online { background: transparent url(../img/icons/world.png) no-repeat left; } .pagenew { background: transparent url(../img/icons/page_add.png) no-repeat left; } .rss { background: transparent url(../img/icons/rss.png) no-repeat left; } .feed { background: transparent url(../img/icons/feed.png) no-repeat left; } .report { background: transparent url(../img/icons/report.png) no-repeat left; } .house { background: transparent url(../img/icons/house.png) no-repeat left; } .manage { background: transparent url(../img/icons/cog.png) no-repeat left; } .manage_page { background: transparent url(../img/icons/page_gear.png) no-repeat left; } .folder { background: transparent url(../img/icons/folder.png) no-repeat left; } .promotions { background: transparent url(../img/icons/coins.png) no-repeat left; } .cart { background: transparent url(../img/icons/cart.png) no-repeat left; } .cart_add { background: transparent url(../img/icons/cart_add.png) no-repeat left; } .folder_table { background: transparent url(../img/icons/folder_page.png) no-repeat left; } .folder_add { background: transparent url(../img/icons/folder_add.png) no-repeat left; } .shipping { background: transparent url(../img/icons/car.png) no-repeat left; } .invoices { background: transparent url(../img/icons/page_white_text_width.png) no-repeat left; } .addorder { background: transparent url(../img/icons/folder_page_add.png) no-repeat left; } .add { background: transparent url(../img/icons/add.png) no-repeat left; } .app_add { background: transparent url(../img/icons/application_add.png) no-repeat left; } .report_seo { background: transparent url(../img/icons/report_link.png) no-repeat left; } .modules { background: transparent url(../img/icons/bricks.png) no-repeat left; } .modules_manage { background: transparent url(../img/icons/bricks_gear.png) no-repeat left; } .color_swatch { background: transparent url(../img/icons/color_swatch.png) no-repeat left; } .icon_edit { background: transparent url(../img/icons/page_white_edit.png) no-repeat left; } .icon_view { background: transparent url(../img/icons/page_white_edit.png) no-repeat left; } .icon_delete { background: transparent url(../img/icons/delete.png) no-repeat left; } .email_add { background: transparent url(../img/icons/email_add.png) no-repeat left; } .printer_add { background: transparent url(../img/icons/printer_add.png) no-repeat left; } .note_add { background: transparent url(../img/icons/note_add.png) no-repeat left; } .tag_add { background: transparent url(../img/icons/tag_blue_add.png) no-repeat left; } /* margin */ .t5 { margin-top: 5px } .t10 { margin-top: 10px } .t15 { margin-top: 15px } .t20 { margin-top: 20px } .t100 { margin-top: 100px } .t200 { margin-top: 200px } .b5 { margin-bottom: 5px } .b10 { margin-bottom: 10px } .b15 { margin-bottom: 15px } .b20 { margin-bottom: 20px } .l5 { margin-left: 5px } .l10 { margin-left: 10px } .l15 { margin-left: 15px } .l20 { margin-left: 20px } .r5 { margin-right: 5px } .r10 { margin-right: 10px } .r15 { margin-right: 15px } .r20 { margin-right: 20px } /* width */ .w10 { width: 10px } .w20 { width: 20px } .w30 { width: 30px } .w40 { width: 40px } .w50 { width: 50px } .w60 { width: 60px } .w70 { width: 70px } .w80 { width: 80px } .w90 { width: 90px } .w100 { width: 100px } .w150 { width: 150px } .w200 { width: 200px } .w300 { width: 300px } .w350 { width: 350px } .w400 { width: 400px } .w500 { width: 500px } .w550 { width: 550px } .w600 { width: 600px } /* height */ .h10 { height: 10px } .h20 { height: 20px } .h25 { height: 25px } .h30 { height: 30px } .h40 { height: 40px } .h50 { height: 50px } .h60 { height: 60px } .h70 { height: 70px } .h80 { height: 80px } .h90 { height: 90px } .h100 { height: 100px } .h120 { height: 120px } .h150 { height: 150px } .h180 { height: 180px } .h200 { height: 200px } .h300 { height: 300px } .h400 { height: 400px } .h500 { height: 500px } .paid { color: #fff; background-color: #339900; padding: 2px 5px; } .pending { color: #222; background-color: #FF9900; padding: 2px 5px; } .downloaded { color: #fff; background-color: #339900; padding: 2px 5px; } .waiting_download { color: #222; background-color: #FF9900; padding: 2px 5px; } .need_frame_quote { color: #222; background-color: #33CCCC; padding: 2px 5px; } .paginator { list-style: none outside none; margin: 10px auto 0; padding: 0; display: block; text-align: center; } .paginator li { display: inline; margin: 0 1px; } .paginator a:link,.paginator a:visited { padding: 8px 12px; text-decoration: none; background: #F3F9FF; } .paginator a:hover { text-decoration: underline; } .paginator a.focus { background-color: #fff; border: solid 1px #ccc; text-decoration: none; } .role_1,.role_2,.role_3 { padding: 2px 3px; } .role_1 { background-color: #385E85; color: #fff; } .role_2 { background-color: #90652D; color: #fff; } .role_3 { background-color: #843885; color: #fff; } .tplBox { } .tplSelect { border: solid 1px #D9E6F0; float: left; height: 500px; padding: 5px; width: 220px; } .tplSelect a { display: block; padding: 3px 2px; } .tplSelect a:active,.tplSelect a.focus { background-color: #7E9DCC; font-weight: bold } .tplSelect a:hover { background-color: #C7D5E9 } .tplView { float: right; height: 500px; width: 450px; } .progress { clear: left; display: block; height: 10px; margin: 0 0 0 110px; } .progress_1 { background-color: #009900; border: solid 1px #009900; } .progress_2 { border: solid 1px #0066FF; } .progress_2 abbr { background-color: #0066FF; display: block; height: 10px; } .ajax-update-table input { } .ajax-update-table button { cursor: pointer; margin: 1px; } .ajax-update-table button[type="submit"] { border: none; width: 16px; height: 16px; background: transparent url("../img/icons/accept.png") top left no-repeat; } .ajax-update-table button[type="cancel"] { border: none; width: 16px; height: 16px; background: transparent url("../img/icons/cancel.png") top left no-repeat; } .ajax-update-table .pant-size input { width: 20px !important; } .ajax-update-table .shoe-size input { width: 40px !important; } .profile-image-wrapper { position: relative; float: left; } .profile-image-wrapper img {float: left;} .profile-image-wrapper a { position: absolute; top: 0; right: 0; margin: 4px; width: 16px; height: 16px; background: transparent url(../img/icons/delete.png) no-repeat top left; } .corse-hole-table { border-collapse: collapse; border: none; width: 929px; } .corse-hole-table th { text-align: center; } .corse-hole-table td, .corse-hole-table th { padding: 4px; } .corse-hole-table .hole-numbers { font-weight: bold; } .corse-hole-table td { text-align: center; } .corse-hole-table .label { text-align: right; width: 110px; font-weight: bold; }
0.308086
0.133021
width: 100%; height: 50px; background-color: rgba(255,255,255, 0.97); z-index: 999; position: fixed; top: 0; left: 0; -webkit-transform: translate3d(0,0,0); border-bottom: 1px solid #ddd; @media (max-width: 850px) { .container { width: 90%; } } @media (max-width: 550px) { position: absolute; top: 0; left: 0; .container { width: 95%; padding: 0; } } .container { height: 50px; } .main-logo { margin-left: 5px; display: inline-block; vertical-align: middle; -webkit-backface-visibility: hidden; } .motto { display: inline-block; vertical-align: middle; margin: 0 0 0 25px; padding-top: 4px; color: #999; font-weight: 400; font-size: 14px; @media (max-width: 650px) { display: none; } } .right-nav { display: inline-block; float: right; height: 55px; padding: 5px 0; position: relative; } .dropdown-wrapper { display: inline-block; vertical-align: middle; position: relative; @media (max-width: 750px) { padding-top: 5px; } } .dropdown-wrapper > .fa { font-size: 22px; color: #999; cursor: pointer; &:hover { color: #222; } } .dropdown-wrapper > .fa-bell-fix { margin-top: 2px; } .dropdown-wrapper > .fa-bell { color: #222; } .dropdown-wrapper > .fa-comments-fix { font-size: 28px; } .dropdown-wrapper > .fa-comments { color: #222; } .dropdown-wrapper > .fa-angle-up { color: #222; } .dropdown-wrapper > i, .discuss-link { display: inline-block; vertical-align: middle; margin: 0 10px } .discuss-link.active { color: #222; } .user-wrapper { display: inline-block; vertical-align: middle; cursor: pointer; margin-left: 10px; img, p { display: inline-block; vertical-align: middle; margin-right: 10px; } &:hover p { color: #222; } @media (max-width: 750px) { display: none; } } .user-pic { border-radius: 50%; } p.user-name { margin: 0; color: #999; font-size: 16px; } .nav-dropdown { position: absolute; top: 36px; right: 0; border-radius: 5px; box-shadow: 0px 2px 5px rgba(0,0,0,0.25); background-color: #fff; color: #848484; overflow: hidden; &.noti { width: 350px; } &.setting { width: 200px; font-size: 16px; padding: 5px 0; } .item { cursor: pointer; .date { font-size: 9px; font-weight: 600; color: #999; margin-left: 60px; } } hr { margin: 5px 0; } } .setting .item { display: block; padding: 4px 20px; width: 100%; color: #000; font-size: 15px; text-decoration: none; &:first-child { color: #972952; } &:hover { background-color: #f9f9f9; } } .noti .item { height: 70px; overflow: hidden; text-overflow: ellipsis; border-bottom: 1px solid #ddd; padding: 9px 10px; font-size: 12px; position: relative; color: #000; &:hover { background-color: #f9f9f9; } &.new { background-color: hexa(#873C58,0.1); } .icon-wrapper { position: absolute; top: 9px; left: 10px; height: 50px; width: 50px; border-radius: 50%; border: 2px solid #5B142F; background-color: #972952; text-align: center; color: #fff; font-size: 24px; line-height: 1.8; } .detail { height: 37px; width: 330px; padding-left: 60px; line-height: 1.45; .hilight { color: #972952; } } img { width: 50px; height: 50px; border-radius: 50%; position: absolute; top: 9px; left: 10px; } } }
src/ui/app/layouts/NavbarLayout.import.css
width: 100%; height: 50px; background-color: rgba(255,255,255, 0.97); z-index: 999; position: fixed; top: 0; left: 0; -webkit-transform: translate3d(0,0,0); border-bottom: 1px solid #ddd; @media (max-width: 850px) { .container { width: 90%; } } @media (max-width: 550px) { position: absolute; top: 0; left: 0; .container { width: 95%; padding: 0; } } .container { height: 50px; } .main-logo { margin-left: 5px; display: inline-block; vertical-align: middle; -webkit-backface-visibility: hidden; } .motto { display: inline-block; vertical-align: middle; margin: 0 0 0 25px; padding-top: 4px; color: #999; font-weight: 400; font-size: 14px; @media (max-width: 650px) { display: none; } } .right-nav { display: inline-block; float: right; height: 55px; padding: 5px 0; position: relative; } .dropdown-wrapper { display: inline-block; vertical-align: middle; position: relative; @media (max-width: 750px) { padding-top: 5px; } } .dropdown-wrapper > .fa { font-size: 22px; color: #999; cursor: pointer; &:hover { color: #222; } } .dropdown-wrapper > .fa-bell-fix { margin-top: 2px; } .dropdown-wrapper > .fa-bell { color: #222; } .dropdown-wrapper > .fa-comments-fix { font-size: 28px; } .dropdown-wrapper > .fa-comments { color: #222; } .dropdown-wrapper > .fa-angle-up { color: #222; } .dropdown-wrapper > i, .discuss-link { display: inline-block; vertical-align: middle; margin: 0 10px } .discuss-link.active { color: #222; } .user-wrapper { display: inline-block; vertical-align: middle; cursor: pointer; margin-left: 10px; img, p { display: inline-block; vertical-align: middle; margin-right: 10px; } &:hover p { color: #222; } @media (max-width: 750px) { display: none; } } .user-pic { border-radius: 50%; } p.user-name { margin: 0; color: #999; font-size: 16px; } .nav-dropdown { position: absolute; top: 36px; right: 0; border-radius: 5px; box-shadow: 0px 2px 5px rgba(0,0,0,0.25); background-color: #fff; color: #848484; overflow: hidden; &.noti { width: 350px; } &.setting { width: 200px; font-size: 16px; padding: 5px 0; } .item { cursor: pointer; .date { font-size: 9px; font-weight: 600; color: #999; margin-left: 60px; } } hr { margin: 5px 0; } } .setting .item { display: block; padding: 4px 20px; width: 100%; color: #000; font-size: 15px; text-decoration: none; &:first-child { color: #972952; } &:hover { background-color: #f9f9f9; } } .noti .item { height: 70px; overflow: hidden; text-overflow: ellipsis; border-bottom: 1px solid #ddd; padding: 9px 10px; font-size: 12px; position: relative; color: #000; &:hover { background-color: #f9f9f9; } &.new { background-color: hexa(#873C58,0.1); } .icon-wrapper { position: absolute; top: 9px; left: 10px; height: 50px; width: 50px; border-radius: 50%; border: 2px solid #5B142F; background-color: #972952; text-align: center; color: #fff; font-size: 24px; line-height: 1.8; } .detail { height: 37px; width: 330px; padding-left: 60px; line-height: 1.45; .hilight { color: #972952; } } img { width: 50px; height: 50px; border-radius: 50%; position: absolute; top: 9px; left: 10px; } } }
0.445047
0.082401
.post{ display: flex; justify-content: center; align-items: center; margin: 1rem 0; } .post-card{ display: flex; flex-flow: row wrap; justify-content: center; width: 100%; flex:1 1; padding: 1rem 0; margin: 1rem 0; background: var(--stone-color); border-radius: 5px; } .post .user-info{ display: flex; flex-flow: column wrap; height: 100%; width: 20%; margin: 1rem; justify-content: flex-start; } .post .user-info a img{ width:100px; height:80px; border-radius: 50%; } .comments-content{ display: flex; justify-content: center; flex-flow: column wrap; align-items: center; width: 70%; /* margin-right:1rem; */ height: 100%; } .comments-content p{ margin: 0.5rem 0; font-size: 1.3rem; font-weight: bold; line-height: 1.5; } .comments-content button,.comments-content .userComments,.comments-content .delete{ font-size: 1.2rem; background: var(--stone-color); outline: none; border: 2px solid #111; margin: 0 0.4rem; padding: 0.2rem; font-family: var(--main-font); border-radius: 5px; } .comments-content .delete{ background: var(--red-color); } .comments-content .userComments{ background: var(--autumn-color); /* padding: 0.5rem; font-size: 1.2rem; */ font-weight: bold; } @media only screen and (min-width: 375px) and (max-width: 767px){ .post-card{ flex-flow: column nowrap; justify-content: center; align-items: center; width: 90%; padding: 1rem; text-align: center; } .comments-content{ width:90%; } .post{ display: flex; flex-flow: column wrap; justify-content: center; width: 100%; } .post .user-info{ width: 100%; margin: 0; } } @media only screen and (min-width: 767px) and (max-width: 1100px){ .post-card{ width: 90%; padding: 1rem; text-align: center; } .comments-content{ width:90%; } .post{ display: flex; flex-flow: column wrap; justify-content: center; width: 100%; } .post .user-info{ width: 100%; margin: 0; } }
client/src/components/Comments/Comments.css
.post{ display: flex; justify-content: center; align-items: center; margin: 1rem 0; } .post-card{ display: flex; flex-flow: row wrap; justify-content: center; width: 100%; flex:1 1; padding: 1rem 0; margin: 1rem 0; background: var(--stone-color); border-radius: 5px; } .post .user-info{ display: flex; flex-flow: column wrap; height: 100%; width: 20%; margin: 1rem; justify-content: flex-start; } .post .user-info a img{ width:100px; height:80px; border-radius: 50%; } .comments-content{ display: flex; justify-content: center; flex-flow: column wrap; align-items: center; width: 70%; /* margin-right:1rem; */ height: 100%; } .comments-content p{ margin: 0.5rem 0; font-size: 1.3rem; font-weight: bold; line-height: 1.5; } .comments-content button,.comments-content .userComments,.comments-content .delete{ font-size: 1.2rem; background: var(--stone-color); outline: none; border: 2px solid #111; margin: 0 0.4rem; padding: 0.2rem; font-family: var(--main-font); border-radius: 5px; } .comments-content .delete{ background: var(--red-color); } .comments-content .userComments{ background: var(--autumn-color); /* padding: 0.5rem; font-size: 1.2rem; */ font-weight: bold; } @media only screen and (min-width: 375px) and (max-width: 767px){ .post-card{ flex-flow: column nowrap; justify-content: center; align-items: center; width: 90%; padding: 1rem; text-align: center; } .comments-content{ width:90%; } .post{ display: flex; flex-flow: column wrap; justify-content: center; width: 100%; } .post .user-info{ width: 100%; margin: 0; } } @media only screen and (min-width: 767px) and (max-width: 1100px){ .post-card{ width: 90%; padding: 1rem; text-align: center; } .comments-content{ width:90%; } .post{ display: flex; flex-flow: column wrap; justify-content: center; width: 100%; } .post .user-info{ width: 100%; margin: 0; } }
0.24608
0.078289
.blogPageInner .blog-article ul p { margin: 0 0 10px 0px; } /* .blogPageInner .blog-article img:first-of-type { text-align: center; margin-left: auto; margin-right: auto; } */ .blogPageInner .blog-article ol { font-size: 18px; line-height: 26px; padding-left: 18px; margin: 40px 0; } .blogPageInner .blog-article ol > li { list-style-type: decimal; font-size: 18px; line-height: 26px; } .blogPageInner .blog-article ol > li, .blogPageInner .blog-article ul > li { margin: 5px; } .blogPageInner .blog-article ol ul, .blogPageInner .blog-article ol ol { margin-bottom: 0px; margin-top: 0px; } .blogPageInner .blog-article ol p { margin: 0; } /* This might have unintended consequences, but I haven't seen any */ .blogPage .blogPageInner { padding-top: 0; } .blogPageInner .blog-article pre { tab-size: 4; margin: revert; } .blogPageInner .blog-article code span { font-size: unset; } .security__text a { color: #4aafff; -webkit-transition: opacity .3s ease-in-out,color .3s ease-in-out; -o-transition: opacity .3s ease-in-out,color .3s ease-in-out; transition: opacity .3s ease-in-out,color .3s ease-in-out; } .security__text a:hover { color: #ffa729; } .grid-markets { } .grid-markets .core__el__img img { object-fit: contain; } .grid-markets .core__el__img { text-align: center; padding: 40px; background-color:#FCFCFC; } .coreTeam .grid-markets .core__el { /*margin-top: 0;*/ margin-bottom: 40px; } .core-team-head__inner { margin-bottom:20px; } .coreTeam .core-page .grid-three-cols { margin-bottom: 80px; } .timeline-content { margin-top: 50px; text-align: center; } /* .core__el__inner { overflow: hidden; white-space: normal; } */ .timeline { border-left: 3px solid #FFA729; border-bottom-right-radius: 4px; border-top-right-radius: 4px; background: #ECEDED; color: rgba(0, 0, 0, 0.8); margin: 50px auto; letter-spacing: 0.5px; position: relative; line-height: 1.4em; font-size: 1.03em; padding: 50px; list-style: none; text-align: left; font-weight: 100; max-width: 90%; } .timeline h1 { letter-spacing: 1.5px; font-weight: 100; font-size: 1.4em; } .timeline h2, .timeline h3 { letter-spacing: 1.5px; font-weight: 400; font-size: 1.4em; } .timeline .event { border-bottom: 1px dashed rgba(0, 0, 0, 0.1); padding-bottom: 25px; margin-bottom: 50px; position: relative; } .timeline ul { padding-left:20px; list-style: disc; } .timeline .event:last-of-type { padding-bottom: 0; margin-bottom: 0; border: none; } .timeline .event:before, .timeline .event:after { position: absolute; display: block; top: 0; } .timeline .event:before { left: -217.5px; color: #444; content: attr(data-date); text-align: right; font-weight: 100; font-size: 0.9em; min-width: 140px; } .timeline .event:after { left: -56.85px; background: #FFA729; border-radius: 50%; height: 11px; width: 11px; content: ""; top: 5px; } .future .timeline .event:after { background: #4AAFFF; } .future .timeline { border-left: 3px solid #4AAFFF; } .timeline-content .container-mini > h2:after { display:none; } .timeline .date { display:none; } @media screen and (max-width: 767px) { .grid-markets.grid-three-cols { grid-template-columns: repeat(1, 1fr); grid-column-gap: 30px; grid-row-gap: 30px; } .timeline .event:before { display:none; left: -217.5px; color: #444; content: ''; text-align: right; font-weight: 100; font-size: 0.9em; min-width: 140px; } .timeline .date { display: block; } } .popup-edit h3 { margin-bottom: 10px; line-height: 24px; } .contributors .list li a { border-bottom: unset; } .ghover path { transition: 500ms ease-in-out; } .ghover:hover path { fill: #4aafff; } .others { margin-top: -10px; } .others a { display: inline; border-radius: 0; color: rgba(10,23,32,0.5); text-transform: none; background-color: unset; } .others a:hover { color: #ffa729; background-color: unset; } .single-md ul { font-size: 18px; line-height: 26px; margin: 40px 0; } .single-md ul li { list-style-type: disc; font-size: 18px; line-height: 26px; margin-bottom: 10px; } .single-md h2 { font-size: 32px; text-transform: uppercase; font-family: 'Alte DIN 1451 Mittelschrift'; font-weight: bold; } .single-md a { text-decoration: underline; transition: 500ms ease-in-out; } .single-md a:hover { color: #ffa729; } .no-ul { text-decoration: none !important; } .blog .small-p a { background-color: rgba(255,167,41,0.2); } .blog .small-p a:hover { color: #FFA729; } .single-md { margin: 50px; } /* MailChimp Form Embed Code - Classic - 12/17/2015 v10.7 */ #mc_embed_signup { background-color: #0a1720; margin-top: 10px; padding: 20px 26px; transition: .5s ease-in-out; position: relative; transition-property: color,background-color; z-index: 2; color: #FFF; font-size: 16px; line-height: 20px; font-family: "Source Sans Pro",sans-serif; cursor: default; border-top: 6px solid #4AAFFF; border-radius: 6px; } #mc_embed_signup form {display:block; position:relative; text-align:left; padding:10px 0 10px 3%} #mc_embed_signup h2 {font-weight:bold; padding:0; margin:15px 0; font-size:36px;} #mc_embed_signup input {color:#FFF;border: 1px solid #FFF; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;} #mc_embed_signup input[type=radio]{-webkit-appearance:radio;} #mc_embed_signup input:focus {border-color:#4AAFFF;caret-color: #FFF;} #mc_embed_signup .button { border: 0; height: 40px; width: 156px; line-height: 40px; text-transform: uppercase; color: #fff; text-align: center; border-radius: 4px; display: block; background-color: #4AAFFF; font-size: 14px; font-family: "Alte DIN 1451 Mittelschrift",sans-serif; transition: 300ms ease-in-out; cursor: pointer; } #mc_embed_signup .button:hover { background-color: #0891ff;} #mc_embed_signup .small-meta {font-size: 11px;} #mc_embed_signup .nowrap {white-space:nowrap;} #mc_embed_signup .mc-field-group {clear:left; position:relative; width:96%; padding-bottom:3%; min-height:50px;} #mc_embed_signup .size1of2 {clear:none; float:left; display:inline-block; width:46%; margin-right:4%;} * html #mc_embed_signup .size1of2 {margin-right:2%; /* Fix for IE6 double margins. */} #mc_embed_signup .mc-field-group label {display:block; margin-bottom:3px;font-weight: bold;} #mc_embed_signup .mc-field-group input {display:block; width:100%; padding:8px 0; text-indent:2%;} #mc_embed_signup .mc-field-group select {display:inline-block; width:99%; padding:5px 0; margin-bottom:2px;} #mc_embed_signup .datefield, #mc_embed_signup .phonefield-us{padding:5px 0;} #mc_embed_signup .datefield input, #mc_embed_signup .phonefield-us input{display:inline; width:60px; margin:0 2px; letter-spacing:1px; text-align:center; padding:5px 0 2px 0;} #mc_embed_signup .phonefield-us .phonearea input, #mc_embed_signup .phonefield-us .phonedetail1 input{width:40px;} #mc_embed_signup .datefield .monthfield input, #mc_embed_signup .datefield .dayfield input{width:30px;} #mc_embed_signup .datefield label, #mc_embed_signup .phonefield-us label{display:none;} #mc_embed_signup .indicates-required {text-align:right; font-size:11px; margin-right:4%;} #mc_embed_signup .asterisk {color:#e85c41; font-size:150%; font-weight:normal; position:relative; top:5px;} #mc_embed_signup .clear {clear:both;} #mc_embed_signup .mc-field-group.input-group ul {margin:0; padding:5px 0; list-style:none;} #mc_embed_signup .mc-field-group.input-group ul li {display:block; padding:3px 0; margin:0;} #mc_embed_signup .mc-field-group.input-group label {display:inline;} #mc_embed_signup .mc-field-group.input-group input {display:inline; width:auto; border:none;} #mc_embed_signup div#mce-responses {float:left; top:-1.4em; padding:0em .5em 0em .5em; overflow:hidden; width:90%; margin: 0 5%; clear: both;} #mc_embed_signup div.response {margin:1em 0; padding:1em .5em .5em 0; font-weight:bold; float:left; top:-1.5em; z-index:1; width:80%;} #mc_embed_signup #mce-error-response {display:none;} #mc_embed_signup #mce-success-response {color:#529214; display:none;} #mc_embed_signup label.error {display:block; float:none; width:auto; margin-left:1.05em; text-align:left; padding:.5em 0;} #mc-embedded-subscribe {clear:both; width:auto; display:block; margin:0;} #mc_embed_signup #num-subscribers {font-size:1.1em;} #mc_embed_signup #num-subscribers span {padding:.5em; border:1px solid #ccc; margin-right:.5em; font-weight:bold;} #mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {display:inline-block; margin:2px 0 1em 0; padding:5px 10px; background-color:rgba(255,255,255,0.85); -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; font-size:14px; font-weight:normal; z-index:1; color:#e85c41;} #mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error {border:2px solid #e85c41;} #mc_embed_signup .subfield { display: inline; width: fit-content; } #mc_embed_signup input[type=checkbox]{ -webkit-appearance:checkbox;height:20px; display: inline; } #mc_embed_signup a { text-decoration: underline; transition: 300ms ease-in-out; } #mc_embed_signup a:hover { color: #FFA729; } .joanclarke { position: inherit; } .av-checkbox { position: absolute !important; width: auto !important; } .checkbox > span { margin-left: 20px !important; }
static/css/overrides.css
.blogPageInner .blog-article ul p { margin: 0 0 10px 0px; } /* .blogPageInner .blog-article img:first-of-type { text-align: center; margin-left: auto; margin-right: auto; } */ .blogPageInner .blog-article ol { font-size: 18px; line-height: 26px; padding-left: 18px; margin: 40px 0; } .blogPageInner .blog-article ol > li { list-style-type: decimal; font-size: 18px; line-height: 26px; } .blogPageInner .blog-article ol > li, .blogPageInner .blog-article ul > li { margin: 5px; } .blogPageInner .blog-article ol ul, .blogPageInner .blog-article ol ol { margin-bottom: 0px; margin-top: 0px; } .blogPageInner .blog-article ol p { margin: 0; } /* This might have unintended consequences, but I haven't seen any */ .blogPage .blogPageInner { padding-top: 0; } .blogPageInner .blog-article pre { tab-size: 4; margin: revert; } .blogPageInner .blog-article code span { font-size: unset; } .security__text a { color: #4aafff; -webkit-transition: opacity .3s ease-in-out,color .3s ease-in-out; -o-transition: opacity .3s ease-in-out,color .3s ease-in-out; transition: opacity .3s ease-in-out,color .3s ease-in-out; } .security__text a:hover { color: #ffa729; } .grid-markets { } .grid-markets .core__el__img img { object-fit: contain; } .grid-markets .core__el__img { text-align: center; padding: 40px; background-color:#FCFCFC; } .coreTeam .grid-markets .core__el { /*margin-top: 0;*/ margin-bottom: 40px; } .core-team-head__inner { margin-bottom:20px; } .coreTeam .core-page .grid-three-cols { margin-bottom: 80px; } .timeline-content { margin-top: 50px; text-align: center; } /* .core__el__inner { overflow: hidden; white-space: normal; } */ .timeline { border-left: 3px solid #FFA729; border-bottom-right-radius: 4px; border-top-right-radius: 4px; background: #ECEDED; color: rgba(0, 0, 0, 0.8); margin: 50px auto; letter-spacing: 0.5px; position: relative; line-height: 1.4em; font-size: 1.03em; padding: 50px; list-style: none; text-align: left; font-weight: 100; max-width: 90%; } .timeline h1 { letter-spacing: 1.5px; font-weight: 100; font-size: 1.4em; } .timeline h2, .timeline h3 { letter-spacing: 1.5px; font-weight: 400; font-size: 1.4em; } .timeline .event { border-bottom: 1px dashed rgba(0, 0, 0, 0.1); padding-bottom: 25px; margin-bottom: 50px; position: relative; } .timeline ul { padding-left:20px; list-style: disc; } .timeline .event:last-of-type { padding-bottom: 0; margin-bottom: 0; border: none; } .timeline .event:before, .timeline .event:after { position: absolute; display: block; top: 0; } .timeline .event:before { left: -217.5px; color: #444; content: attr(data-date); text-align: right; font-weight: 100; font-size: 0.9em; min-width: 140px; } .timeline .event:after { left: -56.85px; background: #FFA729; border-radius: 50%; height: 11px; width: 11px; content: ""; top: 5px; } .future .timeline .event:after { background: #4AAFFF; } .future .timeline { border-left: 3px solid #4AAFFF; } .timeline-content .container-mini > h2:after { display:none; } .timeline .date { display:none; } @media screen and (max-width: 767px) { .grid-markets.grid-three-cols { grid-template-columns: repeat(1, 1fr); grid-column-gap: 30px; grid-row-gap: 30px; } .timeline .event:before { display:none; left: -217.5px; color: #444; content: ''; text-align: right; font-weight: 100; font-size: 0.9em; min-width: 140px; } .timeline .date { display: block; } } .popup-edit h3 { margin-bottom: 10px; line-height: 24px; } .contributors .list li a { border-bottom: unset; } .ghover path { transition: 500ms ease-in-out; } .ghover:hover path { fill: #4aafff; } .others { margin-top: -10px; } .others a { display: inline; border-radius: 0; color: rgba(10,23,32,0.5); text-transform: none; background-color: unset; } .others a:hover { color: #ffa729; background-color: unset; } .single-md ul { font-size: 18px; line-height: 26px; margin: 40px 0; } .single-md ul li { list-style-type: disc; font-size: 18px; line-height: 26px; margin-bottom: 10px; } .single-md h2 { font-size: 32px; text-transform: uppercase; font-family: 'Alte DIN 1451 Mittelschrift'; font-weight: bold; } .single-md a { text-decoration: underline; transition: 500ms ease-in-out; } .single-md a:hover { color: #ffa729; } .no-ul { text-decoration: none !important; } .blog .small-p a { background-color: rgba(255,167,41,0.2); } .blog .small-p a:hover { color: #FFA729; } .single-md { margin: 50px; } /* MailChimp Form Embed Code - Classic - 12/17/2015 v10.7 */ #mc_embed_signup { background-color: #0a1720; margin-top: 10px; padding: 20px 26px; transition: .5s ease-in-out; position: relative; transition-property: color,background-color; z-index: 2; color: #FFF; font-size: 16px; line-height: 20px; font-family: "Source Sans Pro",sans-serif; cursor: default; border-top: 6px solid #4AAFFF; border-radius: 6px; } #mc_embed_signup form {display:block; position:relative; text-align:left; padding:10px 0 10px 3%} #mc_embed_signup h2 {font-weight:bold; padding:0; margin:15px 0; font-size:36px;} #mc_embed_signup input {color:#FFF;border: 1px solid #FFF; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;} #mc_embed_signup input[type=radio]{-webkit-appearance:radio;} #mc_embed_signup input:focus {border-color:#4AAFFF;caret-color: #FFF;} #mc_embed_signup .button { border: 0; height: 40px; width: 156px; line-height: 40px; text-transform: uppercase; color: #fff; text-align: center; border-radius: 4px; display: block; background-color: #4AAFFF; font-size: 14px; font-family: "Alte DIN 1451 Mittelschrift",sans-serif; transition: 300ms ease-in-out; cursor: pointer; } #mc_embed_signup .button:hover { background-color: #0891ff;} #mc_embed_signup .small-meta {font-size: 11px;} #mc_embed_signup .nowrap {white-space:nowrap;} #mc_embed_signup .mc-field-group {clear:left; position:relative; width:96%; padding-bottom:3%; min-height:50px;} #mc_embed_signup .size1of2 {clear:none; float:left; display:inline-block; width:46%; margin-right:4%;} * html #mc_embed_signup .size1of2 {margin-right:2%; /* Fix for IE6 double margins. */} #mc_embed_signup .mc-field-group label {display:block; margin-bottom:3px;font-weight: bold;} #mc_embed_signup .mc-field-group input {display:block; width:100%; padding:8px 0; text-indent:2%;} #mc_embed_signup .mc-field-group select {display:inline-block; width:99%; padding:5px 0; margin-bottom:2px;} #mc_embed_signup .datefield, #mc_embed_signup .phonefield-us{padding:5px 0;} #mc_embed_signup .datefield input, #mc_embed_signup .phonefield-us input{display:inline; width:60px; margin:0 2px; letter-spacing:1px; text-align:center; padding:5px 0 2px 0;} #mc_embed_signup .phonefield-us .phonearea input, #mc_embed_signup .phonefield-us .phonedetail1 input{width:40px;} #mc_embed_signup .datefield .monthfield input, #mc_embed_signup .datefield .dayfield input{width:30px;} #mc_embed_signup .datefield label, #mc_embed_signup .phonefield-us label{display:none;} #mc_embed_signup .indicates-required {text-align:right; font-size:11px; margin-right:4%;} #mc_embed_signup .asterisk {color:#e85c41; font-size:150%; font-weight:normal; position:relative; top:5px;} #mc_embed_signup .clear {clear:both;} #mc_embed_signup .mc-field-group.input-group ul {margin:0; padding:5px 0; list-style:none;} #mc_embed_signup .mc-field-group.input-group ul li {display:block; padding:3px 0; margin:0;} #mc_embed_signup .mc-field-group.input-group label {display:inline;} #mc_embed_signup .mc-field-group.input-group input {display:inline; width:auto; border:none;} #mc_embed_signup div#mce-responses {float:left; top:-1.4em; padding:0em .5em 0em .5em; overflow:hidden; width:90%; margin: 0 5%; clear: both;} #mc_embed_signup div.response {margin:1em 0; padding:1em .5em .5em 0; font-weight:bold; float:left; top:-1.5em; z-index:1; width:80%;} #mc_embed_signup #mce-error-response {display:none;} #mc_embed_signup #mce-success-response {color:#529214; display:none;} #mc_embed_signup label.error {display:block; float:none; width:auto; margin-left:1.05em; text-align:left; padding:.5em 0;} #mc-embedded-subscribe {clear:both; width:auto; display:block; margin:0;} #mc_embed_signup #num-subscribers {font-size:1.1em;} #mc_embed_signup #num-subscribers span {padding:.5em; border:1px solid #ccc; margin-right:.5em; font-weight:bold;} #mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {display:inline-block; margin:2px 0 1em 0; padding:5px 10px; background-color:rgba(255,255,255,0.85); -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; font-size:14px; font-weight:normal; z-index:1; color:#e85c41;} #mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error {border:2px solid #e85c41;} #mc_embed_signup .subfield { display: inline; width: fit-content; } #mc_embed_signup input[type=checkbox]{ -webkit-appearance:checkbox;height:20px; display: inline; } #mc_embed_signup a { text-decoration: underline; transition: 300ms ease-in-out; } #mc_embed_signup a:hover { color: #FFA729; } .joanclarke { position: inherit; } .av-checkbox { position: absolute !important; width: auto !important; } .checkbox > span { margin-left: 20px !important; }
0.301876
0.059757
main { display: flex; flex-direction: row; position: fixed; width: 100%; height: 100%; top:0; left:0; z-index: 90; pointer-events: none; } main * { pointer-events: auto; } #hud { position: absolute; display: flex; flex-direction: column; top: 20px; left: 20px; width: fit-content; height: 100px; z-index: 98; gap: 10px; height: fit-content; } #died-text { display: absolute; left: 0; top: 0; background-color: rgba(0, 0, 0, 0.712); font-weight: bold; text-shadow: black; font-size: 40px; color: white; z-index: 99; width: 100%; height: 100%; text-align: center; padding-top: calc(50% / 2); } .box { background-color: rgba(0, 0, 0, 0.705); border-radius: 10px; border: solid 1px rgb(75, 75, 75); color: white; font-weight: bold; padding: 15px; } input { background: rgba(0, 0, 0, 0.486); padding: 10px; color: white; border: solid 1px rgb(75, 75, 75); border-radius: 10px; font-weight: bold; font-size: 20px; } input:focus { border-color: rgb(139, 139, 139); outline: none; } #hud > .row { color: white; font-weight: bold; font-size: 18px; } #main-menu { display: flex; flex-direction: column; gap: 10px; align-items: center; justify-content: center; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.63); } button { color: rgb(99, 99, 99); background-color: rgb(255, 255, 255); box-shadow: 2px 3px 1px rgb(182, 182, 182); padding: 10px; border: none; border-radius: 5px; font-weight: bold; } button:hover { background-color: rgb(240, 239, 239); } button:active { box-shadow: none; transform: translateY(2px); } .menu-btn { width: 200px; font-size: 20px; border-radius: 10px; } #loading-window { position: absolute; width: 100%; height: 100%; top: 0; left: 0; background-image: url('../map/textures/grass2.png'); display: flex; align-items: center; justify-content: center; flex-direction: column; } #mob-hud { display: flex; flex-direction: column; text-align: center; justify-content: center; position: absolute; left: calc(100% / 2 - 100px); align-self: center; top: 20px; width: 200px; height: fit-content; gap: 10px; display: none; } .hp-bar { height: fit-content; font-size: 15px; max-width: 200px; background-color: rgb(146, 0, 0); border-radius: 5px; transition-duration: 0.3s; text-align: center; } #mini-map { position: fixed; right: 0; top: 0; margin: 20px; width: 200px; height: 200px; background-image: url("../map/textures/grass2.png"); object-fit: scale-down; border-radius: 50%; border: solid 1px white; } #loading-text { font-weight: bold; color: white; font-size: 30px; text-shadow: black; } #name-window { position: fixed; display: flex; width: 100%; height: 100%; justify-content: center; align-items: center; top: 0; left: 0; background-color: rgba(0, 0, 0, 0.699); } #name-window .box { display: flex; padding: 20px; flex-direction: column; gap: 10px; font-size: 30px; align-items: center; } #name-window button { width: 100%; }
assets/ui/style.css
main { display: flex; flex-direction: row; position: fixed; width: 100%; height: 100%; top:0; left:0; z-index: 90; pointer-events: none; } main * { pointer-events: auto; } #hud { position: absolute; display: flex; flex-direction: column; top: 20px; left: 20px; width: fit-content; height: 100px; z-index: 98; gap: 10px; height: fit-content; } #died-text { display: absolute; left: 0; top: 0; background-color: rgba(0, 0, 0, 0.712); font-weight: bold; text-shadow: black; font-size: 40px; color: white; z-index: 99; width: 100%; height: 100%; text-align: center; padding-top: calc(50% / 2); } .box { background-color: rgba(0, 0, 0, 0.705); border-radius: 10px; border: solid 1px rgb(75, 75, 75); color: white; font-weight: bold; padding: 15px; } input { background: rgba(0, 0, 0, 0.486); padding: 10px; color: white; border: solid 1px rgb(75, 75, 75); border-radius: 10px; font-weight: bold; font-size: 20px; } input:focus { border-color: rgb(139, 139, 139); outline: none; } #hud > .row { color: white; font-weight: bold; font-size: 18px; } #main-menu { display: flex; flex-direction: column; gap: 10px; align-items: center; justify-content: center; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.63); } button { color: rgb(99, 99, 99); background-color: rgb(255, 255, 255); box-shadow: 2px 3px 1px rgb(182, 182, 182); padding: 10px; border: none; border-radius: 5px; font-weight: bold; } button:hover { background-color: rgb(240, 239, 239); } button:active { box-shadow: none; transform: translateY(2px); } .menu-btn { width: 200px; font-size: 20px; border-radius: 10px; } #loading-window { position: absolute; width: 100%; height: 100%; top: 0; left: 0; background-image: url('../map/textures/grass2.png'); display: flex; align-items: center; justify-content: center; flex-direction: column; } #mob-hud { display: flex; flex-direction: column; text-align: center; justify-content: center; position: absolute; left: calc(100% / 2 - 100px); align-self: center; top: 20px; width: 200px; height: fit-content; gap: 10px; display: none; } .hp-bar { height: fit-content; font-size: 15px; max-width: 200px; background-color: rgb(146, 0, 0); border-radius: 5px; transition-duration: 0.3s; text-align: center; } #mini-map { position: fixed; right: 0; top: 0; margin: 20px; width: 200px; height: 200px; background-image: url("../map/textures/grass2.png"); object-fit: scale-down; border-radius: 50%; border: solid 1px white; } #loading-text { font-weight: bold; color: white; font-size: 30px; text-shadow: black; } #name-window { position: fixed; display: flex; width: 100%; height: 100%; justify-content: center; align-items: center; top: 0; left: 0; background-color: rgba(0, 0, 0, 0.699); } #name-window .box { display: flex; padding: 20px; flex-direction: column; gap: 10px; font-size: 30px; align-items: center; } #name-window button { width: 100%; }
0.398289
0.087019
.main-wrapper-center-cell{ width:1100px !important; } .content-wrap{ width: 1100px !important; } .crm-invoice-payment-client-wrapper{ width:100%; position: relative; overflow: hidden; } .crm-invoice-payment-client-wrapper.crm-invoice-payment-deliver:before { content: ''; width: 1px; position: absolute; top: 23px; bottom: 40px; right: 290px; background: #eaecee; } .crm-invoice-payment-client-pp{ width:10%; } /*pay*/ .crm-invoice-payment-client-pp-company { padding-bottom: 20px; z-index: 100; position: relative; } .crm-invoice-payment-client-pp .crm-invoice-payment-client-pp-company { padding: 7px; border: 1px solid transparent; -webkit-transition: all 100ms ease; -moz-transition: all 100ms ease; -ms-transition: all 100ms ease; -o-transition: all 100ms ease; transition: all 100ms ease; } .crm-invoice-payment-client-pp-company.bx-selected .crm-invoice-payment-client-pp-company-graf-container { border-color: #159ebb; } .crm-invoice-payment-client-pp-company.bx-error .crm-invoice-payment-client-pp-company-graf-container { border-color: #db4a29; } .crm-invoice-payment-client-pp-company.bx-warning .crm-invoice-payment-client-pp-company-graf-container { border-color: #ccbe71; } input[type=checkbox].crm-invoice-payment-client-pp-company-checkbox { position: absolute; top: 7px; left: 7px; margin: 0; padding: 0; z-index: 100; } .crm-invoice-payment-client-pp-company-image { position: absolute; top: 5px; right: 5px; bottom: 5px; left: 5px; background-size: contain; background-repeat: no-repeat; background-position: center; } .crm-invoice-payment-client-pp-company-smalltitle { padding-top: 9px; color: #a3a3a3; font-size: 11px; text-align: center; padding-bottom: 5px; } .crm-invoice-payment-client-pp-company-title { font-size: 19px; font-weight: bold; } .crm-invoice-payment-client-pp-company-selected { padding: 4px 0; } @media (max-width: 767px) { .crm-invoice-payment-client-pp-item-container { max-width: 300px; } .crm-invoice-payment-client-pp-item-container .crm-invoice-payment-client-pp-company:nth-child(2n+1) { clear: both; padding-left: 0; } } @media (min-width: 768px) and (max-width: 1199px) { .crm-invoice-payment-client-pp-item-container .crm-invoice-payment-client-pp-company:nth-child(3n+1) { clear: both; padding-left: 0; } } @media (min-width: 1200px) { .crm-invoice-payment-client-pp-item-container .crm-invoice-payment-client-pp-company:nth-child(4n+1) { clear: both; padding-left: 0; } } .content { overflow: hidden; } .crm-invoice-payment-client-pp-switcher{ display: none; } .crm-invoice-payment-client-template { max-width: 800px; overflow: hidden; position: relative; float: left; } #crm-invoice-payment-template-frame{ padding:32px 8px 0 8px; } .crm-invoice-payment-bar { float: right; padding: 23px 23px 0 23px; width: 295px; overflow: hidden; position: relative; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; top: 0; right: 0; } .crm-invoice-payment-button { clear: both; display: block; overflow: hidden; text-align: center; margin: 0 0 35px 0; } .crm-invoice-payment-button-download, .crm-invoice-payment-button-print { display: inline-block; font-family: "OpenSans-Bold", Helvetica,Arial,sans-serif; height: 35px; line-height: 35px; padding: 0 20px 0 15px; color: #535c69; font-size: 12px; text-decoration: none; text-transform: uppercase; border: 1px solid #c6cdd3; cursor: pointer; -webkit-transition: .2s; -moz-transition: .2s; transition: .2s; } .crm-invoice-payment-button-download:hover, .crm-invoice-payment-button-print:hover { border: 1px solid #535c69; } .crm-invoice-payment-button-download:before { content: ''; display: inline-block; vertical-align: middle; width: 15px; height: 20px; margin: 0 9px 0 0; background: url(/bitrix/js/crm/css/../images/crm-invoice-client-sprite.png) 0 0 no-repeat; } .crm-invoice-payment-button-print:before { content: ''; display: inline-block; vertical-align: middle; width: 15px; height: 20px; margin: 0 9px 0 0; background: url(/bitrix/js/crm/css/../images/crm-invoice-client-sprite.png) -17px 0 no-repeat; } .crm-invoice-payment-button-de{ font-size: 9px; } .crm-invoice-payment-total { clear: both; display: block; overflow: hidden; text-align: center; margin: 0 0 35px 0; } .crm-invoice-payment-total-title { color: #7f7f7f; font-size: 14px; margin: 0 0 5px 0; } .crm-invoice-payment-total-sum { color: #7f7f7f; font-size: 24px; font-weight: bold; } .crm-invoice-payment-system { clear: both; display: block; overflow: hidden; } .crm-invoice-payment-system-title { color: #535c69; font-size: 16px; font-weight: bold; padding: 0 0 10px 0; margin: 0 0 20px 0; border-bottom: 1px solid #eaecee; } .crm-invoice-payment-system-array { clear: both; display: block; overflow-x: hidden; max-width: 244px; max-height: 310px; } .crm-invoice-payment-system-image-block{ display: inline-block; cursor: pointer; width: 94px; margin: 0 5px 12px 5px; } .crm-invoice-payment-system-name{ color: #a3a3a3; font-size: 11px; text-align: center; padding-bottom: 5px; float: left; margin: 0 9px; width: 90px; overflow: hidden; height: 22px; } .crm-invoice-payment-system-image { display: inline-block; cursor: pointer; width: 94px; height: 52px; border: 1px solid #d8dcdf; margin: 0 5px 2px 5px; position: relative; background-repeat: no-repeat; background-position: center center; -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; -webkit-transition: .2s; -moz-transition: .2s; transition: .2s; } .crm-invoice-payment-system-image:hover{ border-color: #159ebb; } .crm-invoice-payment-system-template{ display: none; } .crm-invoice-payment-system-return-list{ display: none; font-family: "OpenSans-Bold", Helvetica,Arial,sans-serif; line-height: 35px; color: #ACCEFF; font-size: 12px; text-align: center; text-decoration: underline; text-transform: uppercase; cursor: pointer; } .crm-invoice-payment-system-return-list:hover{ text-decoration: none; } .crm-invoice-payment-system-image label { display: block; width: 100%; height: 52px; cursor: pointer; } .crm-invoice-payment-requisites { clear: both; display: block; overflow: hidden; margin-top:35px; padding: 0 20px 3px 20px; background: #fafbfb; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .crm-invoice-payment-requisites-title { color: #535c69; font-size: 12px; line-height: 40px; border-bottom: 1px solid #edf0f1; margin: 0 0 7px 0; } .crm-invoice-payment-requisites-table { font-size: 12px; color: #000; } .crm-invoice-payment-requisites-table td { vertical-align: top; padding: 9px 0; } .crm-invoice-payment-requisites-table td:first-child { padding: 9px 12px 9px 0; color: #858b95; } .crm-invoice-payment-requisites-dark { color: #000; } .crm-invoice-payment-copy { clear: both; float: right; line-height: 40px; padding: 0 25px 0 0; font-size: 11px; color: #7f7f7f; } .crm-invoice-payment-copy-logo, .crm-invoice-payment-copy-logo-en { display: inline-block; vertical-align: middle; height: 13px; margin: 0 2px; } .crm-invoice-payment-copy-logo { width: 60px; background: url(/bitrix/js/crm/css/../images/crm-invoice-client-sprite.png) -39px 0 no-repeat; } .crm-invoice-payment-copy-logo-en{ width:53px; background: url(/bitrix/js/crm/css/../images/crm-invoice-client-sprite.png) -99px 0 no-repeat; } .crm-invoice-payment-paid{ transform: rotate(35deg); position: absolute; font-size: 137px; top: 34%; left: 14%; color: #337e96; opacity: 0.3; } .crm-invoice-payment-system-template{ width:100%; } .crm-invoice-payment-system-template .crm-invoice-payment-client-template{ width:100%; text-align: center; } .crm-invoice-payment-paid-table-wrapper{ min-height: 550px; } .crm-invoice-payment-paid-table{ margin: 0 auto; position: relative; top: 200px; font-size: 23px; } .crm-invoice-payment-paid-count-name { font-size: 30px; font-weight: 700; } .crm-invoice-payment-paid-table-empty-row{ height: 20px; }
bitrix/modules/crm/install/components/bitrix/crm.invoice.payment.client/templates/.default/style.css
.main-wrapper-center-cell{ width:1100px !important; } .content-wrap{ width: 1100px !important; } .crm-invoice-payment-client-wrapper{ width:100%; position: relative; overflow: hidden; } .crm-invoice-payment-client-wrapper.crm-invoice-payment-deliver:before { content: ''; width: 1px; position: absolute; top: 23px; bottom: 40px; right: 290px; background: #eaecee; } .crm-invoice-payment-client-pp{ width:10%; } /*pay*/ .crm-invoice-payment-client-pp-company { padding-bottom: 20px; z-index: 100; position: relative; } .crm-invoice-payment-client-pp .crm-invoice-payment-client-pp-company { padding: 7px; border: 1px solid transparent; -webkit-transition: all 100ms ease; -moz-transition: all 100ms ease; -ms-transition: all 100ms ease; -o-transition: all 100ms ease; transition: all 100ms ease; } .crm-invoice-payment-client-pp-company.bx-selected .crm-invoice-payment-client-pp-company-graf-container { border-color: #159ebb; } .crm-invoice-payment-client-pp-company.bx-error .crm-invoice-payment-client-pp-company-graf-container { border-color: #db4a29; } .crm-invoice-payment-client-pp-company.bx-warning .crm-invoice-payment-client-pp-company-graf-container { border-color: #ccbe71; } input[type=checkbox].crm-invoice-payment-client-pp-company-checkbox { position: absolute; top: 7px; left: 7px; margin: 0; padding: 0; z-index: 100; } .crm-invoice-payment-client-pp-company-image { position: absolute; top: 5px; right: 5px; bottom: 5px; left: 5px; background-size: contain; background-repeat: no-repeat; background-position: center; } .crm-invoice-payment-client-pp-company-smalltitle { padding-top: 9px; color: #a3a3a3; font-size: 11px; text-align: center; padding-bottom: 5px; } .crm-invoice-payment-client-pp-company-title { font-size: 19px; font-weight: bold; } .crm-invoice-payment-client-pp-company-selected { padding: 4px 0; } @media (max-width: 767px) { .crm-invoice-payment-client-pp-item-container { max-width: 300px; } .crm-invoice-payment-client-pp-item-container .crm-invoice-payment-client-pp-company:nth-child(2n+1) { clear: both; padding-left: 0; } } @media (min-width: 768px) and (max-width: 1199px) { .crm-invoice-payment-client-pp-item-container .crm-invoice-payment-client-pp-company:nth-child(3n+1) { clear: both; padding-left: 0; } } @media (min-width: 1200px) { .crm-invoice-payment-client-pp-item-container .crm-invoice-payment-client-pp-company:nth-child(4n+1) { clear: both; padding-left: 0; } } .content { overflow: hidden; } .crm-invoice-payment-client-pp-switcher{ display: none; } .crm-invoice-payment-client-template { max-width: 800px; overflow: hidden; position: relative; float: left; } #crm-invoice-payment-template-frame{ padding:32px 8px 0 8px; } .crm-invoice-payment-bar { float: right; padding: 23px 23px 0 23px; width: 295px; overflow: hidden; position: relative; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; top: 0; right: 0; } .crm-invoice-payment-button { clear: both; display: block; overflow: hidden; text-align: center; margin: 0 0 35px 0; } .crm-invoice-payment-button-download, .crm-invoice-payment-button-print { display: inline-block; font-family: "OpenSans-Bold", Helvetica,Arial,sans-serif; height: 35px; line-height: 35px; padding: 0 20px 0 15px; color: #535c69; font-size: 12px; text-decoration: none; text-transform: uppercase; border: 1px solid #c6cdd3; cursor: pointer; -webkit-transition: .2s; -moz-transition: .2s; transition: .2s; } .crm-invoice-payment-button-download:hover, .crm-invoice-payment-button-print:hover { border: 1px solid #535c69; } .crm-invoice-payment-button-download:before { content: ''; display: inline-block; vertical-align: middle; width: 15px; height: 20px; margin: 0 9px 0 0; background: url(/bitrix/js/crm/css/../images/crm-invoice-client-sprite.png) 0 0 no-repeat; } .crm-invoice-payment-button-print:before { content: ''; display: inline-block; vertical-align: middle; width: 15px; height: 20px; margin: 0 9px 0 0; background: url(/bitrix/js/crm/css/../images/crm-invoice-client-sprite.png) -17px 0 no-repeat; } .crm-invoice-payment-button-de{ font-size: 9px; } .crm-invoice-payment-total { clear: both; display: block; overflow: hidden; text-align: center; margin: 0 0 35px 0; } .crm-invoice-payment-total-title { color: #7f7f7f; font-size: 14px; margin: 0 0 5px 0; } .crm-invoice-payment-total-sum { color: #7f7f7f; font-size: 24px; font-weight: bold; } .crm-invoice-payment-system { clear: both; display: block; overflow: hidden; } .crm-invoice-payment-system-title { color: #535c69; font-size: 16px; font-weight: bold; padding: 0 0 10px 0; margin: 0 0 20px 0; border-bottom: 1px solid #eaecee; } .crm-invoice-payment-system-array { clear: both; display: block; overflow-x: hidden; max-width: 244px; max-height: 310px; } .crm-invoice-payment-system-image-block{ display: inline-block; cursor: pointer; width: 94px; margin: 0 5px 12px 5px; } .crm-invoice-payment-system-name{ color: #a3a3a3; font-size: 11px; text-align: center; padding-bottom: 5px; float: left; margin: 0 9px; width: 90px; overflow: hidden; height: 22px; } .crm-invoice-payment-system-image { display: inline-block; cursor: pointer; width: 94px; height: 52px; border: 1px solid #d8dcdf; margin: 0 5px 2px 5px; position: relative; background-repeat: no-repeat; background-position: center center; -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; -webkit-transition: .2s; -moz-transition: .2s; transition: .2s; } .crm-invoice-payment-system-image:hover{ border-color: #159ebb; } .crm-invoice-payment-system-template{ display: none; } .crm-invoice-payment-system-return-list{ display: none; font-family: "OpenSans-Bold", Helvetica,Arial,sans-serif; line-height: 35px; color: #ACCEFF; font-size: 12px; text-align: center; text-decoration: underline; text-transform: uppercase; cursor: pointer; } .crm-invoice-payment-system-return-list:hover{ text-decoration: none; } .crm-invoice-payment-system-image label { display: block; width: 100%; height: 52px; cursor: pointer; } .crm-invoice-payment-requisites { clear: both; display: block; overflow: hidden; margin-top:35px; padding: 0 20px 3px 20px; background: #fafbfb; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .crm-invoice-payment-requisites-title { color: #535c69; font-size: 12px; line-height: 40px; border-bottom: 1px solid #edf0f1; margin: 0 0 7px 0; } .crm-invoice-payment-requisites-table { font-size: 12px; color: #000; } .crm-invoice-payment-requisites-table td { vertical-align: top; padding: 9px 0; } .crm-invoice-payment-requisites-table td:first-child { padding: 9px 12px 9px 0; color: #858b95; } .crm-invoice-payment-requisites-dark { color: #000; } .crm-invoice-payment-copy { clear: both; float: right; line-height: 40px; padding: 0 25px 0 0; font-size: 11px; color: #7f7f7f; } .crm-invoice-payment-copy-logo, .crm-invoice-payment-copy-logo-en { display: inline-block; vertical-align: middle; height: 13px; margin: 0 2px; } .crm-invoice-payment-copy-logo { width: 60px; background: url(/bitrix/js/crm/css/../images/crm-invoice-client-sprite.png) -39px 0 no-repeat; } .crm-invoice-payment-copy-logo-en{ width:53px; background: url(/bitrix/js/crm/css/../images/crm-invoice-client-sprite.png) -99px 0 no-repeat; } .crm-invoice-payment-paid{ transform: rotate(35deg); position: absolute; font-size: 137px; top: 34%; left: 14%; color: #337e96; opacity: 0.3; } .crm-invoice-payment-system-template{ width:100%; } .crm-invoice-payment-system-template .crm-invoice-payment-client-template{ width:100%; text-align: center; } .crm-invoice-payment-paid-table-wrapper{ min-height: 550px; } .crm-invoice-payment-paid-table{ margin: 0 auto; position: relative; top: 200px; font-size: 23px; } .crm-invoice-payment-paid-count-name { font-size: 30px; font-weight: 700; } .crm-invoice-payment-paid-table-empty-row{ height: 20px; }
0.261425
0.038466
8.0-alpha2:8729c0f679ec37f88e5e14734c97ab6ceb5dc58afec640224c58d4ae775eee6e 8.0-alpha3:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0-alpha4:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0-alpha5:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0-alpha6:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0-alpha7:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0-alpha8:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0-alpha9:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0-alpha10:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0-alpha11:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0-alpha12:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0-alpha13:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0.0-alpha14:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0.0-alpha15:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0.0-beta1:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0.0-beta2:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0.0-beta3:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0.0-beta4:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0.0-beta6:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0.0-beta7:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.0-beta9:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.0-beta10:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.0-beta11:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.0-beta12:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.0-beta13:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.0-beta14:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.0-beta15:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.0-beta16:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.0-rc1:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.0-rc2:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.0-rc3:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.0-rc4:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.1:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.2:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.3:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.4:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.5:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.6:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.1.0-beta1:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.1.0-beta2:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.1.0-rc1:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.1.1:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.1.2:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.1.3:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.1.4:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.1.5:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.1.6:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.1.7:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.1.8:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.1.9:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.1.10:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.2.0-beta1:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.2.0-beta2:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.2.0-beta3:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.2.0-rc1:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.2.0-rc2:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.2.1:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.2.2:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.2.3:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.2.4:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.2.5:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.2.6:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.3.0-alpha1:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.3.0-beta1:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.3.0-rc1:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.2.7:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.3.0-rc2:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.0:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.1.0:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.2.0:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.3.0:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510
hashs-database/hashs/core___misc___print.css
8.0-alpha2:8729c0f679ec37f88e5e14734c97ab6ceb5dc58afec640224c58d4ae775eee6e 8.0-alpha3:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0-alpha4:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0-alpha5:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0-alpha6:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0-alpha7:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0-alpha8:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0-alpha9:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0-alpha10:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0-alpha11:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0-alpha12:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0-alpha13:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0.0-alpha14:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0.0-alpha15:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0.0-beta1:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0.0-beta2:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0.0-beta3:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0.0-beta4:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0.0-beta6:e6f67a62070f0feb4bafedc69ef16eb8893dc6bda3cd1cb6db4fe139c5f5c92c 8.0.0-beta7:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.0-beta9:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.0-beta10:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.0-beta11:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.0-beta12:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.0-beta13:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.0-beta14:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.0-beta15:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.0-beta16:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.0-rc1:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.0-rc2:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.0-rc3:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.0-rc4:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.1:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.2:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.3:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.4:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.5:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.6:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.1.0-beta1:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.1.0-beta2:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.1.0-rc1:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.1.1:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.1.2:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.1.3:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.1.4:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.1.5:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.1.6:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.1.7:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.1.8:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.1.9:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.1.10:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.2.0-beta1:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.2.0-beta2:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.2.0-beta3:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.2.0-rc1:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.2.0-rc2:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.2.1:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.2.2:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.2.3:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.2.4:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.2.5:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.2.6:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.3.0-alpha1:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.3.0-beta1:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.3.0-rc1:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.2.7:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.3.0-rc2:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.0.0:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.1.0:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.2.0:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510 8.3.0:4d2163cc216ac03caa50c0d606fb9ee0ef4aedbd2482ab1bd80ab64f53b0d510
0.261614
0.097907
#wrapper { margin: 0 50px; } #wrapper aside { float: left; } #content { width: 500px; float: left; } .app-info { font-style: italic; color: #c7c7c7; } /* Add drops */ .add-drop { width:300px; } .add-drop ul { padding: 0; } .add-drop li { list-style: none; display: inline-block; border: 1px solid; } .drop-image { width: 40px; height: 40px; padding: 5px; float: left; text-align: center; cursor: pointer; } .drop-count { width: 40px; height: 40px; padding-top: 10px; float: left; text-align: center; border-left: 1px solid; } .drops-list { width: 500px; float: left; } /* Table */ #rsdl-table { border: 1px solid #c7c7c7; font-size: 13px; } #rsdl-table th { padding: 2px; border: 1px solid #c7c7c7; text-align: center; } #rsdl-data-table { font-size: 13px; } #rsdl-data td { padding: 2px 4px; } #rsdl-data td:nth-child(1), #rsdl-data td:nth-child(2) { text-align: center; } #rsdl-data td:nth-child(3) { text-align: left; } #rsdl-data td:nth-child(4), #rsdl-data td:nth-child(5) { text-align: right; } #rsdl-data { display: block; width: 468px; height: 400px; overflow-y: scroll; margin-top: -1px; border: 1px solid #c7c7c7; } #rsdl-data tr td img { max-width: 15px; } #rsdl-data .delete { padding: 0; margin: 2px; width: 20px; line-height: 1.2; } #rsdl-data tr:nth-child(odd) { background: #fff; } #rsdl-data tr:nth-child(even) { background: rgba(233, 234, 252, 0.48); } .rsdl-table-header { background: rgba(232, 181, 18, 0.42); } .th-table-number { width: 43px; } .th-table-image { width: 35px; } .th-table-title { width: 178px; } .th-table-quantity { width: 45px; } .th-table-price { width: 60px; } .th-table-time { width: 55px; } .th-table-delete { width: 51px; } .td-table-number { width: 45px; } .td-table-image { width: 32px; } .td-table-title { width: 180px; } .td-table-quantity { width: 40px; } .td-table-price { width: 60px; } .td-table-time { width: 55px; } .td-table-delete { width: 35px; } /* Footer */ footer { font-size: 10px; margin: 5px auto; text-align: center; }
client/style.css
#wrapper { margin: 0 50px; } #wrapper aside { float: left; } #content { width: 500px; float: left; } .app-info { font-style: italic; color: #c7c7c7; } /* Add drops */ .add-drop { width:300px; } .add-drop ul { padding: 0; } .add-drop li { list-style: none; display: inline-block; border: 1px solid; } .drop-image { width: 40px; height: 40px; padding: 5px; float: left; text-align: center; cursor: pointer; } .drop-count { width: 40px; height: 40px; padding-top: 10px; float: left; text-align: center; border-left: 1px solid; } .drops-list { width: 500px; float: left; } /* Table */ #rsdl-table { border: 1px solid #c7c7c7; font-size: 13px; } #rsdl-table th { padding: 2px; border: 1px solid #c7c7c7; text-align: center; } #rsdl-data-table { font-size: 13px; } #rsdl-data td { padding: 2px 4px; } #rsdl-data td:nth-child(1), #rsdl-data td:nth-child(2) { text-align: center; } #rsdl-data td:nth-child(3) { text-align: left; } #rsdl-data td:nth-child(4), #rsdl-data td:nth-child(5) { text-align: right; } #rsdl-data { display: block; width: 468px; height: 400px; overflow-y: scroll; margin-top: -1px; border: 1px solid #c7c7c7; } #rsdl-data tr td img { max-width: 15px; } #rsdl-data .delete { padding: 0; margin: 2px; width: 20px; line-height: 1.2; } #rsdl-data tr:nth-child(odd) { background: #fff; } #rsdl-data tr:nth-child(even) { background: rgba(233, 234, 252, 0.48); } .rsdl-table-header { background: rgba(232, 181, 18, 0.42); } .th-table-number { width: 43px; } .th-table-image { width: 35px; } .th-table-title { width: 178px; } .th-table-quantity { width: 45px; } .th-table-price { width: 60px; } .th-table-time { width: 55px; } .th-table-delete { width: 51px; } .td-table-number { width: 45px; } .td-table-image { width: 32px; } .td-table-title { width: 180px; } .td-table-quantity { width: 40px; } .td-table-price { width: 60px; } .td-table-time { width: 55px; } .td-table-delete { width: 35px; } /* Footer */ footer { font-size: 10px; margin: 5px auto; text-align: center; }
0.275714
0.089335
@font-face { font-family: "Flaticon"; src: url("flaticon.eot"); src: url("flaticon.eot#iefix") format("embedded-opentype"), url("flaticon.woff") format("woff"), url("flaticon.ttf") format("truetype"), url("flaticon.svg") format("svg"); font-weight: normal; font-style: normal; } [class^="flaticon-"]:before, [class*=" flaticon-"]:before, [class^="flaticon-"]:after, [class*=" flaticon-"]:after { font-family: Flaticon; font-size: 20px; font-style: normal; /*margin-left: 20px;*/ }.flaticon-accomodation1:before { content: "\e000"; } .flaticon-adjusting:before { content: "\e001"; } .flaticon-antique19:before { content: "\e002"; } .flaticon-apartment:before { content: "\e003"; } .flaticon-architecture:before { content: "\e004"; } .flaticon-architecture1:before { content: "\e005"; } .flaticon-ascendant6:before { content: "\e006"; } .flaticon-attention1:before { content: "\e007"; } .flaticon-ax2:before { content: "\e008"; } .flaticon-bags4:before { content: "\e009"; } .flaticon-bank11:before { content: "\e00a"; } .flaticon-bank5:before { content: "\e00b"; } .flaticon-bank6:before { content: "\e00c"; } .flaticon-banking2:before { content: "\e00d"; } .flaticon-barrow:before { content: "\e00e"; } .flaticon-beach12:before { content: "\e00f"; } .flaticon-black331:before { content: "\e010"; } .flaticon-boxes1:before { content: "\e011"; } .flaticon-brick3:before { content: "\e012"; } .flaticon-bricks3:before { content: "\e013"; } .flaticon-bricks4:before { content: "\e014"; } .flaticon-brush20:before { content: "\e015"; } .flaticon-building104:before { content: "\e016"; } .flaticon-building32:before { content: "\e017"; } .flaticon-building33:before { content: "\e018"; } .flaticon-building78:before { content: "\e019"; } .flaticon-building86:before { content: "\e01a"; } .flaticon-buildings10:before { content: "\e01b"; } .flaticon-buildings2:before { content: "\e01c"; } .flaticon-buildings5:before { content: "\e01d"; } .flaticon-buildings8:before { content: "\e01e"; } .flaticon-buy9:before { content: "\e01f"; } .flaticon-call37:before { content: "\e020"; } .flaticon-central3:before { content: "\e021"; } .flaticon-church7:before { content: "\e022"; } .flaticon-city21:before { content: "\e023"; } .flaticon-city8:before { content: "\e024"; } .flaticon-computer-screen5:before { content: "\e025"; } .flaticon-computers13:before { content: "\e026"; } .flaticon-construction10:before { content: "\e027"; } .flaticon-construction11:before { content: "\e028"; } .flaticon-construction12:before { content: "\e029"; } .flaticon-construction9:before { content: "\e02a"; } .flaticon-constructor2:before { content: "\e02b"; } .flaticon-constructor4:before { content: "\e02c"; } .flaticon-constructor5:before { content: "\e02d"; } .flaticon-crane7:before { content: "\e02e"; } .flaticon-crane8:before { content: "\e02f"; } .flaticon-crane9:before { content: "\e030"; } .flaticon-delivery17:before { content: "\e031"; } .flaticon-delivery18:before { content: "\e032"; } .flaticon-delivery23:before { content: "\e033"; } .flaticon-delivery40:before { content: "\e034"; } .flaticon-delivery41:before { content: "\e035"; } .flaticon-delivery6:before { content: "\e036"; } .flaticon-demolition:before { content: "\e037"; } .flaticon-dollar92:before { content: "\e038"; } .flaticon-drafting1:before { content: "\e039"; } .flaticon-drawing7:before { content: "\e03a"; } .flaticon-drawing8:before { content: "\e03b"; } .flaticon-drill6:before { content: "\e03c"; } .flaticon-drill7:before { content: "\e03d"; } .flaticon-eco4:before { content: "\e03e"; } .flaticon-electrical9:before { content: "\e03f"; } .flaticon-electronic55:before { content: "\e040"; } .flaticon-factory11:before { content: "\e041"; } .flaticon-factory14:before { content: "\e042"; } .flaticon-factory3:before { content: "\e043"; } .flaticon-factory6:before { content: "\e044"; } .flaticon-factory7:before { content: "\e045"; } .flaticon-groceries:before { content: "\e046"; } .flaticon-hammer40:before { content: "\e047"; } .flaticon-hammer42:before { content: "\e048"; } .flaticon-home113:before { content: "\e049"; } .flaticon-home120:before { content: "\e04a"; } .flaticon-home148:before { content: "\e04b"; } .flaticon-home168:before { content: "\e04c"; } .flaticon-home60:before { content: "\e04d"; } .flaticon-home63:before { content: "\e04e"; } .flaticon-home65:before { content: "\e04f"; } .flaticon-home78:before { content: "\e050"; } .flaticon-home87:before { content: "\e051"; } .flaticon-home9:before { content: "\e052"; } .flaticon-hook3:before { content: "\e053"; } .flaticon-hospital11:before { content: "\e054"; } .flaticon-hospital28:before { content: "\e055"; } .flaticon-hotel68:before { content: "\e056"; } .flaticon-house109:before { content: "\e057"; } .flaticon-house112:before { content: "\e058"; } .flaticon-house158:before { content: "\e059"; } .flaticon-house175:before { content: "\e05a"; } .flaticon-house204:before { content: "\e05b"; } .flaticon-house28:before { content: "\e05c"; } .flaticon-house3:before { content: "\e05d"; } .flaticon-house58:before { content: "\e05e"; } .flaticon-industrial2:before { content: "\e05f"; } .flaticon-laptop112:before { content: "\e060"; } .flaticon-laptop120:before { content: "\e061"; } .flaticon-laptops:before { content: "\e062"; } .flaticon-logistics-delivery:before { content: "\e063"; } .flaticon-lorry:before { content: "\e064"; } .flaticon-manufacture:before { content: "\e065"; } .flaticon-market2:before { content: "\e066"; } .flaticon-monitor2:before { content: "\e067"; } .flaticon-nut:before { content: "\e068"; } .flaticon-office17:before { content: "\e069"; } .flaticon-office42:before { content: "\e06a"; } .flaticon-offices:before { content: "\e06b"; } .flaticon-open203:before { content: "\e06c"; } .flaticon-packages2:before { content: "\e06d"; } .flaticon-paint54:before { content: "\e06e"; } .flaticon-paint55:before { content: "\e06f"; } .flaticon-painting35:before { content: "\e070"; } .flaticon-pc6:before { content: "\e071"; } .flaticon-pipes:before { content: "\e072"; } .flaticon-plan1:before { content: "\e073"; } .flaticon-public6:before { content: "\e074"; } .flaticon-real11:before { content: "\e075"; } .flaticon-responsive12:before { content: "\e076"; } .flaticon-robot3:before { content: "\e077"; } .flaticon-roof1:before { content: "\e078"; } .flaticon-rounded45:before { content: "\e079"; } .flaticon-school1:before { content: "\e07a"; } .flaticon-school47:before { content: "\e07b"; } .flaticon-school50:before { content: "\e07c"; } .flaticon-screwdriver18:before { content: "\e07d"; } .flaticon-seo1:before { content: "\e07e"; } .flaticon-settings48:before { content: "\e07f"; } .flaticon-shop3:before { content: "\e080"; } .flaticon-shop4:before { content: "\e081"; } .flaticon-shopping234:before { content: "\e082"; } .flaticon-shoppingbag:before { content: "\e083"; } .flaticon-shovel3:before { content: "\e084"; } .flaticon-shovel4:before { content: "\e085"; } .flaticon-smog:before { content: "\e086"; } .flaticon-store4:before { content: "\e087"; } .flaticon-store5:before { content: "\e088"; } .flaticon-street7:before { content: "\e089"; } .flaticon-teacher43:before { content: "\e08a"; } .flaticon-telephone5:before { content: "\e08b"; } .flaticon-think3:before { content: "\e08c"; } .flaticon-three115:before { content: "\e08d"; } .flaticon-toolbox3:before { content: "\e08e"; } .flaticon-tools6:before { content: "\e08f"; } .flaticon-tow:before { content: "\e090"; } .flaticon-traffic14:before { content: "\e091"; } .flaticon-triangular45:before { content: "\e092"; } .flaticon-triangular46:before { content: "\e093"; } .flaticon-truck12:before { content: "\e094"; } .flaticon-truck16:before { content: "\e095"; } .flaticon-truck27:before { content: "\e096"; } .flaticon-truck29:before { content: "\e097"; } .flaticon-two193:before { content: "\e098"; } .flaticon-university19:before { content: "\e099"; } .flaticon-urban:before { content: "\e09a"; } .flaticon-urban7:before { content: "\e09b"; } .flaticon-vehicle40:before { content: "\e09c"; } .flaticon-vehicle43:before { content: "\e09d"; } .flaticon-vehicle51:before { content: "\e09e"; } .flaticon-vehicle57:before { content: "\e09f"; } .flaticon-website8:before { content: "\e0a0"; } .flaticon-worker18:before { content: "\e0a1"; } .flaticon-worker21:before { content: "\e0a2"; } .flaticon-worker5:before { content: "\e0a3"; } .flaticon-wrench58:before { content: "\e0a4"; } .flaticon-wrench59:before { content: "\e0a5"; } .flaticon-wrench60:before { content: "\e0a6"; }
public/fonts/theme1/flaticon/flaticon.css
@font-face { font-family: "Flaticon"; src: url("flaticon.eot"); src: url("flaticon.eot#iefix") format("embedded-opentype"), url("flaticon.woff") format("woff"), url("flaticon.ttf") format("truetype"), url("flaticon.svg") format("svg"); font-weight: normal; font-style: normal; } [class^="flaticon-"]:before, [class*=" flaticon-"]:before, [class^="flaticon-"]:after, [class*=" flaticon-"]:after { font-family: Flaticon; font-size: 20px; font-style: normal; /*margin-left: 20px;*/ }.flaticon-accomodation1:before { content: "\e000"; } .flaticon-adjusting:before { content: "\e001"; } .flaticon-antique19:before { content: "\e002"; } .flaticon-apartment:before { content: "\e003"; } .flaticon-architecture:before { content: "\e004"; } .flaticon-architecture1:before { content: "\e005"; } .flaticon-ascendant6:before { content: "\e006"; } .flaticon-attention1:before { content: "\e007"; } .flaticon-ax2:before { content: "\e008"; } .flaticon-bags4:before { content: "\e009"; } .flaticon-bank11:before { content: "\e00a"; } .flaticon-bank5:before { content: "\e00b"; } .flaticon-bank6:before { content: "\e00c"; } .flaticon-banking2:before { content: "\e00d"; } .flaticon-barrow:before { content: "\e00e"; } .flaticon-beach12:before { content: "\e00f"; } .flaticon-black331:before { content: "\e010"; } .flaticon-boxes1:before { content: "\e011"; } .flaticon-brick3:before { content: "\e012"; } .flaticon-bricks3:before { content: "\e013"; } .flaticon-bricks4:before { content: "\e014"; } .flaticon-brush20:before { content: "\e015"; } .flaticon-building104:before { content: "\e016"; } .flaticon-building32:before { content: "\e017"; } .flaticon-building33:before { content: "\e018"; } .flaticon-building78:before { content: "\e019"; } .flaticon-building86:before { content: "\e01a"; } .flaticon-buildings10:before { content: "\e01b"; } .flaticon-buildings2:before { content: "\e01c"; } .flaticon-buildings5:before { content: "\e01d"; } .flaticon-buildings8:before { content: "\e01e"; } .flaticon-buy9:before { content: "\e01f"; } .flaticon-call37:before { content: "\e020"; } .flaticon-central3:before { content: "\e021"; } .flaticon-church7:before { content: "\e022"; } .flaticon-city21:before { content: "\e023"; } .flaticon-city8:before { content: "\e024"; } .flaticon-computer-screen5:before { content: "\e025"; } .flaticon-computers13:before { content: "\e026"; } .flaticon-construction10:before { content: "\e027"; } .flaticon-construction11:before { content: "\e028"; } .flaticon-construction12:before { content: "\e029"; } .flaticon-construction9:before { content: "\e02a"; } .flaticon-constructor2:before { content: "\e02b"; } .flaticon-constructor4:before { content: "\e02c"; } .flaticon-constructor5:before { content: "\e02d"; } .flaticon-crane7:before { content: "\e02e"; } .flaticon-crane8:before { content: "\e02f"; } .flaticon-crane9:before { content: "\e030"; } .flaticon-delivery17:before { content: "\e031"; } .flaticon-delivery18:before { content: "\e032"; } .flaticon-delivery23:before { content: "\e033"; } .flaticon-delivery40:before { content: "\e034"; } .flaticon-delivery41:before { content: "\e035"; } .flaticon-delivery6:before { content: "\e036"; } .flaticon-demolition:before { content: "\e037"; } .flaticon-dollar92:before { content: "\e038"; } .flaticon-drafting1:before { content: "\e039"; } .flaticon-drawing7:before { content: "\e03a"; } .flaticon-drawing8:before { content: "\e03b"; } .flaticon-drill6:before { content: "\e03c"; } .flaticon-drill7:before { content: "\e03d"; } .flaticon-eco4:before { content: "\e03e"; } .flaticon-electrical9:before { content: "\e03f"; } .flaticon-electronic55:before { content: "\e040"; } .flaticon-factory11:before { content: "\e041"; } .flaticon-factory14:before { content: "\e042"; } .flaticon-factory3:before { content: "\e043"; } .flaticon-factory6:before { content: "\e044"; } .flaticon-factory7:before { content: "\e045"; } .flaticon-groceries:before { content: "\e046"; } .flaticon-hammer40:before { content: "\e047"; } .flaticon-hammer42:before { content: "\e048"; } .flaticon-home113:before { content: "\e049"; } .flaticon-home120:before { content: "\e04a"; } .flaticon-home148:before { content: "\e04b"; } .flaticon-home168:before { content: "\e04c"; } .flaticon-home60:before { content: "\e04d"; } .flaticon-home63:before { content: "\e04e"; } .flaticon-home65:before { content: "\e04f"; } .flaticon-home78:before { content: "\e050"; } .flaticon-home87:before { content: "\e051"; } .flaticon-home9:before { content: "\e052"; } .flaticon-hook3:before { content: "\e053"; } .flaticon-hospital11:before { content: "\e054"; } .flaticon-hospital28:before { content: "\e055"; } .flaticon-hotel68:before { content: "\e056"; } .flaticon-house109:before { content: "\e057"; } .flaticon-house112:before { content: "\e058"; } .flaticon-house158:before { content: "\e059"; } .flaticon-house175:before { content: "\e05a"; } .flaticon-house204:before { content: "\e05b"; } .flaticon-house28:before { content: "\e05c"; } .flaticon-house3:before { content: "\e05d"; } .flaticon-house58:before { content: "\e05e"; } .flaticon-industrial2:before { content: "\e05f"; } .flaticon-laptop112:before { content: "\e060"; } .flaticon-laptop120:before { content: "\e061"; } .flaticon-laptops:before { content: "\e062"; } .flaticon-logistics-delivery:before { content: "\e063"; } .flaticon-lorry:before { content: "\e064"; } .flaticon-manufacture:before { content: "\e065"; } .flaticon-market2:before { content: "\e066"; } .flaticon-monitor2:before { content: "\e067"; } .flaticon-nut:before { content: "\e068"; } .flaticon-office17:before { content: "\e069"; } .flaticon-office42:before { content: "\e06a"; } .flaticon-offices:before { content: "\e06b"; } .flaticon-open203:before { content: "\e06c"; } .flaticon-packages2:before { content: "\e06d"; } .flaticon-paint54:before { content: "\e06e"; } .flaticon-paint55:before { content: "\e06f"; } .flaticon-painting35:before { content: "\e070"; } .flaticon-pc6:before { content: "\e071"; } .flaticon-pipes:before { content: "\e072"; } .flaticon-plan1:before { content: "\e073"; } .flaticon-public6:before { content: "\e074"; } .flaticon-real11:before { content: "\e075"; } .flaticon-responsive12:before { content: "\e076"; } .flaticon-robot3:before { content: "\e077"; } .flaticon-roof1:before { content: "\e078"; } .flaticon-rounded45:before { content: "\e079"; } .flaticon-school1:before { content: "\e07a"; } .flaticon-school47:before { content: "\e07b"; } .flaticon-school50:before { content: "\e07c"; } .flaticon-screwdriver18:before { content: "\e07d"; } .flaticon-seo1:before { content: "\e07e"; } .flaticon-settings48:before { content: "\e07f"; } .flaticon-shop3:before { content: "\e080"; } .flaticon-shop4:before { content: "\e081"; } .flaticon-shopping234:before { content: "\e082"; } .flaticon-shoppingbag:before { content: "\e083"; } .flaticon-shovel3:before { content: "\e084"; } .flaticon-shovel4:before { content: "\e085"; } .flaticon-smog:before { content: "\e086"; } .flaticon-store4:before { content: "\e087"; } .flaticon-store5:before { content: "\e088"; } .flaticon-street7:before { content: "\e089"; } .flaticon-teacher43:before { content: "\e08a"; } .flaticon-telephone5:before { content: "\e08b"; } .flaticon-think3:before { content: "\e08c"; } .flaticon-three115:before { content: "\e08d"; } .flaticon-toolbox3:before { content: "\e08e"; } .flaticon-tools6:before { content: "\e08f"; } .flaticon-tow:before { content: "\e090"; } .flaticon-traffic14:before { content: "\e091"; } .flaticon-triangular45:before { content: "\e092"; } .flaticon-triangular46:before { content: "\e093"; } .flaticon-truck12:before { content: "\e094"; } .flaticon-truck16:before { content: "\e095"; } .flaticon-truck27:before { content: "\e096"; } .flaticon-truck29:before { content: "\e097"; } .flaticon-two193:before { content: "\e098"; } .flaticon-university19:before { content: "\e099"; } .flaticon-urban:before { content: "\e09a"; } .flaticon-urban7:before { content: "\e09b"; } .flaticon-vehicle40:before { content: "\e09c"; } .flaticon-vehicle43:before { content: "\e09d"; } .flaticon-vehicle51:before { content: "\e09e"; } .flaticon-vehicle57:before { content: "\e09f"; } .flaticon-website8:before { content: "\e0a0"; } .flaticon-worker18:before { content: "\e0a1"; } .flaticon-worker21:before { content: "\e0a2"; } .flaticon-worker5:before { content: "\e0a3"; } .flaticon-wrench58:before { content: "\e0a4"; } .flaticon-wrench59:before { content: "\e0a5"; } .flaticon-wrench60:before { content: "\e0a6"; }
0.317955
0.404684
.BooksFilters-wrapper { position: fixed; top: 0; width: 100%; padding: 1.05rem 0; z-index: 1000; background-color: #3F51B5; box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 2px 9px 1px rgba(0, 0, 0, 0.12), 0 4px 2px -2px rgba(0, 0, 0, 0.2); } .BooksFilters-main { max-width: 400px; margin: 0 auto; } .BooksFilters-filter-group { display: flex; margin-bottom: 10px; align-items: center; } .BooksFilters-filter-group:last-child { margin-bottom: 0; } .BooksFilters-filter-group .BooksFilters-title { margin-top: 0; font-size: 1rem; margin-bottom: 0.5em; color: white; margin: 0; letter-spacing: 0.5px; font-weight: lighter; } .BooksFilters-filters { display: flex; flex-flow: row wrap; align-items: center; justify-content: flex-start; margin-left: 10px; } .BooksFilters-separator:after { color: white; content: '|'; margin: 0 20px; font-size: 2rem; font-weight: lighter; display: inline-block; height: 30px; line-height: 24px; } .BooksFilters-separator:last-child { display: none; } .BooksFilters-icon-filters { display: flex; align-items: center; justify-content: center; } .BooksFilters-icon-filter { width: 20px; height: 20px; position: relative; margin-right: 5px; } .BooksFilters-sort-filter { position: relative; min-width: 100px; padding: 10px; padding-left: 0; } .BooksFilters-sort-filter > span { display: inline-block; margin-right: 15px; font-weight: bold; transition: color 250ms; color: #31405e; } .BooksFilters-sort-filter > svg { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); } .BooksFilters-icon-filter:last-child { margin-right: 0; } .BooksFilters-sort-filter > input, .BooksFilters-icon-filter > input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; top: 0; left: 0; cursor: pointer; } .BooksFilters-icon-filter > input + svg path, .BooksFilters-icon-filter > input + svg polygon, .BooksFilters-icon-filter > input + svg rect { transition: fill 250ms; }
src/containers/BooksFilters/styles.css
.BooksFilters-wrapper { position: fixed; top: 0; width: 100%; padding: 1.05rem 0; z-index: 1000; background-color: #3F51B5; box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 2px 9px 1px rgba(0, 0, 0, 0.12), 0 4px 2px -2px rgba(0, 0, 0, 0.2); } .BooksFilters-main { max-width: 400px; margin: 0 auto; } .BooksFilters-filter-group { display: flex; margin-bottom: 10px; align-items: center; } .BooksFilters-filter-group:last-child { margin-bottom: 0; } .BooksFilters-filter-group .BooksFilters-title { margin-top: 0; font-size: 1rem; margin-bottom: 0.5em; color: white; margin: 0; letter-spacing: 0.5px; font-weight: lighter; } .BooksFilters-filters { display: flex; flex-flow: row wrap; align-items: center; justify-content: flex-start; margin-left: 10px; } .BooksFilters-separator:after { color: white; content: '|'; margin: 0 20px; font-size: 2rem; font-weight: lighter; display: inline-block; height: 30px; line-height: 24px; } .BooksFilters-separator:last-child { display: none; } .BooksFilters-icon-filters { display: flex; align-items: center; justify-content: center; } .BooksFilters-icon-filter { width: 20px; height: 20px; position: relative; margin-right: 5px; } .BooksFilters-sort-filter { position: relative; min-width: 100px; padding: 10px; padding-left: 0; } .BooksFilters-sort-filter > span { display: inline-block; margin-right: 15px; font-weight: bold; transition: color 250ms; color: #31405e; } .BooksFilters-sort-filter > svg { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); } .BooksFilters-icon-filter:last-child { margin-right: 0; } .BooksFilters-sort-filter > input, .BooksFilters-icon-filter > input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; top: 0; left: 0; cursor: pointer; } .BooksFilters-icon-filter > input + svg path, .BooksFilters-icon-filter > input + svg polygon, .BooksFilters-icon-filter > input + svg rect { transition: fill 250ms; }
0.630912
0.100746
* Global add-ons */ /* .sub-header { padding-bottom: 10px; border-bottom: 1px solid #eee; } */ /* * Top navigation * Hide default border to remove 1px line. */ /* * Sidebar */ /* Hide for mobile, show later */ .sidebar { display: none; } @media (min-width: 768px) { .sidebar { position: fixed; top: 151px; bottom: 0; left: 0; z-index: 1000; display: block; padding: 20px; overflow-x: hidden; overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */ background-color: #f5f5f5; border-right: 1px solid #eee; } } /* Sidebar navigation */ .nav-sidebar { margin-right: -21px; /* 20px padding + 1px border */ margin-bottom: 20px; margin-left: -20px; } .nav-sidebar > li > a { padding-right: 20px; padding-left: 20px; } .nav-sidebar > .active > a, .nav-sidebar > .active > a:hover, .nav-sidebar > .active > a:focus { color: #fff; background-color: #428bca; } /* * Placeholder dashboard ideas .placeholders { margin-bottom: 30px; text-align: center; } .placeholders h4 { margin-bottom: 0; } .placeholder { margin-bottom: 20px; } .placeholder img { display: inline-block; border-radius: 50%; } */ /* Popups */ #popup-content { height: 100px; } /* main navbar */ .navbar-default { background-color: #3f6cc1; border-color: #008dc9; } .navbar-default .navbar-brand { color: #ffffff; } .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { color: #000000; } .navbar-default .navbar-text { color: #ffffff; } .navbar-default .navbar-nav > li > a { color: #ffffff; } .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { color: #000000; } .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { color: #000000; background-color: #008dc9; } .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { color: #000000; background-color: #008dc9; } .navbar-default .navbar-toggle { border-color: #008dc9; } .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { background-color: #008dc9; } .navbar-default .navbar-toggle .icon-bar { background-color: #ffffff; } .navbar-default .navbar-collapse, .navbar-default .navbar-form { border-color: #ffffff; } .navbar-default .navbar-link { color: #ffffff; } .navbar-default .navbar-link:hover { color: #000000; } @media (max-width: 767px) { .navbar-default .navbar-nav .open .dropdown-menu > li > a { color: #ffffff; } .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { color: #000000; } .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { color: #000000; background-color: #008dc9; } } .btn { white-space: normal !important; max-width: 300px; }
build/css/dashboard.css
* Global add-ons */ /* .sub-header { padding-bottom: 10px; border-bottom: 1px solid #eee; } */ /* * Top navigation * Hide default border to remove 1px line. */ /* * Sidebar */ /* Hide for mobile, show later */ .sidebar { display: none; } @media (min-width: 768px) { .sidebar { position: fixed; top: 151px; bottom: 0; left: 0; z-index: 1000; display: block; padding: 20px; overflow-x: hidden; overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */ background-color: #f5f5f5; border-right: 1px solid #eee; } } /* Sidebar navigation */ .nav-sidebar { margin-right: -21px; /* 20px padding + 1px border */ margin-bottom: 20px; margin-left: -20px; } .nav-sidebar > li > a { padding-right: 20px; padding-left: 20px; } .nav-sidebar > .active > a, .nav-sidebar > .active > a:hover, .nav-sidebar > .active > a:focus { color: #fff; background-color: #428bca; } /* * Placeholder dashboard ideas .placeholders { margin-bottom: 30px; text-align: center; } .placeholders h4 { margin-bottom: 0; } .placeholder { margin-bottom: 20px; } .placeholder img { display: inline-block; border-radius: 50%; } */ /* Popups */ #popup-content { height: 100px; } /* main navbar */ .navbar-default { background-color: #3f6cc1; border-color: #008dc9; } .navbar-default .navbar-brand { color: #ffffff; } .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { color: #000000; } .navbar-default .navbar-text { color: #ffffff; } .navbar-default .navbar-nav > li > a { color: #ffffff; } .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { color: #000000; } .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { color: #000000; background-color: #008dc9; } .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { color: #000000; background-color: #008dc9; } .navbar-default .navbar-toggle { border-color: #008dc9; } .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { background-color: #008dc9; } .navbar-default .navbar-toggle .icon-bar { background-color: #ffffff; } .navbar-default .navbar-collapse, .navbar-default .navbar-form { border-color: #ffffff; } .navbar-default .navbar-link { color: #ffffff; } .navbar-default .navbar-link:hover { color: #000000; } @media (max-width: 767px) { .navbar-default .navbar-nav .open .dropdown-menu > li > a { color: #ffffff; } .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { color: #000000; } .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { color: #000000; background-color: #008dc9; } } .btn { white-space: normal !important; max-width: 300px; }
0.291989
0.047118
.logo{ /* font-size:16px; */ margin:20px 0 20px 0; font-weight: 900 !important; } .info{ margin: 20px 24px 0 24px; } .profile-body { min-height: 768px; overflow-x: hidden; } .shop-img-title { text-align: center; font-size: 16px; margin: 3% 0 5%; } .upload_img { display: flex; justify-content: center; margin-bottom: 2%; } .p-20 .avatar { margin-bottom: 2%; } .profile-row { display: block; text-align: center !important; } .img-content { margin: 0 auto 2% auto; } .profile-hr { margin: 5% 0; } .header-request { position: absolute; padding-top: 40px; font-size: 22px; text-align: center; background-color: white; left: 0; right: 0; margin-left: 40%; margin-right: 40%; } .bold{ font-weight: bolder; } .image-change { color:#2E99E8; font-size: 14px; margin-bottom: 10px; } .sex{ color:#2E99E8; font-size: 14px; margin-bottom: 10px; } .col-sm-6.text-left{ padding:0; } .col-sm-6.text-center{ padding:0; } .avatar{ width: 150px; height: 150px; border-radius: 50%; } .msg{ margin-top:20px; } .name{ font-size:14px; margin-top:-8px; margin-bottom: 20px; } .follow{ padding-right:0; font-weight: 700 !important; font-size:16px; } .profile-loading { margin: 25% auto; text-align: center; font-size: 30px; min-height: 100%; color: #ff3737; } .profile-list { width: 35%; } .profile-content { flex-wrap: nowrap; } .profile-cancel { color: white; background-color: black; padding: 2%; border-radius: 5px; margin: 2% 20%; width: 60%; font-size: 30px; } .profile-content p { padding: 5% 0; } .txt-content p { padding: 2.5% 0; } .round-btn{ border-radius: 5px; border: 1px solid black; width: 100%; height: 50px; line-height: 1em; text-align: center; } .round-btn-more{ border-radius: 20px; border: 1px solid white; width: 120px; height: 40px; background-color: rgb(248, 247, 247); text-align: center; line-height: 1em; } .round-btn:focus{ background-color: black; color: white; } .bg-black{ background-color: black; color: white; } .estimate{ position: relative; margin-top: 40px; } .estimate-1{ position: relative; } .estimate1{ margin-top: 120px; } .question{ position: absolute; width:20px; height: 20px; top:18px; right: 20px; } .btnBox{ margin: 20px 0; } .btnBox .row{ margin: 0 -2px; } .btnBox .col-sm-4{ padding:0 2px; } .text-1{ font-size: 27px; margin-bottom: 5px; } .text-2{ font-size: 27px; margin: 20px 0; } .checkbox{ margin:30px 0 400px 20px; } .img-upload{ position: relative; /* flex: 20; */ width: 103px; height: 103px; border: 1px dashed black ; padding: 0; margin:10; text-align: center; } .img-select{ position: absolute; width: 30px; height: 30px; right:-15px; bottom:-15px; } input[type="file"] { display: none; } /* .img-preview{ width: 110px; } */ .image-preview{ position :absolute; width: 101px; height: 101px; object-fit: contain; } /* The container */ .container { display: block; position: relative; padding-left: 50px; padding-top:3px; margin-bottom: 22px; cursor: pointer; font-size: 19px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } /* Hide the browser's default checkbox */ .container input { position: absolute; opacity: 0; cursor: pointer; /* height: 0; width: 0; */ } /* Create a custom checkbox */ .checkmark { position: absolute; top: 0; left: 0; height: 33px; width: 33px; background-color: #eee; border-radius: 50%; /* padding-right:10px; */ } /* On mouse-over, add a grey background color */ .container:hover input ~ .checkmark { background-color: #ccc; } /* When the checkbox is checked, add a blue background */ .container input:checked ~ .checkmark { background-color: #2196F3; } .container input:checked::before{ font-weight: 900; } /* Create the checkmark/indicator (hidden when not checked) */ .checkmark:after { content: ""; position: absolute; display: none; } /* Show the checkmark when checked */ .container input:checked ~ .checkmark:after { display: block; } /* Style the checkmark/indicator */ .container .checkmark:after { left: 13px; top: 6px; width: 8px; height: 16px; border: solid white; border-width: 0 3px 3px 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } .complete{ margin-top: 50px; margin-bottom: 450px; color: rgb(138, 138, 223); } .form-text{ margin: 15 0; } .l-main{ padding-top: 0!important; } #request .nav-top{ top:0; } #shoprequest .nav-top{ top:0; } .account-edit { padding: 0px 24px 10px; } .accountName-disabled { pointer-events: none; } .shopcontent { width: 100%; display: flex; flex-wrap: wrap; } .title { width: 30%; padding-top: 1%; padding-bottom: 1%; font-size: 16px; font-weight: bold; } .title-content { width: 70%; padding-top: 1%; padding-bottom: 1%; font-size: 15px; } .account-btn, .shop-btn { text-align: center; color: #007bff; margin-top: 2%; margin-bottom: 2%; } .edit-btn { padding-top: 5%; } .category-add { width: 40%; background-color: #f9f9f9; border-radius: 5px; text-align: center; height: 30px; font-size: 1rem; color: #000000; margin: 20px 30%; border: 1px solid #2f93ff; } .categoryCancel { float: right; color: #f84f4f; } .profile-body-cancel { padding: 20% 0; font-size: 2.5rem; } .shop-img-upload { color: #007bff; text-align: center; } @media screen and (max-width:768px) { .account-btn, .shop-btn { margin: 2%; padding: 0; text-align: center; } .category-add { width: 50%; background-color: #f9f9f9; border-radius: 5px; text-align: center; height: 30px; font-size: 1rem; color: #000000; margin: 20px 25%; border: 1px solid #2f93ff; } .profile-cancel { color: white; background-color: black; padding: 4%; border-radius: 5px; margin: 2% 20%; width: 60%; font-size: 20px; } .profile-body-cancel { padding: 20% 0; font-size: 2.5rem; } }
backend/resources/tsx/views/pages/accounts/Mypage/Profile.css
.logo{ /* font-size:16px; */ margin:20px 0 20px 0; font-weight: 900 !important; } .info{ margin: 20px 24px 0 24px; } .profile-body { min-height: 768px; overflow-x: hidden; } .shop-img-title { text-align: center; font-size: 16px; margin: 3% 0 5%; } .upload_img { display: flex; justify-content: center; margin-bottom: 2%; } .p-20 .avatar { margin-bottom: 2%; } .profile-row { display: block; text-align: center !important; } .img-content { margin: 0 auto 2% auto; } .profile-hr { margin: 5% 0; } .header-request { position: absolute; padding-top: 40px; font-size: 22px; text-align: center; background-color: white; left: 0; right: 0; margin-left: 40%; margin-right: 40%; } .bold{ font-weight: bolder; } .image-change { color:#2E99E8; font-size: 14px; margin-bottom: 10px; } .sex{ color:#2E99E8; font-size: 14px; margin-bottom: 10px; } .col-sm-6.text-left{ padding:0; } .col-sm-6.text-center{ padding:0; } .avatar{ width: 150px; height: 150px; border-radius: 50%; } .msg{ margin-top:20px; } .name{ font-size:14px; margin-top:-8px; margin-bottom: 20px; } .follow{ padding-right:0; font-weight: 700 !important; font-size:16px; } .profile-loading { margin: 25% auto; text-align: center; font-size: 30px; min-height: 100%; color: #ff3737; } .profile-list { width: 35%; } .profile-content { flex-wrap: nowrap; } .profile-cancel { color: white; background-color: black; padding: 2%; border-radius: 5px; margin: 2% 20%; width: 60%; font-size: 30px; } .profile-content p { padding: 5% 0; } .txt-content p { padding: 2.5% 0; } .round-btn{ border-radius: 5px; border: 1px solid black; width: 100%; height: 50px; line-height: 1em; text-align: center; } .round-btn-more{ border-radius: 20px; border: 1px solid white; width: 120px; height: 40px; background-color: rgb(248, 247, 247); text-align: center; line-height: 1em; } .round-btn:focus{ background-color: black; color: white; } .bg-black{ background-color: black; color: white; } .estimate{ position: relative; margin-top: 40px; } .estimate-1{ position: relative; } .estimate1{ margin-top: 120px; } .question{ position: absolute; width:20px; height: 20px; top:18px; right: 20px; } .btnBox{ margin: 20px 0; } .btnBox .row{ margin: 0 -2px; } .btnBox .col-sm-4{ padding:0 2px; } .text-1{ font-size: 27px; margin-bottom: 5px; } .text-2{ font-size: 27px; margin: 20px 0; } .checkbox{ margin:30px 0 400px 20px; } .img-upload{ position: relative; /* flex: 20; */ width: 103px; height: 103px; border: 1px dashed black ; padding: 0; margin:10; text-align: center; } .img-select{ position: absolute; width: 30px; height: 30px; right:-15px; bottom:-15px; } input[type="file"] { display: none; } /* .img-preview{ width: 110px; } */ .image-preview{ position :absolute; width: 101px; height: 101px; object-fit: contain; } /* The container */ .container { display: block; position: relative; padding-left: 50px; padding-top:3px; margin-bottom: 22px; cursor: pointer; font-size: 19px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } /* Hide the browser's default checkbox */ .container input { position: absolute; opacity: 0; cursor: pointer; /* height: 0; width: 0; */ } /* Create a custom checkbox */ .checkmark { position: absolute; top: 0; left: 0; height: 33px; width: 33px; background-color: #eee; border-radius: 50%; /* padding-right:10px; */ } /* On mouse-over, add a grey background color */ .container:hover input ~ .checkmark { background-color: #ccc; } /* When the checkbox is checked, add a blue background */ .container input:checked ~ .checkmark { background-color: #2196F3; } .container input:checked::before{ font-weight: 900; } /* Create the checkmark/indicator (hidden when not checked) */ .checkmark:after { content: ""; position: absolute; display: none; } /* Show the checkmark when checked */ .container input:checked ~ .checkmark:after { display: block; } /* Style the checkmark/indicator */ .container .checkmark:after { left: 13px; top: 6px; width: 8px; height: 16px; border: solid white; border-width: 0 3px 3px 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } .complete{ margin-top: 50px; margin-bottom: 450px; color: rgb(138, 138, 223); } .form-text{ margin: 15 0; } .l-main{ padding-top: 0!important; } #request .nav-top{ top:0; } #shoprequest .nav-top{ top:0; } .account-edit { padding: 0px 24px 10px; } .accountName-disabled { pointer-events: none; } .shopcontent { width: 100%; display: flex; flex-wrap: wrap; } .title { width: 30%; padding-top: 1%; padding-bottom: 1%; font-size: 16px; font-weight: bold; } .title-content { width: 70%; padding-top: 1%; padding-bottom: 1%; font-size: 15px; } .account-btn, .shop-btn { text-align: center; color: #007bff; margin-top: 2%; margin-bottom: 2%; } .edit-btn { padding-top: 5%; } .category-add { width: 40%; background-color: #f9f9f9; border-radius: 5px; text-align: center; height: 30px; font-size: 1rem; color: #000000; margin: 20px 30%; border: 1px solid #2f93ff; } .categoryCancel { float: right; color: #f84f4f; } .profile-body-cancel { padding: 20% 0; font-size: 2.5rem; } .shop-img-upload { color: #007bff; text-align: center; } @media screen and (max-width:768px) { .account-btn, .shop-btn { margin: 2%; padding: 0; text-align: center; } .category-add { width: 50%; background-color: #f9f9f9; border-radius: 5px; text-align: center; height: 30px; font-size: 1rem; color: #000000; margin: 20px 25%; border: 1px solid #2f93ff; } .profile-cancel { color: white; background-color: black; padding: 4%; border-radius: 5px; margin: 2% 20%; width: 60%; font-size: 20px; } .profile-body-cancel { padding: 20% 0; font-size: 2.5rem; } }
0.425963
0.127435
@charset "utf-8"; /* CSS Document */ /* =============== * 重新定义Html元素 * =============== */ html, body, div, ul, ol, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, fieldset, input { padding: 0; margin: 0;} h1, h2, h3, h4, h5, h6, pre, code, address, caption, cite, code, em, strong, table, th, td { font-size: 1em; font-style: normal; font-weight: normal;} strong { font-weight: bold;} ul, ol { list-style: none outside none;} fieldset, img { border: medium none; vertical-align: middle;} caption, th { text-align: left;} table { border-collapse: collapse; border-spacing: 0;} body { font: 12px/20px "microsoft yahei", Arial,Verdana,"宋体","Lucida Grande","Lucida Sans Unicode",Helvetica,sans-serif; color: #666; background: #FFF none repeat scroll 0 0; min-width: 1200px;} input, select, textarea { font: 12px/20px Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif;} i, cite, em { font-style: normal;} input,button,select,textarea{ outline:none} checkbox { margin-right: 4px; vertical-align: middle;} html {min-height:101%; } a { text-decoration: none;} a:hover { text-decoration: underline;} /* ========================== * 为旧版本浏览器格式化Html5元素 * ========================== */ article, aside, dialog, footer, header, section, footer, nav, figure, menu { display:block; } /**/ .wrapper { width: 1000px; margin: 0 auto;} .w100 { width: 100px !important;} .w150 { width: 150px !important;} .w200 { width: 200px !important;} .w400 { width: 400px !important;} .mt10 { margin-top: 10px;} .mt15 { margin-top: 15px;} .mt30 { margin-top: 30px;} .tc { text-align: center;} .dialog_wrapper { background-color: transparent !important; padding: 0 !important; box-shadow: none !important;} .dialog_body { background-color: #f5f5f5 !important; border: none!important; border-radius: 10px; box-shadow: 0 0 10px rgba(0,0,0,0.25) !important;} .dialog_head { border: none !important;} .dialog_title { background-color: transparent !important;} .dialog_content { padding: 0 10px 20px 10px !important;} .dialog_content dl { font-size: 0; *word-spacing:-1px/*IE6、7*/; line-height: 20px; display: block; clear: both; overflow:hidden;} .dialog_content dl dt {font: 14px/24px "microsoft yahei", Arial; color: #777; vertical-align: top; letter-spacing: normal; word-spacing: normal; text-align: right; display: inline-block; *display: inline/*IE6,7*/; width: 19%; padding: 10px 1% 10px 0; margin: 0; zoom: 1;} .dialog_content dl dd {font: 14px/24px "microsoft yahei", Arial; vertical-align: top; letter-spacing: normal; word-spacing: normal; display: inline-block; *display: inline/*IE6,7*/; width: 79%; padding: 10px 0 10px 0; zoom:1;} /* tip提示 */ .tip-yellowsimple { color:#000; background-color:#fff9c9; text-align:left; min-width:50px; max-width:300px; border:1px solid #c7bf93; border-radius:4px; -moz-border-radius:4px; -webkit-border-radius:4px; z-index:1000; padding:6px 8px;} .tip-yellowsimple .tip-inner { font:12px/16px arial,helvetica,sans-serif;} .tip-yellowsimple .tip-arrow-top { background:url(../images/tip-yellowsimple_arrows.gif) no-repeat; width:9px; height:6px; margin-top:-6px; margin-left:-5px; top:0; left:50%;} .tip-yellowsimple .tip-arrow-right { background:url(../images/tip-yellowsimple_arrows.gif) no-repeat -9px 0; width:6px; height:9px; margin-top:-4px; margin-left:0; top:50%; left:100%;} .tip-yellowsimple .tip-arrow-bottom { background:url(../images/tip-yellowsimple_arrows.gif) no-repeat -18px 0; width:9px; height:6px; margin-top:0; margin-left:-5px; top:100%; left:50%;} .tip-yellowsimple .tip-arrow-left { background:url(../images/tip-yellowsimple_arrows.gif) no-repeat -27px 0; width:6px; height:9px; margin-top:-4px; margin-left:-6px; top:50%; left:0;} /* 调试模式 */ .trace { font-family:"Trebuchet MS", Arial, Helvetica, sans-serif; font-size:14px; color: #000; line-height: 18px; background:#FFF299; padding:8px; margin:8px; border:1px dashed silver;} .trace fieldset { margin:8px;} .trace fieldset legend { font-size: 16px; color: #000; font-weight:bold;} .trace fieldset div { overflow:auto; max-height: 300px; _height: 300px; text-align:left;} #footer { line-height: 20px; color: #b4baaa; text-align: center; display: block; width: 1000px; clear: both; margin: 10px auto 0 auto; padding-bottom: 10px; overflow: hidden;} #footer p { color: #b4baaa; word-spacing: 5px; padding: 10px 0; } #footer a { color: #b4baaa; text-decoration: none; } #footer a:hover { text-decoration: underline; } #footer .vol { font-family: Verdana, Geneva, sans-serif; font-weight: 600; font-style: oblique; font-size: 12px;} #footer .vol .b { color: #00F;} #footer .vol .o { color: #F60;} #footer .vol em { font-family: Georgia, Arial; font-weight: 600; font-style: italic; color: #000; margin-left: 2px;} /* 翻页样式 */ .pagination { display: inline-block; margin: 0 auto;} .pagination ul { font-size: 0; *word-spacing:-1px/*IE6、7*/; } .pagination ul li { vertical-align: top; letter-spacing: normal; word-spacing: normal; display: inline-block; margin: 0 0 0 -1px;} .pagination ul li { *display: inline/*IE6、7*/; *zoom:1;} .pagination li span { font: normal 14px/20px "microsoft yahei"; color: #AAA; background-color: #FAFAFA; text-align: center; display: block; min-width: 20px; padding: 8px; border: 1px solid #E6E6E6; position: relative; z-index: 1;} .pagination li a span , .pagination li a:visited span { color: #005AA0; text-decoration: none; background-color: #FFF; position: relative; z-index: 1;} .pagination li a:hover span, .pagination li a:active span{ color: #FFF; text-decoration: none !important; background-color: #D93600; border-color: #CA3300; position: relative; z-index: 9; cursor:pointer;} .pagination li a:hover { text-decoration: none;} .pagination li span.currentpage { color: #AAA; font-weight: bold; background-color: #FAFAFA; border-color: #E6E6E6; position: relative; z-index: 2;}
public/static/delivery/css/common.css
@charset "utf-8"; /* CSS Document */ /* =============== * 重新定义Html元素 * =============== */ html, body, div, ul, ol, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, fieldset, input { padding: 0; margin: 0;} h1, h2, h3, h4, h5, h6, pre, code, address, caption, cite, code, em, strong, table, th, td { font-size: 1em; font-style: normal; font-weight: normal;} strong { font-weight: bold;} ul, ol { list-style: none outside none;} fieldset, img { border: medium none; vertical-align: middle;} caption, th { text-align: left;} table { border-collapse: collapse; border-spacing: 0;} body { font: 12px/20px "microsoft yahei", Arial,Verdana,"宋体","Lucida Grande","Lucida Sans Unicode",Helvetica,sans-serif; color: #666; background: #FFF none repeat scroll 0 0; min-width: 1200px;} input, select, textarea { font: 12px/20px Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif;} i, cite, em { font-style: normal;} input,button,select,textarea{ outline:none} checkbox { margin-right: 4px; vertical-align: middle;} html {min-height:101%; } a { text-decoration: none;} a:hover { text-decoration: underline;} /* ========================== * 为旧版本浏览器格式化Html5元素 * ========================== */ article, aside, dialog, footer, header, section, footer, nav, figure, menu { display:block; } /**/ .wrapper { width: 1000px; margin: 0 auto;} .w100 { width: 100px !important;} .w150 { width: 150px !important;} .w200 { width: 200px !important;} .w400 { width: 400px !important;} .mt10 { margin-top: 10px;} .mt15 { margin-top: 15px;} .mt30 { margin-top: 30px;} .tc { text-align: center;} .dialog_wrapper { background-color: transparent !important; padding: 0 !important; box-shadow: none !important;} .dialog_body { background-color: #f5f5f5 !important; border: none!important; border-radius: 10px; box-shadow: 0 0 10px rgba(0,0,0,0.25) !important;} .dialog_head { border: none !important;} .dialog_title { background-color: transparent !important;} .dialog_content { padding: 0 10px 20px 10px !important;} .dialog_content dl { font-size: 0; *word-spacing:-1px/*IE6、7*/; line-height: 20px; display: block; clear: both; overflow:hidden;} .dialog_content dl dt {font: 14px/24px "microsoft yahei", Arial; color: #777; vertical-align: top; letter-spacing: normal; word-spacing: normal; text-align: right; display: inline-block; *display: inline/*IE6,7*/; width: 19%; padding: 10px 1% 10px 0; margin: 0; zoom: 1;} .dialog_content dl dd {font: 14px/24px "microsoft yahei", Arial; vertical-align: top; letter-spacing: normal; word-spacing: normal; display: inline-block; *display: inline/*IE6,7*/; width: 79%; padding: 10px 0 10px 0; zoom:1;} /* tip提示 */ .tip-yellowsimple { color:#000; background-color:#fff9c9; text-align:left; min-width:50px; max-width:300px; border:1px solid #c7bf93; border-radius:4px; -moz-border-radius:4px; -webkit-border-radius:4px; z-index:1000; padding:6px 8px;} .tip-yellowsimple .tip-inner { font:12px/16px arial,helvetica,sans-serif;} .tip-yellowsimple .tip-arrow-top { background:url(../images/tip-yellowsimple_arrows.gif) no-repeat; width:9px; height:6px; margin-top:-6px; margin-left:-5px; top:0; left:50%;} .tip-yellowsimple .tip-arrow-right { background:url(../images/tip-yellowsimple_arrows.gif) no-repeat -9px 0; width:6px; height:9px; margin-top:-4px; margin-left:0; top:50%; left:100%;} .tip-yellowsimple .tip-arrow-bottom { background:url(../images/tip-yellowsimple_arrows.gif) no-repeat -18px 0; width:9px; height:6px; margin-top:0; margin-left:-5px; top:100%; left:50%;} .tip-yellowsimple .tip-arrow-left { background:url(../images/tip-yellowsimple_arrows.gif) no-repeat -27px 0; width:6px; height:9px; margin-top:-4px; margin-left:-6px; top:50%; left:0;} /* 调试模式 */ .trace { font-family:"Trebuchet MS", Arial, Helvetica, sans-serif; font-size:14px; color: #000; line-height: 18px; background:#FFF299; padding:8px; margin:8px; border:1px dashed silver;} .trace fieldset { margin:8px;} .trace fieldset legend { font-size: 16px; color: #000; font-weight:bold;} .trace fieldset div { overflow:auto; max-height: 300px; _height: 300px; text-align:left;} #footer { line-height: 20px; color: #b4baaa; text-align: center; display: block; width: 1000px; clear: both; margin: 10px auto 0 auto; padding-bottom: 10px; overflow: hidden;} #footer p { color: #b4baaa; word-spacing: 5px; padding: 10px 0; } #footer a { color: #b4baaa; text-decoration: none; } #footer a:hover { text-decoration: underline; } #footer .vol { font-family: Verdana, Geneva, sans-serif; font-weight: 600; font-style: oblique; font-size: 12px;} #footer .vol .b { color: #00F;} #footer .vol .o { color: #F60;} #footer .vol em { font-family: Georgia, Arial; font-weight: 600; font-style: italic; color: #000; margin-left: 2px;} /* 翻页样式 */ .pagination { display: inline-block; margin: 0 auto;} .pagination ul { font-size: 0; *word-spacing:-1px/*IE6、7*/; } .pagination ul li { vertical-align: top; letter-spacing: normal; word-spacing: normal; display: inline-block; margin: 0 0 0 -1px;} .pagination ul li { *display: inline/*IE6、7*/; *zoom:1;} .pagination li span { font: normal 14px/20px "microsoft yahei"; color: #AAA; background-color: #FAFAFA; text-align: center; display: block; min-width: 20px; padding: 8px; border: 1px solid #E6E6E6; position: relative; z-index: 1;} .pagination li a span , .pagination li a:visited span { color: #005AA0; text-decoration: none; background-color: #FFF; position: relative; z-index: 1;} .pagination li a:hover span, .pagination li a:active span{ color: #FFF; text-decoration: none !important; background-color: #D93600; border-color: #CA3300; position: relative; z-index: 9; cursor:pointer;} .pagination li a:hover { text-decoration: none;} .pagination li span.currentpage { color: #AAA; font-weight: bold; background-color: #FAFAFA; border-color: #E6E6E6; position: relative; z-index: 2;}
0.264358
0.084493
.igspl_Control { border:solid 1px #CCCCCC; } .igspl_Pane { background-color:White; background-repeat:repeat-x; } .igspl_VSplitBar { background-color:transparent; background-repeat:no-repeat; background-position:center ; background-image: url(./images/igspl_splitVert.gif); background-color: #E0E0E0; font-size:1px; border-right-width:0px; border-left-width:0px; cursor:e-resize; } .igspl_HSplitBar { background-color:transparent; background-repeat:no-repeat; background-position:center ; background-image: url(./images/igspl_splitHoriz.gif); background-color: #E0E0E0; font-size:1px; border-top-width:0px; border-bottom-width:0px; cursor:n-resize; } .igspl_VSplitBarHover { background-image: url(./images/igspl_splitVertHover.gif); background-color: #4897AA; } .igspl_HSplitBarHover { background-image: url(./images/igspl_splitHorizHover.gif); background-color: #4897AA; } .igspl_VSplitBarPressed { background-repeat:no-repeat; background-position:center ; background-image: url(./images/igspl_splitVertPressed.gif); background-color: #CCCCCC; } .igspl_HSplitBarPressed { background-repeat:no-repeat; background-position:center ; background-image: url(./images/igspl_splitHorizPressed.gif); background-color: #CCCCCC; } .igspl_HSplitBarShadow { background-repeat:no-repeat; background-position:center ; background-image: url(./images/igspl_splitHorizHover.gif); background-color: #4897AA; border:dotted 1px Black; filter: alpha(opacity : 70); opacity: 0.7; } .igspl_VSplitBarShadow { background-repeat:no-repeat; background-position:center; background-image: url(./images/igspl_splitVertHover.gif); background-color: #4897AA; border:dotted 1px Black; filter: alpha(opacity : 70); opacity: 0.7; } .igspl_VSplitBarShadowLimit { background-color: #4897AA; border-style:solid; } .igspl_HSplitBarShadowLimit { background-color: #4897AA; border-style:solid; } .igspl_CollapseSplitBarButton { background-color:#E0E0E0; cursor:pointer;margin: 2px; } .igspl_HSplitBarHeight { height: 10px; } .igspl_VSplitBarWidth { width: 10px; }
Project/Target/InfragisticsWebFormsSample/ig_res/Default/ig_splitter.css
.igspl_Control { border:solid 1px #CCCCCC; } .igspl_Pane { background-color:White; background-repeat:repeat-x; } .igspl_VSplitBar { background-color:transparent; background-repeat:no-repeat; background-position:center ; background-image: url(./images/igspl_splitVert.gif); background-color: #E0E0E0; font-size:1px; border-right-width:0px; border-left-width:0px; cursor:e-resize; } .igspl_HSplitBar { background-color:transparent; background-repeat:no-repeat; background-position:center ; background-image: url(./images/igspl_splitHoriz.gif); background-color: #E0E0E0; font-size:1px; border-top-width:0px; border-bottom-width:0px; cursor:n-resize; } .igspl_VSplitBarHover { background-image: url(./images/igspl_splitVertHover.gif); background-color: #4897AA; } .igspl_HSplitBarHover { background-image: url(./images/igspl_splitHorizHover.gif); background-color: #4897AA; } .igspl_VSplitBarPressed { background-repeat:no-repeat; background-position:center ; background-image: url(./images/igspl_splitVertPressed.gif); background-color: #CCCCCC; } .igspl_HSplitBarPressed { background-repeat:no-repeat; background-position:center ; background-image: url(./images/igspl_splitHorizPressed.gif); background-color: #CCCCCC; } .igspl_HSplitBarShadow { background-repeat:no-repeat; background-position:center ; background-image: url(./images/igspl_splitHorizHover.gif); background-color: #4897AA; border:dotted 1px Black; filter: alpha(opacity : 70); opacity: 0.7; } .igspl_VSplitBarShadow { background-repeat:no-repeat; background-position:center; background-image: url(./images/igspl_splitVertHover.gif); background-color: #4897AA; border:dotted 1px Black; filter: alpha(opacity : 70); opacity: 0.7; } .igspl_VSplitBarShadowLimit { background-color: #4897AA; border-style:solid; } .igspl_HSplitBarShadowLimit { background-color: #4897AA; border-style:solid; } .igspl_CollapseSplitBarButton { background-color:#E0E0E0; cursor:pointer;margin: 2px; } .igspl_HSplitBarHeight { height: 10px; } .igspl_VSplitBarWidth { width: 10px; }
0.529993
0.153676
* Add your custom styles below. * This version of the Make child theme is only compatible with Make 1.6.0 and above. */ /*--------------------------- Header styling ----------------------------*/ .header-bar .menu { margin-left:50px; } .header-bar .menu a{ color:#777; } .header-bar .menu a:hover { color:#ccc; } .site-header .site-description { color: #062373; float: right; margin-left: 91px; margin-top: -32px; } .site-title, .site-title a { color: #062373 !important; } @media screen and (max-width: 864px) { .site-header .site-description { font-size:.588em !important; } } @media screen and (max-width:799px) { .custom-logo { margin:auto; } .site-header .site-description { float:none; text-align:center; margin-top:-25px; font-size: 1.2rem !important; } } @media screen and (max-width:464px) { .site-header .site-description { font-size:.588em !important } } @media screen and (max-width:431px) { .site-header .site-description { margin-left:84px; font-size:.52em !important; margin-top:-22px; } } .header-layout-3 .site-navigation .menu { border-top:2px solid #062373 !important; } #menu-main-nav { margin-bottom: 0 !important; } /*--------------------------- Search box styling.. subtle ----------------------------*/ input[type="search"] { box-shadow: inset 1px 1px 2px #ccc; border-bottom: 1px solid #dfdfdf; border-right: 1px solid #dfdfdf; } /*-------------------- sticky menu styling ---------------------*/ #thsp-sticky-header { background:rgba(255, 255, 255, 0.7) !important; } #thsp-sticky-header { box-shadow: 0 1px 5px rgba(20, 20, 20, 0.7) !important; } /*-------------------- Main Menu styling ---------------------*/ @media screen and (min-width: 800px) { .site-navigation .menu .sub-menu, .site-navigation .menu .children { background-color: rgb(245, 245, 245); background-color: rgba(245, 245, 245, 0.95); } .site-navigation .menu li.current_page_item, .site-navigation .menu .children li.current_page_item, .site-navigation .menu li.current_page_ancestor, .site-navigation .menu li.current-menu-item, .site-navigation .menu .sub-menu li.current-menu-item, .site-navigation .menu li.current-menu-ancestor { background-color: rgb(253, 253, 253); } } /*-------------------------------- wpFront Top plugin styles ----------------------------------*/ .wpfront-scroll-top-container img { background-color: rgba(255, 255, 255, 0.3); border-radius: 10%; box-shadow: 0 0 2px 2px rgba(255, 255, 255, 0.4); width: 85%; } /*---------------------------------------- Cycle Banner padding fix ----------------------------------------*/ .cycle-slide .builder-banner-content { padding: 11px 96px; padding: 1.1rem 6rem; } /*-------------------------------- Individual Slider styles ---------------------------------*/ #benchmarkBringsYou { text-align: center; text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8); } #bBYouHome-block { color: rgb(6, 35, 115); color: rgba(6, 35, 115, 0.97); font-weight: bold; padding: 3px 6px; background-color: rgb(254, 254, 254); background-color: rgba(254, 254, 254, 0.97); text-shadow: -0.11rem -0.12rem .1rem #ddd; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7); display:inline-block; margin-top:1.1rem; } .lifetime-loan-h2 { text-align: center; text-shadow: 2px 2px 10px #222; } #LifetimeLoan-slider { background-color: #fdfdfd; max-width: 330px; padding: 10px; margin: auto; margin-bottom: auto; box-shadow: 1px 2px 12px #222; } .find-your-branch-h2 { text-align: center; text-shadow: 2px 2px 10px #222; } .find-your-branch-button { color: #fdfdfd; font-size: 27px; font-weight: bold; padding: 10px; border-radius: 5px; background-color: #306fab; text-shadow: none; box-shadow: 2px 2px 10px #222; } /*------------------------------ Connect With Us (social) styling --------------------------------*/ #get-social { background-image:url(/wp-content/uploads/2015/12/Social-Background.png); box-shadow: inset 0px -100px 200px rgba(0, 0, 0, 0.4), inset 0 2px 3px #888; border-top: #e7e7e7; background-repeat:repeat-x; background-position:bottom; background-position-x:left; padding-bottom:40px; } @media screen and (max-width:799px) { #get-social { padding-bottom:100px; padding-top:2px; } } #get-social .builder-text-section-title { text-align: center; margin-bottom: 40px; text-shadow: 0 1px 4px #888; padding-top:50px; color: #004D78; font-size:2.5em; } @media screen and (max-width:799px) { #get-social .builder-text-section-title { background-image:url(/wp-content/uploads/2015/12/network-background-upside-down.png); height:312px; background-repeat:repeat-x; margin-bottom:-160px; font-size:2em; } } @media screen and (max-width:360px) { #get-social .builder-text-section-title { font-size:1.5em; margin-bottom:-190px; } } #builder-section-1438004366616-column-2 { text-align: center; } #simple_facebook_page_feed_widget-5 { box-shadow: 1px 1px 2px #aaa; } #twitter-widget-0 { box-shadow: 1px 1px 2px #aaa; } #social-audience { background-image:url(/wp-content/uploads/2015/12/People-web2.png); padding:0; margin:0; height:119px; margin-top: -66px; background-position-x:center; border-bottom: 1px solid #050; } #social-audience .builder-section-overlay { background: linear-gradient( transparent, transparent, rgba(0, 0, 0, 0.3) ); } /*------------------------------ instagram widget styling --------------------------------*/ #null-instagram-feed-3, #null-instagram-feed-2 { background-color:#fff; max-width:520px; margin:auto; background:linear-gradient(#777, #eee); box-shadow: 1px 1px 2px #aaa; } #null-instagram-feed-3 .widget .null-instagram-feed, #null-instagram-feed-2 .widget .null-instagram-feed { position: relative; background-color: #fff; border: 1px solid #e8e8e8; padding: 1%; } ul.instagram-pics { position: relative; text-align: center; margin:auto; } #null-instagram-feed-3 ul.instagram-pics, #null-instagram-feed-2 ul.instagram-pics { margin-bottom: 0; height: 344px; overflow-y: scroll; padding-bottom: 1%; border-bottom: 1px solid #e8e8e8; } .instagram-pics li { border-bottom: none; display: inline-block; padding: 1% 1% 0 1%; margin: 2% 2% 1% 2%; background-color: #fff; border: 1px solid #e8e8e8; box-shadow: 1px 1px 0 #e8e8e8; } .instagram-pics li a img { width:100%; } #null-instagram-feed-3 p.clear, #null-instagram-feed-2 p.clear { text-align: center; text-transform:uppercase; padding-top: 1%; margin-bottom: 1%; background-color:#fff; box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.5); position: relative; z-index: 9; } #null-instagram-feed-3 p.clear a::before, #null-instagram-feed-2 p.clear a::before { content: "\f16d"; font-family:FontAwesome; margin-right:5px } #null-instagram-feed-3 p.clear a, #null-instagram-feed-2 p.clear a { font-size: 13px; font-family: 'proxima-nova','Helvetica Neue',Arial,Helvetica,sans-serif; display: inline-block; border: 1px solid; border-color: #4090db; color: #4090db; border-radius: 3px; margin:10px; line-height: 29px; padding: 0 11px; } #null-instagram-feed-2 p.clear a { font-size:1.2rem; } @media screen and (max-width:799px) { #null-instagram-feed-3 p.clear a, #null-instagram-feed-2 p.clear a { padding:0 9px; } } #null-instagram-feed-3 p.clear a:hover, #null-instagram-feed-2 p.clear a:hover{ border-color: #2d6599; color: #2d6599; } /*------------------------- first three-column section on Home page ----------------------------*/ .home-column { min-height:265px; } #builder-section-1434722644381-column-1, #builder-section-1434722644381-column-2, #builder-section-1434722644381-column-3 { /*border-top:1px solid #e8e8e8; border-left:1px solid #e8e8e8; box-shadow:1px 1px 2px #bbb; padding:2%; margin-bottom:4%;*/ border-top: 1px solid #e8e8e8; box-shadow: 1px 1px 2px #bbb; padding: 2%; margin-bottom: 4%; box-shadow: inset 0px -1px 2px #ccc; background: linear-gradient(#fdfdfd, #fefeff); } .no-margin-bottom { margin-bottom: 0px; } .no-margin-top { margin-top: 0px; } p.center { text-align: center; } .cycle-slideshow #testimonial2 { display: none; } /*--------------------------------- Find Your Branch states-opaque background on Home Page ------------------------------------*/ .fyb { background-image: url("/wp-content/uploads/2015/07/States-map-opaque.png"); position: relative; margin: auto; background-repeat: no-repeat; background-position: 10%, 50%; background-position: center; text-shadow: 0px 0px 0.5rem #f5f5f5; margin-left: -7.4%; margin-right: -7.4%; min-height: 265px; margin-bottom:0 } .fyb h3 { margin:0; padding-top:10%; } /*---------------------------------- remove spacing below testimonials slider on Home Page ------------------------------------*/ .builder-text-column-2#builder-section-1434722644381-column-2 .testimonial-box { padding-bottom: none; } .home-button:hover { text-shadow:0 1px 2px #fff; } /*********************************** Who We Are section ***********************************/ #who-we-are .builder-section-overlay { background: linear-gradient( rgba(0, 0, 0, 0.2), transparent, rgba(0, 0, 0, 0.6) ); } #who-we-are { box-shadow: rgb(34, 34, 34) 0px -2px 3px inset, 0px 2px 3px rgba(0, 0, 0, 0.3) inset; } /*------------------------- second three-column section on Home page ----------------------------*/ @media screen and (min-width:799px) { #second-row .column { min-height:175px; } } #builder-section-1438872085392-column-1, #builder-section-1438872085392-column-2, #builder-section-1438872085392-column-3 { box-shadow: 1px 1px 2px #aaa; background-color: #fff; padding: 19px; margin-bottom: 38px; } #second-row .builder-text-title { text-align: center; } #builder-section-1438872085392-column-1 .builder-text-image, #builder-section-1438872085392-column-2 .builder-text-image, #builder-section-1438872085392-column-3 .builder-text-image { padding-top: 1.5rem; padding-bottom: 1.2rem; max-height: 157px; } #builder-section-1438872085392-column-1 .builder-text-image img, #builder-section-1438872085392-column-2 .builder-text-image img, #builder-section-1438872085392-column-3 .builder-text-image img { max-height: 150px; height:150px; width: auto; } .ttfmp-post-list-item { box-shadow: 1px 1px 2px #aaa; border-top: 1px solid #e8e8e8; border-left: 1px solid #e8e8e8; padding: 2%; background-color: #fdfdfd; } /*---------------------------------- Giving Back page section spacing change ----------------------------------*/ .giveBack-content-column { margin-top: -52px; margin-bottom: -52px; } #give-back-banner { background-image:url(/wp-content/uploads/2015/12/bootnshootn-background-blurred.jpg); background-size:cover; } #give-back-banner .builder-section-content { color: #fff; text-shadow: 1px 0 8px rgba(0, 0, 0, 0.15); font-size: 21px; font-size: 2.1rem; line-height: 1.35; } @media screen and (max-width:799px) { #give-back-banner .builder-section-content { font-size: 15px; font-size: 1.5rem; } } /*---------------------------------- Jim's Welcome section ----------------------------------*/ #jim { box-shadow: 0 1px 5px #ccc inset, 0 -2px 2px #ccc inset; } #jim .builder-section-content, #jim .builder-text-section-title { max-width:86%; } @media screen and (max-width:1024px) { #jim .builder-section-content, #jim .builder-section-title { max-width:100%; } } #jim img { width:320px; margin-top:20px; box-shadow:1px 1px 8px #888; } @media screen and (max-width:1360px) { #jim img { width:auto; } } /*---------------------------------- Fresh from the Benchmark Blog ----------------------------------*/ #fresh-blog-posts { padding-top: 50px; background-image: url(/wp-content/uploads/2015/11/blog-excerpts-bg.jpeg); } #fresh-blog-posts .builder-post-list-section-title { text-align: center; box-shadow: 0 5px 5px -4px #aaa; border-top: 1px solid #eaeaea; background-color: rgba(255, 255, 255, 0.4); margin-bottom:40px; } /*---------------------------------- Benchmark University page section styles ----------------------------------*/ #university-intro { background-image:url(/wp-content/uploads/2015/07/university-background.jpg); background-size:cover; margin-bottom:0; } #university-links-section { padding-top:50px; background: #eee; box-shadow:0 1px 3px #aaa; } .icon-circle { text-align: center; font-size: 37px; text-shadow: 1px 1px 2px #666; background-color: #062373; border-radius: 50%; box-shadow: 1px 1px 2px #aaa; width: 65px; height: 65px; margin: auto; transition: background-color 0.05s linear; } .icon-circle a { color: #fdfdfd; } .icon-circle:hover { font-size: 39px; width: 68px; height: 68px; background-color: #c7c7c7; box-shadow: 1px 4px 4px #777; margin-top: -6px; margin-bottom: 14px; text-shadow: 1px 1px 2px 333; border: 1px solid #b7b7b7; } .icon-circle a:hover { color: #fff; } /*---------------------------------- 7 Steps to Home Ownership ----------------------------------*/ ul [role="tablist"] { text-align: center !important; background: none !important; } .builder-section-panels .ui-widget-header { text-align: center !important; background: none !important; } .builder-section-panels .ui-tabs .ui-tabs-nav li { border-radius: 0px; float: none !important; display: inline-block !important; border: none !important; } .builder-section-panels .ui-state-hover a:hover { color: #bbb !important; background-color: #ddd !important; box-shadow: 1px 0px 1px #ccc !important; } .builder-section-panels .ui-state-active a, .builder-section-panels .ui-state-active a:link { color: #fff !important; background-color: #062373 !important; } .builder-section-panels .ui-state-focus, .builder-section-panels .ui-widget-content .ui-state-focus, .builder-section-panels .ui-widget-header .ui-state-focus, .builder-section-panels .ui-state-active, .builder-section-panels .ui-widget-content .ui-state-active, .builder-section-panels .ui-widget-header .ui-state-active { box-shadow: 1px 1px 2px #333; } /*---------------------------------- What Paperwork Will Be Needed? section ----------------------------------*/ section.benchmarkU-panels { display: block; box-shadow: 0px -1px 3px #ccc, 0px 3px 3px #ccc; -moz-box-shadow: 0px -1px 3px #ccc, 0px 3px 3px #ccc; -webkit-box-shadow: 0px -1px 3px #ccc, 0px 3px 3px #ccc; } /*---------------------------------- FAQ's videos section ----------------------------------*/ section#builder-section-1436538225845 { display: block; padding-top: 40px; } .arve-wrapper { border-top: 1px solid #ddd; border-left: 1px solid #ddd; box-shadow: 2px 4px 8px #ccc; } .arve-rectangle { tranition-duration: .55s !important; } #faqs .arve-rectangle { border: 2px solid #062373 !important; } .builder-section-panels .ui-state-hover { color: #555 !important; background-color: #efefef !important; border: 1px solid #efefef !important; box-shadow: 1px 1px 3px #ccc !important; font-size: 1.7rem !important; text-shadow: 0px 1px 0px #f5f5f5 !important; } .builder-section-panels .ui-state-active, .builder-section-panels .ui-widget-content .ui-state-active, .builder-section-panels .ui-widget-header .ui-state-active { color: #fdfdfd !important; background-color: #062373 !important; border: 1px solid #062373 !important; box-shadow: 1px 1px 2px #666 !important; text-shadow: none !important; border: 1px solid #171717 !important; border-width: 0px 1px 1px 1px !important; transition: 0.15s linear !important; } .builder-section-panels .ui-accordion .ui-accordion-header { border-radius: 0px !important; } /*---------------------------------- Core Values styles ----------------------------------*/ div.core-values-container { max-width: 950px; min-width: 256px; text-align: center; margin: auto; } li.cv-circle { margin: 10px; display: inline-block; } .core-content { background-color: rgba(0, 0, 0, 0.7); padding: 10px 30px 30px 30px; border: 1px solid #fff; } #core-relationships { background-image:url(/wp-content/uploads/2015/12/Relationships-blurred2.jpg); background-position:center; background-size:cover; box-shadow: inset 0 8px 5px -5px rgba(0, 0, 0, 0.5), inset 0 -3px 3px -2px; } #core-positive-attitude { background-image:url(/wp-content/uploads/2015/12/Positive-Attitude-blurred.jpg); background-position:center; background-size:cover; padding-top: 0; border-top:2px solid #eee; border-bottom:2px solid #eee; } #core-excellence { background:url(/wp-content/uploads/2015/12/Excellence-blurred.jpg); background-position:center; background-size:cover; box-shadow: inset 0 -3px 3px -2px, inset 0 3px 3px -2px; } #core-dynamic { background-image:url(/wp-content/uploads/2015/12/Dynamic-blurred.jpg); background-position:center; background-size:cover; padding-top: 0; border-top:2px solid #eee; border-bottom:2px solid #eee; } #core-success { background-image:url(/wp-content/uploads/2015/12/Success.jpg ); background-position:center; background-size:cover; box-shadow: inset 0 -5px 3px -3px rgba(0, 0, 0, 0.5), inset 0 3px 3px -2px; } .core-testimonails { padding-top: 0; } .core-testimonials { padding-top: 0; } #core-cta { background:linear-gradient(#ccc, #fff); } #core-cta h3, #core-cta p { text-shadow:0 1px 0 #fff; } #core-cta a:hover { text-decoration:none; color:#666; } /****************************** Testimonials Page styles ******************************/ .testimonials-section { background: linear-gradient(#fff, lightblue, lightslategray, lightblue, #fff); } .testimonials-section blockquote { box-shadow:1px 1px 2px #666; } .testimonials-section hr { border-color:#333; } .testimonials-section strong { text-shadow:0 1px 0 rgba(200, 200, 200, 0.75); } #reviews .ttfmake-testimonial:after { float:right; margin-top:-30px; } /*------------------------------ Your Loan page ------------------------------*/ #your-loan-status { margin-bottom: 0; box-shadow: 0 -3px 5px #aaa; border-top: 2px solid #062373; color: #062373; text-shadow: 0 1px 0 #fff; } .loan-admin-popup { margin-top: 100px; margin:auto; max-width:1200px; position:relative; background:#fff; box-shadow:0 1px 10px #000; } .pay-button { background: linear-gradient(#173484, #062373, #040151); padding: 15px 80px; color: #fff; font-size: 1.5em; border-radius: 5px; box-shadow: 0 1px 5px rgba(0, 0, 0, 0.6); text-shadow: 0 -1px 0 #333; } .pay-button:hover { box-shadow:0 2px 8px #000; text-decoration:none; background:linear-gradient(#040151, #062373, #173484); text-shadow:0 1px 0 #333; } .mobile-responsive-table td { width:50%; } @media screen and (max-width:799px) { .mobile-responsive-table td { display:inline-block; width:100%; padding-top:0; padding-bottom:0; } .mobile-responsive-table td ul { margin-bottom:0; } .mobile-responsive-table { margin-bottom:44px; } .pay-button { padding:10px 0; } } /******************************* loan feedback page styles *******************************/ @media screen and (max-width:799px) { .testimonial-pointer { transform: rotate(90deg); } } .cameratag_select_prompt { color: deepskyblue !important; font-size: 2.6rem !important; font-weight: lighter !important; } .cameratag_primary_link { color: #fdfdfd !important; font-size: 1.6rem !important; } a.cameratag_primary_link:hover { text-decoration: none !important; } .cameratag_action_icon {} .cameratag_prompt_label { font-weight: lighter !important; color: #ccc !important; font-size: 1.3rem !important; } .cameratag_sms_prompt { top: 35% !important; font-size: 2rem !important; } .cameratag_sms_input { background-color: #e5e5e5 !important; box-shadow: inset 1px 1px 2px #ccc !important; border-bottom: 1px solid #dfdfdf !important; border-right: 1px solid #dfdfdf !important; margin-top: 20px !important; margin-bottom: 10px !important; } a.cameratag_send_sms { background-color: deepskyblue !important; color: #fdfdfd !important; } a.cameratag_send_sms:hover { text-decoration: none !important; background-color: lightskyblue !important; color: #666 !important; } a.cameratag_goto_start { color: #ccc !important; } a.cameratag_goto_start:hover { color: #fdfdfd !important; text-decoration: none !important; } iframe#43275736952969 { background-color: #e5e5e5 !important; } /*------------------------------ Apply Now page styles ------------------------------*/ #cmls-section { border-top:2px solid #062373; border-bottom:2px solid #062373; } #cmls-welcome-message { margin-bottom: 0; box-shadow: inset 0 3px 5px -2px; background: linear-gradient(#fefefe, #fff, #fff); } .welcome-box { background-color: #f8f8f8; padding: 20px; margin: 50px; box-shadow: 1px 3px 10px 2px #aaa; border: 2px dashed #062373; } @media screen and (max-width:799px) { .welcome-box { margin-left:auto; margin-right:auto; } } /**************************** Encompass App styles ****************************/ .cmls-container-title { background: linear-gradient(#fff, #eee); text-shadow:0 1px 0 #fff; /*new styles*/ background: linear-gradient(#fff, #fefefe); box-shadow: inset 0 -4px 5px -2px #333; } #placeholder { text-align:center; } #placeholder p { text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4); } #plaeholder p i { font-size: 15em; text-shadow: 1px 6px 18px rgba(0, 0, 0, 0.5); } @media screen and (max-width:799px){ .cmls-container-title .builder-text-column-1 { border-bottom:1px solid #eee; box-shadow:inset 0 -1px 1px -1px #aaa; } } .bmlo-app-button { background-color: #062373; font-size: 1.25em; margin-right: 10px; margin-left: 10px; box-shadow: 0 2px 5px #aaa; } .bmlo-app-button:hover { background: #fff; color: #062373; text-shadow: 0 -1px 0 #eee; box-shadow: 0 3px 10px #333; } .bmlo-app-button-active { background: #fff; color: #062373; text-shadow: 0 -1px 0 #eee; box-shadow: 0 3px 10px #333; } #bmlo-short-button:before { height:10px; width:10px; border-radius:50%; background-color:#fff; } #bmlo-short-app iframe { width: 802px; height: 2114px; box-shadow: 0 7px 15px #999, inset 0 0 2px #222; border: 8px solid #062373; padding: 5px; background-color: #fff; overflow:auto; } #bmlo-long-app iframe { width: 802px; height: 1484px; box-shadow: 0 7px 15px #999, inset 0 0 2px 1px #333; border: 8px solid #062373; padding: 5px; background-color:#fff; background:linear-gradient(#ddd, #eee, #fff, #fff, #fff, #fff, #fff, #fff); overflow:auto; } .before-app { font-size: 0.70em; color: #333; padding: 3px 10px 4px 10px; border: 1px solid #062373; border-bottom: none; border-top-left-radius: 5px; border-top-right-radius: 5px; box-shadow: 0 3px 3px 1px #999; background-color: #fefefe; text-shadow: 0 1px 1px #fff; } /*------------------------------ Find Your Branch page styles --------------------------------*/ /*IE 11 fix*/ .ie-warning { display:none; margin-bottom:-50px; } .browser { margin-left:20px; margin-right:20px; } @media all and (-ms-high-contrast:none) { *::-ms-backdrop, .ie-warning { display:block;margin-bottom:-50px;text-align:center; } /* IE11 */ } /*end IE 11 fix*/ #map-section { background-image: url(/wp-content/uploads/2015/06/big-map-background-blur-compressed.jpg); background-position-x:center !important; } #map-section .builder-banner-overlay, #map-section .builder-section-overlay { background:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1), transparent, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)) } .branches-accordion .ttfmake-button {display:none} .branches-accordion .anchor { margin-top: -100px !important; height:56px !important; z-index: 99999; position:absolute; color:transparent; } .button-mobile { display:inline-block; } @media screen and (max-width:800px) { .button-mobile { display: block !important; float: none !important; text-align: center !important; margin-bottom: 10px; } .branches-accordion .ttfmake-button { display:inline-block; } .branches-accordion .anchor { margin-top:-56px; } } @media screen and (min-width: 1281px){ #map_base svg { height: initial; } } .page-id-70 #thsp-sticky-header { display:none; } /*------------------------------ blog sidebar styles --------------------------------*/ .bm-cares-link { padding:20px; box-shadow:1px 1px 2px #aaa; display:inline-block; color:#171717; font-weight:normal; border-top: 1px solid #eee; border-left: 1px solid #eee; border-right: 1px solid #aaa; border-bottom: 1px solid #aaa; } .bm-cares-link:hover { box-shadow:1px 3px 5px #777; } .blog-apply-link { display: block; text-align: center; padding: 8px; box-shadow:inset 1px 1px 3px #aaa; font-size: 2em; font-weight: bold; border-radius: 3px; margin-top: 44px; margin-bottom:0; transition: margin .25s, box-shadow .25s, border-width .3s; background-color:#fcfcfc; border:1px solid #fff; } .blog-apply-link:hover { box-shadow:1px 2px 5px #888; margin-top:42px; margin-left:-1px; margin-bottom:2px; transition:box-shadow .25s; border: -1px solid #ccc; } .blog-locations-link { display: block; text-align: center; padding: 5px; font-size: 2.5em; background-color: #E9EDFA; box-shadow: inset 1px 1px 3px #888; border-radius: 3px; border: 1px solid #fff; transition: margin .25s, box-shadow .25s, border-width .3s; } .blog-locations-link:hover { border: 1px solid #ccc; box-shadow: 1px 2px 5px #777; background-color: #F3F5FC; margin-top: -2px; margin-left: -1px; margin-bottom: 2px; transition: box-shadow .25s, background-color .25s; } .fb_iframe_widget { box-shadow: 1px 1px 2px #aaa; } /*-------------------------- Footer Styling ----------------------------*/ .site-footer { background-color: #000; color: #ccc; } .site-footer a { color:lightslategray; } .site-footer a:hover { color:lightgray; } .site-footer .wpcf7-form-control, .site-footer .wpcf7-text, .site-footer .wpcf7-validates-as-required { width:100%; box-shadow:inset 0 1px 2px #aaa; border:1px solid #aaa; } .site-footer .wpcf7 input { margin-top:0; margin-bottom:0; padding-top:1px; padding-bottom:1px; width:100%; } .site-footer .wpcf7 textarea { margin-top:0; margin-bottom:0; width:100%; } .site-footer .wpcf7 p { margin-bottom:8px } .site-footer .wpcf7 input[type="submit"] { background-color:lightslategray; float:right; padding:8px 50px; width:100%; margin-top:2px; box-shadow:none; border:none; font-size:13px; } .site-footer .wpcf7 input[type="submit"]:hover { background-color:lightgray; color:darkgray; } .footer-text::before { content:url(/wp-content/uploads/2015/09/equal_housing_logo.png); } .site-footer .widget { margin-bottom:0; } .site-footer .widget-title { font-size:1.65rem; border-bottom:1px solid; } .site-footer .widget li { border:none; text-align:center; } .site-footer .widget li a { background-color:lightslategray; padding:10px; color:#fff; display:block; border-radius:2px; box-shadow:0 1px 2px #000; font-size:1.4rem; } .site-footer .widget li a:hover { background-color:lightgray; color:darkgray; box-shadow:0 1px 4px #999; } .site-footer .wpcf7-not-valid-tip { color: #fff; background-color: #a00; padding: 2px 5px; text-shadow: 0 1px 1px #000; border-bottom: 1px solid #000; } .site-footer .wpcf7-response-output { margin-top: -20px; background-color: rgba(255, 255, 255, 0.2); color: #fff; } /*-------------------------- Google Custom Search styles ----------------------------*/ #___gcse_0 { border: 1px solid #aaa; } #___gcse_0 * { box-sizing: content-box !important; -webkit-box-sizing: content-box !important; -moz-box-sizing: content-box !important; } /*Google Ads Removal*/ .gsc-adBlock iframe { display: none; border: none; } .gsc-adBlock { height: 0px !important; border: none; } .gsc-adBlockVertical { display: none !important; height: 0px !important; width: 0px !important; border: none; } .gsc-thinWrapper { width: 100% !important; } /*back to our regularly scheduled google cse styling*/ #___gcse_0 table td { border: none; vertical-align: inherit; } #___gcse_0 table { border-spacing: 2px; border-color: #e8e8e8; border-collapse: separate; } table.gstl_50 { margin: 0 !important; border: none !important; } .gsc-search-button .gsc-search-button-v2, .gsc-result-info-container, .gsc-orderby-container { box-sizing: content-box !important; } .gsib_a, .gsib_b { vertical-align: top !important; padding-top: 0px !important; } #gsc-i-id1 { background: none !important; } .gsc-selected-option-container { overflow: hidden; } .gsc-input-box { height: 2.55rem; } .gsc-above-wrapper-area, .gsc-resultsHeader, .gcsc-branding { display: none; } .gs-title { height: auto; } .gs-webResult, .gs-result { box-shadow: 1px 1px 2px #aaa; border-top: 1px solid #e8e8e8; border-left: 1px solid #e8e8e8; } .gsc-table-result { border-top: 1px dashed #eee; border-right: none; } .gsc-cursor-box { text-align: right; color: #062373; } .gsc-adBlock { border: none; } .gs-title { height: auto !important; } .gs-webResult div.gs-visibleUrl, .gs-imageResult div.gs-visibleUrl { color: #777; } .gs-webResult.gs-result a.gs-title:visited, .gs-webResult.gs-result a.gs-title:visited b, .gs-imageResult a.gs-title:visited, .gs-imageResult a.gs-title:visited b { color: navy; } #gs_id50 { height: 22px; overflow: hidden; } .gs-no-results-result .gs-snippet, .gs-error-result .gs-snippet { background-color: skyblue !important; border: 1px solid deepskyblue !important; margin-left: 0px!important; margin-right: 0px !important; margin-top: 0px !important; } .gsst_a .gscb_a { color: #e8e8e8; } .gsst_a .gscb_a:hover { color: #171717; } .gs-webResult.gs-result a.gs-title:visited, .gs-webResult.gs-result a.gs-title:visited b, .gs-imageResult a.gs-title:visited, .gs-imageResult a.gs-title:visited b { color: slategray !important; } .gs-bidi-start-align .gs-snippet { background-color: none; } .gs-spelling a { color: slategray; } .gs-webResult div.gs-visibleUrl, .gs-imageResult div.gs-visibleUrl { color: cadetblue !important; } input.gsc-input { height: auto !important; } .gsst_a { padding-top: 6px; } td.gsc-table-cell-snippet-close { padding-top: 5px; display: inline-block; } .gsc-results .gsc-cursor-box .gsc-cursor-current-page { color: cadetblue !important; } .gsc-webResult.gsc-result, .gsc-results .gsc-imageResult { padding-bottom: 0px !important; } .gsc-search-box { margin-top: 7px; } /*END GOOGLE CUSTOM SEARCH STYLES*/ /*-------------------------- Benchmark General Styles ----------------------------*/ .sub-menu { display: none; } ul, ol { margin-left: 2.2rem; } .check-my-loan-status { width: 100% !important; min-height: 585px !important; scroll: auto; } [class*="navigation"] .nav-previous a, [class*="navigation"] .nav-previous span, [class*="navigation"] .nav-next a, [class*="navigation"] .nav-next span, #infinite-handle a, #infinite-handle span { color:#062373; } @media screen and (max-width:830px) { iframe.check-my-loan-status { min-height: 616px !important; } } @media screen and (max-width:768px) { iframe.check-my-loan-status { min-height: 850px !important; } } @media screen and (max-width:600px) { iframe.check-my-loan-status { min-height: 854px !important; } } @media screen and (max-width:580px) { iframe.check-my-loan-status { min-height: 900px !important; } } @media screen and (max-width:528px) { iframe.check-my-loan-status { min-height: 975px !important; } } @media screen and (max-width:371px) { iframe.check-my-loan-status { min-height: 1116px !important; } } .cmls-container .builder-section-content { max-width: 100% !important; padding-left: 0px; padding-right: 0px; padding-left: 0rem; padding-right: 0rem; } .material-card { box-shadow: 1px 1px 2px #aaa !important; padding: 20px !important; padding-bottom: 5px !important; border-top: 1px solid #e8e8e8 !important; border-left: 1px solid #e8e8e8 !important; margin-bottom: 40px !important; background-color: #fff !important; } #menu-main-nav { margin-left: 0px !important; } .ttfmake-button { display: inline-block; } /*-------------------------- Mortgage and Amortization Page and Calculators styling (they come with zero styles) ----------------------------*/ #calculators-title { text-align: center; background-image:url(/wp-content/uploads/sites/2/2015/09/mortgage-calculator-icon.png); } #mortgage-calculators { margin: 100px auto; background: #fff; background: rgba(255, 255, 255, 0.5); border-radius: 100px; display: inline-block; padding: 10px 50px; text-align: center; } #calc-cta { margin: 100px auto; } .calculator { margin: auto; text-align: center; transition: width ease; } .calculator .form { box-shadow: 1px 1px 2px #999; border-top: 1px solid #bbb; border-left: 1px solid #bbb; border-bottom: 1px solid #bbb; border-right: 1px solid #e8e8e8; padding: 20px 20px 0px 20px; width: 50%; display: inline-block; text-align: left; min-width: 247.359px; background-color: rgba(255, 255, 255, 1); } .calculator .form label { font-weight: bold; } .calculator .form input { display: block; width: 100%; box-shadow: inset 1px 1px 2px #bbb; border-bottom: 1px solid #ddd; border-right: 1px solid #ddd; } .calculator .results { width: auto; display: inline-block; border-bottom: 1px solid #bbb; border-top: 1px solid #bbb; border-right: 1px solid #bbb; box-shadow: inset -1px 1px 2px #999; text-align: left; background-color: rgba(254, 254, 254, 1); color: #070707; transition: ease-out 1s; } .calculator .results p { border-bottom: 1px solid #ddd; text-align: center; margin: 0 30px 1.0rem 30px; padding-top: 0.7rem; } .calculator .results .error { display: none; } @media screen and (max-width:800px) { .calculator .form { width: 100%; margin-bottom: 5px; } .calculator .results { width: 100%; box-shadow: inset 2px 1px 2px #bbb; border-top: 0; border-bottom: 0; } } #calculator-cta .builder-section-overlay { background:linear-gradient(transparent, rgba(0, 0, 0, 0.5)); } #calculator-cta { background-image: url(/wp-content/uploads/2015/08/background-2.jpeg); padding-bottom:100px; } @media screen and (max-width:800px) { #calc-cta { margin: 10px auto; } #mortgage-calculators { padding: 10px 20px; border-radius: 50px; } } /*-------------------------- Resources Page Styles ----------------------------*/ .resources-page .material-card { box-shadow: 1px 1px 35px #222 !important; } #resources { box-shadow: inset 0 5px 5px -3px rgba(0, 0, 0, 0.4), inset 0 -3px 5px -2px #444; background-image:url(/wp-content/uploads/2015/06/chess-pieceskraked.jpg); background-size:cover; background-position-x:center !important; background-position-x:center !important; } /*-------------------------- Lifetime Loan Page styles ----------------------------*/ #lifetime-loan-intro { padding: 10% 5%; color: #fff; text-shadow: 0 1px 10px #000; box-shadow: inset 0 30px 150px #171717; border-bottom: 1px solid #888; overflow: hidden; background-image: url(/wp-content/uploads/2015/06/Chaotic-compressed2.jpg); background-attachment: fixed; background-color: rgb(233, 239, 246); background-size: cover; background-position: 0% 111px; } #lifetime-loan-intro .builder-banner-overlay, #lifetime-loan-intro .builder-section-overlay { background:linear-gradient(rgba(0, 0, 0, 0.3),rgba(0, 0, 0, 0.1), transparent, transparent, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7)); } #lifetime-loan-intro img { padding: 10px; background-color: #fff; background-color: rgba(255, 255, 255, 0.9); box-shadow: 0 1px 10px #333; } #loan-creation { padding-bottom: 0 !important; color: #292929; animation: animatedBackground 60s linear infinite; box-shadow: 0 -1px 50px #000; overflow: hidden; background-color: #91D9F8; background-image: url('http://newbenchmark.wpengine.com/wp-content/uploads/2015/06/clouds-no-parallax.png'); } #loan-creation h2 { text-shadow: 0 1px 0px #efefef; } @keyframes animatedBackground { from { background-position: 0 0; } to { background-position: 1000px 0; } } @keyframes animatedBackgroundVertical { from { background-position: 0 0; } to { background-position: 0 1000px; } } @keyframes animatedBackgroundSlant { from { background-position: 0 0; } to { background-position: -1000px 700px; } } @-webkit-keyframes animatedBackground { from { background-position: 0 0; } to { background-position: 1000px 0; } } @-webkit-keyframes animatedBackgroundVertical { from { background-position: 0 0; } to { background-position: 0 1000px; } } @-webkit-keyframes animatedBackgroundSlant { from { background-position: 0 0; } to { background-position: -1000px 700px; } } #loan-creation h2 { font-size: 4.6rem; line-height: 1.2; font-weight: normal; } #market-watch { color: #171717; text-align: right; box-shadow: inset 0 3px 3px #666; overflow: hidden; } #market-watch h2 { font-size: 4.6rem; line-height: 1.2; font-weight: normal; } #market-watch .builder-text-column { float: right; margin-right: 0 !important; } #market-watch .builder-text-column:last-of-type { margin-right: 3.3333333333%; padding-right: 20px; } #market-watch img { box-shadow: inset 0 1px 100px #878787; box-shadow: inset 0 1px 100px rgba(6, 35, 115, 0.2); padding: 20px; border-radius: 2em; } #loan-tools { color: #fff; padding-bottom: 0 !important; background-color: cadetblue; text-shadow: 0 1px 10px #333; box-shadow: 0 -1px 5px #333; -webkit-overflow: hidden !important; overflow: hidden; } #loan-tools h2 { font-size: 4.6rem; line-height: 1.2; font-weight: normal; } @media screen and (max-width:800px) { #market-watch .builder-text-column:last-of-type, #yearly-reviews .builder-text-column:last-of-type { padding-right: 0; } } #yearly-reviews { color: #171717; text-align: right; box-shadow: inset 0 3px 3px #555; animation: animatedBackgroundSlant 60s linear infinite; overflow: hidden; } #yearly-reviews h2 { font-size: 4.6rem; line-height: 1.2; font-weight: normal; } #yearly-reviews .builder-text-column { float: right; margin-right: 0 !important; } #yearly-reviews .builder-text-column:last-of-type { margin-right: 3.3333333333%; padding-right: 20px; } #call-us-anytime { color: #fff; text-shadow: 0 1px 10px #333; box-shadow: 0 -1px 5px #000; padding-bottom: 0; padding-top: 0; overflow: hidden; } #call-us-anytime h2 { font-size: 4.6rem; line-height: 1.2; font-weight: normal; } #call-us-anytime .builder-text-column:first-of-type { margin-top: 52px; } #call-us-anytime .builder-text-column:last-of-type { background-color: rgba(0, 0, 0, 0.2); border-top-left-radius: 65%; } #call-us-anytime #call-center { position: relative; height: 100%; width: 106.2%; padding: 200px 0 70px 0; } #call-us-anytime #call-center::after { background: url(/wp-content/uploads/2015/08/background-phone-icon-200-kraked.png); background-repeat: no-repeat; opacity: 0.04; content: ""; top: 20px; right: 0; bottom: 0; left: 0; position: absolute; z-index: -1; background-position: center top; } #call-center img { margin-left: -3%; box-shadow: 0 77px 0 #0c2e4d; width: 100%; } #lifetime-loan-footer { box-shadow: inset 0 1px 5px #333; overflow: hidden; } #ttfmake-1439848703 { border:2px solid #062373; color:#062373; } #ttfmake-1439848703:hover { border:2px solid #666; color:#666; } /*********************************** Lifetime Loan page toggle CTA footer ***********************************/ .pull-down { vertical-align: top; height: auto !important; text-align: center; } .toggle-hidden { /*display: none;*/ height: auto; margin-bottom:20px; } .hide { font-size: 4.6rem; color: #ccc; text-shadow: 0 1px 0 #aaa; text-align: center; text-decoration: none; margin: auto; margin-bottom:5px; } .hide:hover { color: #eee; text-shadow: 0 0 1px #666; text-decoration: none; margin-bottom: 20px; } /******************************* TRID University *******************************/ .trid-university { background:linear-gradient( #fff, #fff, #fafafa, #fafafa, #fff, #fff) !important; } .trid-videos .ttfmp-panels-item-content { background-color: rgba(255, 255, 255, 0.5) !important; box-shadow: inset 0 1px 5px #888; } .trid-videos .builder-section-content { box-shadow: 1px 1px 8px #aaa; background-color: rgba(0, 0, 0, 0.2); } .trid-videos { box-shadow:inset 0 2px 8px #999; } .trid-videos .builder-banner-section-title { text-align:center; text-shadow:0 1px 4px #171717; text-shadow:0 1px 4px rgba(0, 0, 0, 0.8); color:#fdfdfd; font-size:4rem; } .embedded-doc-link { display:none; } .embedded-doc { width:696; padding:0; margin:auto; } @media screen and (max-width:800px) { .embedded-doc-link { display:inline-block; } .embedded-doc { display:none; } } /****************************** Community Page Styles ******************************/ #comm-2014 { background-image:url(/wp-content/uploads/2015/06/OurReachBG3BWkraken.jpg); } #comm-2013 { background-image:url(/wp-content/uploads/2015/06/parallax2014.jpg); background-position:center; } #comm-2012 { background-image:url(/wp-content/uploads/2015/06/parallax-2013.jpg); background-size:cover; } #comm-2011 { background-image:url(/wp-content/uploads/2015/06/OurReachBG3BWkraken.jpg); } .community-year p { text-align: center; font-size: 60px !important; font-family: sans-serif; font-weight: 500; font-style: italic; text-shadow: 0 0 10px #062373 !important; line-height:1.05; } .bm-gallery-section .builder-text-content .foogallery-container { padding-top: 27px; padding-bottom: 20px; box-shadow: 1px 1px 5px #666; background-color: #171717; } .bm-gallery-section .builder-text-title { text-align:center; } .bm-gallery-section .builder-text-content p { color:#666; padding:1em; } .bm-gallery-section .builder-text-content a { color:#999; } /******************************* iPad adjustments *******************************/ @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) { .page-id-3059 .builder-section-banner { background-position: center !important; } } @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) { .page-id-3059 .builder-section-banner { background-position: center !important; } } @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) { .page-id-3059 .builder-section-banner { background-position: center !important; } } @media only screen and (max-width: 800px) { .page-id-3059 .builder-section-banner { background-position-x: 50% !important; background-position-y: 50% !important; box-shadow: inset 0px 0px 30px #000; background-size: 150%; } } /******************************** Jobs Board Search Input Styles ********************************/ #search_keywords, #search_location { background-color:#fcfcfc; box-shadow: inset 0 1px 5px #ccc; } #search_keywords:focus, #search_location:focus { box-shadow:inset 0 1px 5px #aaa; } #search_keywords::-webkit-input-placeholder, #search_location::-webkit-input-placeholder { /* WebKit, Blink, Edge */ color: #ccc; } #search_keywords:-moz-placeholder, #search_location:-moz-placeholder { /* Mozilla Firefox 4 to 18 */ color: #ccc; opacity: 1; } #search_keywords::-moz-placeholder, #search_location::-moz-placeholder { /* Mozilla Firefox 19+ */ color: #ccc; opacity: 1; } #search_keywords:-ms-input-placeholder, #search_location:-ms-input-placeholder{ /* Internet Explorer 10-11 */ color: #ccc; } .job_filters { border:1px solid #ddd; } .job-manager-form input { background-color:#fcfcfc; box-shadow: inset 0 0 2px #aaa } .job-manager-form input[type="submit"] { background-color:#062373; box-shadow:1px 1px 2px #aaa; font-weight:bold; } .job-manager-form input[type="submit"]:hover { background-color:#eee; color:#062373; text-shadow:0 1px 0 #fff; } .job-manager-form input[type="file"] { background:none; box-shadow:none; } #job-manager-job-dashboard table td, #job-manager-job-dashboard table th { padding-left:1em; } #job-manager-job-dashboard table ul.job-dashboard-actions li { font-size:.85em; opacity:.5; font-weight:bold; } #job-manager-job-dashboard table ul.job-dashboard-actions li:hover { opacity:1; } .job-manager-jobs thead { background-color:#fcfcfc; color:#444; } #job-manager-job-dashboard p { font-weight: bold; border-bottom: 1px solid #eaecee; border-top: 1px solid #eaecee; padding-bottom: 5px; padding-top: 5px; text-align: center; } #priv-pol-2 { background-color: #e7f4f8; box-shadow: inset 0 2px 8px -5px #000; margin-bottom:0; } #priv-pol-2 a { text-shadow: 0 1px 3px #222; color: #fff; padding:3px; border-radius:5px; } #priv-pol-2 a:hover { color: #fafafa; border: 1px solid #fafafa; box-shadow: 0 1px 2px #aaa, inset 1px 1px #bbb; text-decoration: none; padding: 2px; text-shadow: 0 1px 2px #000; padding:2px; } #priv-pol-3 { padding-top: 44px; padding-top: 4.4rem; box-shadow: inset 0 2px 8px -5px #000, inset 0 -2px 8px -5px #000; background: linear-gradient(#fff, #fafafa); margin-bottom: 0; border-bottom: 4px solid #000; } #priv-pol-4 { padding-top: 44px; padding-top: 4.4rem; background: linear-gradient(#222, #333); color: #efefef; text-shadow: 0 1px 0 #222; margin-bottom:0; padding-bottom:44px; padding-bottom:4.4rem; border-bottom:1px solid #aaa; } #priv-pol-4 a { color:#999; padding:3px; } #priv-pol-4 a:hover { text-shadow: 0 1px 2px #000; color: #fff; border-radius: 5px; padding: 2px; border: 1px solid #fff; box-shadow: 0 1px 1px #111, inset 1px 1px #111; text-decoration: none; } /************************** Opt Out Page **************************/ #opt-out { background-color: #f5f5f5; box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.1); border-top: 1px solid rgba(0, 0, 0, 0.1); } #opt-out .instructions { text-align: center; background-color: #fff; padding: 20px; box-shadow: 0 3px 9px rgba(0, 0, 0, 0.1); max-width: 690px; margin: auto; margin-bottom:4px; } #opt-out .opt-out-title { text-align: center; background-color: #fff; padding: 20px; box-shadow: 0 3px 9px rgba(0, 0, 0, 0.1); max-width: 690px; margin: auto; margin-bottom:64px; /************************** Blog Styling **************************/ .entry-header .entry-thumbnail.post-header img { box-shadow:2px 3px 20px #666; } .comment-form #submit { background-color:#062373; } .comment-form #submit:hover { background-color: #eee; color: #062373; box-shadow: 1px 1px 2px #888; } #comment { background-color: #fdfdfd; border: 1px solid #ccc; } #comment:active, #comment:focus { box-shadow: inset -0.01rem -0.01rem 7px #bbb; } #breadcrumbs { font-size:12px; }
style.css
* Add your custom styles below. * This version of the Make child theme is only compatible with Make 1.6.0 and above. */ /*--------------------------- Header styling ----------------------------*/ .header-bar .menu { margin-left:50px; } .header-bar .menu a{ color:#777; } .header-bar .menu a:hover { color:#ccc; } .site-header .site-description { color: #062373; float: right; margin-left: 91px; margin-top: -32px; } .site-title, .site-title a { color: #062373 !important; } @media screen and (max-width: 864px) { .site-header .site-description { font-size:.588em !important; } } @media screen and (max-width:799px) { .custom-logo { margin:auto; } .site-header .site-description { float:none; text-align:center; margin-top:-25px; font-size: 1.2rem !important; } } @media screen and (max-width:464px) { .site-header .site-description { font-size:.588em !important } } @media screen and (max-width:431px) { .site-header .site-description { margin-left:84px; font-size:.52em !important; margin-top:-22px; } } .header-layout-3 .site-navigation .menu { border-top:2px solid #062373 !important; } #menu-main-nav { margin-bottom: 0 !important; } /*--------------------------- Search box styling.. subtle ----------------------------*/ input[type="search"] { box-shadow: inset 1px 1px 2px #ccc; border-bottom: 1px solid #dfdfdf; border-right: 1px solid #dfdfdf; } /*-------------------- sticky menu styling ---------------------*/ #thsp-sticky-header { background:rgba(255, 255, 255, 0.7) !important; } #thsp-sticky-header { box-shadow: 0 1px 5px rgba(20, 20, 20, 0.7) !important; } /*-------------------- Main Menu styling ---------------------*/ @media screen and (min-width: 800px) { .site-navigation .menu .sub-menu, .site-navigation .menu .children { background-color: rgb(245, 245, 245); background-color: rgba(245, 245, 245, 0.95); } .site-navigation .menu li.current_page_item, .site-navigation .menu .children li.current_page_item, .site-navigation .menu li.current_page_ancestor, .site-navigation .menu li.current-menu-item, .site-navigation .menu .sub-menu li.current-menu-item, .site-navigation .menu li.current-menu-ancestor { background-color: rgb(253, 253, 253); } } /*-------------------------------- wpFront Top plugin styles ----------------------------------*/ .wpfront-scroll-top-container img { background-color: rgba(255, 255, 255, 0.3); border-radius: 10%; box-shadow: 0 0 2px 2px rgba(255, 255, 255, 0.4); width: 85%; } /*---------------------------------------- Cycle Banner padding fix ----------------------------------------*/ .cycle-slide .builder-banner-content { padding: 11px 96px; padding: 1.1rem 6rem; } /*-------------------------------- Individual Slider styles ---------------------------------*/ #benchmarkBringsYou { text-align: center; text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8); } #bBYouHome-block { color: rgb(6, 35, 115); color: rgba(6, 35, 115, 0.97); font-weight: bold; padding: 3px 6px; background-color: rgb(254, 254, 254); background-color: rgba(254, 254, 254, 0.97); text-shadow: -0.11rem -0.12rem .1rem #ddd; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7); display:inline-block; margin-top:1.1rem; } .lifetime-loan-h2 { text-align: center; text-shadow: 2px 2px 10px #222; } #LifetimeLoan-slider { background-color: #fdfdfd; max-width: 330px; padding: 10px; margin: auto; margin-bottom: auto; box-shadow: 1px 2px 12px #222; } .find-your-branch-h2 { text-align: center; text-shadow: 2px 2px 10px #222; } .find-your-branch-button { color: #fdfdfd; font-size: 27px; font-weight: bold; padding: 10px; border-radius: 5px; background-color: #306fab; text-shadow: none; box-shadow: 2px 2px 10px #222; } /*------------------------------ Connect With Us (social) styling --------------------------------*/ #get-social { background-image:url(/wp-content/uploads/2015/12/Social-Background.png); box-shadow: inset 0px -100px 200px rgba(0, 0, 0, 0.4), inset 0 2px 3px #888; border-top: #e7e7e7; background-repeat:repeat-x; background-position:bottom; background-position-x:left; padding-bottom:40px; } @media screen and (max-width:799px) { #get-social { padding-bottom:100px; padding-top:2px; } } #get-social .builder-text-section-title { text-align: center; margin-bottom: 40px; text-shadow: 0 1px 4px #888; padding-top:50px; color: #004D78; font-size:2.5em; } @media screen and (max-width:799px) { #get-social .builder-text-section-title { background-image:url(/wp-content/uploads/2015/12/network-background-upside-down.png); height:312px; background-repeat:repeat-x; margin-bottom:-160px; font-size:2em; } } @media screen and (max-width:360px) { #get-social .builder-text-section-title { font-size:1.5em; margin-bottom:-190px; } } #builder-section-1438004366616-column-2 { text-align: center; } #simple_facebook_page_feed_widget-5 { box-shadow: 1px 1px 2px #aaa; } #twitter-widget-0 { box-shadow: 1px 1px 2px #aaa; } #social-audience { background-image:url(/wp-content/uploads/2015/12/People-web2.png); padding:0; margin:0; height:119px; margin-top: -66px; background-position-x:center; border-bottom: 1px solid #050; } #social-audience .builder-section-overlay { background: linear-gradient( transparent, transparent, rgba(0, 0, 0, 0.3) ); } /*------------------------------ instagram widget styling --------------------------------*/ #null-instagram-feed-3, #null-instagram-feed-2 { background-color:#fff; max-width:520px; margin:auto; background:linear-gradient(#777, #eee); box-shadow: 1px 1px 2px #aaa; } #null-instagram-feed-3 .widget .null-instagram-feed, #null-instagram-feed-2 .widget .null-instagram-feed { position: relative; background-color: #fff; border: 1px solid #e8e8e8; padding: 1%; } ul.instagram-pics { position: relative; text-align: center; margin:auto; } #null-instagram-feed-3 ul.instagram-pics, #null-instagram-feed-2 ul.instagram-pics { margin-bottom: 0; height: 344px; overflow-y: scroll; padding-bottom: 1%; border-bottom: 1px solid #e8e8e8; } .instagram-pics li { border-bottom: none; display: inline-block; padding: 1% 1% 0 1%; margin: 2% 2% 1% 2%; background-color: #fff; border: 1px solid #e8e8e8; box-shadow: 1px 1px 0 #e8e8e8; } .instagram-pics li a img { width:100%; } #null-instagram-feed-3 p.clear, #null-instagram-feed-2 p.clear { text-align: center; text-transform:uppercase; padding-top: 1%; margin-bottom: 1%; background-color:#fff; box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.5); position: relative; z-index: 9; } #null-instagram-feed-3 p.clear a::before, #null-instagram-feed-2 p.clear a::before { content: "\f16d"; font-family:FontAwesome; margin-right:5px } #null-instagram-feed-3 p.clear a, #null-instagram-feed-2 p.clear a { font-size: 13px; font-family: 'proxima-nova','Helvetica Neue',Arial,Helvetica,sans-serif; display: inline-block; border: 1px solid; border-color: #4090db; color: #4090db; border-radius: 3px; margin:10px; line-height: 29px; padding: 0 11px; } #null-instagram-feed-2 p.clear a { font-size:1.2rem; } @media screen and (max-width:799px) { #null-instagram-feed-3 p.clear a, #null-instagram-feed-2 p.clear a { padding:0 9px; } } #null-instagram-feed-3 p.clear a:hover, #null-instagram-feed-2 p.clear a:hover{ border-color: #2d6599; color: #2d6599; } /*------------------------- first three-column section on Home page ----------------------------*/ .home-column { min-height:265px; } #builder-section-1434722644381-column-1, #builder-section-1434722644381-column-2, #builder-section-1434722644381-column-3 { /*border-top:1px solid #e8e8e8; border-left:1px solid #e8e8e8; box-shadow:1px 1px 2px #bbb; padding:2%; margin-bottom:4%;*/ border-top: 1px solid #e8e8e8; box-shadow: 1px 1px 2px #bbb; padding: 2%; margin-bottom: 4%; box-shadow: inset 0px -1px 2px #ccc; background: linear-gradient(#fdfdfd, #fefeff); } .no-margin-bottom { margin-bottom: 0px; } .no-margin-top { margin-top: 0px; } p.center { text-align: center; } .cycle-slideshow #testimonial2 { display: none; } /*--------------------------------- Find Your Branch states-opaque background on Home Page ------------------------------------*/ .fyb { background-image: url("/wp-content/uploads/2015/07/States-map-opaque.png"); position: relative; margin: auto; background-repeat: no-repeat; background-position: 10%, 50%; background-position: center; text-shadow: 0px 0px 0.5rem #f5f5f5; margin-left: -7.4%; margin-right: -7.4%; min-height: 265px; margin-bottom:0 } .fyb h3 { margin:0; padding-top:10%; } /*---------------------------------- remove spacing below testimonials slider on Home Page ------------------------------------*/ .builder-text-column-2#builder-section-1434722644381-column-2 .testimonial-box { padding-bottom: none; } .home-button:hover { text-shadow:0 1px 2px #fff; } /*********************************** Who We Are section ***********************************/ #who-we-are .builder-section-overlay { background: linear-gradient( rgba(0, 0, 0, 0.2), transparent, rgba(0, 0, 0, 0.6) ); } #who-we-are { box-shadow: rgb(34, 34, 34) 0px -2px 3px inset, 0px 2px 3px rgba(0, 0, 0, 0.3) inset; } /*------------------------- second three-column section on Home page ----------------------------*/ @media screen and (min-width:799px) { #second-row .column { min-height:175px; } } #builder-section-1438872085392-column-1, #builder-section-1438872085392-column-2, #builder-section-1438872085392-column-3 { box-shadow: 1px 1px 2px #aaa; background-color: #fff; padding: 19px; margin-bottom: 38px; } #second-row .builder-text-title { text-align: center; } #builder-section-1438872085392-column-1 .builder-text-image, #builder-section-1438872085392-column-2 .builder-text-image, #builder-section-1438872085392-column-3 .builder-text-image { padding-top: 1.5rem; padding-bottom: 1.2rem; max-height: 157px; } #builder-section-1438872085392-column-1 .builder-text-image img, #builder-section-1438872085392-column-2 .builder-text-image img, #builder-section-1438872085392-column-3 .builder-text-image img { max-height: 150px; height:150px; width: auto; } .ttfmp-post-list-item { box-shadow: 1px 1px 2px #aaa; border-top: 1px solid #e8e8e8; border-left: 1px solid #e8e8e8; padding: 2%; background-color: #fdfdfd; } /*---------------------------------- Giving Back page section spacing change ----------------------------------*/ .giveBack-content-column { margin-top: -52px; margin-bottom: -52px; } #give-back-banner { background-image:url(/wp-content/uploads/2015/12/bootnshootn-background-blurred.jpg); background-size:cover; } #give-back-banner .builder-section-content { color: #fff; text-shadow: 1px 0 8px rgba(0, 0, 0, 0.15); font-size: 21px; font-size: 2.1rem; line-height: 1.35; } @media screen and (max-width:799px) { #give-back-banner .builder-section-content { font-size: 15px; font-size: 1.5rem; } } /*---------------------------------- Jim's Welcome section ----------------------------------*/ #jim { box-shadow: 0 1px 5px #ccc inset, 0 -2px 2px #ccc inset; } #jim .builder-section-content, #jim .builder-text-section-title { max-width:86%; } @media screen and (max-width:1024px) { #jim .builder-section-content, #jim .builder-section-title { max-width:100%; } } #jim img { width:320px; margin-top:20px; box-shadow:1px 1px 8px #888; } @media screen and (max-width:1360px) { #jim img { width:auto; } } /*---------------------------------- Fresh from the Benchmark Blog ----------------------------------*/ #fresh-blog-posts { padding-top: 50px; background-image: url(/wp-content/uploads/2015/11/blog-excerpts-bg.jpeg); } #fresh-blog-posts .builder-post-list-section-title { text-align: center; box-shadow: 0 5px 5px -4px #aaa; border-top: 1px solid #eaeaea; background-color: rgba(255, 255, 255, 0.4); margin-bottom:40px; } /*---------------------------------- Benchmark University page section styles ----------------------------------*/ #university-intro { background-image:url(/wp-content/uploads/2015/07/university-background.jpg); background-size:cover; margin-bottom:0; } #university-links-section { padding-top:50px; background: #eee; box-shadow:0 1px 3px #aaa; } .icon-circle { text-align: center; font-size: 37px; text-shadow: 1px 1px 2px #666; background-color: #062373; border-radius: 50%; box-shadow: 1px 1px 2px #aaa; width: 65px; height: 65px; margin: auto; transition: background-color 0.05s linear; } .icon-circle a { color: #fdfdfd; } .icon-circle:hover { font-size: 39px; width: 68px; height: 68px; background-color: #c7c7c7; box-shadow: 1px 4px 4px #777; margin-top: -6px; margin-bottom: 14px; text-shadow: 1px 1px 2px 333; border: 1px solid #b7b7b7; } .icon-circle a:hover { color: #fff; } /*---------------------------------- 7 Steps to Home Ownership ----------------------------------*/ ul [role="tablist"] { text-align: center !important; background: none !important; } .builder-section-panels .ui-widget-header { text-align: center !important; background: none !important; } .builder-section-panels .ui-tabs .ui-tabs-nav li { border-radius: 0px; float: none !important; display: inline-block !important; border: none !important; } .builder-section-panels .ui-state-hover a:hover { color: #bbb !important; background-color: #ddd !important; box-shadow: 1px 0px 1px #ccc !important; } .builder-section-panels .ui-state-active a, .builder-section-panels .ui-state-active a:link { color: #fff !important; background-color: #062373 !important; } .builder-section-panels .ui-state-focus, .builder-section-panels .ui-widget-content .ui-state-focus, .builder-section-panels .ui-widget-header .ui-state-focus, .builder-section-panels .ui-state-active, .builder-section-panels .ui-widget-content .ui-state-active, .builder-section-panels .ui-widget-header .ui-state-active { box-shadow: 1px 1px 2px #333; } /*---------------------------------- What Paperwork Will Be Needed? section ----------------------------------*/ section.benchmarkU-panels { display: block; box-shadow: 0px -1px 3px #ccc, 0px 3px 3px #ccc; -moz-box-shadow: 0px -1px 3px #ccc, 0px 3px 3px #ccc; -webkit-box-shadow: 0px -1px 3px #ccc, 0px 3px 3px #ccc; } /*---------------------------------- FAQ's videos section ----------------------------------*/ section#builder-section-1436538225845 { display: block; padding-top: 40px; } .arve-wrapper { border-top: 1px solid #ddd; border-left: 1px solid #ddd; box-shadow: 2px 4px 8px #ccc; } .arve-rectangle { tranition-duration: .55s !important; } #faqs .arve-rectangle { border: 2px solid #062373 !important; } .builder-section-panels .ui-state-hover { color: #555 !important; background-color: #efefef !important; border: 1px solid #efefef !important; box-shadow: 1px 1px 3px #ccc !important; font-size: 1.7rem !important; text-shadow: 0px 1px 0px #f5f5f5 !important; } .builder-section-panels .ui-state-active, .builder-section-panels .ui-widget-content .ui-state-active, .builder-section-panels .ui-widget-header .ui-state-active { color: #fdfdfd !important; background-color: #062373 !important; border: 1px solid #062373 !important; box-shadow: 1px 1px 2px #666 !important; text-shadow: none !important; border: 1px solid #171717 !important; border-width: 0px 1px 1px 1px !important; transition: 0.15s linear !important; } .builder-section-panels .ui-accordion .ui-accordion-header { border-radius: 0px !important; } /*---------------------------------- Core Values styles ----------------------------------*/ div.core-values-container { max-width: 950px; min-width: 256px; text-align: center; margin: auto; } li.cv-circle { margin: 10px; display: inline-block; } .core-content { background-color: rgba(0, 0, 0, 0.7); padding: 10px 30px 30px 30px; border: 1px solid #fff; } #core-relationships { background-image:url(/wp-content/uploads/2015/12/Relationships-blurred2.jpg); background-position:center; background-size:cover; box-shadow: inset 0 8px 5px -5px rgba(0, 0, 0, 0.5), inset 0 -3px 3px -2px; } #core-positive-attitude { background-image:url(/wp-content/uploads/2015/12/Positive-Attitude-blurred.jpg); background-position:center; background-size:cover; padding-top: 0; border-top:2px solid #eee; border-bottom:2px solid #eee; } #core-excellence { background:url(/wp-content/uploads/2015/12/Excellence-blurred.jpg); background-position:center; background-size:cover; box-shadow: inset 0 -3px 3px -2px, inset 0 3px 3px -2px; } #core-dynamic { background-image:url(/wp-content/uploads/2015/12/Dynamic-blurred.jpg); background-position:center; background-size:cover; padding-top: 0; border-top:2px solid #eee; border-bottom:2px solid #eee; } #core-success { background-image:url(/wp-content/uploads/2015/12/Success.jpg ); background-position:center; background-size:cover; box-shadow: inset 0 -5px 3px -3px rgba(0, 0, 0, 0.5), inset 0 3px 3px -2px; } .core-testimonails { padding-top: 0; } .core-testimonials { padding-top: 0; } #core-cta { background:linear-gradient(#ccc, #fff); } #core-cta h3, #core-cta p { text-shadow:0 1px 0 #fff; } #core-cta a:hover { text-decoration:none; color:#666; } /****************************** Testimonials Page styles ******************************/ .testimonials-section { background: linear-gradient(#fff, lightblue, lightslategray, lightblue, #fff); } .testimonials-section blockquote { box-shadow:1px 1px 2px #666; } .testimonials-section hr { border-color:#333; } .testimonials-section strong { text-shadow:0 1px 0 rgba(200, 200, 200, 0.75); } #reviews .ttfmake-testimonial:after { float:right; margin-top:-30px; } /*------------------------------ Your Loan page ------------------------------*/ #your-loan-status { margin-bottom: 0; box-shadow: 0 -3px 5px #aaa; border-top: 2px solid #062373; color: #062373; text-shadow: 0 1px 0 #fff; } .loan-admin-popup { margin-top: 100px; margin:auto; max-width:1200px; position:relative; background:#fff; box-shadow:0 1px 10px #000; } .pay-button { background: linear-gradient(#173484, #062373, #040151); padding: 15px 80px; color: #fff; font-size: 1.5em; border-radius: 5px; box-shadow: 0 1px 5px rgba(0, 0, 0, 0.6); text-shadow: 0 -1px 0 #333; } .pay-button:hover { box-shadow:0 2px 8px #000; text-decoration:none; background:linear-gradient(#040151, #062373, #173484); text-shadow:0 1px 0 #333; } .mobile-responsive-table td { width:50%; } @media screen and (max-width:799px) { .mobile-responsive-table td { display:inline-block; width:100%; padding-top:0; padding-bottom:0; } .mobile-responsive-table td ul { margin-bottom:0; } .mobile-responsive-table { margin-bottom:44px; } .pay-button { padding:10px 0; } } /******************************* loan feedback page styles *******************************/ @media screen and (max-width:799px) { .testimonial-pointer { transform: rotate(90deg); } } .cameratag_select_prompt { color: deepskyblue !important; font-size: 2.6rem !important; font-weight: lighter !important; } .cameratag_primary_link { color: #fdfdfd !important; font-size: 1.6rem !important; } a.cameratag_primary_link:hover { text-decoration: none !important; } .cameratag_action_icon {} .cameratag_prompt_label { font-weight: lighter !important; color: #ccc !important; font-size: 1.3rem !important; } .cameratag_sms_prompt { top: 35% !important; font-size: 2rem !important; } .cameratag_sms_input { background-color: #e5e5e5 !important; box-shadow: inset 1px 1px 2px #ccc !important; border-bottom: 1px solid #dfdfdf !important; border-right: 1px solid #dfdfdf !important; margin-top: 20px !important; margin-bottom: 10px !important; } a.cameratag_send_sms { background-color: deepskyblue !important; color: #fdfdfd !important; } a.cameratag_send_sms:hover { text-decoration: none !important; background-color: lightskyblue !important; color: #666 !important; } a.cameratag_goto_start { color: #ccc !important; } a.cameratag_goto_start:hover { color: #fdfdfd !important; text-decoration: none !important; } iframe#43275736952969 { background-color: #e5e5e5 !important; } /*------------------------------ Apply Now page styles ------------------------------*/ #cmls-section { border-top:2px solid #062373; border-bottom:2px solid #062373; } #cmls-welcome-message { margin-bottom: 0; box-shadow: inset 0 3px 5px -2px; background: linear-gradient(#fefefe, #fff, #fff); } .welcome-box { background-color: #f8f8f8; padding: 20px; margin: 50px; box-shadow: 1px 3px 10px 2px #aaa; border: 2px dashed #062373; } @media screen and (max-width:799px) { .welcome-box { margin-left:auto; margin-right:auto; } } /**************************** Encompass App styles ****************************/ .cmls-container-title { background: linear-gradient(#fff, #eee); text-shadow:0 1px 0 #fff; /*new styles*/ background: linear-gradient(#fff, #fefefe); box-shadow: inset 0 -4px 5px -2px #333; } #placeholder { text-align:center; } #placeholder p { text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4); } #plaeholder p i { font-size: 15em; text-shadow: 1px 6px 18px rgba(0, 0, 0, 0.5); } @media screen and (max-width:799px){ .cmls-container-title .builder-text-column-1 { border-bottom:1px solid #eee; box-shadow:inset 0 -1px 1px -1px #aaa; } } .bmlo-app-button { background-color: #062373; font-size: 1.25em; margin-right: 10px; margin-left: 10px; box-shadow: 0 2px 5px #aaa; } .bmlo-app-button:hover { background: #fff; color: #062373; text-shadow: 0 -1px 0 #eee; box-shadow: 0 3px 10px #333; } .bmlo-app-button-active { background: #fff; color: #062373; text-shadow: 0 -1px 0 #eee; box-shadow: 0 3px 10px #333; } #bmlo-short-button:before { height:10px; width:10px; border-radius:50%; background-color:#fff; } #bmlo-short-app iframe { width: 802px; height: 2114px; box-shadow: 0 7px 15px #999, inset 0 0 2px #222; border: 8px solid #062373; padding: 5px; background-color: #fff; overflow:auto; } #bmlo-long-app iframe { width: 802px; height: 1484px; box-shadow: 0 7px 15px #999, inset 0 0 2px 1px #333; border: 8px solid #062373; padding: 5px; background-color:#fff; background:linear-gradient(#ddd, #eee, #fff, #fff, #fff, #fff, #fff, #fff); overflow:auto; } .before-app { font-size: 0.70em; color: #333; padding: 3px 10px 4px 10px; border: 1px solid #062373; border-bottom: none; border-top-left-radius: 5px; border-top-right-radius: 5px; box-shadow: 0 3px 3px 1px #999; background-color: #fefefe; text-shadow: 0 1px 1px #fff; } /*------------------------------ Find Your Branch page styles --------------------------------*/ /*IE 11 fix*/ .ie-warning { display:none; margin-bottom:-50px; } .browser { margin-left:20px; margin-right:20px; } @media all and (-ms-high-contrast:none) { *::-ms-backdrop, .ie-warning { display:block;margin-bottom:-50px;text-align:center; } /* IE11 */ } /*end IE 11 fix*/ #map-section { background-image: url(/wp-content/uploads/2015/06/big-map-background-blur-compressed.jpg); background-position-x:center !important; } #map-section .builder-banner-overlay, #map-section .builder-section-overlay { background:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1), transparent, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)) } .branches-accordion .ttfmake-button {display:none} .branches-accordion .anchor { margin-top: -100px !important; height:56px !important; z-index: 99999; position:absolute; color:transparent; } .button-mobile { display:inline-block; } @media screen and (max-width:800px) { .button-mobile { display: block !important; float: none !important; text-align: center !important; margin-bottom: 10px; } .branches-accordion .ttfmake-button { display:inline-block; } .branches-accordion .anchor { margin-top:-56px; } } @media screen and (min-width: 1281px){ #map_base svg { height: initial; } } .page-id-70 #thsp-sticky-header { display:none; } /*------------------------------ blog sidebar styles --------------------------------*/ .bm-cares-link { padding:20px; box-shadow:1px 1px 2px #aaa; display:inline-block; color:#171717; font-weight:normal; border-top: 1px solid #eee; border-left: 1px solid #eee; border-right: 1px solid #aaa; border-bottom: 1px solid #aaa; } .bm-cares-link:hover { box-shadow:1px 3px 5px #777; } .blog-apply-link { display: block; text-align: center; padding: 8px; box-shadow:inset 1px 1px 3px #aaa; font-size: 2em; font-weight: bold; border-radius: 3px; margin-top: 44px; margin-bottom:0; transition: margin .25s, box-shadow .25s, border-width .3s; background-color:#fcfcfc; border:1px solid #fff; } .blog-apply-link:hover { box-shadow:1px 2px 5px #888; margin-top:42px; margin-left:-1px; margin-bottom:2px; transition:box-shadow .25s; border: -1px solid #ccc; } .blog-locations-link { display: block; text-align: center; padding: 5px; font-size: 2.5em; background-color: #E9EDFA; box-shadow: inset 1px 1px 3px #888; border-radius: 3px; border: 1px solid #fff; transition: margin .25s, box-shadow .25s, border-width .3s; } .blog-locations-link:hover { border: 1px solid #ccc; box-shadow: 1px 2px 5px #777; background-color: #F3F5FC; margin-top: -2px; margin-left: -1px; margin-bottom: 2px; transition: box-shadow .25s, background-color .25s; } .fb_iframe_widget { box-shadow: 1px 1px 2px #aaa; } /*-------------------------- Footer Styling ----------------------------*/ .site-footer { background-color: #000; color: #ccc; } .site-footer a { color:lightslategray; } .site-footer a:hover { color:lightgray; } .site-footer .wpcf7-form-control, .site-footer .wpcf7-text, .site-footer .wpcf7-validates-as-required { width:100%; box-shadow:inset 0 1px 2px #aaa; border:1px solid #aaa; } .site-footer .wpcf7 input { margin-top:0; margin-bottom:0; padding-top:1px; padding-bottom:1px; width:100%; } .site-footer .wpcf7 textarea { margin-top:0; margin-bottom:0; width:100%; } .site-footer .wpcf7 p { margin-bottom:8px } .site-footer .wpcf7 input[type="submit"] { background-color:lightslategray; float:right; padding:8px 50px; width:100%; margin-top:2px; box-shadow:none; border:none; font-size:13px; } .site-footer .wpcf7 input[type="submit"]:hover { background-color:lightgray; color:darkgray; } .footer-text::before { content:url(/wp-content/uploads/2015/09/equal_housing_logo.png); } .site-footer .widget { margin-bottom:0; } .site-footer .widget-title { font-size:1.65rem; border-bottom:1px solid; } .site-footer .widget li { border:none; text-align:center; } .site-footer .widget li a { background-color:lightslategray; padding:10px; color:#fff; display:block; border-radius:2px; box-shadow:0 1px 2px #000; font-size:1.4rem; } .site-footer .widget li a:hover { background-color:lightgray; color:darkgray; box-shadow:0 1px 4px #999; } .site-footer .wpcf7-not-valid-tip { color: #fff; background-color: #a00; padding: 2px 5px; text-shadow: 0 1px 1px #000; border-bottom: 1px solid #000; } .site-footer .wpcf7-response-output { margin-top: -20px; background-color: rgba(255, 255, 255, 0.2); color: #fff; } /*-------------------------- Google Custom Search styles ----------------------------*/ #___gcse_0 { border: 1px solid #aaa; } #___gcse_0 * { box-sizing: content-box !important; -webkit-box-sizing: content-box !important; -moz-box-sizing: content-box !important; } /*Google Ads Removal*/ .gsc-adBlock iframe { display: none; border: none; } .gsc-adBlock { height: 0px !important; border: none; } .gsc-adBlockVertical { display: none !important; height: 0px !important; width: 0px !important; border: none; } .gsc-thinWrapper { width: 100% !important; } /*back to our regularly scheduled google cse styling*/ #___gcse_0 table td { border: none; vertical-align: inherit; } #___gcse_0 table { border-spacing: 2px; border-color: #e8e8e8; border-collapse: separate; } table.gstl_50 { margin: 0 !important; border: none !important; } .gsc-search-button .gsc-search-button-v2, .gsc-result-info-container, .gsc-orderby-container { box-sizing: content-box !important; } .gsib_a, .gsib_b { vertical-align: top !important; padding-top: 0px !important; } #gsc-i-id1 { background: none !important; } .gsc-selected-option-container { overflow: hidden; } .gsc-input-box { height: 2.55rem; } .gsc-above-wrapper-area, .gsc-resultsHeader, .gcsc-branding { display: none; } .gs-title { height: auto; } .gs-webResult, .gs-result { box-shadow: 1px 1px 2px #aaa; border-top: 1px solid #e8e8e8; border-left: 1px solid #e8e8e8; } .gsc-table-result { border-top: 1px dashed #eee; border-right: none; } .gsc-cursor-box { text-align: right; color: #062373; } .gsc-adBlock { border: none; } .gs-title { height: auto !important; } .gs-webResult div.gs-visibleUrl, .gs-imageResult div.gs-visibleUrl { color: #777; } .gs-webResult.gs-result a.gs-title:visited, .gs-webResult.gs-result a.gs-title:visited b, .gs-imageResult a.gs-title:visited, .gs-imageResult a.gs-title:visited b { color: navy; } #gs_id50 { height: 22px; overflow: hidden; } .gs-no-results-result .gs-snippet, .gs-error-result .gs-snippet { background-color: skyblue !important; border: 1px solid deepskyblue !important; margin-left: 0px!important; margin-right: 0px !important; margin-top: 0px !important; } .gsst_a .gscb_a { color: #e8e8e8; } .gsst_a .gscb_a:hover { color: #171717; } .gs-webResult.gs-result a.gs-title:visited, .gs-webResult.gs-result a.gs-title:visited b, .gs-imageResult a.gs-title:visited, .gs-imageResult a.gs-title:visited b { color: slategray !important; } .gs-bidi-start-align .gs-snippet { background-color: none; } .gs-spelling a { color: slategray; } .gs-webResult div.gs-visibleUrl, .gs-imageResult div.gs-visibleUrl { color: cadetblue !important; } input.gsc-input { height: auto !important; } .gsst_a { padding-top: 6px; } td.gsc-table-cell-snippet-close { padding-top: 5px; display: inline-block; } .gsc-results .gsc-cursor-box .gsc-cursor-current-page { color: cadetblue !important; } .gsc-webResult.gsc-result, .gsc-results .gsc-imageResult { padding-bottom: 0px !important; } .gsc-search-box { margin-top: 7px; } /*END GOOGLE CUSTOM SEARCH STYLES*/ /*-------------------------- Benchmark General Styles ----------------------------*/ .sub-menu { display: none; } ul, ol { margin-left: 2.2rem; } .check-my-loan-status { width: 100% !important; min-height: 585px !important; scroll: auto; } [class*="navigation"] .nav-previous a, [class*="navigation"] .nav-previous span, [class*="navigation"] .nav-next a, [class*="navigation"] .nav-next span, #infinite-handle a, #infinite-handle span { color:#062373; } @media screen and (max-width:830px) { iframe.check-my-loan-status { min-height: 616px !important; } } @media screen and (max-width:768px) { iframe.check-my-loan-status { min-height: 850px !important; } } @media screen and (max-width:600px) { iframe.check-my-loan-status { min-height: 854px !important; } } @media screen and (max-width:580px) { iframe.check-my-loan-status { min-height: 900px !important; } } @media screen and (max-width:528px) { iframe.check-my-loan-status { min-height: 975px !important; } } @media screen and (max-width:371px) { iframe.check-my-loan-status { min-height: 1116px !important; } } .cmls-container .builder-section-content { max-width: 100% !important; padding-left: 0px; padding-right: 0px; padding-left: 0rem; padding-right: 0rem; } .material-card { box-shadow: 1px 1px 2px #aaa !important; padding: 20px !important; padding-bottom: 5px !important; border-top: 1px solid #e8e8e8 !important; border-left: 1px solid #e8e8e8 !important; margin-bottom: 40px !important; background-color: #fff !important; } #menu-main-nav { margin-left: 0px !important; } .ttfmake-button { display: inline-block; } /*-------------------------- Mortgage and Amortization Page and Calculators styling (they come with zero styles) ----------------------------*/ #calculators-title { text-align: center; background-image:url(/wp-content/uploads/sites/2/2015/09/mortgage-calculator-icon.png); } #mortgage-calculators { margin: 100px auto; background: #fff; background: rgba(255, 255, 255, 0.5); border-radius: 100px; display: inline-block; padding: 10px 50px; text-align: center; } #calc-cta { margin: 100px auto; } .calculator { margin: auto; text-align: center; transition: width ease; } .calculator .form { box-shadow: 1px 1px 2px #999; border-top: 1px solid #bbb; border-left: 1px solid #bbb; border-bottom: 1px solid #bbb; border-right: 1px solid #e8e8e8; padding: 20px 20px 0px 20px; width: 50%; display: inline-block; text-align: left; min-width: 247.359px; background-color: rgba(255, 255, 255, 1); } .calculator .form label { font-weight: bold; } .calculator .form input { display: block; width: 100%; box-shadow: inset 1px 1px 2px #bbb; border-bottom: 1px solid #ddd; border-right: 1px solid #ddd; } .calculator .results { width: auto; display: inline-block; border-bottom: 1px solid #bbb; border-top: 1px solid #bbb; border-right: 1px solid #bbb; box-shadow: inset -1px 1px 2px #999; text-align: left; background-color: rgba(254, 254, 254, 1); color: #070707; transition: ease-out 1s; } .calculator .results p { border-bottom: 1px solid #ddd; text-align: center; margin: 0 30px 1.0rem 30px; padding-top: 0.7rem; } .calculator .results .error { display: none; } @media screen and (max-width:800px) { .calculator .form { width: 100%; margin-bottom: 5px; } .calculator .results { width: 100%; box-shadow: inset 2px 1px 2px #bbb; border-top: 0; border-bottom: 0; } } #calculator-cta .builder-section-overlay { background:linear-gradient(transparent, rgba(0, 0, 0, 0.5)); } #calculator-cta { background-image: url(/wp-content/uploads/2015/08/background-2.jpeg); padding-bottom:100px; } @media screen and (max-width:800px) { #calc-cta { margin: 10px auto; } #mortgage-calculators { padding: 10px 20px; border-radius: 50px; } } /*-------------------------- Resources Page Styles ----------------------------*/ .resources-page .material-card { box-shadow: 1px 1px 35px #222 !important; } #resources { box-shadow: inset 0 5px 5px -3px rgba(0, 0, 0, 0.4), inset 0 -3px 5px -2px #444; background-image:url(/wp-content/uploads/2015/06/chess-pieceskraked.jpg); background-size:cover; background-position-x:center !important; background-position-x:center !important; } /*-------------------------- Lifetime Loan Page styles ----------------------------*/ #lifetime-loan-intro { padding: 10% 5%; color: #fff; text-shadow: 0 1px 10px #000; box-shadow: inset 0 30px 150px #171717; border-bottom: 1px solid #888; overflow: hidden; background-image: url(/wp-content/uploads/2015/06/Chaotic-compressed2.jpg); background-attachment: fixed; background-color: rgb(233, 239, 246); background-size: cover; background-position: 0% 111px; } #lifetime-loan-intro .builder-banner-overlay, #lifetime-loan-intro .builder-section-overlay { background:linear-gradient(rgba(0, 0, 0, 0.3),rgba(0, 0, 0, 0.1), transparent, transparent, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7)); } #lifetime-loan-intro img { padding: 10px; background-color: #fff; background-color: rgba(255, 255, 255, 0.9); box-shadow: 0 1px 10px #333; } #loan-creation { padding-bottom: 0 !important; color: #292929; animation: animatedBackground 60s linear infinite; box-shadow: 0 -1px 50px #000; overflow: hidden; background-color: #91D9F8; background-image: url('http://newbenchmark.wpengine.com/wp-content/uploads/2015/06/clouds-no-parallax.png'); } #loan-creation h2 { text-shadow: 0 1px 0px #efefef; } @keyframes animatedBackground { from { background-position: 0 0; } to { background-position: 1000px 0; } } @keyframes animatedBackgroundVertical { from { background-position: 0 0; } to { background-position: 0 1000px; } } @keyframes animatedBackgroundSlant { from { background-position: 0 0; } to { background-position: -1000px 700px; } } @-webkit-keyframes animatedBackground { from { background-position: 0 0; } to { background-position: 1000px 0; } } @-webkit-keyframes animatedBackgroundVertical { from { background-position: 0 0; } to { background-position: 0 1000px; } } @-webkit-keyframes animatedBackgroundSlant { from { background-position: 0 0; } to { background-position: -1000px 700px; } } #loan-creation h2 { font-size: 4.6rem; line-height: 1.2; font-weight: normal; } #market-watch { color: #171717; text-align: right; box-shadow: inset 0 3px 3px #666; overflow: hidden; } #market-watch h2 { font-size: 4.6rem; line-height: 1.2; font-weight: normal; } #market-watch .builder-text-column { float: right; margin-right: 0 !important; } #market-watch .builder-text-column:last-of-type { margin-right: 3.3333333333%; padding-right: 20px; } #market-watch img { box-shadow: inset 0 1px 100px #878787; box-shadow: inset 0 1px 100px rgba(6, 35, 115, 0.2); padding: 20px; border-radius: 2em; } #loan-tools { color: #fff; padding-bottom: 0 !important; background-color: cadetblue; text-shadow: 0 1px 10px #333; box-shadow: 0 -1px 5px #333; -webkit-overflow: hidden !important; overflow: hidden; } #loan-tools h2 { font-size: 4.6rem; line-height: 1.2; font-weight: normal; } @media screen and (max-width:800px) { #market-watch .builder-text-column:last-of-type, #yearly-reviews .builder-text-column:last-of-type { padding-right: 0; } } #yearly-reviews { color: #171717; text-align: right; box-shadow: inset 0 3px 3px #555; animation: animatedBackgroundSlant 60s linear infinite; overflow: hidden; } #yearly-reviews h2 { font-size: 4.6rem; line-height: 1.2; font-weight: normal; } #yearly-reviews .builder-text-column { float: right; margin-right: 0 !important; } #yearly-reviews .builder-text-column:last-of-type { margin-right: 3.3333333333%; padding-right: 20px; } #call-us-anytime { color: #fff; text-shadow: 0 1px 10px #333; box-shadow: 0 -1px 5px #000; padding-bottom: 0; padding-top: 0; overflow: hidden; } #call-us-anytime h2 { font-size: 4.6rem; line-height: 1.2; font-weight: normal; } #call-us-anytime .builder-text-column:first-of-type { margin-top: 52px; } #call-us-anytime .builder-text-column:last-of-type { background-color: rgba(0, 0, 0, 0.2); border-top-left-radius: 65%; } #call-us-anytime #call-center { position: relative; height: 100%; width: 106.2%; padding: 200px 0 70px 0; } #call-us-anytime #call-center::after { background: url(/wp-content/uploads/2015/08/background-phone-icon-200-kraked.png); background-repeat: no-repeat; opacity: 0.04; content: ""; top: 20px; right: 0; bottom: 0; left: 0; position: absolute; z-index: -1; background-position: center top; } #call-center img { margin-left: -3%; box-shadow: 0 77px 0 #0c2e4d; width: 100%; } #lifetime-loan-footer { box-shadow: inset 0 1px 5px #333; overflow: hidden; } #ttfmake-1439848703 { border:2px solid #062373; color:#062373; } #ttfmake-1439848703:hover { border:2px solid #666; color:#666; } /*********************************** Lifetime Loan page toggle CTA footer ***********************************/ .pull-down { vertical-align: top; height: auto !important; text-align: center; } .toggle-hidden { /*display: none;*/ height: auto; margin-bottom:20px; } .hide { font-size: 4.6rem; color: #ccc; text-shadow: 0 1px 0 #aaa; text-align: center; text-decoration: none; margin: auto; margin-bottom:5px; } .hide:hover { color: #eee; text-shadow: 0 0 1px #666; text-decoration: none; margin-bottom: 20px; } /******************************* TRID University *******************************/ .trid-university { background:linear-gradient( #fff, #fff, #fafafa, #fafafa, #fff, #fff) !important; } .trid-videos .ttfmp-panels-item-content { background-color: rgba(255, 255, 255, 0.5) !important; box-shadow: inset 0 1px 5px #888; } .trid-videos .builder-section-content { box-shadow: 1px 1px 8px #aaa; background-color: rgba(0, 0, 0, 0.2); } .trid-videos { box-shadow:inset 0 2px 8px #999; } .trid-videos .builder-banner-section-title { text-align:center; text-shadow:0 1px 4px #171717; text-shadow:0 1px 4px rgba(0, 0, 0, 0.8); color:#fdfdfd; font-size:4rem; } .embedded-doc-link { display:none; } .embedded-doc { width:696; padding:0; margin:auto; } @media screen and (max-width:800px) { .embedded-doc-link { display:inline-block; } .embedded-doc { display:none; } } /****************************** Community Page Styles ******************************/ #comm-2014 { background-image:url(/wp-content/uploads/2015/06/OurReachBG3BWkraken.jpg); } #comm-2013 { background-image:url(/wp-content/uploads/2015/06/parallax2014.jpg); background-position:center; } #comm-2012 { background-image:url(/wp-content/uploads/2015/06/parallax-2013.jpg); background-size:cover; } #comm-2011 { background-image:url(/wp-content/uploads/2015/06/OurReachBG3BWkraken.jpg); } .community-year p { text-align: center; font-size: 60px !important; font-family: sans-serif; font-weight: 500; font-style: italic; text-shadow: 0 0 10px #062373 !important; line-height:1.05; } .bm-gallery-section .builder-text-content .foogallery-container { padding-top: 27px; padding-bottom: 20px; box-shadow: 1px 1px 5px #666; background-color: #171717; } .bm-gallery-section .builder-text-title { text-align:center; } .bm-gallery-section .builder-text-content p { color:#666; padding:1em; } .bm-gallery-section .builder-text-content a { color:#999; } /******************************* iPad adjustments *******************************/ @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) { .page-id-3059 .builder-section-banner { background-position: center !important; } } @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) { .page-id-3059 .builder-section-banner { background-position: center !important; } } @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) { .page-id-3059 .builder-section-banner { background-position: center !important; } } @media only screen and (max-width: 800px) { .page-id-3059 .builder-section-banner { background-position-x: 50% !important; background-position-y: 50% !important; box-shadow: inset 0px 0px 30px #000; background-size: 150%; } } /******************************** Jobs Board Search Input Styles ********************************/ #search_keywords, #search_location { background-color:#fcfcfc; box-shadow: inset 0 1px 5px #ccc; } #search_keywords:focus, #search_location:focus { box-shadow:inset 0 1px 5px #aaa; } #search_keywords::-webkit-input-placeholder, #search_location::-webkit-input-placeholder { /* WebKit, Blink, Edge */ color: #ccc; } #search_keywords:-moz-placeholder, #search_location:-moz-placeholder { /* Mozilla Firefox 4 to 18 */ color: #ccc; opacity: 1; } #search_keywords::-moz-placeholder, #search_location::-moz-placeholder { /* Mozilla Firefox 19+ */ color: #ccc; opacity: 1; } #search_keywords:-ms-input-placeholder, #search_location:-ms-input-placeholder{ /* Internet Explorer 10-11 */ color: #ccc; } .job_filters { border:1px solid #ddd; } .job-manager-form input { background-color:#fcfcfc; box-shadow: inset 0 0 2px #aaa } .job-manager-form input[type="submit"] { background-color:#062373; box-shadow:1px 1px 2px #aaa; font-weight:bold; } .job-manager-form input[type="submit"]:hover { background-color:#eee; color:#062373; text-shadow:0 1px 0 #fff; } .job-manager-form input[type="file"] { background:none; box-shadow:none; } #job-manager-job-dashboard table td, #job-manager-job-dashboard table th { padding-left:1em; } #job-manager-job-dashboard table ul.job-dashboard-actions li { font-size:.85em; opacity:.5; font-weight:bold; } #job-manager-job-dashboard table ul.job-dashboard-actions li:hover { opacity:1; } .job-manager-jobs thead { background-color:#fcfcfc; color:#444; } #job-manager-job-dashboard p { font-weight: bold; border-bottom: 1px solid #eaecee; border-top: 1px solid #eaecee; padding-bottom: 5px; padding-top: 5px; text-align: center; } #priv-pol-2 { background-color: #e7f4f8; box-shadow: inset 0 2px 8px -5px #000; margin-bottom:0; } #priv-pol-2 a { text-shadow: 0 1px 3px #222; color: #fff; padding:3px; border-radius:5px; } #priv-pol-2 a:hover { color: #fafafa; border: 1px solid #fafafa; box-shadow: 0 1px 2px #aaa, inset 1px 1px #bbb; text-decoration: none; padding: 2px; text-shadow: 0 1px 2px #000; padding:2px; } #priv-pol-3 { padding-top: 44px; padding-top: 4.4rem; box-shadow: inset 0 2px 8px -5px #000, inset 0 -2px 8px -5px #000; background: linear-gradient(#fff, #fafafa); margin-bottom: 0; border-bottom: 4px solid #000; } #priv-pol-4 { padding-top: 44px; padding-top: 4.4rem; background: linear-gradient(#222, #333); color: #efefef; text-shadow: 0 1px 0 #222; margin-bottom:0; padding-bottom:44px; padding-bottom:4.4rem; border-bottom:1px solid #aaa; } #priv-pol-4 a { color:#999; padding:3px; } #priv-pol-4 a:hover { text-shadow: 0 1px 2px #000; color: #fff; border-radius: 5px; padding: 2px; border: 1px solid #fff; box-shadow: 0 1px 1px #111, inset 1px 1px #111; text-decoration: none; } /************************** Opt Out Page **************************/ #opt-out { background-color: #f5f5f5; box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.1); border-top: 1px solid rgba(0, 0, 0, 0.1); } #opt-out .instructions { text-align: center; background-color: #fff; padding: 20px; box-shadow: 0 3px 9px rgba(0, 0, 0, 0.1); max-width: 690px; margin: auto; margin-bottom:4px; } #opt-out .opt-out-title { text-align: center; background-color: #fff; padding: 20px; box-shadow: 0 3px 9px rgba(0, 0, 0, 0.1); max-width: 690px; margin: auto; margin-bottom:64px; /************************** Blog Styling **************************/ .entry-header .entry-thumbnail.post-header img { box-shadow:2px 3px 20px #666; } .comment-form #submit { background-color:#062373; } .comment-form #submit:hover { background-color: #eee; color: #062373; box-shadow: 1px 1px 2px #888; } #comment { background-color: #fdfdfd; border: 1px solid #ccc; } #comment:active, #comment:focus { box-shadow: inset -0.01rem -0.01rem 7px #bbb; } #breadcrumbs { font-size:12px; }
0.39036
0.115013
html, body { font-family: 'Marmelad', sans-serif; } #uno { margin-left: auto; margin-right: auto; display: table; } .room { height: 100%; width: 100%; margin: auto; } /* Chat */ #chat { height: 100%; width: 17rem; position: fixed; z-index: 1; top: 0; right: 0; display: grid; grid-template-rows: 80px auto 50px; background-color: #EEE; scroll-behavior: smooth; } .chat-form { position: fixed; bottom: 0; right: 0; margin: auto; width: inherit; display: flex; box-sizing: border-box; padding: 5px; } .chat-input { border: 0; padding: 10px; width: 100%; outline: 0; margin-right: 10px; border-radius: 5px; background: #ccc; } .chat-button { border: none; padding: 10px; cursor: pointer; border-radius: 5px; text-transform: uppercase; } .chat-form .chat-button:hover { background-color: #3A996B; } .messages { margin: 0 10px; overflow: auto; } .unordered-list { padding: 5px; } .messages .list { margin: 8px 0; overflow-wrap: break-word; } .messages .debug { color: #AAA; font-style: italic; } h1 { text-align: center; text-decoration: underline; text-transform: uppercase; } /* Scoreboard */ #scoreboard { height: 100%; width: 17rem; position: fixed; z-index: 1; top: 0; left: 0; background-color: #EEE; overflow-x: hidden; } .scoreboard-box { display: table; margin: 0 auto; } .scoreboard-box .scoreboard-list { list-style: none; text-align: right; padding: 0; } .scoreboard-box .scoreboard-list li { padding: 5px 0; } .button { font-family: 'Marmelad'; font-size: 15px; text-transform: uppercase; font-weight: bold; padding: 10px 20px; color: #FFDE16; background-color: #ED1C24; border: none; border-radius: 30px; cursor: pointer; transition: 0.2s; } .button:hover, .button:disabled { color: #FFE032; background-color: #CC1821; } :disabled { cursor: not-allowed; filter: grayscale(50%); } #game { align-items: center; display: flex; flex-direction: column; height: 100%; justify-content: center; } #table { position: absolute; left: calc(50% - 41.5px); top: calc(50% - 64px); } .player { position: absolute; text-align: center; } .player-name { display: inline-block; margin-right: 20px; } .player.playing .player-name { border: 2px black solid; border-radius: 20px; padding: 5px 10px; } .player-content { width: max-content; } .cards { position: relative; top: 0; justify-content: center; max-width: 60rem; margin: auto; } .card { z-index: 1; position: absolute; height: 128px; width: 83px; min-width: 83px; margin: auto; justify-content: center; align-items: center; } .card .card-img { height: inherit; width: inherit; transition: 0.07s; } .card.playable:hover .card-img { transform: translateY(-30px) scale(1.1); cursor: pointer; } #decks { position: absolute; top: 0; } .discard { margin-left: -50px; } .discard.dragging { border: 2px black dashed; } .deck { margin-left: 50px; } .deck.card.playable:hover .card-img { transform: none; transform: scale(1.1); } .choice { margin-top: 138px; display: inline-block; margin-left: -33%; } .choice .button { margin: 0 2px; } .waiting { width: 60em; margin: auto; text-align: center; } .options { margin: auto; } .rules { width: fit-content; margin: auto; } .rule { display: block; text-align: right; cursor: pointer; } .rule:hover { font-weight: bold; } .players-list { width: 10em; margin: auto; text-align: left; } .description { margin: 10px; padding: 5px; border: 1px black solid; border-radius: 10px; border-style: dashed; } .invite { margin: 20px; } .modal-background { position: fixed; z-index: 1000; padding-top: 100px; left: 0; top: 0; width: 100vw; height: 100vh; overflow: auto; background-color: rgb(0,0,0); background-color: rgba(0,0,0,0.4); } .modal-content { max-width: 80%; max-height: 80%; overflow-y: auto; background-color: #fefefe; margin: auto; padding: 20px; border: 1px solid black; width: 25em; text-align: center; } .changelogs { width: 60em; } .modal-close { color: #bbb; float: right; font-size: 28px; font-weight: bold; } .modal-close:hover { color: black; text-decoration: none; cursor: pointer; } .info { z-index: 2; position: absolute; bottom: 0; margin: 10px; text-align: center; font-size: 14px; } .info.center { left: 50rem; } .info.right { right: 0; } .info.left { left: 0; } .info .link { text-decoration: none; color: black; } .info .link:hover { text-decoration: underline; cursor: pointer; } .changelogs-title { border: 2px solid black; width: fit-content; margin: auto; padding: 8px; } .changelogs-list { list-style-type: square; text-align: left; } .logs-title { font-style: italic; } .log-element { margin: 10px 0; } .changelogs-version-date { font-size: 12px; font-style: italic; font-weight: normal; } .info .language { appearance: none; border: none; background: none; }
client/css/style.css
html, body { font-family: 'Marmelad', sans-serif; } #uno { margin-left: auto; margin-right: auto; display: table; } .room { height: 100%; width: 100%; margin: auto; } /* Chat */ #chat { height: 100%; width: 17rem; position: fixed; z-index: 1; top: 0; right: 0; display: grid; grid-template-rows: 80px auto 50px; background-color: #EEE; scroll-behavior: smooth; } .chat-form { position: fixed; bottom: 0; right: 0; margin: auto; width: inherit; display: flex; box-sizing: border-box; padding: 5px; } .chat-input { border: 0; padding: 10px; width: 100%; outline: 0; margin-right: 10px; border-radius: 5px; background: #ccc; } .chat-button { border: none; padding: 10px; cursor: pointer; border-radius: 5px; text-transform: uppercase; } .chat-form .chat-button:hover { background-color: #3A996B; } .messages { margin: 0 10px; overflow: auto; } .unordered-list { padding: 5px; } .messages .list { margin: 8px 0; overflow-wrap: break-word; } .messages .debug { color: #AAA; font-style: italic; } h1 { text-align: center; text-decoration: underline; text-transform: uppercase; } /* Scoreboard */ #scoreboard { height: 100%; width: 17rem; position: fixed; z-index: 1; top: 0; left: 0; background-color: #EEE; overflow-x: hidden; } .scoreboard-box { display: table; margin: 0 auto; } .scoreboard-box .scoreboard-list { list-style: none; text-align: right; padding: 0; } .scoreboard-box .scoreboard-list li { padding: 5px 0; } .button { font-family: 'Marmelad'; font-size: 15px; text-transform: uppercase; font-weight: bold; padding: 10px 20px; color: #FFDE16; background-color: #ED1C24; border: none; border-radius: 30px; cursor: pointer; transition: 0.2s; } .button:hover, .button:disabled { color: #FFE032; background-color: #CC1821; } :disabled { cursor: not-allowed; filter: grayscale(50%); } #game { align-items: center; display: flex; flex-direction: column; height: 100%; justify-content: center; } #table { position: absolute; left: calc(50% - 41.5px); top: calc(50% - 64px); } .player { position: absolute; text-align: center; } .player-name { display: inline-block; margin-right: 20px; } .player.playing .player-name { border: 2px black solid; border-radius: 20px; padding: 5px 10px; } .player-content { width: max-content; } .cards { position: relative; top: 0; justify-content: center; max-width: 60rem; margin: auto; } .card { z-index: 1; position: absolute; height: 128px; width: 83px; min-width: 83px; margin: auto; justify-content: center; align-items: center; } .card .card-img { height: inherit; width: inherit; transition: 0.07s; } .card.playable:hover .card-img { transform: translateY(-30px) scale(1.1); cursor: pointer; } #decks { position: absolute; top: 0; } .discard { margin-left: -50px; } .discard.dragging { border: 2px black dashed; } .deck { margin-left: 50px; } .deck.card.playable:hover .card-img { transform: none; transform: scale(1.1); } .choice { margin-top: 138px; display: inline-block; margin-left: -33%; } .choice .button { margin: 0 2px; } .waiting { width: 60em; margin: auto; text-align: center; } .options { margin: auto; } .rules { width: fit-content; margin: auto; } .rule { display: block; text-align: right; cursor: pointer; } .rule:hover { font-weight: bold; } .players-list { width: 10em; margin: auto; text-align: left; } .description { margin: 10px; padding: 5px; border: 1px black solid; border-radius: 10px; border-style: dashed; } .invite { margin: 20px; } .modal-background { position: fixed; z-index: 1000; padding-top: 100px; left: 0; top: 0; width: 100vw; height: 100vh; overflow: auto; background-color: rgb(0,0,0); background-color: rgba(0,0,0,0.4); } .modal-content { max-width: 80%; max-height: 80%; overflow-y: auto; background-color: #fefefe; margin: auto; padding: 20px; border: 1px solid black; width: 25em; text-align: center; } .changelogs { width: 60em; } .modal-close { color: #bbb; float: right; font-size: 28px; font-weight: bold; } .modal-close:hover { color: black; text-decoration: none; cursor: pointer; } .info { z-index: 2; position: absolute; bottom: 0; margin: 10px; text-align: center; font-size: 14px; } .info.center { left: 50rem; } .info.right { right: 0; } .info.left { left: 0; } .info .link { text-decoration: none; color: black; } .info .link:hover { text-decoration: underline; cursor: pointer; } .changelogs-title { border: 2px solid black; width: fit-content; margin: auto; padding: 8px; } .changelogs-list { list-style-type: square; text-align: left; } .logs-title { font-style: italic; } .log-element { margin: 10px 0; } .changelogs-version-date { font-size: 12px; font-style: italic; font-weight: normal; } .info .language { appearance: none; border: none; background: none; }
0.339171
0.059866
@import url("https://fonts.googleapis.com/css?family=Roboto"); html body { height: 100%; padding-top: 50px; color: #212121; font-family: 'Roboto', sans-serif; font-weight: 300; /* add sorting icons to gridview sort links */ } html body .container-fluid { padding: 0px; margin: 0px; } html body .warp { min-height: 100%; height: auto; margin: 0 auto -60px; padding: 0 0 60px; } html body .warp .container { padding: 70px 15px 20px; } html body .footer { height: 60px; background-color: #f5f5f5; border-top: 1px solid #ddd; padding-top: 20px; } html body .jumbotron { text-align: center; background-color: transparent; } html body .jumbotron .btn { font-size: 21px; padding: 14px 24px; } html body .not-set { color: #c55; font-style: italic; } html body a.asc:after, html body a.desc:after { position: relative; top: 1px; display: inline-block; font-family: 'Glyphicons Halflings'; font-style: normal; font-weight: normal; line-height: 1; padding-left: 5px; } html body a.asc:after { content: "\e151"; } html body a.desc:after { content: "\e152"; } html body .sort-numerical a.asc:after { content: "\e153"; } html body .sort-numerical a.desc:after { content: "\e154"; } html body .sort-ordinal a.asc:after { content: "\e155"; } html body .sort-ordinal a.desc:after { content: "\e156"; } html body .grid-view th { white-space: nowrap; } html body .hint-block { display: block; margin-top: 5px; color: #999; } html body .error-summary { color: #a94442; background: #f5f5f5; border-left: 3px solid #ddd; padding: 10px 20px; margin: 0 0 15px 0; } html body .navbar#navbar { background-color: #512DA8; padding-left: 10px; } html body .navbar li form button.logout { padding: 15px; border: none; } html body .navbar li form button.logout:focus, html body .navbar li form button.logout:hover { text-decoration: none; } html body .navbar li form button.logout:focus { outline: none; } html body .primary-title { color: #FFFFFF; font-size: 36px; } html body .secondary-title { color: #D1C4E9; font-size: 24px; } html body .background { /*background-color: #e5e5e5;*/ background-color: #673AB7; min-height: fill-available; min-height: -webkit-fill-available; } html body .footer { padding-top: 19px; color: #999; border-top: 1px solid #999; margin-top: 15px; } html body a { cursor: pointer; font-weight: bold; } html body a.btn { border-radius: 0px; } html body a.btn.btn-success { background-color: #03A9F4; } html body fieldset { padding: 20px !important; border: 1px solid #ddd !important; } html body fieldset legend { width: auto; border-bottom: 0; margin: 0; font-weight: bold; padding: 5px; /*font-size: 16px;*/ } html body textarea { resize: none; } html body .no-padding { padding: 0px; } html body #tableDocuments span { color: black; } html body div#sidebar.menuV { display: inherit; } html body div#sidebar.menuV ul { list-style: none; padding: 0px; } html body div#sidebar.menuV ul li a.btn-default { background-color: black; display: block; text-align: left; font-weight: bold; color: white; border-color: black; border-radius: 0px; border-bottom: 1px solid #ddd; } html body div#sidebar.menuV ul li a.btn-default:hover { background-color: #97c433; color: black; } html body nav.navbar { margin-bottom: 0px; } html body nav.navbar.navbar-inverse a { color: #FFFFFF; } html body ol.breadcrumb { margin-bottom: 0px; } html body form div.required label.control-label:after { content: " * "; color: red; } html body button.btn { border-radius: 0px; } html body button.btn.btn-success { background-color: #03A9F4; } html body button.btn.btn-primary { background-color: #03A9F4; } html body input.form-control, html body text-area.form-control { border-radius: 0px; background-color: #D1C4E9; color: #757575; } @media (max-width: 767px) { html .nav li > form > button.logout { display: block; text-align: left; width: 100%; padding: 10px 15px; } } /*# sourceMappingURL=styles.css.map */
web/css/styles.css
@import url("https://fonts.googleapis.com/css?family=Roboto"); html body { height: 100%; padding-top: 50px; color: #212121; font-family: 'Roboto', sans-serif; font-weight: 300; /* add sorting icons to gridview sort links */ } html body .container-fluid { padding: 0px; margin: 0px; } html body .warp { min-height: 100%; height: auto; margin: 0 auto -60px; padding: 0 0 60px; } html body .warp .container { padding: 70px 15px 20px; } html body .footer { height: 60px; background-color: #f5f5f5; border-top: 1px solid #ddd; padding-top: 20px; } html body .jumbotron { text-align: center; background-color: transparent; } html body .jumbotron .btn { font-size: 21px; padding: 14px 24px; } html body .not-set { color: #c55; font-style: italic; } html body a.asc:after, html body a.desc:after { position: relative; top: 1px; display: inline-block; font-family: 'Glyphicons Halflings'; font-style: normal; font-weight: normal; line-height: 1; padding-left: 5px; } html body a.asc:after { content: "\e151"; } html body a.desc:after { content: "\e152"; } html body .sort-numerical a.asc:after { content: "\e153"; } html body .sort-numerical a.desc:after { content: "\e154"; } html body .sort-ordinal a.asc:after { content: "\e155"; } html body .sort-ordinal a.desc:after { content: "\e156"; } html body .grid-view th { white-space: nowrap; } html body .hint-block { display: block; margin-top: 5px; color: #999; } html body .error-summary { color: #a94442; background: #f5f5f5; border-left: 3px solid #ddd; padding: 10px 20px; margin: 0 0 15px 0; } html body .navbar#navbar { background-color: #512DA8; padding-left: 10px; } html body .navbar li form button.logout { padding: 15px; border: none; } html body .navbar li form button.logout:focus, html body .navbar li form button.logout:hover { text-decoration: none; } html body .navbar li form button.logout:focus { outline: none; } html body .primary-title { color: #FFFFFF; font-size: 36px; } html body .secondary-title { color: #D1C4E9; font-size: 24px; } html body .background { /*background-color: #e5e5e5;*/ background-color: #673AB7; min-height: fill-available; min-height: -webkit-fill-available; } html body .footer { padding-top: 19px; color: #999; border-top: 1px solid #999; margin-top: 15px; } html body a { cursor: pointer; font-weight: bold; } html body a.btn { border-radius: 0px; } html body a.btn.btn-success { background-color: #03A9F4; } html body fieldset { padding: 20px !important; border: 1px solid #ddd !important; } html body fieldset legend { width: auto; border-bottom: 0; margin: 0; font-weight: bold; padding: 5px; /*font-size: 16px;*/ } html body textarea { resize: none; } html body .no-padding { padding: 0px; } html body #tableDocuments span { color: black; } html body div#sidebar.menuV { display: inherit; } html body div#sidebar.menuV ul { list-style: none; padding: 0px; } html body div#sidebar.menuV ul li a.btn-default { background-color: black; display: block; text-align: left; font-weight: bold; color: white; border-color: black; border-radius: 0px; border-bottom: 1px solid #ddd; } html body div#sidebar.menuV ul li a.btn-default:hover { background-color: #97c433; color: black; } html body nav.navbar { margin-bottom: 0px; } html body nav.navbar.navbar-inverse a { color: #FFFFFF; } html body ol.breadcrumb { margin-bottom: 0px; } html body form div.required label.control-label:after { content: " * "; color: red; } html body button.btn { border-radius: 0px; } html body button.btn.btn-success { background-color: #03A9F4; } html body button.btn.btn-primary { background-color: #03A9F4; } html body input.form-control, html body text-area.form-control { border-radius: 0px; background-color: #D1C4E9; color: #757575; } @media (max-width: 767px) { html .nav li > form > button.logout { display: block; text-align: left; width: 100%; padding: 10px 15px; } } /*# sourceMappingURL=styles.css.map */
0.407569
0.053305
.title-create-new-project { width: 100%; margin: 25px 0 0 0; } .title-create-new-project .title-text { font-family: "poppins-regular"; font-weight: 600; font-size: 24px; color: #2E157E; line-height: 36px; } /*Content*/ .history-inspector-place { margin: 37px 0 0 0; padding: 36px 36px 36px 36px; background-color: #ffffff; width: 100%; height: auto; border-radius: 12px; margin: 20px 0 0 0; display: flex; justify-content: space-between; } .history-inspector-place .line-vertical { opacity: 0.2; border: 1px solid #232323; height: auto; } .history-inspector-place .detail-project { width: 100%; padding-right: 50px; } .history-inspector-place .detail-project .title { font-family: "poppins-regular"; font-weight: 600; font-size: 24px; color: #2E157E; } .history-inspector-place .detail-project .info-detail-project { display: flex; justify-content: space-between; margin-top: 28px; } .history-inspector-place .detail-project .info-detail-project .title-info-detail-project { color: #2E157E; font-size: 16px; font-family: "poppins-regular"; font-weight: 600; flex: 3; } .history-inspector-place .detail-project .info-detail-project .desc-info-detail-project { flex: 3; color: #232323; font-size: 16px; font-family: "poppins-regular"; } .history-inspector-place .detail-inspector { width: 100%; padding-left: 50px; } .history-inspector-place .detail-inspector .title { font-family: "poppins-regular"; font-weight: 600; font-size: 24px; color: #2E157E; } .history-inspector-place .detail-inspector .info-detail-inspector { display: flex; justify-content: space-between; } .history-inspector-place .detail-inspector .info-detail-inspector .name-info-detail-inspector { color: #232323; font-size: 16px; font-family: "poppins-regular"; flex: 4; line-height: 35px; } .history-inspector-place .detail-inspector .info-detail-inspector .status-info-detail-inspector { flex: 3; height: 36px; text-align: center; padding: 6px 20px 6px 20px; font-family: "poppins-medium"; font-weight: bold; } .history-inspector-place .detail-inspector .info-detail-inspector .status-color-info-detail-inspector { background-color: rgba(254, 200, 61, 0.1); color: #FEC83D; } .history-inspector-place .detail-inspector .info-detail-inspector .status-color-info-available-inspector { background-color: rgba(33, 150, 83, 0.1); color: #219653; } .history-inspector-place .detail-inspector .info-detail-inspector .empty-info-detail-inspector { flex: 1; } .history-inspector-place .detail-inspector .btn-cancel{ width: 158px; background-color: #FFFFFF; height: 46px; border: 2px solid #2E157E; color: #2E157E; font-family: "poppins-regular"; font-size: 16px; border-radius: 6px; } .history-inspector-place .detail-inspector .btn-confirm{ width: 158px; background-color: #FB6826; height: 46px; border: none; color: white; font-family: "poppins-regular"; font-size: 16px; border-radius: 6px; } .spacer { padding-top: 3%; }
assets/coordinator/css/view-history-inspector.css
.title-create-new-project { width: 100%; margin: 25px 0 0 0; } .title-create-new-project .title-text { font-family: "poppins-regular"; font-weight: 600; font-size: 24px; color: #2E157E; line-height: 36px; } /*Content*/ .history-inspector-place { margin: 37px 0 0 0; padding: 36px 36px 36px 36px; background-color: #ffffff; width: 100%; height: auto; border-radius: 12px; margin: 20px 0 0 0; display: flex; justify-content: space-between; } .history-inspector-place .line-vertical { opacity: 0.2; border: 1px solid #232323; height: auto; } .history-inspector-place .detail-project { width: 100%; padding-right: 50px; } .history-inspector-place .detail-project .title { font-family: "poppins-regular"; font-weight: 600; font-size: 24px; color: #2E157E; } .history-inspector-place .detail-project .info-detail-project { display: flex; justify-content: space-between; margin-top: 28px; } .history-inspector-place .detail-project .info-detail-project .title-info-detail-project { color: #2E157E; font-size: 16px; font-family: "poppins-regular"; font-weight: 600; flex: 3; } .history-inspector-place .detail-project .info-detail-project .desc-info-detail-project { flex: 3; color: #232323; font-size: 16px; font-family: "poppins-regular"; } .history-inspector-place .detail-inspector { width: 100%; padding-left: 50px; } .history-inspector-place .detail-inspector .title { font-family: "poppins-regular"; font-weight: 600; font-size: 24px; color: #2E157E; } .history-inspector-place .detail-inspector .info-detail-inspector { display: flex; justify-content: space-between; } .history-inspector-place .detail-inspector .info-detail-inspector .name-info-detail-inspector { color: #232323; font-size: 16px; font-family: "poppins-regular"; flex: 4; line-height: 35px; } .history-inspector-place .detail-inspector .info-detail-inspector .status-info-detail-inspector { flex: 3; height: 36px; text-align: center; padding: 6px 20px 6px 20px; font-family: "poppins-medium"; font-weight: bold; } .history-inspector-place .detail-inspector .info-detail-inspector .status-color-info-detail-inspector { background-color: rgba(254, 200, 61, 0.1); color: #FEC83D; } .history-inspector-place .detail-inspector .info-detail-inspector .status-color-info-available-inspector { background-color: rgba(33, 150, 83, 0.1); color: #219653; } .history-inspector-place .detail-inspector .info-detail-inspector .empty-info-detail-inspector { flex: 1; } .history-inspector-place .detail-inspector .btn-cancel{ width: 158px; background-color: #FFFFFF; height: 46px; border: 2px solid #2E157E; color: #2E157E; font-family: "poppins-regular"; font-size: 16px; border-radius: 6px; } .history-inspector-place .detail-inspector .btn-confirm{ width: 158px; background-color: #FB6826; height: 46px; border: none; color: white; font-family: "poppins-regular"; font-size: 16px; border-radius: 6px; } .spacer { padding-top: 3%; }
0.346873
0.045927
.top-sec { background: linear-gradient(to right, rgb(255, 255, 255), rgb(255, 255, 255)); padding: 50px 0; } .top-sec .mr-3 { width: 140px; height: 140px; object-fit: cover; background-position: center; border-radius: 5px; border: 5px solid #e0e0e0; position: absolute; left: 0; right: 0; margin: auto !important; display: block; top: -70px; } .top-sec .name-1 { font-family: Poppins; font-size: 18px; font-weight: 500; line-height: 27px; margin: 0 0 0 0; color: #fff; } .top-sec .name-2 { color: #fff; font-family: Poppins; font-size: 14px; font-weight: 400; line-height: 20px; margin: 0 0 0 0; } .top-sec .Premium { font-family: Poppins; font-size: 18px; font-weight: 500; line-height: 27px; margin: 0 0 0 0; text-align: right; color: #fff; } .top-sec .Premium-1 { color: #fff; font-family: Poppins; font-size: 14px; font-weight: 400; line-height: 20px; margin: 0 0 0 0; text-align: right; } .top-sec .media { display: flex; align-items: center; } .top-sec .main-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; border-radius: 6px; background: #9b2069; /* box-shadow: 0px 20px 30px rgb(77 90 115 / 25%); */ padding: 80px 30px 30px 30px; max-width: 600px; margin: auto !important; position: relative; margin-top: 100px !important; margin-bottom: 40px !important; } .top-sec .container { max-width: 100%; } .dummy-bk { border-radius: 6px; background: #ffffff; /* box-shadow: 0px 20px 30px rgb(77 90 115 / 25%); */ padding: 40px 30px; margin: 30px 0 0 0; } .under-tabs .nav.nav-tabs button { background: transparent; border: none; margin: 0 15px 0 0; border-radius: 6px !important; color: #000; font-family: Poppins; font-size: 15px; font-weight: 500; line-height: 27px; } /* .under-tabs .nav.nav-tabs button:hover,.under-tabs .nav.nav-tabs button.active{ background: #9b2069; color: #fff; } */ .under-tabs .nav.nav-tabs { border: none; } .under-common { background: #ffffff; margin: 30px 0 0 0; border-radius: 6px; /* box-shadow: 0px 20px 30px rgb(77 90 115 / 25%); */ /* padding: 30px;*/ } .data-ul { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; max-width: 100%; justify-content: space-between; } .d-flex.justify-content-between.align-items-center.mb-4 { margin-top: 30px; margin-bottom: 15px !important; } .data-ul li p { font-family: Poppins; font-size: 16px; font-weight: 600; line-height: 27px; margin: 0 0 0 0; font-style: italic; } .data-ul li p span { font-weight: normal; font-style: normal; font-size: 14px; } .d-flex.justify-content-between.align-items-center.mb-4 p { color: #000 !important; } .data-ul li { width: 48%; display: flex; align-items: center; justify-content: space-between; padding-right: 0px; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #9b2069; } .same-input { height: 50px; background: #f4f4f4; font-family: Poppins,sans-serif; font-size: 14px; font-weight: 600; line-height: 50px; padding: 0 10px; border: none; color: #000; width: 100%; border-radius: 6px; } .common-input { margin: 0 0 15px 0; } .same-input::placeholder { color: #000; opacity: 1; } .same-input:-ms-input-placeholder { color: #000; } .same-input::-ms-input-placeholder { color: #000; } .radio-custom { margin: 0; padding: 0; list-style: none; display: flex; align-items: center; } .radio-custom li { margin: 0 15px 0 0; } .radio-custom li p { font-size: 16px; font-weight: 600; border: none; color: #000; margin: 0 0 0 0; } .radio-custom li label { font-size: 16px; font-weight: 600; border: none; color: #000; margin: 0 0 0 6px; } .radio-custom li input { position: relative; top: 2px; } .all-button { border: none; margin: 0 15px 0 0; border-radius: 6px !important; font-family: Poppins; font-size: 15px; font-weight: 500; line-height: 27px; background: #9b2069 !important; color: #fff !important; width: 100%; height: 50px; } .sm-btn { border: none; margin: 0 15px 0 0; border-radius: 6px !important; font-family: Poppins !important; font-size: 15px; font-weight: 500; line-height: 27px; background: #9b2069 !important; color: #fff !important; height: 50px; } .same-input:focus, .same-input:hover{ box-shadow: rgb(155 32 105) 0px 0px 0px 0.2rem; outline: none; } .same-label{ font-size: 18px; font-weight: 800; } .bt{ transition: transform .5s; -webkit-transition: transform .5s; -moz-transition: transform .5s; -ms-transition: transform .5s; -o-transition: transform .5s; } .bt:hover { transform: scale(1.1); -webkit-transform: scale(1.01); -moz-transform: scale(1.01); -ms-transform: scale(1.01); -o-transform: scale(1.01); } .main-nav { justify-content: right; } .my-all-img { padding:15px; box-shadow: 0px 20px 30px rgb(77 90 115 / 25%); } .upload-img { position: relative; right: 32px; top:5px } .attachImg{ position: absolute !important; left: 8px; } .clear-img{ position: absolute; left: 33px; width: 20px !important; top: 0px; } .attach__image{ margin-left: auto !important; } .my-pic-section { margin-top: 10px; } .icon-btn { border: none; margin: 0 15px 0 0; border-radius: 6px !important; font-family: Poppins; background: #9b2069 !important; color: #fff; width: 100%; height: 35px; cursor: pointer; } .main-nav-link { font-size: 15px; margin-right: 10px; color: #9b2069 !important; font-family: 'Poppins'; font-weight: 500; cursor: pointer; } .main-nav-link:hover { font-size: 15px; margin-right: 10px; color: #9b2069 !important; font-family: 'Poppins'; font-weight: 500; padding: 10px; background-color: #e9c0e8 !important; border-radius: 6px; border:none } .upload-ul { display: inline-flex; width: 100%; justify-content: center; background-color: #f8f8f8; padding: 20px; border-radius: 11px; box-shadow: cornsilk; cursor: pointer; box-shadow: 0px 20px 30px rgb(77 90 115 / 25%); } .blk-rpt { display: flex; flex-wrap: wrap; justify-content: center; } .upload-ul li { margin-right: 10px; } .upload-plus { width: 50px; height: 50px; } .upload-text{ font-size: 32px; font-family: 'Poppins'; font-weight: 800; } .image-actions { display: flex; width: 100%; justify-content: space-between; margin: 10px 0 0px 0px; height: 25px; } svg.main-action { width: 30px; height: 30px; color: #9b2069; cursor: pointer; } .countrySelect { margin-top: 10px; } .countrySelect ul{ width: 130px; } .goog-te-gadget span { display: none; } .goog-te-combo { height: 50px; background: #f4f4f4; font-family: Poppins,sans-serif; font-size: 14px; font-weight: 600; line-height: 50px; padding: 0 10px; border: none; color: #000; width: 100%; border-radius: 6px; } .skiptranslate.goog-te-gadget:nth-child(2) { background: red !important; } .skiptranslate.goog-te-gadget { font-size: 0; } select.goog-te-combo { background: #9b2069; height: 30px; color: #fff; max-width: 140px; font-size: 12px; } ul.navbar-nav.w-100.me-auto.mb-2.mb-lg-0.main-nav { display: flex; justify-content: center; position: relative; padding-right: 50px; } ul.navbar-nav.w-100.me-auto.mb-2.mb-lg-0.main-nav li:last-child { position: absolute; right: 0; top: 50%; transform: translateY(-50%); display: flex; align-items: center; } ul.navbar-nav.w-100.me-auto.mb-2.mb-lg-0.main-nav li a { font-family: Poppins; font-size: 18px; font-weight: 500; margin: 0 0 0 0; padding: 0 20px; line-height: 70px; position: relative; display: block; } .icon-btn { height: 25px !important; } nav.navbar-light.navbar.navbar-expand-lg { padding-top: 0; padding-bottom: 0; } ul.navbar-nav.w-100.me-auto.mb-2.mb-lg-0.main-nav li a:after { content: ""; position: absolute; left: 0; bottom: 0px; width: 0; height: 5px; background: #9b2069 ; transition: all .7s; } ul.navbar-nav.w-100.me-auto.mb-2.mb-lg-0.main-nav li a:hover:after { width: 100%; } a.nav-link.main-nav-link { padding: 0 !important; margin: 0 !important; } a.nav-link.main-nav-link:hover { background: transparent !important; } img.w-100.rounded-3 { width: 100%; object-fit: cover; background-position: center; } .data-ul li span { font-family: Poppins; } .under-tabs .nav.nav-tabs button{ position: relative; } .under-tabs .nav.nav-tabs button:after{ content: ""; position: absolute; left: 0; bottom: 0px; width: 0; height: 5px; background: #9b2069 ; transition: all .7s; } .under-tabs .nav.nav-tabs button:hover:after,.under-tabs .nav.nav-tabs button.active:after { width: 100%; } .under-tabs .nav.nav-tabs button:focus{ outline: none; } .lead.fw-normal.mb-0.name-1 p.lead.fw-normal.mb-0.name-1 { text-align: center !important; display: block; } .lead.fw-normal.mb-0.name-1 { margin-bottom: 25px !important; font-size: 25px; text-align: center; display: block; width: 100%; position: relative; margin-top: 15px; font-weight: bold; } .d-flex.justify-content-between.align-items-center.mb-4 { text-align: center; align-items: center; justify-content: center; width: 100%; } .lead.fw-normal.mb-0.name-1:after { position: absolute; left: 0; right: 0; margin: auto; background: #9b2069; height: 5px; width: 80px; content: ""; bottom: -17px; } .upload-ul li { margin: 0 !important; } .upload-ul li p { color: #fff !important; margin: 0 0 0 11px !important; } .upload-ul li svg { fill: #fff; position: relative; bottom: 2px; } .upload-ul { margin-top: 15px; background: #9b2069; } .rpeat-div { border-radius: 6px; background: #ffffff; padding: 0; width: 48%; margin: 0px 0 30px 0; } .dummy-size { display: flex; max-width: 800px; margin: auto; padding: 45px 30px; flex-wrap: wrap; justify-content: space-between; } .MuiPaper-root.MuiPaper-elevation.MuiPaper-rounded { display: flex; align-items: center; padding: 20px 20px; margin: 10px; } .MuiCardContent-root.css-z8i4pe-MuiCardContent-root h2 { font-family: Poppins; font-size: 16px; font-weight: 600; line-height: 27px; margin: 0 0 0 0; } .MuiCardContent-root.css-z8i4pe-MuiCardContent-root p { font-family: Poppins; font-size: 16px; line-height: 27px; margin: 0 0 0 0; } .MuiCardContent-root.css-z8i4pe-MuiCardContent-root { padding: 0; margin: 0; } img.MuiCardMedia-root.MuiCardMedia-media.MuiCardMedia-img.css-1wtekwd-MuiCardMedia-root { width: 60px; height: 60px; border-radius: 60px; object-fit: cover; background-position: center; } .MuiBox-root.css-j7qwjs { margin-left: 15px; } .MuiCardContent-root.css-z8i4pe-MuiCardContent-root { padding: 0 !important; margin: 0 !important; } svg.icon-btn { width: 40px; height: 29px !important; } .same-input .react-date-picker__wrapper { border: none !important; } .cu-checkbox { margin-top: 45px; } .plan-card-btn { margin-top: 45px; } .plan-card-title .plan-card-price { margin: 15px 0px 15px 0px !important; } .plan-card-icon{ color: #9b2069 !important; font-size: 24px; } .plan-card-item-text{ font-family: Poppins !important; } .plan-title { text-align: center; width: 100%; margin: 80px 0px 50px 0px; font-weight: 800; } .plan-card { margin-bottom: 50px; } .css-79elbk { min-height: 100%; } .CardNumberField-input-wrapper{ margin: 0 0 15px 0 !important; } .coupon-code{ margin-top: 20px; } .blocked-test { text-align: center; color: #9b2069; font-family: 'Poppins'; font-size: 18px; font-weight: 700; } .btn-primary{ background-color: #9b2069 !important; } .btn-primary:not([disabled]):not(.disabled):active, .btn-primary:not([disabled]):not(.disabled).active, .show>.btn-primary.dropdown-toggle { background-color: #9b2069 !important; } .blocked-user { color: #9b2069; } .report-user { margin-top: 10px !important; font-size: 18px !important; font-weight: 800 !important; cursor: pointer !important; } .text-center{ text-align: center; } @media(max-width: 1024px){ .data-ul li {width: 50%;} } @media(max-width: 991px){ ul.navbar-nav.w-100.me-auto.mb-2.mb-lg-0.main-nav li a { line-height: 50px; display: inline-block; } ul.navbar-nav.w-100.me-auto.mb-2.mb-lg-0.main-nav { margin-top: 20px; margin-bottom: 20px !important; } ul.navbar-nav.w-100.me-auto.mb-2.mb-lg-0.main-nav li:last-child { position: static; max-width: 40px; margin-top: 30px; margin-left: 20px; } .collapse.navbar-collapse { margin-bottom: 20px; } .under-common { margin: 15px 0 0 0; } .rpeat-div { width: 100%; } } @media(max-width: 767px){ .dummy-bk { padding: 20px 0px; } /* .top-sec .mr-3 {width: 70px;height: 70px;} */ .main-right {margin: 20px 0 0 0;} .main-right {text-align: left;} .data-ul li {width: 100%;} .under-common {padding: 20px 0px;padding-bottom: 0;} /* .top-sec .main-top {padding: 20px 15px;} */ .under-tabs{padding: 0;} .data-ul li p {font-size: 14px;} .data-ul li span { font-size: 14px; } }
src/Main.css
.top-sec { background: linear-gradient(to right, rgb(255, 255, 255), rgb(255, 255, 255)); padding: 50px 0; } .top-sec .mr-3 { width: 140px; height: 140px; object-fit: cover; background-position: center; border-radius: 5px; border: 5px solid #e0e0e0; position: absolute; left: 0; right: 0; margin: auto !important; display: block; top: -70px; } .top-sec .name-1 { font-family: Poppins; font-size: 18px; font-weight: 500; line-height: 27px; margin: 0 0 0 0; color: #fff; } .top-sec .name-2 { color: #fff; font-family: Poppins; font-size: 14px; font-weight: 400; line-height: 20px; margin: 0 0 0 0; } .top-sec .Premium { font-family: Poppins; font-size: 18px; font-weight: 500; line-height: 27px; margin: 0 0 0 0; text-align: right; color: #fff; } .top-sec .Premium-1 { color: #fff; font-family: Poppins; font-size: 14px; font-weight: 400; line-height: 20px; margin: 0 0 0 0; text-align: right; } .top-sec .media { display: flex; align-items: center; } .top-sec .main-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; border-radius: 6px; background: #9b2069; /* box-shadow: 0px 20px 30px rgb(77 90 115 / 25%); */ padding: 80px 30px 30px 30px; max-width: 600px; margin: auto !important; position: relative; margin-top: 100px !important; margin-bottom: 40px !important; } .top-sec .container { max-width: 100%; } .dummy-bk { border-radius: 6px; background: #ffffff; /* box-shadow: 0px 20px 30px rgb(77 90 115 / 25%); */ padding: 40px 30px; margin: 30px 0 0 0; } .under-tabs .nav.nav-tabs button { background: transparent; border: none; margin: 0 15px 0 0; border-radius: 6px !important; color: #000; font-family: Poppins; font-size: 15px; font-weight: 500; line-height: 27px; } /* .under-tabs .nav.nav-tabs button:hover,.under-tabs .nav.nav-tabs button.active{ background: #9b2069; color: #fff; } */ .under-tabs .nav.nav-tabs { border: none; } .under-common { background: #ffffff; margin: 30px 0 0 0; border-radius: 6px; /* box-shadow: 0px 20px 30px rgb(77 90 115 / 25%); */ /* padding: 30px;*/ } .data-ul { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; max-width: 100%; justify-content: space-between; } .d-flex.justify-content-between.align-items-center.mb-4 { margin-top: 30px; margin-bottom: 15px !important; } .data-ul li p { font-family: Poppins; font-size: 16px; font-weight: 600; line-height: 27px; margin: 0 0 0 0; font-style: italic; } .data-ul li p span { font-weight: normal; font-style: normal; font-size: 14px; } .d-flex.justify-content-between.align-items-center.mb-4 p { color: #000 !important; } .data-ul li { width: 48%; display: flex; align-items: center; justify-content: space-between; padding-right: 0px; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #9b2069; } .same-input { height: 50px; background: #f4f4f4; font-family: Poppins,sans-serif; font-size: 14px; font-weight: 600; line-height: 50px; padding: 0 10px; border: none; color: #000; width: 100%; border-radius: 6px; } .common-input { margin: 0 0 15px 0; } .same-input::placeholder { color: #000; opacity: 1; } .same-input:-ms-input-placeholder { color: #000; } .same-input::-ms-input-placeholder { color: #000; } .radio-custom { margin: 0; padding: 0; list-style: none; display: flex; align-items: center; } .radio-custom li { margin: 0 15px 0 0; } .radio-custom li p { font-size: 16px; font-weight: 600; border: none; color: #000; margin: 0 0 0 0; } .radio-custom li label { font-size: 16px; font-weight: 600; border: none; color: #000; margin: 0 0 0 6px; } .radio-custom li input { position: relative; top: 2px; } .all-button { border: none; margin: 0 15px 0 0; border-radius: 6px !important; font-family: Poppins; font-size: 15px; font-weight: 500; line-height: 27px; background: #9b2069 !important; color: #fff !important; width: 100%; height: 50px; } .sm-btn { border: none; margin: 0 15px 0 0; border-radius: 6px !important; font-family: Poppins !important; font-size: 15px; font-weight: 500; line-height: 27px; background: #9b2069 !important; color: #fff !important; height: 50px; } .same-input:focus, .same-input:hover{ box-shadow: rgb(155 32 105) 0px 0px 0px 0.2rem; outline: none; } .same-label{ font-size: 18px; font-weight: 800; } .bt{ transition: transform .5s; -webkit-transition: transform .5s; -moz-transition: transform .5s; -ms-transition: transform .5s; -o-transition: transform .5s; } .bt:hover { transform: scale(1.1); -webkit-transform: scale(1.01); -moz-transform: scale(1.01); -ms-transform: scale(1.01); -o-transform: scale(1.01); } .main-nav { justify-content: right; } .my-all-img { padding:15px; box-shadow: 0px 20px 30px rgb(77 90 115 / 25%); } .upload-img { position: relative; right: 32px; top:5px } .attachImg{ position: absolute !important; left: 8px; } .clear-img{ position: absolute; left: 33px; width: 20px !important; top: 0px; } .attach__image{ margin-left: auto !important; } .my-pic-section { margin-top: 10px; } .icon-btn { border: none; margin: 0 15px 0 0; border-radius: 6px !important; font-family: Poppins; background: #9b2069 !important; color: #fff; width: 100%; height: 35px; cursor: pointer; } .main-nav-link { font-size: 15px; margin-right: 10px; color: #9b2069 !important; font-family: 'Poppins'; font-weight: 500; cursor: pointer; } .main-nav-link:hover { font-size: 15px; margin-right: 10px; color: #9b2069 !important; font-family: 'Poppins'; font-weight: 500; padding: 10px; background-color: #e9c0e8 !important; border-radius: 6px; border:none } .upload-ul { display: inline-flex; width: 100%; justify-content: center; background-color: #f8f8f8; padding: 20px; border-radius: 11px; box-shadow: cornsilk; cursor: pointer; box-shadow: 0px 20px 30px rgb(77 90 115 / 25%); } .blk-rpt { display: flex; flex-wrap: wrap; justify-content: center; } .upload-ul li { margin-right: 10px; } .upload-plus { width: 50px; height: 50px; } .upload-text{ font-size: 32px; font-family: 'Poppins'; font-weight: 800; } .image-actions { display: flex; width: 100%; justify-content: space-between; margin: 10px 0 0px 0px; height: 25px; } svg.main-action { width: 30px; height: 30px; color: #9b2069; cursor: pointer; } .countrySelect { margin-top: 10px; } .countrySelect ul{ width: 130px; } .goog-te-gadget span { display: none; } .goog-te-combo { height: 50px; background: #f4f4f4; font-family: Poppins,sans-serif; font-size: 14px; font-weight: 600; line-height: 50px; padding: 0 10px; border: none; color: #000; width: 100%; border-radius: 6px; } .skiptranslate.goog-te-gadget:nth-child(2) { background: red !important; } .skiptranslate.goog-te-gadget { font-size: 0; } select.goog-te-combo { background: #9b2069; height: 30px; color: #fff; max-width: 140px; font-size: 12px; } ul.navbar-nav.w-100.me-auto.mb-2.mb-lg-0.main-nav { display: flex; justify-content: center; position: relative; padding-right: 50px; } ul.navbar-nav.w-100.me-auto.mb-2.mb-lg-0.main-nav li:last-child { position: absolute; right: 0; top: 50%; transform: translateY(-50%); display: flex; align-items: center; } ul.navbar-nav.w-100.me-auto.mb-2.mb-lg-0.main-nav li a { font-family: Poppins; font-size: 18px; font-weight: 500; margin: 0 0 0 0; padding: 0 20px; line-height: 70px; position: relative; display: block; } .icon-btn { height: 25px !important; } nav.navbar-light.navbar.navbar-expand-lg { padding-top: 0; padding-bottom: 0; } ul.navbar-nav.w-100.me-auto.mb-2.mb-lg-0.main-nav li a:after { content: ""; position: absolute; left: 0; bottom: 0px; width: 0; height: 5px; background: #9b2069 ; transition: all .7s; } ul.navbar-nav.w-100.me-auto.mb-2.mb-lg-0.main-nav li a:hover:after { width: 100%; } a.nav-link.main-nav-link { padding: 0 !important; margin: 0 !important; } a.nav-link.main-nav-link:hover { background: transparent !important; } img.w-100.rounded-3 { width: 100%; object-fit: cover; background-position: center; } .data-ul li span { font-family: Poppins; } .under-tabs .nav.nav-tabs button{ position: relative; } .under-tabs .nav.nav-tabs button:after{ content: ""; position: absolute; left: 0; bottom: 0px; width: 0; height: 5px; background: #9b2069 ; transition: all .7s; } .under-tabs .nav.nav-tabs button:hover:after,.under-tabs .nav.nav-tabs button.active:after { width: 100%; } .under-tabs .nav.nav-tabs button:focus{ outline: none; } .lead.fw-normal.mb-0.name-1 p.lead.fw-normal.mb-0.name-1 { text-align: center !important; display: block; } .lead.fw-normal.mb-0.name-1 { margin-bottom: 25px !important; font-size: 25px; text-align: center; display: block; width: 100%; position: relative; margin-top: 15px; font-weight: bold; } .d-flex.justify-content-between.align-items-center.mb-4 { text-align: center; align-items: center; justify-content: center; width: 100%; } .lead.fw-normal.mb-0.name-1:after { position: absolute; left: 0; right: 0; margin: auto; background: #9b2069; height: 5px; width: 80px; content: ""; bottom: -17px; } .upload-ul li { margin: 0 !important; } .upload-ul li p { color: #fff !important; margin: 0 0 0 11px !important; } .upload-ul li svg { fill: #fff; position: relative; bottom: 2px; } .upload-ul { margin-top: 15px; background: #9b2069; } .rpeat-div { border-radius: 6px; background: #ffffff; padding: 0; width: 48%; margin: 0px 0 30px 0; } .dummy-size { display: flex; max-width: 800px; margin: auto; padding: 45px 30px; flex-wrap: wrap; justify-content: space-between; } .MuiPaper-root.MuiPaper-elevation.MuiPaper-rounded { display: flex; align-items: center; padding: 20px 20px; margin: 10px; } .MuiCardContent-root.css-z8i4pe-MuiCardContent-root h2 { font-family: Poppins; font-size: 16px; font-weight: 600; line-height: 27px; margin: 0 0 0 0; } .MuiCardContent-root.css-z8i4pe-MuiCardContent-root p { font-family: Poppins; font-size: 16px; line-height: 27px; margin: 0 0 0 0; } .MuiCardContent-root.css-z8i4pe-MuiCardContent-root { padding: 0; margin: 0; } img.MuiCardMedia-root.MuiCardMedia-media.MuiCardMedia-img.css-1wtekwd-MuiCardMedia-root { width: 60px; height: 60px; border-radius: 60px; object-fit: cover; background-position: center; } .MuiBox-root.css-j7qwjs { margin-left: 15px; } .MuiCardContent-root.css-z8i4pe-MuiCardContent-root { padding: 0 !important; margin: 0 !important; } svg.icon-btn { width: 40px; height: 29px !important; } .same-input .react-date-picker__wrapper { border: none !important; } .cu-checkbox { margin-top: 45px; } .plan-card-btn { margin-top: 45px; } .plan-card-title .plan-card-price { margin: 15px 0px 15px 0px !important; } .plan-card-icon{ color: #9b2069 !important; font-size: 24px; } .plan-card-item-text{ font-family: Poppins !important; } .plan-title { text-align: center; width: 100%; margin: 80px 0px 50px 0px; font-weight: 800; } .plan-card { margin-bottom: 50px; } .css-79elbk { min-height: 100%; } .CardNumberField-input-wrapper{ margin: 0 0 15px 0 !important; } .coupon-code{ margin-top: 20px; } .blocked-test { text-align: center; color: #9b2069; font-family: 'Poppins'; font-size: 18px; font-weight: 700; } .btn-primary{ background-color: #9b2069 !important; } .btn-primary:not([disabled]):not(.disabled):active, .btn-primary:not([disabled]):not(.disabled).active, .show>.btn-primary.dropdown-toggle { background-color: #9b2069 !important; } .blocked-user { color: #9b2069; } .report-user { margin-top: 10px !important; font-size: 18px !important; font-weight: 800 !important; cursor: pointer !important; } .text-center{ text-align: center; } @media(max-width: 1024px){ .data-ul li {width: 50%;} } @media(max-width: 991px){ ul.navbar-nav.w-100.me-auto.mb-2.mb-lg-0.main-nav li a { line-height: 50px; display: inline-block; } ul.navbar-nav.w-100.me-auto.mb-2.mb-lg-0.main-nav { margin-top: 20px; margin-bottom: 20px !important; } ul.navbar-nav.w-100.me-auto.mb-2.mb-lg-0.main-nav li:last-child { position: static; max-width: 40px; margin-top: 30px; margin-left: 20px; } .collapse.navbar-collapse { margin-bottom: 20px; } .under-common { margin: 15px 0 0 0; } .rpeat-div { width: 100%; } } @media(max-width: 767px){ .dummy-bk { padding: 20px 0px; } /* .top-sec .mr-3 {width: 70px;height: 70px;} */ .main-right {margin: 20px 0 0 0;} .main-right {text-align: left;} .data-ul li {width: 100%;} .under-common {padding: 20px 0px;padding-bottom: 0;} /* .top-sec .main-top {padding: 20px 15px;} */ .under-tabs{padding: 0;} .data-ul li p {font-size: 14px;} .data-ul li span { font-size: 14px; } }
0.505127
0.114146
*{margin:0;padding:0;} #markdown-container{ width: 748px; margin:10px auto 10% auto; background-color: #F8F8F8; border:1px solid #ccc; box-shadow:0 0 10px #999; padding:2em; line-height:1.4em; font:13.34px helvetica,arial,freesans,clean,sans-serif; color:black; } #markdown-container table{ font:13.34px helvetica,arial,freesans,clean,sans-serif; color:black; } p { margin:1em 0; line-height:1.5em; } input[type=text],input[type=password],input[type=image],textarea{font:99% helvetica,arial,freesans,sans-serif;} select,option{padding:0 .25em;} optgroup{margin-top:.5em;} img{border:0;max-width:100%;} abbr{border-bottom:none;} a{color:#4183c4;text-decoration:none;} a:hover{text-decoration:underline;} a code,a:link code,a:visited code{color:#4183c4;} h2,h3{margin:1em 0;} h1,h2,h3,h4,h5,h6{border:0;} h1{font-size:170%;border-bottom:4px solid #aaa;padding-bottom:.5em;margin-top:1.5em;} h1:first-child{margin-top:0;padding-top:.25em;border-top:none;} h2{font-size:150%;margin-top:1.5em;border-bottom:4px solid #e0e0e0;padding-bottom:.5em;} h3{margin-top:1em;} hr{border:1px solid #ddd;} ul{margin:1em 0 1em 2em;} ol{margin:1em 0 1em 2em;} ul li,ol li{margin-top:.5em;margin-bottom:.5em;} ul ul,ul ol,ol ol,ol ul{margin-top:0;margin-bottom:0;} blockquote{margin:1em 0;border-left:5px solid #ddd;padding-left:.6em;color:#555;} dt{font-weight:bold;margin-left:1em;} dd{margin-left:2em;margin-bottom:1em;} #markdown-outline{ display:none; position:fixed; top:10px; left:-999px; border:1px solid #ccc; box-shadow:5px 5px 2px #ccc; padding: 5px 10px; background-color: #fff; overflow-y: auto; } #markdown-outline ul{ margin:5px 0 5px 0; padding-left:30px; font-size:12px; border-left:1px dotted #ccc; } #markdown-outline ul:first-child{ border:none; } #markdown-outline li{ list-style-type:decimal; margin:3px 0; } #markdown-backTop{ position: fixed; right:5px; bottom:5px; padding:5px; width:50px; height:20px; background:url(../images/mdreader_backTop.gif) no-repeat 5px 5px #fff; border:1px solid #ccc; cursor:pointer; } /*table style*/ table { border-collapse:collapse !important; } table th, table td{ border:1px solid #ddd !important; padding: 5px; line-height: 1.5; vertical-align: top; border-top: 1px solid #dddddd; } table th{ background: #EEE; } table p{ margin: 0; }
stylesheets/markdownreader_bare.css
*{margin:0;padding:0;} #markdown-container{ width: 748px; margin:10px auto 10% auto; background-color: #F8F8F8; border:1px solid #ccc; box-shadow:0 0 10px #999; padding:2em; line-height:1.4em; font:13.34px helvetica,arial,freesans,clean,sans-serif; color:black; } #markdown-container table{ font:13.34px helvetica,arial,freesans,clean,sans-serif; color:black; } p { margin:1em 0; line-height:1.5em; } input[type=text],input[type=password],input[type=image],textarea{font:99% helvetica,arial,freesans,sans-serif;} select,option{padding:0 .25em;} optgroup{margin-top:.5em;} img{border:0;max-width:100%;} abbr{border-bottom:none;} a{color:#4183c4;text-decoration:none;} a:hover{text-decoration:underline;} a code,a:link code,a:visited code{color:#4183c4;} h2,h3{margin:1em 0;} h1,h2,h3,h4,h5,h6{border:0;} h1{font-size:170%;border-bottom:4px solid #aaa;padding-bottom:.5em;margin-top:1.5em;} h1:first-child{margin-top:0;padding-top:.25em;border-top:none;} h2{font-size:150%;margin-top:1.5em;border-bottom:4px solid #e0e0e0;padding-bottom:.5em;} h3{margin-top:1em;} hr{border:1px solid #ddd;} ul{margin:1em 0 1em 2em;} ol{margin:1em 0 1em 2em;} ul li,ol li{margin-top:.5em;margin-bottom:.5em;} ul ul,ul ol,ol ol,ol ul{margin-top:0;margin-bottom:0;} blockquote{margin:1em 0;border-left:5px solid #ddd;padding-left:.6em;color:#555;} dt{font-weight:bold;margin-left:1em;} dd{margin-left:2em;margin-bottom:1em;} #markdown-outline{ display:none; position:fixed; top:10px; left:-999px; border:1px solid #ccc; box-shadow:5px 5px 2px #ccc; padding: 5px 10px; background-color: #fff; overflow-y: auto; } #markdown-outline ul{ margin:5px 0 5px 0; padding-left:30px; font-size:12px; border-left:1px dotted #ccc; } #markdown-outline ul:first-child{ border:none; } #markdown-outline li{ list-style-type:decimal; margin:3px 0; } #markdown-backTop{ position: fixed; right:5px; bottom:5px; padding:5px; width:50px; height:20px; background:url(../images/mdreader_backTop.gif) no-repeat 5px 5px #fff; border:1px solid #ccc; cursor:pointer; } /*table style*/ table { border-collapse:collapse !important; } table th, table td{ border:1px solid #ddd !important; padding: 5px; line-height: 1.5; vertical-align: top; border-top: 1px solid #dddddd; } table th{ background: #EEE; } table p{ margin: 0; }
0.351979
0.0809
.thumbnailCarousel .carousel-control { width: 4% !important; background-image: none !important; } .thumbnailCarousel .carousel-control.left { margin-left: 15px !important; } .thumbnailCarousel .carousel-control.right { margin-right: 15px !important; } @media all and (max-width: 767px){ .thumbnailCarousel .cloneditem-1, .thumbnailCarousel .cloneditem-2, .thumbnailCarousel .cloneditem-3 { display: none !important; } } @media all and (min-width: 768px) { .thumbnailCarousel .carousel-inner > .active.left, .thumbnailCarousel .carousel-inner > .prev { left: -100% !important; } .thumbnailCarousel .carousel-inner > .active.right, .thumbnailCarousel .carousel-inner > .next { left: 100% !important; } .thumbnailCarousel .carousel-inner > .left, .thumbnailCarousel .carousel-inner > .prev.right, .thumbnailCarousel .carousel-inner > .active { left: 0 !important; } .thumbnailCarousel .carousel-inner .cloneditem-1 { display: block !important; } } @media all and (min-width: 768px) and (transform-3d), all and (min-width: 768px) and (-webkit-transform-3d) { .thumbnailCarousel .carousel-inner > .item.active.right, .thumbnailCarousel .carousel-inner > .item.next { -webkit-transform: translate3d(100%, 0, 0) !important; transform: translate3d(100%, 0, 0) !important; left: 0 !important; } .thumbnailCarousel .carousel-inner > .item.active.left, .thumbnailCarousel .carousel-inner > .item.prev { -webkit-transform: translate3d(-100%, 0, 0) !important; transform: translate3d(-100%, 0, 0) !important; left: 0 !important; } .thumbnailCarousel .carousel-inner > .item.left, .thumbnailCarousel .carousel-inner > .item.prev.right, .thumbnailCarousel .carousel-inner > .item.active { -webkit-transform: translate3d(0, 0, 0) !important; transform: translate3d(0, 0, 0) !important; left: 0 !important; } } @media all and (min-width: 992px) { .thumbnailCarousel .carousel-inner > .active.left, .thumbnailCarousel .carousel-inner > .prev { left: -100% !important; } .thumbnailCarousel .carousel-inner > .active.right, .thumbnailCarousel .carousel-inner > .next { left: 100% !important; } .thumbnailCarousel .carousel-inner > .left, .thumbnailCarousel .carousel-inner > .prev.right, .thumbnailCarousel .carousel-inner > .active { left: 0 !important; } .thumbnailCarousel .carousel-inner .cloneditem-2, .thumbnailCarousel .carousel-inner .cloneditem-3 { display: block !important; } } @media all and (min-width: 992px) and (transform-3d), all and (min-width: 992px) and (-webkit-transform-3d) { .thumbnailCarousel .carousel-inner > .item.active.right, .thumbnailCarousel .carousel-inner > .item.next { -webkit-transform: translate3d(100%, 0, 0) !important; transform: translate3d(100%, 0, 0) !important; left: 0 !important; } .thumbnailCarousel .carousel-inner > .item.active.left, .thumbnailCarousel .carousel-inner > .item.prev { -webkit-transform: translate3d(-100%, 0, 0) !important; transform: translate3d(-100%, 0, 0) !important; left: 0; } .thumbnailCarousel .carousel-inner > .item.left, .thumbnailCarousel .carousel-inner > .item.prev.right, .thumbnailCarousel .carousel-inner > .item.active { -webkit-transform: translate3d(0, 0, 0) !important; transform: translate3d(0, 0, 0) !important; left: 0 !important; } }
assets/wabamonto/plugins/bootstrapthumbnail/bootstrap-thumbnail.css
.thumbnailCarousel .carousel-control { width: 4% !important; background-image: none !important; } .thumbnailCarousel .carousel-control.left { margin-left: 15px !important; } .thumbnailCarousel .carousel-control.right { margin-right: 15px !important; } @media all and (max-width: 767px){ .thumbnailCarousel .cloneditem-1, .thumbnailCarousel .cloneditem-2, .thumbnailCarousel .cloneditem-3 { display: none !important; } } @media all and (min-width: 768px) { .thumbnailCarousel .carousel-inner > .active.left, .thumbnailCarousel .carousel-inner > .prev { left: -100% !important; } .thumbnailCarousel .carousel-inner > .active.right, .thumbnailCarousel .carousel-inner > .next { left: 100% !important; } .thumbnailCarousel .carousel-inner > .left, .thumbnailCarousel .carousel-inner > .prev.right, .thumbnailCarousel .carousel-inner > .active { left: 0 !important; } .thumbnailCarousel .carousel-inner .cloneditem-1 { display: block !important; } } @media all and (min-width: 768px) and (transform-3d), all and (min-width: 768px) and (-webkit-transform-3d) { .thumbnailCarousel .carousel-inner > .item.active.right, .thumbnailCarousel .carousel-inner > .item.next { -webkit-transform: translate3d(100%, 0, 0) !important; transform: translate3d(100%, 0, 0) !important; left: 0 !important; } .thumbnailCarousel .carousel-inner > .item.active.left, .thumbnailCarousel .carousel-inner > .item.prev { -webkit-transform: translate3d(-100%, 0, 0) !important; transform: translate3d(-100%, 0, 0) !important; left: 0 !important; } .thumbnailCarousel .carousel-inner > .item.left, .thumbnailCarousel .carousel-inner > .item.prev.right, .thumbnailCarousel .carousel-inner > .item.active { -webkit-transform: translate3d(0, 0, 0) !important; transform: translate3d(0, 0, 0) !important; left: 0 !important; } } @media all and (min-width: 992px) { .thumbnailCarousel .carousel-inner > .active.left, .thumbnailCarousel .carousel-inner > .prev { left: -100% !important; } .thumbnailCarousel .carousel-inner > .active.right, .thumbnailCarousel .carousel-inner > .next { left: 100% !important; } .thumbnailCarousel .carousel-inner > .left, .thumbnailCarousel .carousel-inner > .prev.right, .thumbnailCarousel .carousel-inner > .active { left: 0 !important; } .thumbnailCarousel .carousel-inner .cloneditem-2, .thumbnailCarousel .carousel-inner .cloneditem-3 { display: block !important; } } @media all and (min-width: 992px) and (transform-3d), all and (min-width: 992px) and (-webkit-transform-3d) { .thumbnailCarousel .carousel-inner > .item.active.right, .thumbnailCarousel .carousel-inner > .item.next { -webkit-transform: translate3d(100%, 0, 0) !important; transform: translate3d(100%, 0, 0) !important; left: 0 !important; } .thumbnailCarousel .carousel-inner > .item.active.left, .thumbnailCarousel .carousel-inner > .item.prev { -webkit-transform: translate3d(-100%, 0, 0) !important; transform: translate3d(-100%, 0, 0) !important; left: 0; } .thumbnailCarousel .carousel-inner > .item.left, .thumbnailCarousel .carousel-inner > .item.prev.right, .thumbnailCarousel .carousel-inner > .item.active { -webkit-transform: translate3d(0, 0, 0) !important; transform: translate3d(0, 0, 0) !important; left: 0 !important; } }
0.341143
0.052376
::selection { background: #d9534f; color: white } html, body { min-height: 100% } body { color: #3d4450; word-wrap: break-word; background: 0% 0%/cover no-repeat fixed #000; background-repeat: no-repeat } ::-webkit-scrollbar { width: 6px; height: 6px; background-color: #f5f5f5 } ::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); border-radius: 10px; background-color: #f5f5f5 } ::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); background-color: #018EE8 } a { color: #d2322d; text-decoration: none } a:hover { text-decoration: none } img { max-width: 100%; border-radius: 4px; vertical-align: middle; height: auto } h1, h2, h3, h4, h5 { font-weight: 100 } .navbar { z-index: 1000; border: 0; margin-bottom: 0 } @media (min-width: 768px) { .navbar { border-radius: 0 } } .navbar-nav > li > a { padding-top: 10px; padding-bottom: 10px; line-height: 24px } @media (min-width: 768px) { .navbar-nav > li > a { padding-top: 15px; padding-bottom: 15px } } .dropdown-menu { background-color: rgba(255, 255, 255, 0.8) } .dropdown-menu > li > a { padding: 10px 20px; font-weight: normal } .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { color: #fff; background-color: #d9534f; text-decoration: none; transition: all 0.3s ease } .well { margin-bottom: 30px; border: 0 } .breadcrumb { background-color: rgba(255, 255, 255, 0.4) } .breadcrumb-gal { background-color: rgba(230, 238, 232, 0.5); box-shadow: #c2c2c2 0px 0px 5px; -webkit-box-shadow: #c2c2c2 0px 0px 5px; -moz-box-shadow: #c2c2c2 0px 0px 5px; -o-box-shadow: #c2c2c2 0px 0px 5px; margin-bottom: 40px } .panel { border-radius: 4px; background-color: rgb(0,204,255,0.7); box-shadow: 0 0 5px #c2c2c2; -webkit-box-shadow: 0 0 5px #c2c2c2; -moz-box-shadow: 0 0 5px #c2c2c2; -o-box-shadow: 0 0 5px #c2c2c2; border: none } .panel:hover { box-shadow: 0px 0px 50px black; -webkit-box-shadow: 0px 0px 50px black; -moz-box-shadow: 0px 0px 50px black; -o-box-shadow: 0px 0px 50px black } .panel2 { background-color: rgba(230, 238, 232, 0.5) } .panel-heading { font-size: 14px; line-height: 14px; font-weight: normal; border-bottom: none } .list-group-item { background-color: rgba(230, 238, 232, 0.3); transition: background-color .5s ease-in-out, box-shadow .5s ease-in-out; -moz-transition: background-color .5s ease-in-out, box-shadow .5s ease-in-out; -webkit-transition: background-color .5s ease-in-out, box-shadow .5s ease-in-out } .list-group-item:hover { background-color: rgba(255, 255, 255, 0.7); box-shadow: 0 0 50px black; -webkit-box-shadow: 0 0 50px black; -moz-box-shadow: 0 0 50px black; -o-box-shadow: 0 0 50px black } .panel > .list-group .list-group-item:first-child { border-top-right-radius: 0; border-top-left-radius: 0 } .label { display: inline; padding: .2em .6em .3em; font-size: 75%; font-weight: bold; line-height: 1; color: #fff; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: .25em } .label-gal { background-color: rgba(10, 10, 0, 0.7); margin-right: 5px; font-size: 90% } .label-gal > a { color: #fff } .label-gal:hover { background-color: #d9534f; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; -ms-transition: all .3s ease-in-out; -o-transition: all .3s ease-in-out; transition: all .3s ease-in-out } .label-gal:hover > a { text-decoration: none } .alert-gal { padding: 15px; margin-bottom: 20px; border: 1px solid transparent; border-radius: 4px; overflow: auto; color: #666; background-color: #eee } .close { font-size: 14px; font-weight: bold; color: #3d4450; opacity: 1 } .close:hover, .close:focus { color: #d2322d; text-decoration: none; cursor: pointer; -webkit-transition: all .25s ease-in-out; -moz-transition: all .25s ease-in-out; -ms-transition: all .25s ease-in-out; -o-transition: all .25s ease-in-out; transition: all .25s ease-in-out; opacity: 1 } button.close { background: transparent } .btn { font-size: 12px } .form-control { vertical-align: middle; border-color: #f89693; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(238, 88, 83, 0.6); -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(238, 88, 83, 0.6); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(238, 88, 83, 0.6) } .form-control:focus { border-color: #f89693 } #gal-issue { background-color: rgba(230, 238, 232, 0.5); box-shadow: 0 0 8px black; -webkit-box-shadow: 0 0 8px black; -moz-box-shadow: 0 0 8px black; -o-box-shadow: 0 0 8px black; -webkit-transition: background-color .3s ease; -moz-transition: background-color .3s ease; -ms-transition: background-color .3s ease; -o-transition: background-color .3s ease; transition: background-color .3s ease } #gal-issue:hover { background-color: rgba(255, 255, 255, 0.9); box-shadow: 0 0 50px black; -webkit-box-shadow: 0 0 50px black; -moz-box-shadow: 0 0 50px black; -o-box-shadow: 0 0 50px black } @media (min-width: 768px) { [aos^=flip] { backface-visibility: hidden; -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden } [aos=flip-up] { -webkit-transform: perspective(2500px) rotateX(-100deg); -moz-transform: perspective(2500px) rotateX(-100deg); -ms-transform: perspective(2500px) rotateX(-100deg); -o-transform: perspective(2500px) rotateX(-100deg); transform: perspective(2500px) rotateX(-100deg) } [aos=flip-up].aos-animate { -webkit-transform: perspective(2500px) rotateX(0); -moz-transform: perspective(2500px) rotateX(0); -ms-transform: perspective(2500px) rotateX(0); -o-transform: perspective(2500px) rotateX(0); transform: perspective(2500px) rotateX(0) } [aos][aos][aos-easing=ease-out-back], body[aos-easing=ease-out-back] [aos] { -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275) } [aos][aos][aos-duration='1000'], body[aos-duration='1000'] [aos] { -webkit-transition-duration: 1s; transition-duration: 1s } [aos="fade-up"] { -webkit-transform: translate(0px, 100px); -moz-transform: translate(0px, 100px); -ms-transform: translate(0px, 100px); -o-transform: translate(0px, 100px); transform: translate(0px, 100px) } [aos^="fade"][aos^="fade"] { opacity: 0; transition-property: all } [aos="fade-up"].aos-animate { -webkit-transform: translate(0px, 0px); -moz-transform: translate(0px, 0px); -ms-transform: translate(0px, 0px); -o-transform: translate(0px, 0px); transform: translate(0px, 0px) } [aos][aos][aos-easing="ease-out-back"], body[aos-easing="ease-out-back"] [aos] { -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275) } [aos][aos][aos-duration="2000"], body[aos-duration="2000"] [aos] { transition-duration: 2s; -webkit-transition-duration: 2s } [aos^="fade"][aos^="fade"].aos-animate { opacity: 1 } [data-aos^=fade][data-aos^=fade] { opacity: 0; transition-property: all; -webkit-transition-property: all } [aos][aos][aos-duration='3000'], body[aos-duration='3000'] [aos] { -webkit-transition-duration: 3s; transition-duration: 3s } [aos=flip-right] { -webkit-transform: perspective(2500px) rotateY(100deg); -moz-transform: perspective(2500px) rotateY(100deg); -ms-transform: perspective(2500px) rotateY(100deg); -o-transform: perspective(2500px) rotateY(100deg); transform: perspective(2500px) rotateY(100deg) } [aos=flip-right].aos-animate { -webkit-transform: perspective(2500px) rotateY(0); -moz-transform: perspective(2500px) rotateY(0); -ms-transform: perspective(2500px) rotateY(0); -o-transform: perspective(2500px) rotateY(0); transform: perspective(2500px) rotateY(0) } [data-aos^="flip-right"][data-aos^="flip-right"] { transition-property: all; -webkit-transition-property: all } } #gal-body { padding: 30px 0 } @media (max-width: 767px) { #gal-body { font-size: 12px !important } } #gal-gotop { position: fixed; bottom: 20px; right: 20px; height: 40px; width: 40px; background-color: rgba(10, 10, 0, 0.7); top: auto; display: none; z-index: 999; color: white; border-radius: 50%; border: 2px solid #fff; border-image: initial; cursor: url(../images/mouse2.cur), url(../images/mouse2.cur), auto } #gal-gotop:hover { color: #d9534f; border-color: #d9534f; transition: all 0.3s ease } #gal-gotop > i { font-size: 30px; line-height: 36px; text-align: center; display: block } #gal-footer { display: block; text-align: center; color: #eee; padding: 50px } #gal-footer a { color: #eee } #gal-footer a:hover { color: #d9534f; text-decoration: none } .gal-image-container { text-align: center } .gal-image { display: inline-block; position: relative; margin-left: auto; margin-right: auto; text-align: center; -webkit-transition: transform .2s ease-out; -moz-transition: transform .2s ease-out; -ms-transition: transform .2s ease-out; -o-transition: transform .2s ease-out; transition: transform .2s ease-out; -webkit-transform: scale(1) rotate(0deg); -moz-transform: scale(1) rotate(0deg); -ms-transform: scale(1) rotate(0deg); -o-transform: scale(1) rotate(0deg); transform: scale(1) rotate(0deg); z-index: 999 } .gal-image:hover { -webkit-transform: scale(1.5) rotate(1deg); -moz-transform: scale(1.5) rotate(1deg); -ms-transform: scale(1.5) rotate(1deg); -o-transform: scale(1.5) rotate(1deg); transform: scale(1.5) rotate(1deg) } .gal-menu { display: none; position: fixed; font-size: 14px; z-index: 1000002; margin: 0; padding: 0 } .gal-menu .circle { margin: 0 auto } .gal-menu .circle, .gal-menu .ring { height: 300px; position: relative; width: 300px } .gal-menu .ring { opacity: 0; -webkit-transform-origin: 50% 50% 0px; -moz-transform-origin: 50% 50% 0px; -ms-transform-origin: 50% 50% 0px; -o-transform-origin: 50% 50% 0px; transform-origin: 50% 50% 0px; border-radius: 50%; -webkit-transition: all .4s ease-out; -moz-transition: all .4s ease-out; -ms-transition: all .4s ease-out; -o-transition: all .4s ease-out; transition: all .4s ease-out; -webkit-transform: scale(0.1) rotate(-270deg); -moz-transform: scale(0.1) rotate(-270deg); -ms-transform: scale(0.1) rotate(-270deg); -o-transform: scale(0.1) rotate(-270deg); transform: scale(0.1) rotate(-270deg) } .gal-menu .open .ring { opacity: 1; -webkit-transform: scale(1) rotate(0deg); -moz-transform: scale(1) rotate(0deg); -ms-transform: scale(1) rotate(0deg); -o-transform: scale(1) rotate(0deg); transform: scale(1) rotate(0deg) } .gal-menu .menuItem { color: #eee; display: block; height: 80px; line-height: 80px; margin-left: -41px; margin-top: -41px; position: absolute; text-align: center; width: 80px; background-size: 80px; box-shadow: #fff 0px 0px 15px; -webkit-box-shadow: #fff 0px 0px 15px; -moz-box-shadow: #fff 0px 0px 15px; -o-box-shadow: #fff 0px 0px 15px; border: 2px solid #b59494; border-radius: 50%; border-image: initial } .gal-menu .menuItem:hover { box-shadow: #fff 0px 0px 80px inset; -webkit-box-shadow: #fff 0px 0px 80px inset; -moz-box-shadow: #fff 0px 0px 80px inset; -o-box-shadow: #fff 0px 0px 80px inset } .gal-menu .ring a { display: inline-block; color: #fff; text-shadow: #dc965a 1px 0px 0px, #dc965a 0px 1px 0px, #dc965a -1px 0px 0px, #dc965a 0px -1px 0px } .gal-menu .ring a:hover { text-shadow: #6cf 1px 0px 0px, #6cf 0px 1px 0px, #6cf -1px 0px 0px, #6cf 0px -1px 0px } .gal-menu .ring a:nth-of-type(1) { background-image: url(../images/onj/1.jpg) } .gal-menu .ring a:nth-of-type(2) { background-image: url(../images/onj/2.jpg) } .gal-menu .ring a:nth-of-type(3) { background-image: url(../images/onj/3.jpg) } .gal-menu .ring a:nth-of-type(4) { background-image: url(../images/onj/4.jpg) } .gal-menu .ring a:nth-of-type(5) { background-image: url(../images/onj/5.jpg) } .gal-menu .ring a:nth-of-type(6) { background-image: url(../images/onj/6.jpg) } @-webkit-keyframes imageAnimation { 0% { opacity: 0; -webkit-animation-timing-function: ease-in } 8% { opacity: 1; -webkit-transform: scale(1.05); -webkit-animation-timing-function: ease-out } 17% { opacity: 1; -webkit-transform: scale(1.1) rotate(0deg) } 25% { opacity: 0; -webkit-transform: scale(1.1) rotate(0deg) } 100% { opacity: 0 } } @-moz-keyframes imageAnimation { 0% { opacity: 0; -moz-animation-timing-function: ease-in } 8% { opacity: 1; -moz-transform: scale(1.05); -moz-animation-timing-function: ease-out } 17% { opacity: 1; -moz-transform: scale(1.1) rotate(0deg) } 25% { opacity: 0; -moz-transform: scale(1.1) rotate(0deg) } 100% { opacity: 0 } } @-o-keyframes imageAnimation { 0% { opacity: 0; -o-animation-timing-function: ease-in } 8% { opacity: 1; -o-transform: scale(1.05); -o-animation-timing-function: ease-out } 17% { opacity: 1; -o-transform: scale(1.1) rotate(0deg) } 25% { opacity: 0; -o-transform: scale(1.1) rotate(0deg) } 100% { opacity: 0 } } @-ms-keyframes imageAnimation { 0% { opacity: 0; -ms-animation-timing-function: ease-in } 8% { opacity: 1; -ms-transform: scale(1.05); -ms-animation-timing-function: ease-out } 17% { opacity: 1; -ms-transform: scale(1.1) rotate(0deg) } 25% { opacity: 0; -ms-transform: scale(1.1) rotate(0deg) } 100% { opacity: 0 } } @keyframes imageAnimation { 0% { opacity: 0; animation-timing-function: ease-in } 8% { opacity: 1; transform: scale(1.05); animation-timing-function: ease-out } 17% { opacity: 1; transform: scale(1.1) rotate(0deg) } 25% { opacity: 0; transform: scale(1.1) rotate(0deg) } 100% { opacity: 0 } } .cb-slideshow, .cb-slideshow:after { position: fixed; width: 100%; height: 100%; top: 0; left: 0; z-index: -2 } .cb-slideshow:after { content: '' } .cb-slideshow li span { width: 100%; height: 100%; position: absolute; top: 0; left: 0; color: transparent; background-size: cover; background-position: 50% 50%; opacity: 0; z-index: -2; -webkit-backface-visibility: hidden; } header#gal-header { font-size: 14px; border-radius: 0; border-color: #080808; background-color: rgb(0,204,255,0.7); box-shadow: 0 0 8px black; -webkit-box-shadow: 0 0 8px black; -moz-box-shadow: 0 0 8px black; -o-box-shadow: 0 0 8px black } header#gal-header .navbar-toggle:hover, header#gal-header .navbar-toggle:focus { background-color: #333; outline: #e59700 auto 5px } header#gal-header .navbar-toggle .fa-reorder { color: #fff } header#gal-header #menu-gal > li > a { color: #fff } header#gal-header #menu-gal > li.active > a { background-color: rgba(138, 43, 226, 0.7) } header#gal-header #menu-gal > li:not(.active) > a:hover, header#gal-header #menu-gal > li:not(.active) > a:focus { -webkit-transition: all .25s ease-in-out; -moz-transition: all .25s ease-in-out; -ms-transition: all .25s ease-in-out; -o-transition: all .25s ease-in-out; transition: all .25s ease-in-out; background-color: rgba(100, 90, 200, 0.7) } #gal-pagination .pagination-gal { margin: 0; border-radius: 4px } #gal-pagination .pagination-gal > li > a, #gal-pagination .pagination-gal > li > span { color: #e6e6fa; background-color: rgba(255, 255, 255, 0.1); margin-left: 10px; border: 2px solid #6b69d6; border-image: initial; border-radius: 4px } #gal-pagination .pagination-gal > li > a:hover, #gal-pagination .pagination-gal > li > a:focus, #gal-pagination .pagination-gal > li > span:hover, #gal-pagination .pagination-gal > li > span:focus { color: #fff; background-color: #6b69d6; border: 2px solid #6b69d6; border-image: initial; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; -ms-transition: all .3s ease-in-out; -o-transition: all .3s ease-in-out; transition: all .3s ease-in-out } #gal-pagination .pagination-gal > li.active > span { color: #fff; background-color: #6b69d6; border: 2px solid #6b69d6; border-image: initial; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; -ms-transition: all .3s ease-in-out; -o-transition: all .3s ease-in-out; transition: all .3s ease-in-out } @keyframes neon { from { text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #228DFF, 0 0 70px #228DFF, 0 0 80px #228DFF, 0 0 100px #228DFF, 0 0 150px #228DFF } to { text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #228DFF, 0 0 35px #228DFF, 0 0 40px #228DFF, 0 0 50px #228DFF, 0 0 75px #228DFF } } #article-list { margin-top: 20px } #article-list .article-body { background-color: rgba(230, 238, 232, 0.5); box-shadow: 0 0 8px black; -webkit-box-shadow: 0 0 8px black; -moz-box-shadow: 0 0 8px black; -o-box-shadow: 0 0 8px black } #article-list .article-body:hover { box-shadow: 0 0 50px black; -webkit-box-shadow: 0 0 50px black; -moz-box-shadow: 0 0 50px black; -o-box-shadow: 0 0 50px black } #article-list .article { position: relative; margin-bottom: 30px; padding-bottom: 20px } #article-list i.article-stick { position: absolute; top: -10px; right: 5%; font-size: 40px; color: #d9534f } #article-list div.data-article { background-color: #6b69d6; border-color: #6b69d6; position: absolute; height: 70px; width: 70px; border-radius: 100px; left: -20px; top: -20px; color: #fff; padding-top: 10px } #article-list div.data-article > span.month, #article-list div.data-article > span.day { text-align: center; display: block } #article-list div.data-article > span.month { margin: 0 } #article-list div.data-article > span.day { font-size: 30px; font-weight: bold; margin-top: -5px } #article-list .title-article { text-align: center; padding: 10px 15px 0 15px } @media (max-width: 767px) { #article-list .title-article { padding: 0 } } #article-list .title-article > h1 { font-size: 32px; margin: 0 auto; text-align: center } #article-list .title-article > h1 > a { color: #3d4450; text-decoration: none } #article-list .title-article > h1 > a:hover { text-decoration: none } #article-list .title-article > h1 > a > span { color: #fff; position: static; opacity: 0.8; background: #1ec7e6; font: 90%/1.5 微软雅黑, Verdana, Arial, Helvetica, sans-serif; padding: 2px; margin: 2px; border-radius: 5px } #article-list .title-article > h1 > a > span:hover { animation: neon 1.5s ease-in-out infinite alternate; -webkit-animation: neon 1.5s ease-in-out infinite alternate; -moz-animation: neon 1.5s ease-in-out infinite alternate; -o-animation: neon 1.5s ease-in-out infinite alternate; opacity: 1; background-color: rgba(0, 0, 0, 0) } #article-list .title-article > center > h4 > a { color: #3d4450; text-decoration: none } #article-list .title-article > center > h4 > a:hover { text-decoration: none } #article-list .title-article > center > h4 > a > span { color: #fff; position: static; opacity: 0.8; background: #1ec7e6; font: 90%/1.5 微软雅黑, Verdana, Arial, Helvetica, sans-serif; padding: 2px; margin: 2px; border-radius: 5px } #article-list .title-article > center > h4 > a > span:hover { animation: neon 1.5s ease-in-out infinite alternate; -webkit-animation: neon 1.5s ease-in-out infinite alternate; -moz-animation: neon 1.5s ease-in-out infinite alternate; -o-animation: neon 1.5s ease-in-out infinite alternate; opacity: 1; background-color: rgba(0, 0, 0, 0) } #article-list .tag-article { text-align: center; line-height: 24px; margin: 20px } #article-list .content-article > .item { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-transition: all .35s ease-in-out; -moz-transition: all .35s ease-in-out; -ms-transition: all .35s ease-in-out; -o-transition: all .35s ease-in-out; transition: all .35s ease-in-out; position: relative; width: 100%; overflow: hidden } #article-list .content-article > .item * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box } #article-list .content-article > .item img { width: 100%; height: 100% } #article-list .content-article > .item > a { color: #333 } #article-list .content-article > .item > a:hover { text-decoration: none } #article-list .content-article > .item > a:hover > .img { -webkit-transform: scale(1.2); -moz-transform: scale(1.2); -ms-transform: scale(1.2); -o-transform: scale(1.2); transform: scale(1.2) } #article-list .content-article > .item > a:hover > .info { visibility: visible; opacity: 1 } #article-list .content-article > .item > a:hover > .info > p { -webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); -o-transform: scale(1); transform: scale(1) } #article-list .content-article > .item > a > .img { -webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); -o-transform: scale(1); transform: scale(1); -webkit-transition: all .35s ease-in-out; -moz-transition: all .35s ease-in-out; -ms-transition: all .35s ease-in-out; -o-transition: all .35s ease-in-out; transition: all .35s ease-in-out } #article-list .content-article > .item > a > .info { position: absolute; top: 0; bottom: 0; left: 0; right: 0; text-align: center; backface-visibility: hidden; visibility: hidden; opacity: 0; background: rgba(0, 0, 0, 0.6); -webkit-transition: all .35s ease-in-out; -moz-transition: all .35s ease-in-out; -ms-transition: all .35s ease-in-out; -o-transition: all .35s ease-in-out; transition: all .35s ease-in-out } #article-list .content-article > .item > a > .info > p { font-style: italic; font-size: 25px; position: relative; color: #bbb; text-align: center; -webkit-transform: scale(5); -moz-transform: scale(5); -ms-transform: scale(5); -o-transform: scale(5); transform: scale(5); -webkit-transition: all .35s .3s linear; -moz-transition: all .35s .3s linear; -ms-transition: all .35s .3s linear; -o-transition: all .35s .3s linear; transition: all .35s .3s linear; padding: 20px } #article.article, #article-archive.article, #article-tag.article, #article-tags.article, #article-categories.article, #article-category.article { position: relative; margin-bottom: 20px; padding-bottom: 20px } #article.article-body, #article-archive.article-body, #article-tag.article-body, #article-tags.article-body, #article-categories.article-body, #article-category.article-body { background-color: rgba(230, 238, 232, 0.5); box-shadow: 0 0 8px black; -webkit-box-shadow: 0 0 8px black; -moz-box-shadow: 0 0 8px black; -o-box-shadow: 0 0 8px black } #article.article-body:hover, #article-archive.article-body:hover, #article-tag.article-body:hover, #article-tags.article-body:hover, #article-categories.article-body:hover, #article-category.article-body:hover { box-shadow: 0 0 50px black; -webkit-box-shadow: 0 0 50px black; -moz-box-shadow: 0 0 50px black; -o-box-shadow: 0 0 50px black } #article .title-article, #article-archive .title-article, #article-tag .title-article, #article-tags .title-article, #article-categories .title-article, #article-category .title-article { padding: 10px 15px 0 15px } #article .title-article > h1, #article-archive .title-article > h1, #article-tag .title-article > h1, #article-tags .title-article > h1, #article-categories .title-article > h1, #article-category .title-article > h1 { font-size: 32px; margin: 0 auto; text-align: center } #article .title-article > h1 > a, #article-archive .title-article > h1 > a, #article-tag .title-article > h1 > a, #article-tags .title-article > h1 > a, #article-categories .title-article > h1 > a, #article-category .title-article > h1 > a { color: #3d4450; text-decoration: none } #article .title-article > h1 > a:hover, #article-archive .title-article > h1 > a:hover, #article-tag .title-article > h1 > a:hover, #article-tags .title-article > h1 > a:hover, #article-categories .title-article > h1 > a:hover, #article-category .title-article > h1 > a:hover { color: #d9534f; text-decoration: none; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease } #article .tag-article, #article-archive .tag-article, #article-tag .tag-article, #article-tags .tag-article, #article-categories .tag-article, #article-category .tag-article { text-align: center; line-height: 24px; margin: 20px } #article .content-article img, #article-archive .content-article img, #article-tag .content-article img, #article-tags .content-article img, #article-categories .content-article img, #article-category .content-article img { margin: 10px auto; display: inline-block; width: auto } .panel-toggle, .panel-remove { float: right; cursor: pointer; margin: 0 0 0 5px } .panel-toggle:hover, .panel-remove:hover { color: #d9534f; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease } .panel ul.list-group { width: 100%; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease } .panel.toggled ul.list-group { max-height: 0; width: 100%; overflow: hidden; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease } .panel-gal > .panel-heading { color: #fff; background-color: rgb(0,204,255,0.7); border-color: #000 } .panel.toggled .panel-heading { border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease } .panel-gal .badge { background-color: #d9534f } .panel-gal a { color: #666 } .panel-gal a:hover { color: #b94a48 } .panel .post-title { display: inline-block; width: 75%; white-space: nowrap; text-overflow: ellipsis; overflow: hidden } #sidebar aside > div { margin-bottom: 30px } #sidebar div.search { margin-bottom: 20px; padding: 8px; border-radius: 4px; background-color: rgb(0,204,255,0.7); } #sidebar div.search input[type="text"] { width: 85%; float: left; margin-right: 10px; background-color: transparent } #sidebar div.search input[type="text"]:focus { background-color: #fff; box-shadow: 0 0 50px black; -webkit-box-shadow: 0 0 50px black; -moz-box-shadow: 0 0 50px black; -o-box-shadow: 0 0 50px black } #sidebar div.search button { float: left; margin-top: 2px } .author-panel { padding: 20px 0 } .author-panel img.author-image { background-color: #fff; border: 2px solid #fff; border-radius: 50% } .author-panel img.author-image:hover { -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease; -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg) } .author-panel p.author-email { margin-top: 10px; font-size: 16px; font-weight: bold } .nav > li > a:hover, .nav > li > a:focus { text-decoration: none; background-color: #d9534f; -webkit-transition: all .25s ease-in-out; -moz-transition: all .25s ease-in-out; -ms-transition: all .25s ease-in-out; -o-transition: all .25s ease-in-out; transition: all .25s ease-in-out } .nav-pills > li.active a { color: #fff; background-color: #d9534f } .nav-pills > li.active a:hover, .nav-pills > li.active a:focus { color: #fff; background-color: #d9534f } ul.pills-gal { padding: 10px } ul.pills-gal li { margin-left: 5px } ul.pills-gal li a { border-radius: 5px } ul.pills-gal li a:hover { color: #fff } .tab-content { border-top: 1px solid #eee; padding: 10px } .panel-gal .tab-content a:hover, .panel-gal .nav-pills a:hover { color: #fff } #sidebar-tags a:hover { color: #fff } .cloud-tags a { display: inline-block; color: #fff; opacity: 0.7; padding: 2px 6px 3px; margin: 0 2px } .cloud-tags a:hover { opacity: 1 } .cloud-tags a:nth-child(7n+1) { background-color: #428bca } .cloud-tags a:nth-child(7n+2) { background-color: #5cb85c } .cloud-tags a:nth-child(7n+3) { background-color: #d9534f } .cloud-tags a:nth-child(7n+4) { background-color: #f0ad4e } .cloud-tags a:nth-child(7n+5) { background-color: #b37333 } .cloud-tags a:nth-child(7n+6) { background-color: #b433ff } .cloud-tags a:nth-child(7n) { background-color: #4a4a4a } #sidebar-recent_comments .author-avatar .avatar { border-radius: 50%; border: 1px solid #eee; position: relative; z-index: 99; float: left; display: block; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease } #sidebar-recent_comments .author-avatar .avatar:hover { -webkit-transform: scale(1.25); -moz-transform: scale(1.25); -ms-transform: scale(1.25); -o-transform: scale(1.25); transform: scale(1.25); -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease } #sidebar-recent_comments .hint, #sidebar-recent_comments [data-hint2] { display: block; position: relative; margin-left: auto; margin-right: auto; color: #666; cursor: url(../images/mouse2.cur), url(../images/mouse2.cur), auto } #sidebar-recent_comments .hint:hover, #sidebar-recent_comments [data-hint2]:hover { color: #b94a48 } #sidebar-recent_comments .hint:hover:before, #sidebar-recent_comments .hint:hover:after, #sidebar-recent_comments [data-hint2]:hover:before, #sidebar-recent_comments [data-hint2]:hover:after { visibility: visible; opacity: 1; -webkit-transition-delay: 100ms; -moz-transition-delay: 100ms; transition-delay: 100ms } #sidebar-recent_comments .hint:focus:before, #sidebar-recent_comments .hint:focus:after, #sidebar-recent_comments [data-hint2]:focus:before, #sidebar-recent_comments [data-hint2]:focus:after { visibility: visible; opacity: 1 } #sidebar-recent_comments .hint--left:hover:before, #sidebar-recent_comments .hint--left:hover:after, #sidebar-recent_comments .hint--left:focus:before, #sidebar-recent_comments .hint--left:focus:after { -webkit-transform: translateX(-8px); -moz-transform: translateX(-8px); -ms-transform: translateX(-8px); -o-transform: translateX(-8px); transform: translateX(-8px) } #sidebar-recent_comments .hint:before, #sidebar-recent_comments [data-hint2]:before { content: ''; position: absolute; background: transparent; border: 6px solid transparent; z-index: 1000001 } #sidebar-recent_comments .hint:after, #sidebar-recent_comments [data-hint2]:after { content: attr(data-hint2); background: #383838; color: #fff; padding: 8px 10px; font-size: 12px; line-height: 12px; white-space: nowrap } #sidebar-recent_comments .hint:before, #sidebar-recent_comments .hint:after, #sidebar-recent_comments [data-hint2]:before, #sidebar-recent_comments [data-hint2]:after { position: absolute; -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); visibility: hidden; opacity: 0; z-index: 1000000; pointer-events: none; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease; -webkit-transition-delay: 0ms; -moz-transition-delay: 0ms; transition-delay: 0ms } #sidebar-recent_comments .hint--left:before { border-left-color: #383838; margin-right: -12px; margin-bottom: -6px } #sidebar-recent_comments .hint--left:before, #sidebar-recent_comments .hint--left:after { right: 100%; bottom: 50% } #sidebar-recent_comments .hint--rounded:after { border-radius: 4px } #sidebar-recent_comments .hint--left:after { margin-bottom: -14px } #sidebar-recent_comments .comment-log { line-height: 20px; background-color: #eee; border-color: #eee; border-radius: 4px; display: inline-block; padding: 8px; margin-left: 10px; width: 80% } #comments-template .comments-container.comments-root-container .comments-header-container { text-align: center; font-size: 14px; margin: 20px 0 20px 0 } #comments-template .comments-container.comments-root-container .comments-header-container.alert { border-image: initial; border-radius: 4px; overflow: auto } #comments-template .comments-container.comments-root-container .comments-header-container.alert-info { color: #3a87ad; background-color: rgba(217, 237, 247, 0.8) } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list { padding: 0; margin-bottom: 20px } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list a { color: #3d4450 } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list a:hover { color: #d9534f; text-decoration: none } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list li { background-color: rgba(230, 238, 232, 0.65); box-shadow: black 0px 0px 8px; margin: 10px 0px; list-style: none; padding: 2px; border-radius: 4px; transition: background-color 0.3s ease-in-out 0s, box-shadow 0.3s ease-in-out 0s; -webkit-box-shadow: black 0 0 8px; -moz-box-shadow: black 0 0 8px; -o-box-shadow: black 0 0 8px; -webkit-transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out; -moz-transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out; -ms-transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out; -o-transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out; } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list > li:hover { background-color: #fff; box-shadow: black 0px 0px 50px; -webkit-box-shadow: black 0px 0px 50px; -moz-box-shadow: black 0px 0px 50px; -o-box-shadow: black 0px 0px 50px } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list > li .comment-body { position: relative } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list > li .comment-body .comment-meta { position: relative; height: auto; min-height: 37px; line-height: 37px; padding-left: 45px; background: rgba(217, 237, 247, 0.6) } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list > li .comment-body .comment-meta .comment-author { float: left } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list > li .comment-body .comment-meta .comment-author img { background-color: white; position: absolute; display: block; left: -40px; top: 10px; border: 2px solid #fff; border-image: initial; border-radius: 50%; margin: 0; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list > li .comment-body .comment-meta .comment-metadata { text-transform: uppercase; float: right; margin-right: 10px; font-size: 13px; font-weight: bold; text-decoration: none; border-radius: 4px } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list > li .comment-body .comment-content { position: relative; padding: 20px 55px 30px 45px } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list > li .comment-body .comment-reply-link, #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list > li .comment-body .comment-reply-login { position: absolute; bottom: 3px; right: 12px; font-size: 12px; text-transform: uppercase; display: block } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list > li .comment-body:hover .comment-meta .comment-author img { -webkit-transform: rotate(720deg); -moz-transform: rotate(720deg); -ms-transform: rotate(720deg); -o-transform: rotate(720deg); transform: rotate(720deg); -webkit-transition: all .8s ease; -moz-transition: all .8s ease; -ms-transition: all .8s ease; -o-transition: all .8s ease; transition: all .8s ease; border-radius: 0 } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list .comment-nav { margin-top: 20px } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list .comment-nav .pagination-gal { margin: 0; border-radius: 4px } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list .comment-nav .page-numbers { color: #d9534f; background-color: transparent; display: inline-block; border-radius: 4px; border: 2px solid #d9534f; border-image: initial; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease; margin: 0 0 10px 10px; padding: 5px 10px } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list .comment-nav .page-numbers.dots { border-width: initial; border-style: none; border-color: initial; border-image: initial } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list .comment-nav .page-numbers.active { color: #fff; background-color: #d9534f; cursor: not-allowed } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list .comment-nav .page-numbers:hover { color: #fff; background-color: #d9534f; border: 2px solid #d9534f; border-image: initial; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease } #comments-template .comments-container.comments-root-container .comments-editor-container { padding-left: 0; margin: 20px 0 } #comments-template .comments-container.comments-root-container .comments-editor-container .comment-reply-title { padding: 15px; margin-bottom: 20px; border: 1px solid transparent; border-radius: 4px; overflow: auto; color: #3a87ad; background-color: rgba(217, 237, 247, 0.8); margin: 10px auto; text-align: center; font-size: 14px } #comments-template .comments-container.comments-root-container .comments-editor-container .comments-editor-submit { margin-top: 10px; margin-bottom: 10px; border-radius: 4px; width: 100%; color: #d9534f; background-color: transparent; border: 2px solid #d9534f; padding: 10px 25px; text-align: center; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease } #comments-template .comments-container.comments-root-container .comments-editor-container .comments-editor-submit:hover { color: #fff; background-color: #d9534f; border: 2px solid #d9534f; text-decoration: none; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease } #comments-template .comments-container.comments-root-container .comments-editor-container .comments-editor-write-field textarea { margin: 0; margin-bottom: 10px; padding: 10px 15px; width: 100%; border-radius: 4px; background-color: transparent; border: 2px solid #c1c1c1 } #comments-template .comments-container.comments-root-container .comments-editor-container .comments-editor-write-field textarea:focus { background-color: rgba(255, 255, 255, 0.9); outline: 0; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease; border: 2px solid #d9534f } #comments-template .comments-container.comments-root-container .comments-footer-container { text-align: center } #comments-template .comments-container.comments-root-container .comments-footer-container a:hover { text-decoration: none } #smilelink { display: inline-block; margin-bottom: 10px; cursor: url(../images/mouse1.cur), url(../images/mouse1.cur), auto } #smilelink img { opacity: 0.7; -webkit-transform: scale(1) rotate(0deg); -moz-transform: scale(1) rotate(0deg); -ms-transform: scale(1) rotate(0deg); -o-transform: scale(1) rotate(0deg); transform: scale(1) rotate(0deg); cursor: url(../images/mouse2.cur), url(../images/mouse2.cur), auto; -webkit-transition: -webkit-transform .2s ease-out; -moz-transition: -webkit-transform .2s ease-out; -ms-transition: -webkit-transform .2s ease-out; -o-transition: -webkit-transform .2s ease-out; transition: -webkit-transform .2s ease-out } #smilelink img:hover { opacity: 1; z-index: 1000; -webkit-transform: scale(1.5) rotate(1deg); -moz-transform: scale(1.5) rotate(1deg); -ms-transform: scale(1.5) rotate(1deg); -o-transform: scale(1.5) rotate(1deg); transform: scale(1.5) rotate(1deg) } @media (max-width: 768px ) { body { background-color: #f0f0f0; background: url('../images/xsbg.gif'); background-attachment: fixed; } } #gal-header .navbar-brand { height: 54px; line-height: 24px; font-size: 28px; opacity: 1; background-color: rgba(0, 0, 0, 0); text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #228DFF, 0 0 35px #228DFF, 0 0 40px #228DFF, 0 0 50px #228DFF, 0 0 75px #228DFF; } #reply-title #cancel-comment-reply-link { padding: 2px 5px; background-color: #d9534f; color: white; border-radius: 4px; font-size: 14px; }
src/main/resources/static/css/style.css
::selection { background: #d9534f; color: white } html, body { min-height: 100% } body { color: #3d4450; word-wrap: break-word; background: 0% 0%/cover no-repeat fixed #000; background-repeat: no-repeat } ::-webkit-scrollbar { width: 6px; height: 6px; background-color: #f5f5f5 } ::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); border-radius: 10px; background-color: #f5f5f5 } ::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); background-color: #018EE8 } a { color: #d2322d; text-decoration: none } a:hover { text-decoration: none } img { max-width: 100%; border-radius: 4px; vertical-align: middle; height: auto } h1, h2, h3, h4, h5 { font-weight: 100 } .navbar { z-index: 1000; border: 0; margin-bottom: 0 } @media (min-width: 768px) { .navbar { border-radius: 0 } } .navbar-nav > li > a { padding-top: 10px; padding-bottom: 10px; line-height: 24px } @media (min-width: 768px) { .navbar-nav > li > a { padding-top: 15px; padding-bottom: 15px } } .dropdown-menu { background-color: rgba(255, 255, 255, 0.8) } .dropdown-menu > li > a { padding: 10px 20px; font-weight: normal } .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { color: #fff; background-color: #d9534f; text-decoration: none; transition: all 0.3s ease } .well { margin-bottom: 30px; border: 0 } .breadcrumb { background-color: rgba(255, 255, 255, 0.4) } .breadcrumb-gal { background-color: rgba(230, 238, 232, 0.5); box-shadow: #c2c2c2 0px 0px 5px; -webkit-box-shadow: #c2c2c2 0px 0px 5px; -moz-box-shadow: #c2c2c2 0px 0px 5px; -o-box-shadow: #c2c2c2 0px 0px 5px; margin-bottom: 40px } .panel { border-radius: 4px; background-color: rgb(0,204,255,0.7); box-shadow: 0 0 5px #c2c2c2; -webkit-box-shadow: 0 0 5px #c2c2c2; -moz-box-shadow: 0 0 5px #c2c2c2; -o-box-shadow: 0 0 5px #c2c2c2; border: none } .panel:hover { box-shadow: 0px 0px 50px black; -webkit-box-shadow: 0px 0px 50px black; -moz-box-shadow: 0px 0px 50px black; -o-box-shadow: 0px 0px 50px black } .panel2 { background-color: rgba(230, 238, 232, 0.5) } .panel-heading { font-size: 14px; line-height: 14px; font-weight: normal; border-bottom: none } .list-group-item { background-color: rgba(230, 238, 232, 0.3); transition: background-color .5s ease-in-out, box-shadow .5s ease-in-out; -moz-transition: background-color .5s ease-in-out, box-shadow .5s ease-in-out; -webkit-transition: background-color .5s ease-in-out, box-shadow .5s ease-in-out } .list-group-item:hover { background-color: rgba(255, 255, 255, 0.7); box-shadow: 0 0 50px black; -webkit-box-shadow: 0 0 50px black; -moz-box-shadow: 0 0 50px black; -o-box-shadow: 0 0 50px black } .panel > .list-group .list-group-item:first-child { border-top-right-radius: 0; border-top-left-radius: 0 } .label { display: inline; padding: .2em .6em .3em; font-size: 75%; font-weight: bold; line-height: 1; color: #fff; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: .25em } .label-gal { background-color: rgba(10, 10, 0, 0.7); margin-right: 5px; font-size: 90% } .label-gal > a { color: #fff } .label-gal:hover { background-color: #d9534f; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; -ms-transition: all .3s ease-in-out; -o-transition: all .3s ease-in-out; transition: all .3s ease-in-out } .label-gal:hover > a { text-decoration: none } .alert-gal { padding: 15px; margin-bottom: 20px; border: 1px solid transparent; border-radius: 4px; overflow: auto; color: #666; background-color: #eee } .close { font-size: 14px; font-weight: bold; color: #3d4450; opacity: 1 } .close:hover, .close:focus { color: #d2322d; text-decoration: none; cursor: pointer; -webkit-transition: all .25s ease-in-out; -moz-transition: all .25s ease-in-out; -ms-transition: all .25s ease-in-out; -o-transition: all .25s ease-in-out; transition: all .25s ease-in-out; opacity: 1 } button.close { background: transparent } .btn { font-size: 12px } .form-control { vertical-align: middle; border-color: #f89693; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(238, 88, 83, 0.6); -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(238, 88, 83, 0.6); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(238, 88, 83, 0.6) } .form-control:focus { border-color: #f89693 } #gal-issue { background-color: rgba(230, 238, 232, 0.5); box-shadow: 0 0 8px black; -webkit-box-shadow: 0 0 8px black; -moz-box-shadow: 0 0 8px black; -o-box-shadow: 0 0 8px black; -webkit-transition: background-color .3s ease; -moz-transition: background-color .3s ease; -ms-transition: background-color .3s ease; -o-transition: background-color .3s ease; transition: background-color .3s ease } #gal-issue:hover { background-color: rgba(255, 255, 255, 0.9); box-shadow: 0 0 50px black; -webkit-box-shadow: 0 0 50px black; -moz-box-shadow: 0 0 50px black; -o-box-shadow: 0 0 50px black } @media (min-width: 768px) { [aos^=flip] { backface-visibility: hidden; -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden } [aos=flip-up] { -webkit-transform: perspective(2500px) rotateX(-100deg); -moz-transform: perspective(2500px) rotateX(-100deg); -ms-transform: perspective(2500px) rotateX(-100deg); -o-transform: perspective(2500px) rotateX(-100deg); transform: perspective(2500px) rotateX(-100deg) } [aos=flip-up].aos-animate { -webkit-transform: perspective(2500px) rotateX(0); -moz-transform: perspective(2500px) rotateX(0); -ms-transform: perspective(2500px) rotateX(0); -o-transform: perspective(2500px) rotateX(0); transform: perspective(2500px) rotateX(0) } [aos][aos][aos-easing=ease-out-back], body[aos-easing=ease-out-back] [aos] { -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275) } [aos][aos][aos-duration='1000'], body[aos-duration='1000'] [aos] { -webkit-transition-duration: 1s; transition-duration: 1s } [aos="fade-up"] { -webkit-transform: translate(0px, 100px); -moz-transform: translate(0px, 100px); -ms-transform: translate(0px, 100px); -o-transform: translate(0px, 100px); transform: translate(0px, 100px) } [aos^="fade"][aos^="fade"] { opacity: 0; transition-property: all } [aos="fade-up"].aos-animate { -webkit-transform: translate(0px, 0px); -moz-transform: translate(0px, 0px); -ms-transform: translate(0px, 0px); -o-transform: translate(0px, 0px); transform: translate(0px, 0px) } [aos][aos][aos-easing="ease-out-back"], body[aos-easing="ease-out-back"] [aos] { -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275) } [aos][aos][aos-duration="2000"], body[aos-duration="2000"] [aos] { transition-duration: 2s; -webkit-transition-duration: 2s } [aos^="fade"][aos^="fade"].aos-animate { opacity: 1 } [data-aos^=fade][data-aos^=fade] { opacity: 0; transition-property: all; -webkit-transition-property: all } [aos][aos][aos-duration='3000'], body[aos-duration='3000'] [aos] { -webkit-transition-duration: 3s; transition-duration: 3s } [aos=flip-right] { -webkit-transform: perspective(2500px) rotateY(100deg); -moz-transform: perspective(2500px) rotateY(100deg); -ms-transform: perspective(2500px) rotateY(100deg); -o-transform: perspective(2500px) rotateY(100deg); transform: perspective(2500px) rotateY(100deg) } [aos=flip-right].aos-animate { -webkit-transform: perspective(2500px) rotateY(0); -moz-transform: perspective(2500px) rotateY(0); -ms-transform: perspective(2500px) rotateY(0); -o-transform: perspective(2500px) rotateY(0); transform: perspective(2500px) rotateY(0) } [data-aos^="flip-right"][data-aos^="flip-right"] { transition-property: all; -webkit-transition-property: all } } #gal-body { padding: 30px 0 } @media (max-width: 767px) { #gal-body { font-size: 12px !important } } #gal-gotop { position: fixed; bottom: 20px; right: 20px; height: 40px; width: 40px; background-color: rgba(10, 10, 0, 0.7); top: auto; display: none; z-index: 999; color: white; border-radius: 50%; border: 2px solid #fff; border-image: initial; cursor: url(../images/mouse2.cur), url(../images/mouse2.cur), auto } #gal-gotop:hover { color: #d9534f; border-color: #d9534f; transition: all 0.3s ease } #gal-gotop > i { font-size: 30px; line-height: 36px; text-align: center; display: block } #gal-footer { display: block; text-align: center; color: #eee; padding: 50px } #gal-footer a { color: #eee } #gal-footer a:hover { color: #d9534f; text-decoration: none } .gal-image-container { text-align: center } .gal-image { display: inline-block; position: relative; margin-left: auto; margin-right: auto; text-align: center; -webkit-transition: transform .2s ease-out; -moz-transition: transform .2s ease-out; -ms-transition: transform .2s ease-out; -o-transition: transform .2s ease-out; transition: transform .2s ease-out; -webkit-transform: scale(1) rotate(0deg); -moz-transform: scale(1) rotate(0deg); -ms-transform: scale(1) rotate(0deg); -o-transform: scale(1) rotate(0deg); transform: scale(1) rotate(0deg); z-index: 999 } .gal-image:hover { -webkit-transform: scale(1.5) rotate(1deg); -moz-transform: scale(1.5) rotate(1deg); -ms-transform: scale(1.5) rotate(1deg); -o-transform: scale(1.5) rotate(1deg); transform: scale(1.5) rotate(1deg) } .gal-menu { display: none; position: fixed; font-size: 14px; z-index: 1000002; margin: 0; padding: 0 } .gal-menu .circle { margin: 0 auto } .gal-menu .circle, .gal-menu .ring { height: 300px; position: relative; width: 300px } .gal-menu .ring { opacity: 0; -webkit-transform-origin: 50% 50% 0px; -moz-transform-origin: 50% 50% 0px; -ms-transform-origin: 50% 50% 0px; -o-transform-origin: 50% 50% 0px; transform-origin: 50% 50% 0px; border-radius: 50%; -webkit-transition: all .4s ease-out; -moz-transition: all .4s ease-out; -ms-transition: all .4s ease-out; -o-transition: all .4s ease-out; transition: all .4s ease-out; -webkit-transform: scale(0.1) rotate(-270deg); -moz-transform: scale(0.1) rotate(-270deg); -ms-transform: scale(0.1) rotate(-270deg); -o-transform: scale(0.1) rotate(-270deg); transform: scale(0.1) rotate(-270deg) } .gal-menu .open .ring { opacity: 1; -webkit-transform: scale(1) rotate(0deg); -moz-transform: scale(1) rotate(0deg); -ms-transform: scale(1) rotate(0deg); -o-transform: scale(1) rotate(0deg); transform: scale(1) rotate(0deg) } .gal-menu .menuItem { color: #eee; display: block; height: 80px; line-height: 80px; margin-left: -41px; margin-top: -41px; position: absolute; text-align: center; width: 80px; background-size: 80px; box-shadow: #fff 0px 0px 15px; -webkit-box-shadow: #fff 0px 0px 15px; -moz-box-shadow: #fff 0px 0px 15px; -o-box-shadow: #fff 0px 0px 15px; border: 2px solid #b59494; border-radius: 50%; border-image: initial } .gal-menu .menuItem:hover { box-shadow: #fff 0px 0px 80px inset; -webkit-box-shadow: #fff 0px 0px 80px inset; -moz-box-shadow: #fff 0px 0px 80px inset; -o-box-shadow: #fff 0px 0px 80px inset } .gal-menu .ring a { display: inline-block; color: #fff; text-shadow: #dc965a 1px 0px 0px, #dc965a 0px 1px 0px, #dc965a -1px 0px 0px, #dc965a 0px -1px 0px } .gal-menu .ring a:hover { text-shadow: #6cf 1px 0px 0px, #6cf 0px 1px 0px, #6cf -1px 0px 0px, #6cf 0px -1px 0px } .gal-menu .ring a:nth-of-type(1) { background-image: url(../images/onj/1.jpg) } .gal-menu .ring a:nth-of-type(2) { background-image: url(../images/onj/2.jpg) } .gal-menu .ring a:nth-of-type(3) { background-image: url(../images/onj/3.jpg) } .gal-menu .ring a:nth-of-type(4) { background-image: url(../images/onj/4.jpg) } .gal-menu .ring a:nth-of-type(5) { background-image: url(../images/onj/5.jpg) } .gal-menu .ring a:nth-of-type(6) { background-image: url(../images/onj/6.jpg) } @-webkit-keyframes imageAnimation { 0% { opacity: 0; -webkit-animation-timing-function: ease-in } 8% { opacity: 1; -webkit-transform: scale(1.05); -webkit-animation-timing-function: ease-out } 17% { opacity: 1; -webkit-transform: scale(1.1) rotate(0deg) } 25% { opacity: 0; -webkit-transform: scale(1.1) rotate(0deg) } 100% { opacity: 0 } } @-moz-keyframes imageAnimation { 0% { opacity: 0; -moz-animation-timing-function: ease-in } 8% { opacity: 1; -moz-transform: scale(1.05); -moz-animation-timing-function: ease-out } 17% { opacity: 1; -moz-transform: scale(1.1) rotate(0deg) } 25% { opacity: 0; -moz-transform: scale(1.1) rotate(0deg) } 100% { opacity: 0 } } @-o-keyframes imageAnimation { 0% { opacity: 0; -o-animation-timing-function: ease-in } 8% { opacity: 1; -o-transform: scale(1.05); -o-animation-timing-function: ease-out } 17% { opacity: 1; -o-transform: scale(1.1) rotate(0deg) } 25% { opacity: 0; -o-transform: scale(1.1) rotate(0deg) } 100% { opacity: 0 } } @-ms-keyframes imageAnimation { 0% { opacity: 0; -ms-animation-timing-function: ease-in } 8% { opacity: 1; -ms-transform: scale(1.05); -ms-animation-timing-function: ease-out } 17% { opacity: 1; -ms-transform: scale(1.1) rotate(0deg) } 25% { opacity: 0; -ms-transform: scale(1.1) rotate(0deg) } 100% { opacity: 0 } } @keyframes imageAnimation { 0% { opacity: 0; animation-timing-function: ease-in } 8% { opacity: 1; transform: scale(1.05); animation-timing-function: ease-out } 17% { opacity: 1; transform: scale(1.1) rotate(0deg) } 25% { opacity: 0; transform: scale(1.1) rotate(0deg) } 100% { opacity: 0 } } .cb-slideshow, .cb-slideshow:after { position: fixed; width: 100%; height: 100%; top: 0; left: 0; z-index: -2 } .cb-slideshow:after { content: '' } .cb-slideshow li span { width: 100%; height: 100%; position: absolute; top: 0; left: 0; color: transparent; background-size: cover; background-position: 50% 50%; opacity: 0; z-index: -2; -webkit-backface-visibility: hidden; } header#gal-header { font-size: 14px; border-radius: 0; border-color: #080808; background-color: rgb(0,204,255,0.7); box-shadow: 0 0 8px black; -webkit-box-shadow: 0 0 8px black; -moz-box-shadow: 0 0 8px black; -o-box-shadow: 0 0 8px black } header#gal-header .navbar-toggle:hover, header#gal-header .navbar-toggle:focus { background-color: #333; outline: #e59700 auto 5px } header#gal-header .navbar-toggle .fa-reorder { color: #fff } header#gal-header #menu-gal > li > a { color: #fff } header#gal-header #menu-gal > li.active > a { background-color: rgba(138, 43, 226, 0.7) } header#gal-header #menu-gal > li:not(.active) > a:hover, header#gal-header #menu-gal > li:not(.active) > a:focus { -webkit-transition: all .25s ease-in-out; -moz-transition: all .25s ease-in-out; -ms-transition: all .25s ease-in-out; -o-transition: all .25s ease-in-out; transition: all .25s ease-in-out; background-color: rgba(100, 90, 200, 0.7) } #gal-pagination .pagination-gal { margin: 0; border-radius: 4px } #gal-pagination .pagination-gal > li > a, #gal-pagination .pagination-gal > li > span { color: #e6e6fa; background-color: rgba(255, 255, 255, 0.1); margin-left: 10px; border: 2px solid #6b69d6; border-image: initial; border-radius: 4px } #gal-pagination .pagination-gal > li > a:hover, #gal-pagination .pagination-gal > li > a:focus, #gal-pagination .pagination-gal > li > span:hover, #gal-pagination .pagination-gal > li > span:focus { color: #fff; background-color: #6b69d6; border: 2px solid #6b69d6; border-image: initial; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; -ms-transition: all .3s ease-in-out; -o-transition: all .3s ease-in-out; transition: all .3s ease-in-out } #gal-pagination .pagination-gal > li.active > span { color: #fff; background-color: #6b69d6; border: 2px solid #6b69d6; border-image: initial; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; -ms-transition: all .3s ease-in-out; -o-transition: all .3s ease-in-out; transition: all .3s ease-in-out } @keyframes neon { from { text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #228DFF, 0 0 70px #228DFF, 0 0 80px #228DFF, 0 0 100px #228DFF, 0 0 150px #228DFF } to { text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #228DFF, 0 0 35px #228DFF, 0 0 40px #228DFF, 0 0 50px #228DFF, 0 0 75px #228DFF } } #article-list { margin-top: 20px } #article-list .article-body { background-color: rgba(230, 238, 232, 0.5); box-shadow: 0 0 8px black; -webkit-box-shadow: 0 0 8px black; -moz-box-shadow: 0 0 8px black; -o-box-shadow: 0 0 8px black } #article-list .article-body:hover { box-shadow: 0 0 50px black; -webkit-box-shadow: 0 0 50px black; -moz-box-shadow: 0 0 50px black; -o-box-shadow: 0 0 50px black } #article-list .article { position: relative; margin-bottom: 30px; padding-bottom: 20px } #article-list i.article-stick { position: absolute; top: -10px; right: 5%; font-size: 40px; color: #d9534f } #article-list div.data-article { background-color: #6b69d6; border-color: #6b69d6; position: absolute; height: 70px; width: 70px; border-radius: 100px; left: -20px; top: -20px; color: #fff; padding-top: 10px } #article-list div.data-article > span.month, #article-list div.data-article > span.day { text-align: center; display: block } #article-list div.data-article > span.month { margin: 0 } #article-list div.data-article > span.day { font-size: 30px; font-weight: bold; margin-top: -5px } #article-list .title-article { text-align: center; padding: 10px 15px 0 15px } @media (max-width: 767px) { #article-list .title-article { padding: 0 } } #article-list .title-article > h1 { font-size: 32px; margin: 0 auto; text-align: center } #article-list .title-article > h1 > a { color: #3d4450; text-decoration: none } #article-list .title-article > h1 > a:hover { text-decoration: none } #article-list .title-article > h1 > a > span { color: #fff; position: static; opacity: 0.8; background: #1ec7e6; font: 90%/1.5 微软雅黑, Verdana, Arial, Helvetica, sans-serif; padding: 2px; margin: 2px; border-radius: 5px } #article-list .title-article > h1 > a > span:hover { animation: neon 1.5s ease-in-out infinite alternate; -webkit-animation: neon 1.5s ease-in-out infinite alternate; -moz-animation: neon 1.5s ease-in-out infinite alternate; -o-animation: neon 1.5s ease-in-out infinite alternate; opacity: 1; background-color: rgba(0, 0, 0, 0) } #article-list .title-article > center > h4 > a { color: #3d4450; text-decoration: none } #article-list .title-article > center > h4 > a:hover { text-decoration: none } #article-list .title-article > center > h4 > a > span { color: #fff; position: static; opacity: 0.8; background: #1ec7e6; font: 90%/1.5 微软雅黑, Verdana, Arial, Helvetica, sans-serif; padding: 2px; margin: 2px; border-radius: 5px } #article-list .title-article > center > h4 > a > span:hover { animation: neon 1.5s ease-in-out infinite alternate; -webkit-animation: neon 1.5s ease-in-out infinite alternate; -moz-animation: neon 1.5s ease-in-out infinite alternate; -o-animation: neon 1.5s ease-in-out infinite alternate; opacity: 1; background-color: rgba(0, 0, 0, 0) } #article-list .tag-article { text-align: center; line-height: 24px; margin: 20px } #article-list .content-article > .item { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-transition: all .35s ease-in-out; -moz-transition: all .35s ease-in-out; -ms-transition: all .35s ease-in-out; -o-transition: all .35s ease-in-out; transition: all .35s ease-in-out; position: relative; width: 100%; overflow: hidden } #article-list .content-article > .item * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box } #article-list .content-article > .item img { width: 100%; height: 100% } #article-list .content-article > .item > a { color: #333 } #article-list .content-article > .item > a:hover { text-decoration: none } #article-list .content-article > .item > a:hover > .img { -webkit-transform: scale(1.2); -moz-transform: scale(1.2); -ms-transform: scale(1.2); -o-transform: scale(1.2); transform: scale(1.2) } #article-list .content-article > .item > a:hover > .info { visibility: visible; opacity: 1 } #article-list .content-article > .item > a:hover > .info > p { -webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); -o-transform: scale(1); transform: scale(1) } #article-list .content-article > .item > a > .img { -webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); -o-transform: scale(1); transform: scale(1); -webkit-transition: all .35s ease-in-out; -moz-transition: all .35s ease-in-out; -ms-transition: all .35s ease-in-out; -o-transition: all .35s ease-in-out; transition: all .35s ease-in-out } #article-list .content-article > .item > a > .info { position: absolute; top: 0; bottom: 0; left: 0; right: 0; text-align: center; backface-visibility: hidden; visibility: hidden; opacity: 0; background: rgba(0, 0, 0, 0.6); -webkit-transition: all .35s ease-in-out; -moz-transition: all .35s ease-in-out; -ms-transition: all .35s ease-in-out; -o-transition: all .35s ease-in-out; transition: all .35s ease-in-out } #article-list .content-article > .item > a > .info > p { font-style: italic; font-size: 25px; position: relative; color: #bbb; text-align: center; -webkit-transform: scale(5); -moz-transform: scale(5); -ms-transform: scale(5); -o-transform: scale(5); transform: scale(5); -webkit-transition: all .35s .3s linear; -moz-transition: all .35s .3s linear; -ms-transition: all .35s .3s linear; -o-transition: all .35s .3s linear; transition: all .35s .3s linear; padding: 20px } #article.article, #article-archive.article, #article-tag.article, #article-tags.article, #article-categories.article, #article-category.article { position: relative; margin-bottom: 20px; padding-bottom: 20px } #article.article-body, #article-archive.article-body, #article-tag.article-body, #article-tags.article-body, #article-categories.article-body, #article-category.article-body { background-color: rgba(230, 238, 232, 0.5); box-shadow: 0 0 8px black; -webkit-box-shadow: 0 0 8px black; -moz-box-shadow: 0 0 8px black; -o-box-shadow: 0 0 8px black } #article.article-body:hover, #article-archive.article-body:hover, #article-tag.article-body:hover, #article-tags.article-body:hover, #article-categories.article-body:hover, #article-category.article-body:hover { box-shadow: 0 0 50px black; -webkit-box-shadow: 0 0 50px black; -moz-box-shadow: 0 0 50px black; -o-box-shadow: 0 0 50px black } #article .title-article, #article-archive .title-article, #article-tag .title-article, #article-tags .title-article, #article-categories .title-article, #article-category .title-article { padding: 10px 15px 0 15px } #article .title-article > h1, #article-archive .title-article > h1, #article-tag .title-article > h1, #article-tags .title-article > h1, #article-categories .title-article > h1, #article-category .title-article > h1 { font-size: 32px; margin: 0 auto; text-align: center } #article .title-article > h1 > a, #article-archive .title-article > h1 > a, #article-tag .title-article > h1 > a, #article-tags .title-article > h1 > a, #article-categories .title-article > h1 > a, #article-category .title-article > h1 > a { color: #3d4450; text-decoration: none } #article .title-article > h1 > a:hover, #article-archive .title-article > h1 > a:hover, #article-tag .title-article > h1 > a:hover, #article-tags .title-article > h1 > a:hover, #article-categories .title-article > h1 > a:hover, #article-category .title-article > h1 > a:hover { color: #d9534f; text-decoration: none; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease } #article .tag-article, #article-archive .tag-article, #article-tag .tag-article, #article-tags .tag-article, #article-categories .tag-article, #article-category .tag-article { text-align: center; line-height: 24px; margin: 20px } #article .content-article img, #article-archive .content-article img, #article-tag .content-article img, #article-tags .content-article img, #article-categories .content-article img, #article-category .content-article img { margin: 10px auto; display: inline-block; width: auto } .panel-toggle, .panel-remove { float: right; cursor: pointer; margin: 0 0 0 5px } .panel-toggle:hover, .panel-remove:hover { color: #d9534f; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease } .panel ul.list-group { width: 100%; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease } .panel.toggled ul.list-group { max-height: 0; width: 100%; overflow: hidden; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease } .panel-gal > .panel-heading { color: #fff; background-color: rgb(0,204,255,0.7); border-color: #000 } .panel.toggled .panel-heading { border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease } .panel-gal .badge { background-color: #d9534f } .panel-gal a { color: #666 } .panel-gal a:hover { color: #b94a48 } .panel .post-title { display: inline-block; width: 75%; white-space: nowrap; text-overflow: ellipsis; overflow: hidden } #sidebar aside > div { margin-bottom: 30px } #sidebar div.search { margin-bottom: 20px; padding: 8px; border-radius: 4px; background-color: rgb(0,204,255,0.7); } #sidebar div.search input[type="text"] { width: 85%; float: left; margin-right: 10px; background-color: transparent } #sidebar div.search input[type="text"]:focus { background-color: #fff; box-shadow: 0 0 50px black; -webkit-box-shadow: 0 0 50px black; -moz-box-shadow: 0 0 50px black; -o-box-shadow: 0 0 50px black } #sidebar div.search button { float: left; margin-top: 2px } .author-panel { padding: 20px 0 } .author-panel img.author-image { background-color: #fff; border: 2px solid #fff; border-radius: 50% } .author-panel img.author-image:hover { -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease; -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg) } .author-panel p.author-email { margin-top: 10px; font-size: 16px; font-weight: bold } .nav > li > a:hover, .nav > li > a:focus { text-decoration: none; background-color: #d9534f; -webkit-transition: all .25s ease-in-out; -moz-transition: all .25s ease-in-out; -ms-transition: all .25s ease-in-out; -o-transition: all .25s ease-in-out; transition: all .25s ease-in-out } .nav-pills > li.active a { color: #fff; background-color: #d9534f } .nav-pills > li.active a:hover, .nav-pills > li.active a:focus { color: #fff; background-color: #d9534f } ul.pills-gal { padding: 10px } ul.pills-gal li { margin-left: 5px } ul.pills-gal li a { border-radius: 5px } ul.pills-gal li a:hover { color: #fff } .tab-content { border-top: 1px solid #eee; padding: 10px } .panel-gal .tab-content a:hover, .panel-gal .nav-pills a:hover { color: #fff } #sidebar-tags a:hover { color: #fff } .cloud-tags a { display: inline-block; color: #fff; opacity: 0.7; padding: 2px 6px 3px; margin: 0 2px } .cloud-tags a:hover { opacity: 1 } .cloud-tags a:nth-child(7n+1) { background-color: #428bca } .cloud-tags a:nth-child(7n+2) { background-color: #5cb85c } .cloud-tags a:nth-child(7n+3) { background-color: #d9534f } .cloud-tags a:nth-child(7n+4) { background-color: #f0ad4e } .cloud-tags a:nth-child(7n+5) { background-color: #b37333 } .cloud-tags a:nth-child(7n+6) { background-color: #b433ff } .cloud-tags a:nth-child(7n) { background-color: #4a4a4a } #sidebar-recent_comments .author-avatar .avatar { border-radius: 50%; border: 1px solid #eee; position: relative; z-index: 99; float: left; display: block; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease } #sidebar-recent_comments .author-avatar .avatar:hover { -webkit-transform: scale(1.25); -moz-transform: scale(1.25); -ms-transform: scale(1.25); -o-transform: scale(1.25); transform: scale(1.25); -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease } #sidebar-recent_comments .hint, #sidebar-recent_comments [data-hint2] { display: block; position: relative; margin-left: auto; margin-right: auto; color: #666; cursor: url(../images/mouse2.cur), url(../images/mouse2.cur), auto } #sidebar-recent_comments .hint:hover, #sidebar-recent_comments [data-hint2]:hover { color: #b94a48 } #sidebar-recent_comments .hint:hover:before, #sidebar-recent_comments .hint:hover:after, #sidebar-recent_comments [data-hint2]:hover:before, #sidebar-recent_comments [data-hint2]:hover:after { visibility: visible; opacity: 1; -webkit-transition-delay: 100ms; -moz-transition-delay: 100ms; transition-delay: 100ms } #sidebar-recent_comments .hint:focus:before, #sidebar-recent_comments .hint:focus:after, #sidebar-recent_comments [data-hint2]:focus:before, #sidebar-recent_comments [data-hint2]:focus:after { visibility: visible; opacity: 1 } #sidebar-recent_comments .hint--left:hover:before, #sidebar-recent_comments .hint--left:hover:after, #sidebar-recent_comments .hint--left:focus:before, #sidebar-recent_comments .hint--left:focus:after { -webkit-transform: translateX(-8px); -moz-transform: translateX(-8px); -ms-transform: translateX(-8px); -o-transform: translateX(-8px); transform: translateX(-8px) } #sidebar-recent_comments .hint:before, #sidebar-recent_comments [data-hint2]:before { content: ''; position: absolute; background: transparent; border: 6px solid transparent; z-index: 1000001 } #sidebar-recent_comments .hint:after, #sidebar-recent_comments [data-hint2]:after { content: attr(data-hint2); background: #383838; color: #fff; padding: 8px 10px; font-size: 12px; line-height: 12px; white-space: nowrap } #sidebar-recent_comments .hint:before, #sidebar-recent_comments .hint:after, #sidebar-recent_comments [data-hint2]:before, #sidebar-recent_comments [data-hint2]:after { position: absolute; -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); visibility: hidden; opacity: 0; z-index: 1000000; pointer-events: none; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease; -webkit-transition-delay: 0ms; -moz-transition-delay: 0ms; transition-delay: 0ms } #sidebar-recent_comments .hint--left:before { border-left-color: #383838; margin-right: -12px; margin-bottom: -6px } #sidebar-recent_comments .hint--left:before, #sidebar-recent_comments .hint--left:after { right: 100%; bottom: 50% } #sidebar-recent_comments .hint--rounded:after { border-radius: 4px } #sidebar-recent_comments .hint--left:after { margin-bottom: -14px } #sidebar-recent_comments .comment-log { line-height: 20px; background-color: #eee; border-color: #eee; border-radius: 4px; display: inline-block; padding: 8px; margin-left: 10px; width: 80% } #comments-template .comments-container.comments-root-container .comments-header-container { text-align: center; font-size: 14px; margin: 20px 0 20px 0 } #comments-template .comments-container.comments-root-container .comments-header-container.alert { border-image: initial; border-radius: 4px; overflow: auto } #comments-template .comments-container.comments-root-container .comments-header-container.alert-info { color: #3a87ad; background-color: rgba(217, 237, 247, 0.8) } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list { padding: 0; margin-bottom: 20px } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list a { color: #3d4450 } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list a:hover { color: #d9534f; text-decoration: none } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list li { background-color: rgba(230, 238, 232, 0.65); box-shadow: black 0px 0px 8px; margin: 10px 0px; list-style: none; padding: 2px; border-radius: 4px; transition: background-color 0.3s ease-in-out 0s, box-shadow 0.3s ease-in-out 0s; -webkit-box-shadow: black 0 0 8px; -moz-box-shadow: black 0 0 8px; -o-box-shadow: black 0 0 8px; -webkit-transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out; -moz-transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out; -ms-transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out; -o-transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out; } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list > li:hover { background-color: #fff; box-shadow: black 0px 0px 50px; -webkit-box-shadow: black 0px 0px 50px; -moz-box-shadow: black 0px 0px 50px; -o-box-shadow: black 0px 0px 50px } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list > li .comment-body { position: relative } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list > li .comment-body .comment-meta { position: relative; height: auto; min-height: 37px; line-height: 37px; padding-left: 45px; background: rgba(217, 237, 247, 0.6) } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list > li .comment-body .comment-meta .comment-author { float: left } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list > li .comment-body .comment-meta .comment-author img { background-color: white; position: absolute; display: block; left: -40px; top: 10px; border: 2px solid #fff; border-image: initial; border-radius: 50%; margin: 0; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list > li .comment-body .comment-meta .comment-metadata { text-transform: uppercase; float: right; margin-right: 10px; font-size: 13px; font-weight: bold; text-decoration: none; border-radius: 4px } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list > li .comment-body .comment-content { position: relative; padding: 20px 55px 30px 45px } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list > li .comment-body .comment-reply-link, #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list > li .comment-body .comment-reply-login { position: absolute; bottom: 3px; right: 12px; font-size: 12px; text-transform: uppercase; display: block } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list > li .comment-body:hover .comment-meta .comment-author img { -webkit-transform: rotate(720deg); -moz-transform: rotate(720deg); -ms-transform: rotate(720deg); -o-transform: rotate(720deg); transform: rotate(720deg); -webkit-transition: all .8s ease; -moz-transition: all .8s ease; -ms-transition: all .8s ease; -o-transition: all .8s ease; transition: all .8s ease; border-radius: 0 } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list .comment-nav { margin-top: 20px } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list .comment-nav .pagination-gal { margin: 0; border-radius: 4px } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list .comment-nav .page-numbers { color: #d9534f; background-color: transparent; display: inline-block; border-radius: 4px; border: 2px solid #d9534f; border-image: initial; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease; margin: 0 0 10px 10px; padding: 5px 10px } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list .comment-nav .page-numbers.dots { border-width: initial; border-style: none; border-color: initial; border-image: initial } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list .comment-nav .page-numbers.active { color: #fff; background-color: #d9534f; cursor: not-allowed } #comments-template .comments-container.comments-root-container .comments-comments-container.comment-list .comment-nav .page-numbers:hover { color: #fff; background-color: #d9534f; border: 2px solid #d9534f; border-image: initial; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease } #comments-template .comments-container.comments-root-container .comments-editor-container { padding-left: 0; margin: 20px 0 } #comments-template .comments-container.comments-root-container .comments-editor-container .comment-reply-title { padding: 15px; margin-bottom: 20px; border: 1px solid transparent; border-radius: 4px; overflow: auto; color: #3a87ad; background-color: rgba(217, 237, 247, 0.8); margin: 10px auto; text-align: center; font-size: 14px } #comments-template .comments-container.comments-root-container .comments-editor-container .comments-editor-submit { margin-top: 10px; margin-bottom: 10px; border-radius: 4px; width: 100%; color: #d9534f; background-color: transparent; border: 2px solid #d9534f; padding: 10px 25px; text-align: center; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease } #comments-template .comments-container.comments-root-container .comments-editor-container .comments-editor-submit:hover { color: #fff; background-color: #d9534f; border: 2px solid #d9534f; text-decoration: none; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease } #comments-template .comments-container.comments-root-container .comments-editor-container .comments-editor-write-field textarea { margin: 0; margin-bottom: 10px; padding: 10px 15px; width: 100%; border-radius: 4px; background-color: transparent; border: 2px solid #c1c1c1 } #comments-template .comments-container.comments-root-container .comments-editor-container .comments-editor-write-field textarea:focus { background-color: rgba(255, 255, 255, 0.9); outline: 0; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease; border: 2px solid #d9534f } #comments-template .comments-container.comments-root-container .comments-footer-container { text-align: center } #comments-template .comments-container.comments-root-container .comments-footer-container a:hover { text-decoration: none } #smilelink { display: inline-block; margin-bottom: 10px; cursor: url(../images/mouse1.cur), url(../images/mouse1.cur), auto } #smilelink img { opacity: 0.7; -webkit-transform: scale(1) rotate(0deg); -moz-transform: scale(1) rotate(0deg); -ms-transform: scale(1) rotate(0deg); -o-transform: scale(1) rotate(0deg); transform: scale(1) rotate(0deg); cursor: url(../images/mouse2.cur), url(../images/mouse2.cur), auto; -webkit-transition: -webkit-transform .2s ease-out; -moz-transition: -webkit-transform .2s ease-out; -ms-transition: -webkit-transform .2s ease-out; -o-transition: -webkit-transform .2s ease-out; transition: -webkit-transform .2s ease-out } #smilelink img:hover { opacity: 1; z-index: 1000; -webkit-transform: scale(1.5) rotate(1deg); -moz-transform: scale(1.5) rotate(1deg); -ms-transform: scale(1.5) rotate(1deg); -o-transform: scale(1.5) rotate(1deg); transform: scale(1.5) rotate(1deg) } @media (max-width: 768px ) { body { background-color: #f0f0f0; background: url('../images/xsbg.gif'); background-attachment: fixed; } } #gal-header .navbar-brand { height: 54px; line-height: 24px; font-size: 28px; opacity: 1; background-color: rgba(0, 0, 0, 0); text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #228DFF, 0 0 35px #228DFF, 0 0 40px #228DFF, 0 0 50px #228DFF, 0 0 75px #228DFF; } #reply-title #cancel-comment-reply-link { padding: 2px 5px; background-color: #d9534f; color: white; border-radius: 4px; font-size: 14px; }
0.44059
0.086246
.main_nav { width: 150px; float: left; margin-right: 16px; } .main_nav li { position: relative; } .main_nav a { display: block; height: 28px; margin-left: -8px; padding-left: 7px; } .main_nav a:hover { background: #E1E5EB; } .main_nav #settings { position: absolute; display: block; top: 4px; left: -28px; width: 20px; height: 18px; background: url(../images/common_icons.png) no-repeat; background-size: 36px; background-position-y: -66px; opacity: 0; transition: all 0.2s ease-in-out; cursor: pointer; } .main_nav a:hover ~ #settings { opacity: 0.4; transition-delay: 0.2s; } .main_nav #settings:hover { opacity: 1; } .main_nav a .nav_text { line-height: 28px; } .main_nav a .nav_icon { display: block; float: left; width: 18px; height: 18px; margin: 5px 10px 0 0; background: url(../images/main_nav_icons.png) no-repeat; background-size: 18px; background-position-y: 1px; opacity: 0.75; } .main_nav a:hover .nav_icon { opacity: 1; } .main_nav a .nav_icon.news { background-position-y: -922px; } .main_nav a .nav_icon.messages { background-position-y: -26px; } .main_nav a .nav_icon.friends { background-position-y: -82px; } .main_nav a .nav_icon.groups { background-position-y: -110px; } .main_nav a .nav_icon.music { background-position-y: -166px; } .main_nav a .nav_icon.video { background-position-y: -194px; } .main_nav a .nav_icon.games { background-position-y: -222px; } .main_nav a .nav_icon.favorite { background-position-y: -306px; } .main_nav a .nav_icon.documents { background-position-y: -278px; } .main_nav .dividing_line { margin: 9px 6px 9px 27px; border-top: 1px solid #e3e4e8; } .main_nav .dop_references { margin-top: 10px; padding: 14px 0 4px; line-height: 19px; font-size: 12px; text-align: left; } .main_nav .dop_references > a { display: inline; padding-right: 10px; color: #939699; } .main_nav .dop_references > a:hover { text-decoration: underline; } .main_nav .dop_references > a.more { display: inline-block; padding-right: 0; } .main_nav .dop_references > a.more .arrow_container { margin: -2px 0 0 6px; } .main_nav .dop_references > a.more .arrow_container .arrow_down { width: 5px; height: 5px; border-width: 1px; border-color: #b3b6b9; } .main_nav .dop_references > a.more:hover .arrow_container .arrow_down { border-color: #97999c; }
Epam.Task9/Epam.Task9.VK/css/main_navigation.css
.main_nav { width: 150px; float: left; margin-right: 16px; } .main_nav li { position: relative; } .main_nav a { display: block; height: 28px; margin-left: -8px; padding-left: 7px; } .main_nav a:hover { background: #E1E5EB; } .main_nav #settings { position: absolute; display: block; top: 4px; left: -28px; width: 20px; height: 18px; background: url(../images/common_icons.png) no-repeat; background-size: 36px; background-position-y: -66px; opacity: 0; transition: all 0.2s ease-in-out; cursor: pointer; } .main_nav a:hover ~ #settings { opacity: 0.4; transition-delay: 0.2s; } .main_nav #settings:hover { opacity: 1; } .main_nav a .nav_text { line-height: 28px; } .main_nav a .nav_icon { display: block; float: left; width: 18px; height: 18px; margin: 5px 10px 0 0; background: url(../images/main_nav_icons.png) no-repeat; background-size: 18px; background-position-y: 1px; opacity: 0.75; } .main_nav a:hover .nav_icon { opacity: 1; } .main_nav a .nav_icon.news { background-position-y: -922px; } .main_nav a .nav_icon.messages { background-position-y: -26px; } .main_nav a .nav_icon.friends { background-position-y: -82px; } .main_nav a .nav_icon.groups { background-position-y: -110px; } .main_nav a .nav_icon.music { background-position-y: -166px; } .main_nav a .nav_icon.video { background-position-y: -194px; } .main_nav a .nav_icon.games { background-position-y: -222px; } .main_nav a .nav_icon.favorite { background-position-y: -306px; } .main_nav a .nav_icon.documents { background-position-y: -278px; } .main_nav .dividing_line { margin: 9px 6px 9px 27px; border-top: 1px solid #e3e4e8; } .main_nav .dop_references { margin-top: 10px; padding: 14px 0 4px; line-height: 19px; font-size: 12px; text-align: left; } .main_nav .dop_references > a { display: inline; padding-right: 10px; color: #939699; } .main_nav .dop_references > a:hover { text-decoration: underline; } .main_nav .dop_references > a.more { display: inline-block; padding-right: 0; } .main_nav .dop_references > a.more .arrow_container { margin: -2px 0 0 6px; } .main_nav .dop_references > a.more .arrow_container .arrow_down { width: 5px; height: 5px; border-width: 1px; border-color: #b3b6b9; } .main_nav .dop_references > a.more:hover .arrow_container .arrow_down { border-color: #97999c; }
0.521959
0.087603
::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); background-color: #F5F5F5; } ::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } ::-webkit-scrollbar-thumb { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3); background-color: #555; } .panel-violet .panel-heading { background-color: #93b1c6; color: #fff; padding: 20px 15px; font-size: 22px; text-align: center; border: 10px solid #f5f5f5; box-shadow: 0 0 4px #666; margin-bottom: 2px; } .panel-violet .panel-footer { background-color: #eee; border-top: none; /*padding-left: 0; padding-right: 0;*/ } .panel-violet .panel-footer input{ font-size: 18px; border: 1px solid #93b1c6; padding: 5px 20px; margin-bottom: 0; } .panel-violet .panel-footer input:focus { box-shadow: 0px 1px 2px #93b1c6 inset, 0 0 2px rgba(147, 177, 198, 0.45) } .panel-violet .form-group.label-floating.is-focused label.control-label { top:-40px } .chat-content { margin: 10px; } .panel-violet .panel-body { background-color: #eee; padding: 10px; } .panel-violet .panel-body li { padding:10px; margin: 0; } .panel-violet .form-group { margin-top: 0; } /*.panel-violet .btn-default { background-color: #575768; }*/ .panel-violet .panel-footer .input-group-btn { padding-right: 0; padding-bottom: 0; } .panel-violet .panel-footer .btn-send{ margin-top: 0; margin-bottom: 0; height: 50px; margin-left: -10px; padding-left: 10px; background-color: rgba(204, 204, 204, 0.45); } .panel-violet .panel-footer .btn-send span { margin-right: 0; font-size: 24px; } .chat{ list-style: none; margin: 0; padding: 0; } .chat li{ margin-bottom: 10px; padding-bottom: 5px; border-bottom: 1px dotted #B3A9A9; } .chat li.left .chat-body{ margin-left: 60px; } .chat li.right .chat-body{ margin-right: 60px; } .chat li .chat-body p{ margin: 0; color: #777777; } .chat-content { margin: 10px; } .panel .slidedown .glyphicon, .chat .glyphicon{ margin-right: 5px; } .name-message { font-size: 12px; } .img-message { max-width: 40px; } .text-muted { font-size: 12px; } .message-me { text-align: left; background-color: #fff; padding: 10px; border-radius: 5px; /*border: 1px solid #575768;*/ box-shadow: 2px 3px 6px #575768; box-shadow: -1px 3px 6px rgba(87, 87, 104, 0.59); } .img-message-me { display: inline-block; width: 40px; height: 40px; background-image: url("../../../img/icon/dialog-me.png"); background-size: 40px; vertical-align: middle; } .img-message-he { display: inline-block; width: 40px; height: 40px; background-image: url("../../../img/icon/dialog-he.png"); background-size: 40px; vertical-align: middle; } .message-he { background-color: #fff; padding: 10px; border-radius: 5px; /*border: 1px solid #006952;*/ box-shadow: 1px 2px 6px #768d9e; box-shadow: 2px 2px 6px #8daabe; }
public/components/chat/css/component.chat.css
::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); background-color: #F5F5F5; } ::-webkit-scrollbar { width: 12px; background-color: #F5F5F5; } ::-webkit-scrollbar-thumb { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3); background-color: #555; } .panel-violet .panel-heading { background-color: #93b1c6; color: #fff; padding: 20px 15px; font-size: 22px; text-align: center; border: 10px solid #f5f5f5; box-shadow: 0 0 4px #666; margin-bottom: 2px; } .panel-violet .panel-footer { background-color: #eee; border-top: none; /*padding-left: 0; padding-right: 0;*/ } .panel-violet .panel-footer input{ font-size: 18px; border: 1px solid #93b1c6; padding: 5px 20px; margin-bottom: 0; } .panel-violet .panel-footer input:focus { box-shadow: 0px 1px 2px #93b1c6 inset, 0 0 2px rgba(147, 177, 198, 0.45) } .panel-violet .form-group.label-floating.is-focused label.control-label { top:-40px } .chat-content { margin: 10px; } .panel-violet .panel-body { background-color: #eee; padding: 10px; } .panel-violet .panel-body li { padding:10px; margin: 0; } .panel-violet .form-group { margin-top: 0; } /*.panel-violet .btn-default { background-color: #575768; }*/ .panel-violet .panel-footer .input-group-btn { padding-right: 0; padding-bottom: 0; } .panel-violet .panel-footer .btn-send{ margin-top: 0; margin-bottom: 0; height: 50px; margin-left: -10px; padding-left: 10px; background-color: rgba(204, 204, 204, 0.45); } .panel-violet .panel-footer .btn-send span { margin-right: 0; font-size: 24px; } .chat{ list-style: none; margin: 0; padding: 0; } .chat li{ margin-bottom: 10px; padding-bottom: 5px; border-bottom: 1px dotted #B3A9A9; } .chat li.left .chat-body{ margin-left: 60px; } .chat li.right .chat-body{ margin-right: 60px; } .chat li .chat-body p{ margin: 0; color: #777777; } .chat-content { margin: 10px; } .panel .slidedown .glyphicon, .chat .glyphicon{ margin-right: 5px; } .name-message { font-size: 12px; } .img-message { max-width: 40px; } .text-muted { font-size: 12px; } .message-me { text-align: left; background-color: #fff; padding: 10px; border-radius: 5px; /*border: 1px solid #575768;*/ box-shadow: 2px 3px 6px #575768; box-shadow: -1px 3px 6px rgba(87, 87, 104, 0.59); } .img-message-me { display: inline-block; width: 40px; height: 40px; background-image: url("../../../img/icon/dialog-me.png"); background-size: 40px; vertical-align: middle; } .img-message-he { display: inline-block; width: 40px; height: 40px; background-image: url("../../../img/icon/dialog-he.png"); background-size: 40px; vertical-align: middle; } .message-he { background-color: #fff; padding: 10px; border-radius: 5px; /*border: 1px solid #006952;*/ box-shadow: 1px 2px 6px #768d9e; box-shadow: 2px 2px 6px #8daabe; }
0.327776
0.056809
CONTENTS: html5 and responsive content reset general clases menu button top slider counter services testimonials flickity gallery carousel team home blog contact footer blog pages chart twitter single page insurance single page gallery page tabs ------------------------------------------------------------*/ /********* html5 and responsive content *********/ header, nav, article, section, aside, footer { display: block; } img { max-width: 100%; width: auto; -ms-interpolation-mode: bicubic; } img, embed, object, video { max-width: 100%; } /********* html5 and responsive content end *********/ /********* reset *********/ a:link, a:visited { outline: none; text-decoration: none; color: #9f9f9f; } a:link:hover, a:visited:hover { color: #53aedd; } ul, ol { margin: 0 0 27px 0; padding: 0; list-style: none; line-height: 1.867; } ul li, ol li { margin: 0 0 10px 0; padding: 0; list-style: none; } h1, h2, h3, h4, h5, h6 { margin-top: 0; margin-bottom: 0; color: #122739; font-family: "source sans pro", arial, sans-serif; } h1, h2, h3 { line-height: 1.1; } h4, h5, h6 { line-height: 1.4; } h6 { font-size: 14px; } h5 { font-size: 18px; } h4 { font-size: 28px; } h3 { font-size: 35px; } h2 { font-size: 42px; } h1 { font-size: 42px; } p { margin: 0 0 27px 0; color: #9f9f9f; font-size: 15px; font-family: "open sans", arial, sans-serif; line-height: 1.867; } br { margin: 0; line-height: 0; } ul.ul-list i { color: #53aedd; padding-right: 10px; } /***bootstrap fix important***/ .row { margin-right: 0; margin-left: 0; } @media (max-width: 767px) { .pull-right { float: none; width: 100%; padding: 0; margin: 0; } } @media (max-width: 992px) { .navbar-fixed-top { position: relative!important; } } .padding-out { padding-right: 0!important; padding-left: 0!important; } input { padding: 7px 14px; background: url("../images/images-search.png") right center no-repeat; border: 1px solid #f0f0f0; } /************ reset end *************/ /************ general classes ************/ html, body { height: 100%; } body { height: 100%; color: #9f9f9f; font-size: 15px; font-family: "open sans", arial, sans-serif; line-height: 1.867; background: #fff; background-attachment: fixed; } @media (max-width: 500px) { body { padding: 0; } } ::selection { background: #3d434d; } ::-moz-selection { background: #3d434d; } .wrapper100percent { float: left; width: 100%; } .loading { position: fixed; overflow: hidden; background: #fff url(../images/images-loader.gif) center center no-repeat; opacity: 0; } /*** sections ***/ .sectionwrapper { position: relative; float: left; margin-top: 1px; padding-bottom: 54px; width: 100%; } .section { float: left; width: 100%; background: #fff; } .section1 { float: left; width: 100%; padding: 0 0 54px 0; background: #fff; } .section1a { float: left; width: 100%; padding: 54px 0 0 0; background: #fff; } .section2 { float: left; width: 100%; padding: 0 0 54px 0; background: #707418; } .section2 h1, .section2 h2, .section2 h3, .section2 h4, .section2 h5, .section2 h6, .section2 p { color: #fff; } .section3 { float: left; width: 100%; display: -webkit-flex; display: flex; } .section3 h3 { color: #fff; } .section3 .left { width: 50%; float: left; background: #3d434d; padding: 54px 54px 0 54px; } .section3 .left .left-inner { max-width: 500px; float: right; width: 100%; } .section3 .right { width: 50%; float: left; background: #31363e; padding: 54px 54px 0 54px; } .section3 .right .right-inner { max-width: 500px; float: left; width: 100%; } @media (max-width: 992px) { .section3 { text-align: center; float: left; width: 100%; display: block; } .section3 .left { width: 100%; padding: 54px 27px; } .section3 .left .left-inner { float: left; max-width: 100%; } .section3 .right { width: 100%; padding: 54px 27px; } .section3 .right .right-inner { max-width: 5000px; float: left; } } /*** sections end ***/ .mainheadlinewrapper { margin-top: 0; margin-bottom: 54px; float: left; width: 100%; text-align: center; } .mainheadlinewrapper .mainheadline { max-width: 600px; margin: 0 auto; } .mainheadlinewrapper .mainheadline h2 { line-height: 1; margin-bottom: 27px; font-size: 35px; font-weight: 400; } .mainheadlinewrapper .mainheadline h3 { font-weight: 400; color: #53aedd; margin-bottom: 0; font-size: 15px; font-family: "open sans"; line-height: 1.8; color: #9f9f9f; } /********* general classes end *********/ /************ menu ************/ .top { position: relative; z-index: 200; width: 100%; background: #f7f7f7; border-bottom: 1px solid #e4e7ea; } .top i { color: #bfbfbf; padding: 10px 14px; font-size: 14px; float: left; border-left: 1px solid #e4e7ea; } .top i:hover { color: #53aedd; } .top i span { font-family: "open sans"; font-weight: 500; font-size: 13px; font-style: italic; margin-left: 5px; } .top i.last { border-right: 1px solid #e4e7ea; } .top-disappear { display: none; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } @media (max-width: 767px) { .top { text-align: center; } .top i { border-left: none; } .top i.last { border-right: none; } } .navbar-toggle { position: relative; float: right; width: 42px; height: 34px; margin-top: 22px; margin-bottom: 8px; background: #53aedd; border: none; border-radius: 0; } .navbar-toggle .icon-bar { background-color: #3d434d; margin: 0; } .navbar-toggle:hover .icon-bar.icon-bar1, .navbar-toggle:focus .icon-bar.icon-bar1 { -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; transform: rotate(45deg); } .navbar-toggle:hover .icon-bar.icon-bar2, .navbar-toggle:focus .icon-bar.icon-bar2 { display: none; } .navbar-toggle:hover .icon-bar.icon-bar3, .navbar-toggle:focus .icon-bar.icon-bar3 { -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; transform: rotate(-45deg); margin-top: -1px; } .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { max-height: 30000px; } .navbar { z-index: 1000; width: 100%; float: left; margin-bottom: 0; border-radius: 0; background: #fff; } /** first navigation **/ .navbar-height1 { height: 120px; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .navbar-height1 .nav > li { -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; float: left; padding: 0; } .navbar-height1 .nav > li > a { -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; padding-top: 50px!important; padding-bottom: 50px!important; } .navbar-height1 .navbar-brand { padding-top: 37px; height: auto; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } /** first navigation end **/ /** second navigation on scroll **/ .navbar-height2 { -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; height: 50px; width: 100%; float: left; } .navbar-height2 .nav > li { -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; max-height: 50px; float: left; padding: 16px 0; } .navbar-height2 .nav > li > a { -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .navbar-height2 .navbar-brand { padding: 0; height: auto; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } /** second navigation on scroll end **/ /** inner pages navigation **/ .navbar-height-inner { height: 120px; } .navbar-height-inner .nav > li { float: left; padding: 0; } .navbar-height-inner .nav > li > a { padding-top: 50px!important; padding-bottom: 50px!important; } .navbar-height-inner .navbar-brand { padding-top: 37px; height: auto; } /** inner pages navigation end **/ .nav > li { border-top: 1px solid #e4e7ea; margin-top: -2px; } .nav > li > a:link, .nav > li > a:visited { padding: 0 20px; background: transparent; color: #707418; font-size: 14px; font-family: "source sans pro"; font-weight: 700; text-transform: uppercase; } .nav > li > a:hover { color: #53aedd; } .nav > li:hover, li.active { border-top: 1px solid #53aedd; } .navbar-nav > .active > a:link, .navbar-nav > .active > a:visited, .navbar-nav > .active > a:hover, .navbar-nav > .active > a:focus { display: inlne-block; color: #53aedd; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; } .navbar-height1 .navbar-nav > li > ul { padding: 0; margin: 0; width: 100%; } .navbar-height2 .navbar-nav > li > ul { padding: 0; margin: 12px 0 0 0; width: 100%; } /*** for dropdown hide ***/ .navbar-nav li ul { position: absolute; z-index: 100; left: -9999px; } .navbar-nav li:hover ul { left: 0; } .navbar-nav li:hover ul li ul { left: -9999px; } .navbar-nav li ul li ul { postion: absolute; left: -9999px; } .navbar-nav li ul li:hover ul { left: 0; } /*** for dropdown hide end ***/ /*** second level ***/ .navbar-nav > li > ul > li { margin: 0; width: 100%; } .nav li ul { display: block; float: left; width: 200px!important; background: #f8f8f8; padding: 14px!important; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; } .navbar-nav > li > ul > li > a:link, .navbar-nav > li > ul > li > a:visited { position: relative; display: block; padding: 7px 12px; width: 200px; margin-left: 0; color: #9f9f9f; font-size: 13px; font-family: "open sans"; font-weight: 400; } .navbar-nav > li > ul > li > a:hover { color: #53aedd; } .navbar-nav > li:hover ul { left: 0; } /*** second level end ***/ /** fix for navigation breakpoing **/ @media (max-width: 992px) { .nav > li { border-top: none!important; } .navbar-header { float: none; } .navbar-toggle { display: block; } .navbar-collapse.collapse { display: none!important; } .navbar-nav { float: none!important; } .navbar-nav > li { float: none; } .navbar-text { float: none; margin: 15px 0; } .navbar-collapse.collapse.in { display: block!important; } .collapsing { overflow: hidden!important; } } /** fix for navigation breakpoing end **/ @media (max-width: 1200px) { .nav > li > a:link, .nav > li > a:visited { padding-right: 14px; padding-left: 14px; } } @media (max-width: 992px) { .nav li ul { width: 100%!important; } .nav > li > a:link, .nav > li > a:visited { padding: 14px 4px; font-size: 13px; } /** fix for navigation breakpoint 2 **/ .navbar-header { float: right; } .collapse { float: right; width: 100%; } .responsive-wrapper { float: right; width: 100%; } /** fix for navigation breakpoint 2 end **/ .navbar-nav > li > a { margin-left: 0; } .navbar-nav > li > a { margin-right: 0; color: #fff; } .navbar { position: relative!important; height: auto; min-height: 120px; } .nav { margin-top: 20px; } .nav li { width: 100%; text-align: center; } .navbar-nav > li > ul > li > a:link, .navbar-nav > li > ul > li > a:visited { width: 100%; text-align: center; display: block; } .navbar-nav li ul { position: relative; z-index: 100; left: 0; } .navbar-nav li:hover ul { left: 0; } .navbar-nav li:hover ul li ul { left: 0; } .navbar-nav li ul li ul { postion: relative; left: 0; } .navbar-nav li ul li:hover ul { left: 0; } .navbarwrapper { position: relative; z-index: 900; } } @media (max-width: 992px) { .navbar-height1 { float: left; } .navbar-height1 .nav { padding-top: 14px; } .navbar-height1 .nav > li { padding: 0; } .navbar-height1 .nav > li > a { padding-top: 10px!important; padding-bottom: 10px!important; } .navbar-height-inner { height: auto; } .navbar-height-inner .nav { padding-top: 14px; } .navbar-height-inner .nav > li { padding: 0; } .navbar-height-inner .nav > li > a { padding-top: 10px!important; padding-bottom: 10px!important; } } /*** menu end ***/ /********* menu end **********/ /************ button *************/ .button1 a:link, .button1 a:visited { display: inline-block; text-wrap: none; text-align: center; line-height: 1; padding: 15px 22px; text-transform: uppercase; background: #707418; font-weight: 600; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; color: #fff; font-family: "source sans pro"; -webkit-transition: background 0.5s ease; -moz-transition: background 0.5s ease; -o-transition: background 0.5s ease; transition: background 0.5s ease; } .button1 a:hover { background: #5a5f68; } /********* button end **********/ /**************** top slider******************/ .flex-container a:hover, .flex-slider a:hover, .flex-container a:focus, .flex-slider a:focus { outline: none; } .slides, .slides > li, .flex-control-nav, .flex-direction-nav { margin: 0; padding: 0; list-style: none; } .flex-pauseplay span { text-transform: capitalize; } .flexslider .slides > li { display: none; -webkit-backface-visibility: hidden; } .flexslider .slides img { width: 100%; display: block; } .flexslider .slides:after { content: ""; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; } html[xmlns] .flexslider .slides { display: block; } * html .flexslider .slides { height: 1%; } .no-js .flexslider .slides > li:first-child { display: block; } .flexslider { float: left; width: 100%; margin: 120px auto 0 auto; background: #fff; position: relative; zoom: 1; } @media screen and (max-width: 992px) { .flexslider { margin: 0 auto; } } .flexslider .slides { zoom: 1; } .flexslider .slides img { height: auto; } .flex-viewport { max-height: 2000px; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .loading .flex-viewport { max-height: 300px; } .carousel li { margin-right: 5px; } .flex-direction-nav { *height: 0; } .flex-direction-nav a { position: absolute; top: 50%; z-index: 10; text-decoration: none; display: block; width: 50px; height: 50px; margin-top: -25px; line-height: 5; overflow: hidden; opacity: 0; cursor: pointer; color: #3d434d; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .flex-direction-nav a:before { font-family: "FontAwesome"; display: inline-block; content: ' '; } .flex-direction-nav .flex-prev { left: 0; text-indent: -9999px; background: url("../images/images-arrow-left.png") center center no-repeat; } .flex-direction-nav .flex-prev:hover { background: url("../images/images-arrow-lefth.png") center center no-repeat; } .flex-direction-nav .flex-next { right: 0; text-indent: -9999px; background: url("../images/images-arrow-right.png") center center no-repeat; } .flex-direction-nav .flex-next:hover { background: url("../images/images-arrow-righth.png") center center no-repeat; } .flexslider:hover .flex-direction-nav .flex-prev { opacity: 0.7; left: 10px; } .flexslider:hover .flex-direction-nav .flex-prev:hover { opacity: 1; } .flexslider:hover .flex-direction-nav .flex-next { opacity: 0.7; right: 10px; } .flexslider:hover .flex-direction-nav .flex-next:hover { opacity: 1; } .flex-direction-nav .flex-disabled { opacity: 0!important; filter: alpha(opacity=0); cursor: default; } .flex-control-nav { position: absolute; z-index: 10; width: 100%; bottom: 20px; text-align: center; } .flex-control-nav li { margin: 0 8px; display: inline-block; zoom: 1; *display: inline; } .flex-control-paging li a { width: 12px; height: 12px; display: block; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; background: #53aedd; cursor: pointer; text-indent: -9999px; opacity: 0.6; } .flex-control-paging li a:hover { background: #53aedd; opacity: 1; } .flex-control-paging li a.flex-active { background: #53aedd; cursor: default; opacity: 1; } .flex-control-thumbs { margin: 5px 0 0; position: static; overflow: hidden; } .flex-control-thumbs li { width: 25%; float: left; margin: 0; } .flex-control-thumbs img { width: 100%; height: auto; display: block; cursor: pointer; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .flex-control-thumbs img:hover { opacity: 1; } .flex-control-thumbs .flex-active { opacity: 1; cursor: default; } @media screen and (max-width: 860px) { .flex-direction-nav .flex-prev { opacity: 1; left: 10px; } .flex-direction-nav .flex-next { opacity: 1; right: 10px; } } .flex-caption { position: absolute; top: 50%; width: 100%; margin-top: -120px; } .flex-caption1 h1, .flex-caption1 h2, .flex-caption1 h3, .flex-caption1 h4, .flex-caption1 h5, .flex-caption1 h6, .flex-caption1 p { color: #fff; max-width: 100%; } .flex-caption1 h2, .flex-caption1 h1 { font-weight: 300; margin-bottom: 27px; } .flex-caption1 p { opacity: 0.8; } @media (max-width: 992px) { .flexslider { margin-top: 0; background: #31363e; } .flex-caption { position: relative; top: 0; width: 100%; margin-top: 54px; padding-bottom: 54px; text-align: center; } .flex-caption1 h2, .flex-caption1 h3, .flex-caption1 h4, .flex-caption1 h5, .flex-caption1 h6, .flex-caption1 p { max-width: 100%; } .flex-caption1 h2 { font-size: 44px; } .flex-caption1 h3 { font-size: 21px; } .flex-control-paging li a { display: none; } } /**************** top slider end ******************/ /********* counter *********/ .timerwrapper { float: left; width: 100%; text-align: center; background: #707418; padding: 28px 0; } .timerwrapper .onecounter-left { width: 25%; float: left; } .timerwrapper .onecounter-right { width: 75%; float: left; padding-right: 70px; } @media (max-width: 1000px) { .timerwrapper .onecounter-left { width: 100%; } .timerwrapper .onecounter-right { width: 100%; padding-right: 0; } } .timerwrapper p { display: inline-block; line-height: 1; font-size: 28px; font-weight: 400; color: #fff; margin-bottom: 14px; font-family: "source sans pro"; } .timerwrapper h6 { font-size: 14px; font-weight: 700; letter-spacing: 1px; line-height: 1; margin-bottom: 0; color: #fff; text-transform: uppercase; opacity: 0.7; } @media (max-width: 767px) { .onecounter { padding: 27px 0; float: left; width: 100%; } } /********* counter end *********/ /********* services **********/ .services { display: -webkit-flex; display: flex; } .services .one-service { position: relative; z-index: 10; padding: 0; width: 20%; float: left; } .services .one-service img { margin-right: 14px; float: left; } .services .one-service h3 { display: inline-block; float: left; margin-top: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 14px; opacity: 0.8; color: #fff; } .services .color1 { background: #bbc230; } .services .color2 { background: #9fa528; } .services .color3 { background: #898f22; } .services .color4 { background: #7e831f; } .services .color5 { background: #707418; } .services .color6 { background: #5f6314; } .services ul { display: block; width: 100%; float: left; margin: 0; padding: 0; } .services ul > li { display: block; width: 100%; float: left; padding: 27px 14px 14px 27px; position: relative; margin: 0; } .services ul > li > ul > li { padding: 14px 0; } .services ul > li > p { color: #fff; opacity: 0.6; margin-bottom: 12px; font-family: "source sans pro"; } .services ul > li > a { color: #fff; font-size: 13px; font-weight: 700; opacity: 0.8; text-transform: uppercase; } .services ul > li > a:hover { opacity: 1; color: #fff; } .services li ul { list-style: none; width: 100%; left: 0; top: 100%; max-height: 0; overflow: hidden; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .services li ul { max-height: 500px; } @media (max-width: 767px) { .services { display: block; } .services .one-service { float: left; width: 100%; } } /********* services end **********/ /********* testimonials *********/ .testimonials { text-align: center; width: 100%; float: left; } .testimonials .testimonialsinner { width: 100%; float: left; } .testimonial { padding: 27px; text-align: center; } .testimonial i { font-size: 35px; margin-bottom: 27px; color: #fff; } .testimonial h5 { line-height: 1.7; font-size: 14px; font-style: italic; color: #fff; opacity: 0.7; max-width: 500px; margin: 0 auto 27px auto; font-family: "open sans"; } .testimonial img { width: 100px; height: 100px; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; margin-bottom: 27px; } .testimonial p { color: #fff; margin-bottom: 27px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-family: "source sans pro"; } /********* testimonials end *********/ /*********** flickity gallery carousel ****************/ /*! Flickity v1.0.0 http://flickity.metafizzy.co ---------------------------------------------- */ .flickity-enabled { position: relative; } .flickity-enabled:focus { outline: none; } .flickity-viewport { position: relative; z-index: 10; overflow: hidden; height: 100%; } .flickity-slider { position: absolute; width: 100%; height: 100%; } .flickity-enabled.is-draggable { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .flickity-enabled.is-draggable .flickity-viewport { cursor: move; cursor: -webkit-grab; cursor: grab; } .flickity-enabled.is-draggable .flickity-viewport.is-pointer-down { cursor: -webkit-grabbing; cursor: grabbing; } /* ---- previous/next buttons ---- */ .flickity-prev-next-button { position: absolute; z-index: 10; top: 50%; width: 44px; height: 44px; border: none; border-radius: 50%; background: #3d434d; background: rgba(255, 255, 255, 0.75); cursor: pointer; /* vertically center */ -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); } .flickity-prev-next-button:hover { background: #fff; } .flickity-prev-next-button:focus { outline: none; } .flickity-prev-next-button:active { filter: alpha(opacity=60); /* IE8 */ opacity: 0.6; } .flickity-prev-next-button.previous { left: 10px; } .flickity-prev-next-button.next { right: 10px; } .flickity-rtl .flickity-prev-next-button.previous { left: auto; right: 10px; } .flickity-rtl .flickity-prev-next-button.next { right: auto; left: 10px; } .flickity-prev-next-button:disabled { filter: alpha(opacity=30); /* IE8 */ opacity: 0.3; cursor: auto; } .flickity-prev-next-button svg { position: absolute; left: 20%; top: 20%; width: 60%; height: 60%; } .flickity-prev-next-button .arrow { fill: #333; } /* color & size if no SVG - IE8 and Android 2.3 */ .flickity-prev-next-button.no-svg { color: #333; font-size: 26px; } /* ---- page dots ---- */ .flickity-page-dots { position: absolute; z-index: 100; width: 100%; float: left; bottom: 0; padding: 0; margin: 0; list-style: none; text-align: center; line-height: 1; } .flickity-rtl .flickity-page-dots { direction: rtl; } .flickity-page-dots .dot { display: inline-block; width: 12px; height: 12px; margin: 0 7px; background: #3d434d; border-radius: 50%; filter: alpha(opacity=25); /* IE8 */ opacity: 0.25; cursor: pointer; } .flickity-page-dots .dot.is-selected { filter: alpha(opacity=100); /* IE8 */ opacity: 1; } /******* carousel *******/ @media (max-width: 1000px) { .carouselwidth { width: 50%; float: left; } .gallery .partnerone { width: 100%; float: left; text-align: center; } } @media (max-width: 767px) { .carouselwidth { width: 100%; } } .carouselwrapper { position: relative; } .carouselimage { position: relative; z-index: 100; } .flickity-enabled .gallery-cell { margin-bottom: 0; } /*** carousel end ****/ .gallery--not-counting .gallery-cell:before { content: none; } .gallery--full-width .gallery-cell { width: 100%; } .gallery--half-width .gallery-cell { width: 50%; } .gallery--various-widths .gallery-cell { width: 33%; } .gallery--various-widths .gallery-cell.size-180 { width: 180px; } .gallery--various-widths .gallery-cell.size-large { width: 75%; } .gallery--media-queried .gallery-cell { width: 100%; } .gallery--selected-cell .gallery-cell.is-selected { background: #ED2; } .gallery--gallery-focus:focus .flickity-viewport { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; } /* ---- show-several ---- */ .gallery--show-several .gallery-cell { width: 28%; } /* ---- auto-play ---- */ /* ---- images-loaded ---- */ .gallery--images-loaded-demo img { display: block; height: 160px; } .gallery--images-demo { margin-bottom: 40px; } .gallery--images-demo img { display: block; height: 160px; } .gallery--watch-demo:after { content: 'flickity'; display: none; } .gallery--watch-demo .gallery-cell { margin-right: 10px; } .gallery--cell-selector-demo { position: relative; } .gallery--pixel-position-demo .gallery-cell { width: 300px; } .gallery--set-gallery-size-disabled { height: 160px; } .gallery--set-gallery-size-disabled .gallery-cell { height: 100%; } .gallery--set-gallery-size-disabled-percentage { padding-bottom: 50%; } .gallery--set-gallery-size-disabled-percentage .flickity-viewport { position: absolute; width: 100%; } .gallery--set-gallery-size-disabled-percentage .gallery-cell { height: 100%; } .gallery--resize-option { width: 300px; } .gallery--resize { width: 50%; min-width: 240px; } .gallery--resize.is-expanded { width: 100%; } .gallery--resize.is-expanded .gallery-cell:before { line-height: 320px; } .gallery--position-cells .gallery-cell { position: relative; width: 33%; } .gallery--position-cells .gallery-cell.is-expanded { width: 80%; } .gallery-cell .button { position: absolute; left: 10px; top: 10px; } .gallery--as-nav-for-main { margin-bottom: 40px; } .gallery--nav .gallery-cell { height: 80px; width: 100px; } .gallery--nav .gallery-cell:before { font-size: 50px; line-height: 80px; } .gallery--nav .gallery-cell.is-nav-selected { background: #ED2; } .gallery--static-click .gallery-cell { width: 26%; } .gallery--static-click .gallery-cell.is-clicked { background: #ED2; } @media screen and (min-width: 768px) { .gallery--media-queried .gallery-cell { width: 50%; } .gallery--watch-demo:after { content: ''; } .gallery--images-demo img { height: 400px; } } /*********** flickity gallery carousel end ****************/ /****************** team ******************/ .teamcolumn { float: left; width: 100%; text-align: center; margin-bottom: -14px; padding: 0 14px; } .teamcolumn .teamcolumn-inner { float: left; width: 100%; border: 1px solid #f4f4f4; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; } .teamcolumn h4 { font-weight: 600; font-size: 18px; margin-bottom: 7px; } .teamcolumn img { display: inline-block; margin: 0 auto; float: none; } .teamcolumn .team-name { padding: 27px 14px; float: left; width: 100%; } .teamcolumn .team-name h6 { margin-bottom: 7px; font-size: 16px; font-style: italic; font-weight: 400; color: #d0d0d0; } .teamcolumn .team-name p { margin-bottom: 20px; } i.teamicon { display: inline-block; font-size: 16px; text-align: center; width: 40px; height: 40px; padding-top: 12px; margin-right: 5px; margin-left: 5px; color: #c5c9d2; background: #f4f4f4; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; } i.teamicon:hover { color: #53aedd; -webkit-transition: background 0.5s ease; -moz-transition: background 0.5s ease; -o-transition: background 0.5s ease; transition: background 0.5s ease; } @media (max-width: 996px) { .teamcolumn { margin-top: 54px; margin-bottom: 0; } } /***hover effect***/ .view1 { -webkit-backface-visibility: hidden; float: left; width: 100%; overflow: hidden; position: relative; text-align: center; } .view1 .mask, .view1 .content { width: 100%; height: 100%; position: absolute; top: 0; right: 0; } .view1 .mask { padding: 0%; -webkit-backface-visibility: hidden; } .view1 .maskinner { position: absolute; width: 100%; top: 50%; margin-top: -14px; } .view1 a:link, .view1 a:visited { display: inline-block; letter-spacing: 1px; font-size: 14px; margin-bottom: 0; font-weight: 600; font-family: "source sans pro"; padding-top: 0; text-transform: uppercase; color: #fff; background: transparent; text-align: center; width: 100%; height: auto; } .view-first1 img { -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .view-first1 .mask { background: rgba(83, 174, 221, 0.8); opacity: 0; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .teamcolumn:hover img { opacity: 1; -webkit-transform: scale(1.1, 1.1); -moz-transform: scale(1.1, 1.1); -o-transform: scale(1.1, 1.1); -ms-transform: scale(1.1, 1.1); transform: scale(1.1, 1.1); } .teamcolumn:hover .mask { opacity: 1; } .teamcolumn .view-first1:hover a { -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter: alpha(opacity=100); opacity: 1; -webkit-transform: translateY(0px); -moz-transform: translateY(0px); -o-transform: translateY(0px); -ms-transform: translateY(0px); transform: translateY(0px); } /***hover effect end***/ /************* team end *************/ /************** home blog ********************/ .homeblog { z-index: 1; float: left; position: relative; text-align: center; margin-bottom: 27px; } .homeblog h4 { font-weight: 600; font-size: 18px; margin-bottom: 10px; margin-top: 27px; } .homeblog .date { width: 100%; float: left; } .homeblog .date p { display: inline-block; margin-bottom: 10px; font-size: 15px; font-family: "source sans pro"; font-style: italic; color: #d0d0d0; margin-right: 7px; } .homeblog .date i { font-size: 13px; margin: 0 3px; padding: 0; color: #c5c9d2; } @media (max-width: 767px) { .homeblog { width: 100%; float: left; } } .homeblog:hover img { opacity: 1; -webkit-transform: scale(1.1, 1.1); -moz-transform: scale(1.1, 1.1); -o-transform: scale(1.1, 1.1); -ms-transform: scale(1.1, 1.1); transform: scale(1.1, 1.1); } .homeblog:hover .mask { opacity: 1; } .homeblog .view-first1:hover a { -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter: alpha(opacity=100); opacity: 1; -webkit-transform: translateY(0px); -moz-transform: translateY(0px); -o-transform: translateY(0px); -ms-transform: translateY(0px); transform: translateY(0px); } /************** home blog end ********************/ /************** contact ***************/ /* for contact form */ #main { width: 100%; float: left; height: auto; padding: 0; } #main #response li.error { color: red; } #main #response li.success { color: green; } #main input[type="text"] { width: 100%; max-width: 500px; color: #fff!important; margin-top: 0; height: 50px; padding: 0 27px; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; margin-bottom: 14px; float: left; font-size: 14px; font-family: "source sans pro"; font-weight: 400; box-shadow: none; border: none; text-transform: none; outline: none; background: #5a5f68; -webkit-transition: background 0.5s ease; -moz-transition: background 0.5s ease; -o-transition: background 0.5s ease; transition: background 0.5s ease; } #main input[type="text"]:focus { background: #81858b; } #main textarea { width: 100%; max-width: 500px; padding: 14px 27px; border-radius: 30px; height: 220px; margin-top: 0; float: left; color: #fff; box-shadow: none; text-transform: none; outline: none; border: none; background: #5a5f68; -webkit-transition: background 0.5s ease; -moz-transition: background 0.5s ease; -o-transition: background 0.5s ease; transition: background 0.5s ease; } #main textarea:focus { background: #81858b; } @media (max-width: 992px) { #main input[type="text"] { max-width: 100%; } #main textarea { max-width: 100%; } } .buttoncontact input { display: inline-block; text-wrap: none; text-align: center; line-height: 1; padding: 15px 22px; text-transform: uppercase; background: #707418; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; color: #fff; outline: none; font-family: "source sans pro"; -webkit-transition: background 0.5s ease; -moz-transition: background 0.5s ease; -o-transition: background 0.5s ease; transition: background 0.5s ease; border: none; margin-top: 14px; font-weight: 400; } .buttoncontact input:hover { background: #3d434d; } #main ::-webkit-input-placeholder { font-weight: 600; font-size: 13px; color: #fff!important; font-family: "source sans pro"; text-transform: uppercase; } #main ::-moz-placeholder { font-weight: 600; font-size: 13px; color: #fff!important; font-family: "source sans pro"; text-transform: uppercase!; } #main :-ms-input-placeholder { font-weight: 600; font-size: 13px; color: #fff!important; font-family: "source sans pro"; text-transform: uppercase; } #main :input:-moz-placeholder { font-weight: 600; font-size: 13px; color: #fff!important; font-family: "source sans pro"; text-transform: uppercase; } /******* contact form end ********/ /******* address and faq ********/ .map-overlay { position: relative; z-index: 100; width: 100%; float: left; height: 400px; top: 400px; margin-top: -400px; max-width: 100%; } .map { position: relative; z-index: 5; width: 100%; float: left; text-align: center; max-width: 100%; } .map iframe { position: relative; z-index: 100; max-width: 100%; width: 100%; min-height: 400px; border: none; } @media (max-width: 1000px) { .map-overlay { height: 200px; top: 200px; margin-top: -200px; max-width: 100%; } .map iframe { width: 100%; height: auto; min-height: 100px; max-width: 700px; float: none; margin: 0 auto; } } @media (max-width: 800px) { .map iframe { width: 100%; height: auto; min-height: 100px; max-width: 500px; float: none; margin: 0 auto; } } @media (max-width: 580px) { .map iframe { width: 100%; height: auto; min-height: 100px; max-width: 220px; float: none; margin: 0 auto; } } .address { float: left; width: 100%; border: 1px solid #f0f0f0; padding: 27px; } .address h4 { font-weight: bold; text-transform: uppercase; text-align: center; font-size: 15px; margin-bottom: 14px; line-height: 1.8; } .address p { text-align: center; } .address .ul-list { padding-left: 27px; } .address .ul-list li { font-family: "open sans"; font-style: italic; font-weight: 400; font-size: 14px; margin-bottom: 20px; color: #727982; } .address .ul-list li i { display: inline-block; border: 1px solid #ededed; width: 54px; height: 54px; text-align: center; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; color: #53aedd; font-size: 20px; padding-top: 16px; padding-left: 10px; margin-right: 14px; } /*** accordion one ***/ .panel { box-shadow: none; } .panel-group .panel.panel-default { -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; border: none; background: transparent; box-shadow: none; } .panel-group .panel-body { padding: 0 27px 14px 27px; } .panel-group .panel-heading { display: inline-block; width: 100%; margin-bottom: 14px; padding: 0; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; -webkit-transition: background 0.5s ease; -moz-transition: background 0.5s ease; -o-transition: background 0.5s ease; transition: background 0.5s ease; } .panel-group .panel-heading i { font-size: 20px; padding-right: 5px; font-weight: bold; } .panel-group .panel-heading a { display: block; font-size: 13px; padding: 14px 27px; background: #707418 url("../images/images-minus.png") right center no-repeat; font-family: "source sans pro"; color: #fff; font-weight: 600; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; text-transform: uppercase; } .panel-group .panel-heading a:hover { -webkit-transition: background 0.5s ease; -moz-transition: background 0.5s ease; -o-transition: background 0.5s ease; transition: background 0.5s ease; background: #81858b url("../images/images-plus.png") right center no-repeat; } .panel-group .panel-heading a.collapsed { -webkit-transition: background 0.5s ease; -moz-transition: background 0.5s ease; -o-transition: background 0.5s ease; transition: background 0.5s ease; background: #5a5f68 url("../images/images-plus.png") right center no-repeat; } .panel-group .panel-heading a.collapsed:hover { -webkit-transition: background 0.5s ease; -moz-transition: background 0.5s ease; -o-transition: background 0.5s ease; transition: background 0.5s ease; background: #81858b url("../images/images-plus.png") right center no-repeat; } @media (max-width: 992px) { .panel-group .panel-heading { width: 100%; max-width: 100%; } } /** bootstrap fix **/ .panel-group .panel-heading + .panel-collapse > .panel-body, .panel-group .panel-heading + .panel-collapse > .list-group { border-top: none; } /*** accordion one end ***/ /***** address and faq end ****/ /************** contact ***************/ /************* footer *************/ footer.bottom { width: 100%; float: left; padding: 54px 0; background: #3d434d; } footer.bottom a:link, footer.bottom a:visited { color: #9f9f9f; } footer.bottom a:link:hover, footer.bottom a:visited:hover { color: #53aedd; } footer.bottom h4 { color: #fff; font-weight: 600; font-size: 15px; margin-bottom: 10px; } @media (max-width: 992px) { footer.bottom { text-align: center; } } /** social icons **/ .socialicons { text-align: center; } .socialicons li { margin: 0 5px 5px 0; display: inline-block; text-align: center; } ul.socialicons li a:link, ul.socialicons li a:visited { display: inline-block; width: 54px; height: 54px; background: #31363e; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } ul.socialicons li a:link:hover, ul.socialicons li a:visited:hover { background: #53aedd; } ul.socialicons li i { font-size: 27px; padding-top: 15px; color: #3d434d; } /** social icons end **/ .copyright { width: 100%; float: left; margin-top: 27px; margin-bottom: 27px; text-align: center; } .copyright p { margin-bottom: 0; } .copyright a { font-family: "source sans pro"; font-weight: 600; } .scrollbutton { text-align: center; } .scrollbutton i { font-size: 27px; } /** footer stick to bottom fix **/ .push { height: 44px; } .bodywrapper { min-height: 100%; height: 100%; margin-bottom: -44px; } @media (max-width: 1000px) { footer.bottom h3 { margin-bottom: 27px; } } /** footer stick to bottom fix end **/ /************ footer end ************/ /************** blog pages **************/ .masonrycontainer2 { height: 100%; } .masonrycontainer2 img { margin-bottom: 10px; width: 100%; } .masonrycontainer2 .masonrys { margin: 0 0 54px 0; } .meta { width: 100%; float: left; padding: 27px 0; margin-bottom: 27px; border-bottom: 1px solid #f0f0f0; } .meta p { display: inline-block; margin-bottom: 0; font-size: 15 px; line-height: 1; font-family: "source sans pro"; font-style: italic; color: #b8b7b7; margin-right: 10px; } .meta i { font-size: 13px; margin: 0 3px; padding: 0; color: #b8b7b7; } .pagination { float: right; } .pagination > li > a, .pagination > li > span { position: relative; float: left; margin-left: -1px; line-height: inherit; color: inherit; text-decoration: none; background-color: #fff; } .pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus { color: #fff; background-color: #53aedd; } .commentwrapper { width: 100%; float: left; } .commentwrapper .blogform #main input[type="text"] { background: #81858b; } .commentwrapper .blogform #main input[type="text"]:focus { background: #5a5f68; } .commentwrapper .blogform #main textarea { background: #81858b; } .commentwrapper .blogform #main textarea:focus { background: #5a5f68; } .commentwrapper .comment { position: relative; background: #f9f9f9; padding: 27px; margin-bottom: 27px; } .commentwrapper .comment p { margin-bottom: 0; font-family: "source sans pro"; font-style: italic; } .commentwrapper .comment a { position: absolute; top: 24px; right: 27px; color: #b8b7b7; text-transform: uppercase; font-style: normal; font-family: "source sans pro"; background: url("../images/images-reply.png") left center no-repeat; padding-left: 25px; font-weight: 600; } .commentwrapper .comment a:hover { color: #53aedd; } .commentwrapper .comment h5 { margin-bottom: 14px; font-weight: 600; } .commentwrapper .comment h5 span { margin-left: 27px; color: #b8b7b7; font-style: italic; font-size: 15px; font-family: "source sans pro"; } .commentwrapper img { -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; } .sidebar { float: left; height: 100%; border-left: 1px solid #f0f0f0; padding-left: 54px; margin-left: 27px; } .sidebar h4 { font-size: 15px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding-bottom: 14px; border-bottom: 1px solid #f0f0f0; margin-bottom: 27px; } .sidebar .widget { margin-bottom: 27px; } .sidebar-left { float: left; border-right: 1px solid #f0f0f0; padding-right: 54px; margin-right: 27px; } .sidebar-left h4 { font-size: 15px; font-weight: 600; text-transform: uppercase; padding-bottom: 14px; border-bottom: 1px solid #f0f0f0; margin-bottom: 27px; } .sidebar-left .widget { margin-bottom: 27px; } @media screen and (max-width: 992px) { .sidebar { border-left: none; padding-left: 0; margin-left: 0; } .sidebar-left { border-right: none; padding-right: 0; margin-right: 0; } } /* for contact form */ .blogform #main { width: 100%; float: left; height: auto; padding: 0; } .blogform #main #response li.error { color: red; } .blogform #main #response li.success { color: green; } .blogform #main .contact1a input[type="text"] { width: 49%; margin-right: 2%; } .blogform #main .contact1b input[type="text"] { width: 49%; } .blogform #main .contact2 input[type="text"] { width: 100%; } .blogform #main input[type="text"] { max-width: 100%; color: #fff!important; margin-top: 0; height: 50px; padding: 0 27px; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; margin-bottom: 14px; float: left; font-size: 14px; font-family: "source sans pro"; font-weight: 400; box-shadow: none; border: none; background: #5a5f68; -webkit-transition: background 0.5s ease; -moz-transition: background 0.5s ease; -o-transition: background 0.5s ease; transition: background 0.5s ease; } .blogform #main input[type="text"]:focus { background: #81858b; } .blogform #main input[placeholder], .blogform #main [placeholder], .blogform #main *[placeholder] { font-weight: 600; font-size: 13px; color: #fff!important; font-family: "source sans pro"; text-transform: uppercase; } .blogform #main textarea { width: 100%; max-width: 100%; padding: 14px 27px; border-radius: 30px; height: 220px; margin-top: 0; float: left; box-shadow: none; outline: none; border: none; background: #5a5f68; -webkit-transition: background 0.5s ease; -moz-transition: background 0.5s ease; -o-transition: background 0.5s ease; transition: background 0.5s ease; } .blogform #main textarea:focus { background: #81858b; } /******* contact form end ********/ /************* blog pages end *************/ /************* chart **************/ .ct-double-octave:after, .ct-major-eleventh:after, .ct-major-second:after, .ct-major-seventh:after, .ct-major-sixth:after, .ct-major-tenth:after, .ct-major-third:after, .ct-major-twelfth:after, .ct-minor-second:after, .ct-minor-seventh:after, .ct-minor-sixth:after, .ct-minor-third:after, .ct-octave:after, .ct-perfect-fifth:after, .ct-perfect-fourth:after, .ct-square:after { content: ""; clear: both; } .ct-double-octave:after, .ct-double-octave:before, .ct-golden-section:after, .ct-major-eleventh:after, .ct-major-eleventh:before, .ct-major-second:after, .ct-major-second:before, .ct-major-seventh:after, .ct-major-seventh:before, .ct-major-sixth:after, .ct-major-sixth:before, .ct-major-tenth:after, .ct-major-tenth:before, .ct-major-third:after, .ct-major-third:before, .ct-major-twelfth:after, .ct-major-twelfth:before, .ct-minor-second:after, .ct-minor-second:before, .ct-minor-seventh:after, .ct-minor-seventh:before, .ct-minor-sixth:after, .ct-minor-sixth:before, .ct-minor-third:after, .ct-minor-third:before, .ct-octave:after, .ct-octave:before, .ct-perfect-fifth:after, .ct-perfect-fifth:before, .ct-perfect-fourth:after, .ct-perfect-fourth:before, .ct-square:after, .ct-square:before { content: ""; } .ct-label { fill: rgba(0, 0, 0, 0.4); color: rgba(0, 0, 0, 0.4); font-size: .75rem; line-height: 1; } .ct-chart-bar .ct-label, .ct-chart-line .ct-label { display: block; display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; } .ct-label.ct-horizontal.ct-start { -webkit-box-align: flex-end; -webkit-align-items: flex-end; -ms-flex-align: flex-end; align-items: flex-end; -webkit-box-pack: flex-start; -webkit-justify-content: flex-start; -ms-flex-pack: flex-start; justify-content: flex-start; text-align: left; text-anchor: start; } .ct-label.ct-horizontal.ct-end { -webkit-box-align: flex-start; -webkit-align-items: flex-start; -ms-flex-align: flex-start; align-items: flex-start; -webkit-box-pack: flex-start; -webkit-justify-content: flex-start; -ms-flex-pack: flex-start; justify-content: flex-start; text-align: left; text-anchor: start; } .ct-label.ct-vertical.ct-start { -webkit-box-align: flex-end; -webkit-align-items: flex-end; -ms-flex-align: flex-end; align-items: flex-end; -webkit-box-pack: flex-end; -webkit-justify-content: flex-end; -ms-flex-pack: flex-end; justify-content: flex-end; text-align: right; text-anchor: end; } .ct-label.ct-vertical.ct-end { -webkit-box-align: flex-end; -webkit-align-items: flex-end; -ms-flex-align: flex-end; align-items: flex-end; -webkit-box-pack: flex-start; -webkit-justify-content: flex-start; -ms-flex-pack: flex-start; justify-content: flex-start; text-align: left; text-anchor: start; } .ct-chart-bar .ct-label.ct-horizontal.ct-start { -webkit-box-align: flex-end; -webkit-align-items: flex-end; -ms-flex-align: flex-end; align-items: flex-end; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; text-align: center; text-anchor: start; } .ct-chart-bar .ct-label.ct-horizontal.ct-end { -webkit-box-align: flex-start; -webkit-align-items: flex-start; -ms-flex-align: flex-start; align-items: flex-start; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; text-align: center; text-anchor: start; } .ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-start { -webkit-box-align: flex-end; -webkit-align-items: flex-end; -ms-flex-align: flex-end; align-items: flex-end; -webkit-box-pack: flex-start; -webkit-justify-content: flex-start; -ms-flex-pack: flex-start; justify-content: flex-start; text-align: left; text-anchor: start; } .ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-end { -webkit-box-align: flex-start; -webkit-align-items: flex-start; -ms-flex-align: flex-start; align-items: flex-start; -webkit-box-pack: flex-start; -webkit-justify-content: flex-start; -ms-flex-pack: flex-start; justify-content: flex-start; text-align: left; text-anchor: start; } .ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-start { -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: flex-end; -webkit-justify-content: flex-end; -ms-flex-pack: flex-end; justify-content: flex-end; text-align: right; text-anchor: end; } .ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-end { -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: flex-start; -webkit-justify-content: flex-start; -ms-flex-pack: flex-start; justify-content: flex-start; text-align: left; text-anchor: end; } .ct-grid { stroke: rgba(0, 0, 0, 0.2); stroke-width: 1px; stroke-dasharray: 2px; } .ct-point { stroke-width: 10px; stroke-linecap: round; } .ct-line { fill: none; stroke-width: 4px; } .ct-area { stroke: none; fill-opacity: 0.1; } .ct-bar { fill: none; stroke-width: 10px; } .ct-slice-donut { fill: none; stroke-width: 60px; } .ct-series-a .ct-bar, .ct-series-a .ct-line, .ct-series-a .ct-point, .ct-series-a .ct-slice-donut { stroke: #53aedd; } .ct-series-a .ct-area, .ct-series-a .ct-slice-pie { fill: #d70206; } .ct-series-b .ct-bar, .ct-series-b .ct-line, .ct-series-b .ct-point, .ct-series-b .ct-slice-donut { stroke: #f05b4f; } .ct-series-b .ct-area, .ct-series-b .ct-slice-pie { fill: #f05b4f; } .ct-series-c .ct-bar, .ct-series-c .ct-line, .ct-series-c .ct-point, .ct-series-c .ct-slice-donut { stroke: #f4c63d; } .ct-series-c .ct-area, .ct-series-c .ct-slice-pie { fill: #f4c63d; } .ct-series-d .ct-bar, .ct-series-d .ct-line, .ct-series-d .ct-point, .ct-series-d .ct-slice-donut { stroke: #d17905; } .ct-series-d .ct-area, .ct-series-d .ct-slice-pie { fill: #d17905; } .ct-series-e .ct-bar, .ct-series-e .ct-line, .ct-series-e .ct-point, .ct-series-e .ct-slice-donut { stroke: #453d3f; } .ct-series-e .ct-area, .ct-series-e .ct-slice-pie { fill: #453d3f; } .ct-series-f .ct-bar, .ct-series-f .ct-line, .ct-series-f .ct-point, .ct-series-f .ct-slice-donut { stroke: #59922b; } .ct-series-f .ct-area, .ct-series-f .ct-slice-pie { fill: #59922b; } .ct-series-g .ct-bar, .ct-series-g .ct-line, .ct-series-g .ct-point, .ct-series-g .ct-slice-donut { stroke: #0544d3; } .ct-series-g .ct-area, .ct-series-g .ct-slice-pie { fill: #0544d3; } .ct-series-h .ct-bar, .ct-series-h .ct-line, .ct-series-h .ct-point, .ct-series-h .ct-slice-donut { stroke: #6b0392; } .ct-series-h .ct-area, .ct-series-h .ct-slice-pie { fill: #6b0392; } .ct-series-i .ct-bar, .ct-series-i .ct-line, .ct-series-i .ct-point, .ct-series-i .ct-slice-donut { stroke: #f05b4f; } .ct-series-i .ct-area, .ct-series-i .ct-slice-pie { fill: #f05b4f; } .ct-series-j .ct-bar, .ct-series-j .ct-line, .ct-series-j .ct-point, .ct-series-j .ct-slice-donut { stroke: #dda458; } .ct-series-j .ct-area, .ct-series-j .ct-slice-pie { fill: #dda458; } .ct-series-k .ct-bar, .ct-series-k .ct-line, .ct-series-k .ct-point, .ct-series-k .ct-slice-donut { stroke: #eacf7d; } .ct-series-k .ct-area, .ct-series-k .ct-slice-pie { fill: #eacf7d; } .ct-series-l .ct-bar, .ct-series-l .ct-line, .ct-series-l .ct-point, .ct-series-l .ct-slice-donut { stroke: #86797d; } .ct-series-l .ct-area, .ct-series-l .ct-slice-pie { fill: #86797d; } .ct-series-m .ct-bar, .ct-series-m .ct-line, .ct-series-m .ct-point, .ct-series-m .ct-slice-donut { stroke: #b2c326; } .ct-series-m .ct-area, .ct-series-m .ct-slice-pie { fill: #b2c326; } .ct-series-n .ct-bar, .ct-series-n .ct-line, .ct-series-n .ct-point, .ct-series-n .ct-slice-donut { stroke: #6188e2; } .ct-series-n .ct-area, .ct-series-n .ct-slice-pie { fill: #6188e2; } .ct-series-o .ct-bar, .ct-series-o .ct-line, .ct-series-o .ct-point, .ct-series-o .ct-slice-donut { stroke: #a748ca; } .ct-series-o .ct-area, .ct-series-o .ct-slice-pie { fill: #a748ca; } .ct-square { display: block; position: relative; width: 100%; } .ct-square:before { display: block; float: left; width: 0; height: 0; padding-bottom: 100%; } .ct-square:after { display: table; } .ct-square > svg { display: block; position: absolute; top: 0; left: 0; } .ct-minor-second { display: block; position: relative; width: 100%; } .ct-minor-second:before { display: block; float: left; width: 0; height: 0; padding-bottom: 93.75%; } .ct-minor-second:after { display: table; } .ct-minor-second > svg { display: block; position: absolute; top: 0; left: 0; } .ct-major-second { display: block; position: relative; width: 100%; } .ct-major-second:before { display: block; float: left; width: 0; height: 0; padding-bottom: 88.88888889%; } .ct-major-second:after { display: table; } .ct-major-second > svg { display: block; position: absolute; top: 0; left: 0; } .ct-minor-third { display: block; position: relative; width: 100%; } .ct-minor-third:before { display: block; float: left; width: 0; height: 0; padding-bottom: 83.33333333%; } .ct-minor-third:after { display: table; } .ct-minor-third > svg { display: block; position: absolute; top: 0; left: 0; } .ct-major-third { display: block; position: relative; width: 100%; } .ct-major-third:before { display: block; float: left; width: 0; height: 0; padding-bottom: 80%; } .ct-major-third:after { display: table; } .ct-major-third > svg { display: block; position: absolute; top: 0; left: 0; } .ct-perfect-fourth { display: block; position: relative; width: 100%; } .ct-perfect-fourth:before { display: block; float: left; width: 0; height: 0; padding-bottom: 75%; } .ct-perfect-fourth:after { display: table; } .ct-perfect-fourth > svg { display: block; position: absolute; top: 0; left: 0; } .ct-perfect-fifth { display: block; position: relative; width: 100%; } .ct-perfect-fifth:before { display: block; float: left; width: 0; height: 0; padding-bottom: 66.66666667%; } .ct-perfect-fifth:after { display: table; } .ct-perfect-fifth > svg { display: block; position: absolute; top: 0; left: 0; } .ct-minor-sixth { display: block; position: relative; width: 100%; } .ct-minor-sixth:before { display: block; float: left; width: 0; height: 0; padding-bottom: 62.5%; } .ct-minor-sixth:after { display: table; } .ct-minor-sixth > svg { display: block; position: absolute; top: 0; left: 0; } .ct-golden-section { display: block; position: relative; width: 100%; } .ct-golden-section:before { display: block; float: left; content: ""; width: 0; height: 0; padding-bottom: 61.80469716%; } .ct-golden-section:after { display: table; clear: both; } .ct-golden-section > svg { display: block; position: absolute; top: 0; left: 0; } .ct-major-sixth { display: block; position: relative; width: 100%; } .ct-major-sixth:before { display: block; float: left; width: 0; height: 0; padding-bottom: 60%; } .ct-major-sixth:after { display: table; } .ct-major-sixth > svg { display: block; position: absolute; top: 0; left: 0; } .ct-minor-seventh { display: block; position: relative; width: 100%; } .ct-minor-seventh:before { display: block; float: left; width: 0; height: 0; padding-bottom: 56.25%; } .ct-minor-seventh:after { display: table; } .ct-minor-seventh > svg { display: block; position: absolute; top: 0; left: 0; } .ct-major-seventh { display: block; position: relative; width: 100%; } .ct-major-seventh:before { display: block; float: left; width: 0; height: 0; padding-bottom: 53.33333333%; } .ct-major-seventh:after { display: table; } .ct-major-seventh > svg { display: block; position: absolute; top: 0; left: 0; } .ct-octave { display: block; position: relative; width: 100%; } .ct-octave:before { display: block; float: left; width: 0; height: 0; padding-bottom: 50%; } .ct-octave:after { display: table; } .ct-octave > svg { display: block; position: absolute; top: 0; left: 0; } .ct-major-tenth { display: block; position: relative; width: 100%; } .ct-major-tenth:before { display: block; float: left; width: 0; height: 0; padding-bottom: 40%; } .ct-major-tenth:after { display: table; } .ct-major-tenth > svg { display: block; position: absolute; top: 0; left: 0; } .ct-major-eleventh { display: block; position: relative; width: 100%; } .ct-major-eleventh:before { display: block; float: left; width: 0; height: 0; padding-bottom: 37.5%; } .ct-major-eleventh:after { display: table; } .ct-major-eleventh > svg { display: block; position: absolute; top: 0; left: 0; } .ct-major-twelfth { display: block; position: relative; width: 100%; } .ct-major-twelfth:before { display: block; float: left; width: 0; height: 0; padding-bottom: 33.33333333%; } .ct-major-twelfth:after { display: table; } .ct-major-twelfth > svg { display: block; position: absolute; top: 0; left: 0; } .ct-double-octave { display: block; position: relative; width: 100%; } .ct-double-octave:before { display: block; float: left; width: 0; height: 0; padding-bottom: 25%; } .ct-double-octave:after { display: table; } .ct-double-octave > svg { display: block; position: absolute; top: 0; left: 0; } span.ct-label { font-size: 15px; color: #555555; font-family: "source sans pro"; line-height: 1; } .ct-chart { width: 85%; float: left; } /*********** chart end *****************/ /****************** twitter ****************/ .user, .tweet, .timePosted { text-align: center; } .user { width: 100%; } .tweet p { width: 100%; } .twitter p { color: #fff; opacity: 0.6; } .timePosted { width: 100%; } .user { clear: left; } .user img { -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; width: 65px; height: 65px; } .user a span[data-scribe="element:name"] { display: none; } .user a span[data-scribe="element:screen_name"] { display: block; margin: 22px auto; } .interact { text-align: center; width: 100%; margin-top: -7px; } .interact a { margin: 0 5px; } .media img { max-width: 250px; max-height: 250px; } /********* twitter end *********/ /************ single page ************/ .bodywrapper-pages { padding-bottom: 54px; float: left; width: 100%; } .mainheadlinewrapperpage { padding: 54px 0; float: left; width: 100%; margin-bottom: 54px; background: #53aedd; } .mainheadlinewrapperpage h1 { font-size: 28px; margin-bottom: 7px; color: #fff; font-weight: 400; } .mainheadlinewrapperpage p { color: #fff; opacity: 0.7; line-height: 1; margin-bottom: 0; font-family: "source sans pro"; } .breadcrumb { padding: 0; margin-bottom: 0; margin-top: 18px; list-style: none; background-color: transparent; border-radius: 0; } .breadcrumb > li { display: inline-block; } .breadcrumb > li a { color: #fff; opacity: 0.6; font-family: "source sans pro"; font-size: 15px; } .breadcrumb > li a:hover { opacity: 1; color: #fff; } .breadcrumb > li + li:before { padding: 0 5px; color: #fff; content: "/\00a0"; } .breadcrumb > .active { color: #fff; font-family: "source sans pro"; font-size: 15px; } /************ single page end ************/ /************ insurance single page ************/ .insurance-headline { width: 100%; float: left; background: #53aedd; text-align: center; padding: 54px 0 0 0; } .insurance-headline h1 { font-size: 35px; margin-bottom: 27px; } .insurance-headline p { max-width: 600px; margin: 0 auto; } .insurance-headline a { display: block; opacity: 0.7; letter-spacing: 1px; font-weight: 600; } .insurance-headline a:hover { opacity: 1; } .insurance-headline img { margin-bottom: 27px; } .insurance-headline h4 { text-transform: uppercase; font-size: 15px; font-weight: 600; } .insurance-headline ul.single-icons-wrapper { width: 100%; float: left; margin-top: 27px; margin-bottom: 0; } .insurance-headline ul.single-icons-wrapper li { margin-bottom: 0; padding: 0 0 27px 0; border-bottom: 2px solid #53aedd; } .insurance-headline ul.single-icons-wrapper li:hover { border-bottom: 2px solid #3d434d; } .insurance-headline .single-icon { border-right: 1px solid rgba(255, 255, 255, 0.4); padding: 27px; } .insurance-headline .single-icon.last { border: none; } .insurance-headline h1, .insurance-headline h2, .insurance-headline h3, .insurance-headline h4, .insurance-headline h5, .insurance-headline h6, .insurance-headline p { color: #fff; } ul.insurance-list { padding-right: 27px; } ul.insurance-list li { border-bottom: 1px solid #dedddd; padding: 4px 0; } ul.insurance-list b { color: #3d434d; } ul.insurance-list span { width: 200px; text-align: left; float: right; } @media (max-width: 767px) { .insurance-headline .single-icon { border-right: none; } .insurance-headline ul.single-icons-wrapper li { padding: 0 0 14px 0; border-bottom: none; } .insurance-headline ul.single-icons-wrapper li:hover { border-bottom: none; } } @media (max-width: 500px) { ul.insurance-list span { width: auto; text-align: left; float: none; padding-left: 20px; } } .insurance-section1 { width: 100%; float: left; background: #53aedd; } .insurance-section1 img { margin-top: -27px; } .insurance-section1 p { opacity: 0.7; } .insurance-section1 p, .insurance-section1 h1, .insurance-section1 h2, .insurance-section1 h3, .insurance-section1 h4, .insurance-section1 h5, .insurance-section1 h6, .insurance-section1 li { color: #fff; } .insurance-section1 ul li { position: relative; } .insurance-section1 ul li .img-wrapper { float: left; width: 30%; min-width: 95px; text-align: center; } .insurance-section1 ul li .img-wrapper-inner { width: 90px; height: 90px; background: #fff; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; padding-top: 42px; } .insurance-section1 ul li .text-wrapper { float: left; width: 70%; min-width: auto; padding-left: 10px; } .insurance-section1 ul li h4 { text-transform: uppercase; font-size: 15px; letter-spacing: 1px; font-weight: 600; } @media (max-width: 1200px) { .insurance-section1 ul li { float: left; position: relative; } .insurance-section1 ul li .img-wrapper { width: 20%; min-width: 95px; } .mobile-change { background: #fff; } } .insurance-icons { text-align: center; } .insurance-icons h5 { text-transform: uppercase; font-weight: 600; letter-spacing: 1px; } .insurance-icons .insurance-icon { background: #53aedd; width: 90px; height: 90px; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; text-align: center; padding-top: 28px; margin: 0 auto 27px auto; } .section-cta { width: 100%; float: left; display: -webkit-flex; display: flex; background: #13577a; } .section-cta p, .section-cta h1, .section-cta h2, .section-cta h3, .section-cta h4, .section-cta h5, .section-cta h6, .section-cta li { color: #fff; } .section-cta .cta-left { width: 50%; float: left; padding: 54px 0; } .section-cta .cta-left .cta-left-inner { width: 100%; float: right; padding: 0 27px; max-width: 575px; } @media (max-width: 1200px) { .section-cta { text-align: center; display: block; } .section-cta .cta-left { width: 100%; } .section-cta .cta-left .cta-left-inner { width: 100%; float: left; padding: 54px 27px; max-width: 100%; } } /************ insurance single page end ************/ /********* gallery page **********/ .isotope-hidden.isotope-item { pointer-events: none; z-index: 1; } /**** Isotope CSS3 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; } /**** disabling Isotope CSS3 transitions ****/ .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; } /* End: Recommended Isotope styles */ /* disable CSS transitions for containers with infinite scrolling*/ .isotope.infinite-scrolling { -webkit-transition: none; -moz-transition: none; -ms-transition: none; -o-transition: none; transition: none; } /**** filter Options ****/ #options ul { min-height: 27px; width: 100%; margin-top: 0; margin-left: 0; list-style: none; text-align: center; margin-bottom: 0; padding: 0; text-transform: uppercase; } #options ul li { display: inline-block; margin-bottom: 0; margin-top: 0; } #options ul li a:link, #options ul li a:visited { font-size: 14px; color: #fff; letter-spacing: 1px; background: #3d434d; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; -webkit-transition: background 0.5s ease; -moz-transition: background 0.5s ease; -o-transition: background 0.5s ease; transition: background 0.5s ease; font-family: "source sans pro"; font-weight: 600; text-transform: uppercase; padding: 5px 25px; display: inline-block; margin-bottom: 27px; } #options ul li a:hover { background: #53aedd; } #options ul li a:focus { background: #53aedd; } .isotopecontainer { margin: 0 auto 54px auto; float: none; width: 100%; background: transparent; } .photos .photo { max-width: 33%; margin: 1%; float: none; } @media (max-width: 1000px) { .photos .photo { max-width: 48%; margin: 1%; float: none; } } @media (max-width: 500px) { .photos .photo { max-width: 100%; margin: 14px 0; float: none; } } .photos .photo img { display: block; width: 100%; } .photos .photo2 img { display: block; width: 100%; } .isotope-item { z-index: 2; } .isotope-hidden.isotope-item { pointer-events: none; z-index: 1; } /**** Isotope portfolio end*****/ /***hover effect***/ .view { -webkit-backface-visibility: hidden; float: left; overflow: hidden; position: relative; text-align: center; } .view .mask, .view .content { width: 100%; height: 100%; position: absolute; top: 0; right: 0; } .view .mask { padding: 0%; -webkit-backface-visibility: hidden; } .view .maskinner { position: absolute; width: 100%; top: 50%; margin-top: -44px; } .view img { display: block; position: relative; } .view h5 { font-size: 14px; font-weight: 600; text-transform: uppercase; color: #fff; } .view a:link, .view a:visited { display: inline-block; font-size: 18px; margin-bottom: 14px; padding-top: 18px; text-transform: uppercase; color: #53aedd; background: #fff; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; text-align: center; width: 54px; height: 54px; } .view a:hover { background: #3d434d; } .view-first img { -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .view-first .mask { opacity: 0; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .view-first a { opacity: 0; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .view-first:hover img { opacity: 1; -webkit-transform: scale(1.1, 1.1); -moz-transform: scale(1.1, 1.1); -o-transform: scale(1.1, 1.1); -ms-transform: scale(1.1, 1.1); transform: scale(1.1, 1.1); } .view-first:hover .mask { background: rgba(83, 174, 221, 0.8); -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter: alpha(opacity=100); opacity: 1; } .view-first:hover a, .view-first:hover p, .view-first:hover a.info { -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter: alpha(opacity=100); opacity: 1; -webkit-transform: translateY(0px); -moz-transform: translateY(0px); -o-transform: translateY(0px); -ms-transform: translateY(0px); transform: translateY(0px); } /***hover effect end***/ /************* gallery page end *****************/ /************ tabs ****************/ .nav-tabs { border-bottom: 1px solid #ddd; } .nav-tabs > li { float: left; margin-bottom: -1px; } .nav-tabs > li > a { display: block; margin-right: 2px; line-height: 3; border: 1px solid #f0f0f0; border-radius: 0; } .nav-tabs > li > a:hover { border-color: #f0f0f0; } .tab-pane { padding: 14px 0; } /************* tabs end **************/
public/assets/css/style.css
CONTENTS: html5 and responsive content reset general clases menu button top slider counter services testimonials flickity gallery carousel team home blog contact footer blog pages chart twitter single page insurance single page gallery page tabs ------------------------------------------------------------*/ /********* html5 and responsive content *********/ header, nav, article, section, aside, footer { display: block; } img { max-width: 100%; width: auto; -ms-interpolation-mode: bicubic; } img, embed, object, video { max-width: 100%; } /********* html5 and responsive content end *********/ /********* reset *********/ a:link, a:visited { outline: none; text-decoration: none; color: #9f9f9f; } a:link:hover, a:visited:hover { color: #53aedd; } ul, ol { margin: 0 0 27px 0; padding: 0; list-style: none; line-height: 1.867; } ul li, ol li { margin: 0 0 10px 0; padding: 0; list-style: none; } h1, h2, h3, h4, h5, h6 { margin-top: 0; margin-bottom: 0; color: #122739; font-family: "source sans pro", arial, sans-serif; } h1, h2, h3 { line-height: 1.1; } h4, h5, h6 { line-height: 1.4; } h6 { font-size: 14px; } h5 { font-size: 18px; } h4 { font-size: 28px; } h3 { font-size: 35px; } h2 { font-size: 42px; } h1 { font-size: 42px; } p { margin: 0 0 27px 0; color: #9f9f9f; font-size: 15px; font-family: "open sans", arial, sans-serif; line-height: 1.867; } br { margin: 0; line-height: 0; } ul.ul-list i { color: #53aedd; padding-right: 10px; } /***bootstrap fix important***/ .row { margin-right: 0; margin-left: 0; } @media (max-width: 767px) { .pull-right { float: none; width: 100%; padding: 0; margin: 0; } } @media (max-width: 992px) { .navbar-fixed-top { position: relative!important; } } .padding-out { padding-right: 0!important; padding-left: 0!important; } input { padding: 7px 14px; background: url("../images/images-search.png") right center no-repeat; border: 1px solid #f0f0f0; } /************ reset end *************/ /************ general classes ************/ html, body { height: 100%; } body { height: 100%; color: #9f9f9f; font-size: 15px; font-family: "open sans", arial, sans-serif; line-height: 1.867; background: #fff; background-attachment: fixed; } @media (max-width: 500px) { body { padding: 0; } } ::selection { background: #3d434d; } ::-moz-selection { background: #3d434d; } .wrapper100percent { float: left; width: 100%; } .loading { position: fixed; overflow: hidden; background: #fff url(../images/images-loader.gif) center center no-repeat; opacity: 0; } /*** sections ***/ .sectionwrapper { position: relative; float: left; margin-top: 1px; padding-bottom: 54px; width: 100%; } .section { float: left; width: 100%; background: #fff; } .section1 { float: left; width: 100%; padding: 0 0 54px 0; background: #fff; } .section1a { float: left; width: 100%; padding: 54px 0 0 0; background: #fff; } .section2 { float: left; width: 100%; padding: 0 0 54px 0; background: #707418; } .section2 h1, .section2 h2, .section2 h3, .section2 h4, .section2 h5, .section2 h6, .section2 p { color: #fff; } .section3 { float: left; width: 100%; display: -webkit-flex; display: flex; } .section3 h3 { color: #fff; } .section3 .left { width: 50%; float: left; background: #3d434d; padding: 54px 54px 0 54px; } .section3 .left .left-inner { max-width: 500px; float: right; width: 100%; } .section3 .right { width: 50%; float: left; background: #31363e; padding: 54px 54px 0 54px; } .section3 .right .right-inner { max-width: 500px; float: left; width: 100%; } @media (max-width: 992px) { .section3 { text-align: center; float: left; width: 100%; display: block; } .section3 .left { width: 100%; padding: 54px 27px; } .section3 .left .left-inner { float: left; max-width: 100%; } .section3 .right { width: 100%; padding: 54px 27px; } .section3 .right .right-inner { max-width: 5000px; float: left; } } /*** sections end ***/ .mainheadlinewrapper { margin-top: 0; margin-bottom: 54px; float: left; width: 100%; text-align: center; } .mainheadlinewrapper .mainheadline { max-width: 600px; margin: 0 auto; } .mainheadlinewrapper .mainheadline h2 { line-height: 1; margin-bottom: 27px; font-size: 35px; font-weight: 400; } .mainheadlinewrapper .mainheadline h3 { font-weight: 400; color: #53aedd; margin-bottom: 0; font-size: 15px; font-family: "open sans"; line-height: 1.8; color: #9f9f9f; } /********* general classes end *********/ /************ menu ************/ .top { position: relative; z-index: 200; width: 100%; background: #f7f7f7; border-bottom: 1px solid #e4e7ea; } .top i { color: #bfbfbf; padding: 10px 14px; font-size: 14px; float: left; border-left: 1px solid #e4e7ea; } .top i:hover { color: #53aedd; } .top i span { font-family: "open sans"; font-weight: 500; font-size: 13px; font-style: italic; margin-left: 5px; } .top i.last { border-right: 1px solid #e4e7ea; } .top-disappear { display: none; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } @media (max-width: 767px) { .top { text-align: center; } .top i { border-left: none; } .top i.last { border-right: none; } } .navbar-toggle { position: relative; float: right; width: 42px; height: 34px; margin-top: 22px; margin-bottom: 8px; background: #53aedd; border: none; border-radius: 0; } .navbar-toggle .icon-bar { background-color: #3d434d; margin: 0; } .navbar-toggle:hover .icon-bar.icon-bar1, .navbar-toggle:focus .icon-bar.icon-bar1 { -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; transform: rotate(45deg); } .navbar-toggle:hover .icon-bar.icon-bar2, .navbar-toggle:focus .icon-bar.icon-bar2 { display: none; } .navbar-toggle:hover .icon-bar.icon-bar3, .navbar-toggle:focus .icon-bar.icon-bar3 { -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; transform: rotate(-45deg); margin-top: -1px; } .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { max-height: 30000px; } .navbar { z-index: 1000; width: 100%; float: left; margin-bottom: 0; border-radius: 0; background: #fff; } /** first navigation **/ .navbar-height1 { height: 120px; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .navbar-height1 .nav > li { -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; float: left; padding: 0; } .navbar-height1 .nav > li > a { -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; padding-top: 50px!important; padding-bottom: 50px!important; } .navbar-height1 .navbar-brand { padding-top: 37px; height: auto; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } /** first navigation end **/ /** second navigation on scroll **/ .navbar-height2 { -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; height: 50px; width: 100%; float: left; } .navbar-height2 .nav > li { -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; max-height: 50px; float: left; padding: 16px 0; } .navbar-height2 .nav > li > a { -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .navbar-height2 .navbar-brand { padding: 0; height: auto; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } /** second navigation on scroll end **/ /** inner pages navigation **/ .navbar-height-inner { height: 120px; } .navbar-height-inner .nav > li { float: left; padding: 0; } .navbar-height-inner .nav > li > a { padding-top: 50px!important; padding-bottom: 50px!important; } .navbar-height-inner .navbar-brand { padding-top: 37px; height: auto; } /** inner pages navigation end **/ .nav > li { border-top: 1px solid #e4e7ea; margin-top: -2px; } .nav > li > a:link, .nav > li > a:visited { padding: 0 20px; background: transparent; color: #707418; font-size: 14px; font-family: "source sans pro"; font-weight: 700; text-transform: uppercase; } .nav > li > a:hover { color: #53aedd; } .nav > li:hover, li.active { border-top: 1px solid #53aedd; } .navbar-nav > .active > a:link, .navbar-nav > .active > a:visited, .navbar-nav > .active > a:hover, .navbar-nav > .active > a:focus { display: inlne-block; color: #53aedd; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; } .navbar-height1 .navbar-nav > li > ul { padding: 0; margin: 0; width: 100%; } .navbar-height2 .navbar-nav > li > ul { padding: 0; margin: 12px 0 0 0; width: 100%; } /*** for dropdown hide ***/ .navbar-nav li ul { position: absolute; z-index: 100; left: -9999px; } .navbar-nav li:hover ul { left: 0; } .navbar-nav li:hover ul li ul { left: -9999px; } .navbar-nav li ul li ul { postion: absolute; left: -9999px; } .navbar-nav li ul li:hover ul { left: 0; } /*** for dropdown hide end ***/ /*** second level ***/ .navbar-nav > li > ul > li { margin: 0; width: 100%; } .nav li ul { display: block; float: left; width: 200px!important; background: #f8f8f8; padding: 14px!important; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; } .navbar-nav > li > ul > li > a:link, .navbar-nav > li > ul > li > a:visited { position: relative; display: block; padding: 7px 12px; width: 200px; margin-left: 0; color: #9f9f9f; font-size: 13px; font-family: "open sans"; font-weight: 400; } .navbar-nav > li > ul > li > a:hover { color: #53aedd; } .navbar-nav > li:hover ul { left: 0; } /*** second level end ***/ /** fix for navigation breakpoing **/ @media (max-width: 992px) { .nav > li { border-top: none!important; } .navbar-header { float: none; } .navbar-toggle { display: block; } .navbar-collapse.collapse { display: none!important; } .navbar-nav { float: none!important; } .navbar-nav > li { float: none; } .navbar-text { float: none; margin: 15px 0; } .navbar-collapse.collapse.in { display: block!important; } .collapsing { overflow: hidden!important; } } /** fix for navigation breakpoing end **/ @media (max-width: 1200px) { .nav > li > a:link, .nav > li > a:visited { padding-right: 14px; padding-left: 14px; } } @media (max-width: 992px) { .nav li ul { width: 100%!important; } .nav > li > a:link, .nav > li > a:visited { padding: 14px 4px; font-size: 13px; } /** fix for navigation breakpoint 2 **/ .navbar-header { float: right; } .collapse { float: right; width: 100%; } .responsive-wrapper { float: right; width: 100%; } /** fix for navigation breakpoint 2 end **/ .navbar-nav > li > a { margin-left: 0; } .navbar-nav > li > a { margin-right: 0; color: #fff; } .navbar { position: relative!important; height: auto; min-height: 120px; } .nav { margin-top: 20px; } .nav li { width: 100%; text-align: center; } .navbar-nav > li > ul > li > a:link, .navbar-nav > li > ul > li > a:visited { width: 100%; text-align: center; display: block; } .navbar-nav li ul { position: relative; z-index: 100; left: 0; } .navbar-nav li:hover ul { left: 0; } .navbar-nav li:hover ul li ul { left: 0; } .navbar-nav li ul li ul { postion: relative; left: 0; } .navbar-nav li ul li:hover ul { left: 0; } .navbarwrapper { position: relative; z-index: 900; } } @media (max-width: 992px) { .navbar-height1 { float: left; } .navbar-height1 .nav { padding-top: 14px; } .navbar-height1 .nav > li { padding: 0; } .navbar-height1 .nav > li > a { padding-top: 10px!important; padding-bottom: 10px!important; } .navbar-height-inner { height: auto; } .navbar-height-inner .nav { padding-top: 14px; } .navbar-height-inner .nav > li { padding: 0; } .navbar-height-inner .nav > li > a { padding-top: 10px!important; padding-bottom: 10px!important; } } /*** menu end ***/ /********* menu end **********/ /************ button *************/ .button1 a:link, .button1 a:visited { display: inline-block; text-wrap: none; text-align: center; line-height: 1; padding: 15px 22px; text-transform: uppercase; background: #707418; font-weight: 600; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; color: #fff; font-family: "source sans pro"; -webkit-transition: background 0.5s ease; -moz-transition: background 0.5s ease; -o-transition: background 0.5s ease; transition: background 0.5s ease; } .button1 a:hover { background: #5a5f68; } /********* button end **********/ /**************** top slider******************/ .flex-container a:hover, .flex-slider a:hover, .flex-container a:focus, .flex-slider a:focus { outline: none; } .slides, .slides > li, .flex-control-nav, .flex-direction-nav { margin: 0; padding: 0; list-style: none; } .flex-pauseplay span { text-transform: capitalize; } .flexslider .slides > li { display: none; -webkit-backface-visibility: hidden; } .flexslider .slides img { width: 100%; display: block; } .flexslider .slides:after { content: ""; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; } html[xmlns] .flexslider .slides { display: block; } * html .flexslider .slides { height: 1%; } .no-js .flexslider .slides > li:first-child { display: block; } .flexslider { float: left; width: 100%; margin: 120px auto 0 auto; background: #fff; position: relative; zoom: 1; } @media screen and (max-width: 992px) { .flexslider { margin: 0 auto; } } .flexslider .slides { zoom: 1; } .flexslider .slides img { height: auto; } .flex-viewport { max-height: 2000px; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .loading .flex-viewport { max-height: 300px; } .carousel li { margin-right: 5px; } .flex-direction-nav { *height: 0; } .flex-direction-nav a { position: absolute; top: 50%; z-index: 10; text-decoration: none; display: block; width: 50px; height: 50px; margin-top: -25px; line-height: 5; overflow: hidden; opacity: 0; cursor: pointer; color: #3d434d; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .flex-direction-nav a:before { font-family: "FontAwesome"; display: inline-block; content: ' '; } .flex-direction-nav .flex-prev { left: 0; text-indent: -9999px; background: url("../images/images-arrow-left.png") center center no-repeat; } .flex-direction-nav .flex-prev:hover { background: url("../images/images-arrow-lefth.png") center center no-repeat; } .flex-direction-nav .flex-next { right: 0; text-indent: -9999px; background: url("../images/images-arrow-right.png") center center no-repeat; } .flex-direction-nav .flex-next:hover { background: url("../images/images-arrow-righth.png") center center no-repeat; } .flexslider:hover .flex-direction-nav .flex-prev { opacity: 0.7; left: 10px; } .flexslider:hover .flex-direction-nav .flex-prev:hover { opacity: 1; } .flexslider:hover .flex-direction-nav .flex-next { opacity: 0.7; right: 10px; } .flexslider:hover .flex-direction-nav .flex-next:hover { opacity: 1; } .flex-direction-nav .flex-disabled { opacity: 0!important; filter: alpha(opacity=0); cursor: default; } .flex-control-nav { position: absolute; z-index: 10; width: 100%; bottom: 20px; text-align: center; } .flex-control-nav li { margin: 0 8px; display: inline-block; zoom: 1; *display: inline; } .flex-control-paging li a { width: 12px; height: 12px; display: block; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; background: #53aedd; cursor: pointer; text-indent: -9999px; opacity: 0.6; } .flex-control-paging li a:hover { background: #53aedd; opacity: 1; } .flex-control-paging li a.flex-active { background: #53aedd; cursor: default; opacity: 1; } .flex-control-thumbs { margin: 5px 0 0; position: static; overflow: hidden; } .flex-control-thumbs li { width: 25%; float: left; margin: 0; } .flex-control-thumbs img { width: 100%; height: auto; display: block; cursor: pointer; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .flex-control-thumbs img:hover { opacity: 1; } .flex-control-thumbs .flex-active { opacity: 1; cursor: default; } @media screen and (max-width: 860px) { .flex-direction-nav .flex-prev { opacity: 1; left: 10px; } .flex-direction-nav .flex-next { opacity: 1; right: 10px; } } .flex-caption { position: absolute; top: 50%; width: 100%; margin-top: -120px; } .flex-caption1 h1, .flex-caption1 h2, .flex-caption1 h3, .flex-caption1 h4, .flex-caption1 h5, .flex-caption1 h6, .flex-caption1 p { color: #fff; max-width: 100%; } .flex-caption1 h2, .flex-caption1 h1 { font-weight: 300; margin-bottom: 27px; } .flex-caption1 p { opacity: 0.8; } @media (max-width: 992px) { .flexslider { margin-top: 0; background: #31363e; } .flex-caption { position: relative; top: 0; width: 100%; margin-top: 54px; padding-bottom: 54px; text-align: center; } .flex-caption1 h2, .flex-caption1 h3, .flex-caption1 h4, .flex-caption1 h5, .flex-caption1 h6, .flex-caption1 p { max-width: 100%; } .flex-caption1 h2 { font-size: 44px; } .flex-caption1 h3 { font-size: 21px; } .flex-control-paging li a { display: none; } } /**************** top slider end ******************/ /********* counter *********/ .timerwrapper { float: left; width: 100%; text-align: center; background: #707418; padding: 28px 0; } .timerwrapper .onecounter-left { width: 25%; float: left; } .timerwrapper .onecounter-right { width: 75%; float: left; padding-right: 70px; } @media (max-width: 1000px) { .timerwrapper .onecounter-left { width: 100%; } .timerwrapper .onecounter-right { width: 100%; padding-right: 0; } } .timerwrapper p { display: inline-block; line-height: 1; font-size: 28px; font-weight: 400; color: #fff; margin-bottom: 14px; font-family: "source sans pro"; } .timerwrapper h6 { font-size: 14px; font-weight: 700; letter-spacing: 1px; line-height: 1; margin-bottom: 0; color: #fff; text-transform: uppercase; opacity: 0.7; } @media (max-width: 767px) { .onecounter { padding: 27px 0; float: left; width: 100%; } } /********* counter end *********/ /********* services **********/ .services { display: -webkit-flex; display: flex; } .services .one-service { position: relative; z-index: 10; padding: 0; width: 20%; float: left; } .services .one-service img { margin-right: 14px; float: left; } .services .one-service h3 { display: inline-block; float: left; margin-top: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 14px; opacity: 0.8; color: #fff; } .services .color1 { background: #bbc230; } .services .color2 { background: #9fa528; } .services .color3 { background: #898f22; } .services .color4 { background: #7e831f; } .services .color5 { background: #707418; } .services .color6 { background: #5f6314; } .services ul { display: block; width: 100%; float: left; margin: 0; padding: 0; } .services ul > li { display: block; width: 100%; float: left; padding: 27px 14px 14px 27px; position: relative; margin: 0; } .services ul > li > ul > li { padding: 14px 0; } .services ul > li > p { color: #fff; opacity: 0.6; margin-bottom: 12px; font-family: "source sans pro"; } .services ul > li > a { color: #fff; font-size: 13px; font-weight: 700; opacity: 0.8; text-transform: uppercase; } .services ul > li > a:hover { opacity: 1; color: #fff; } .services li ul { list-style: none; width: 100%; left: 0; top: 100%; max-height: 0; overflow: hidden; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .services li ul { max-height: 500px; } @media (max-width: 767px) { .services { display: block; } .services .one-service { float: left; width: 100%; } } /********* services end **********/ /********* testimonials *********/ .testimonials { text-align: center; width: 100%; float: left; } .testimonials .testimonialsinner { width: 100%; float: left; } .testimonial { padding: 27px; text-align: center; } .testimonial i { font-size: 35px; margin-bottom: 27px; color: #fff; } .testimonial h5 { line-height: 1.7; font-size: 14px; font-style: italic; color: #fff; opacity: 0.7; max-width: 500px; margin: 0 auto 27px auto; font-family: "open sans"; } .testimonial img { width: 100px; height: 100px; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; margin-bottom: 27px; } .testimonial p { color: #fff; margin-bottom: 27px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-family: "source sans pro"; } /********* testimonials end *********/ /*********** flickity gallery carousel ****************/ /*! Flickity v1.0.0 http://flickity.metafizzy.co ---------------------------------------------- */ .flickity-enabled { position: relative; } .flickity-enabled:focus { outline: none; } .flickity-viewport { position: relative; z-index: 10; overflow: hidden; height: 100%; } .flickity-slider { position: absolute; width: 100%; height: 100%; } .flickity-enabled.is-draggable { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .flickity-enabled.is-draggable .flickity-viewport { cursor: move; cursor: -webkit-grab; cursor: grab; } .flickity-enabled.is-draggable .flickity-viewport.is-pointer-down { cursor: -webkit-grabbing; cursor: grabbing; } /* ---- previous/next buttons ---- */ .flickity-prev-next-button { position: absolute; z-index: 10; top: 50%; width: 44px; height: 44px; border: none; border-radius: 50%; background: #3d434d; background: rgba(255, 255, 255, 0.75); cursor: pointer; /* vertically center */ -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); } .flickity-prev-next-button:hover { background: #fff; } .flickity-prev-next-button:focus { outline: none; } .flickity-prev-next-button:active { filter: alpha(opacity=60); /* IE8 */ opacity: 0.6; } .flickity-prev-next-button.previous { left: 10px; } .flickity-prev-next-button.next { right: 10px; } .flickity-rtl .flickity-prev-next-button.previous { left: auto; right: 10px; } .flickity-rtl .flickity-prev-next-button.next { right: auto; left: 10px; } .flickity-prev-next-button:disabled { filter: alpha(opacity=30); /* IE8 */ opacity: 0.3; cursor: auto; } .flickity-prev-next-button svg { position: absolute; left: 20%; top: 20%; width: 60%; height: 60%; } .flickity-prev-next-button .arrow { fill: #333; } /* color & size if no SVG - IE8 and Android 2.3 */ .flickity-prev-next-button.no-svg { color: #333; font-size: 26px; } /* ---- page dots ---- */ .flickity-page-dots { position: absolute; z-index: 100; width: 100%; float: left; bottom: 0; padding: 0; margin: 0; list-style: none; text-align: center; line-height: 1; } .flickity-rtl .flickity-page-dots { direction: rtl; } .flickity-page-dots .dot { display: inline-block; width: 12px; height: 12px; margin: 0 7px; background: #3d434d; border-radius: 50%; filter: alpha(opacity=25); /* IE8 */ opacity: 0.25; cursor: pointer; } .flickity-page-dots .dot.is-selected { filter: alpha(opacity=100); /* IE8 */ opacity: 1; } /******* carousel *******/ @media (max-width: 1000px) { .carouselwidth { width: 50%; float: left; } .gallery .partnerone { width: 100%; float: left; text-align: center; } } @media (max-width: 767px) { .carouselwidth { width: 100%; } } .carouselwrapper { position: relative; } .carouselimage { position: relative; z-index: 100; } .flickity-enabled .gallery-cell { margin-bottom: 0; } /*** carousel end ****/ .gallery--not-counting .gallery-cell:before { content: none; } .gallery--full-width .gallery-cell { width: 100%; } .gallery--half-width .gallery-cell { width: 50%; } .gallery--various-widths .gallery-cell { width: 33%; } .gallery--various-widths .gallery-cell.size-180 { width: 180px; } .gallery--various-widths .gallery-cell.size-large { width: 75%; } .gallery--media-queried .gallery-cell { width: 100%; } .gallery--selected-cell .gallery-cell.is-selected { background: #ED2; } .gallery--gallery-focus:focus .flickity-viewport { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; } /* ---- show-several ---- */ .gallery--show-several .gallery-cell { width: 28%; } /* ---- auto-play ---- */ /* ---- images-loaded ---- */ .gallery--images-loaded-demo img { display: block; height: 160px; } .gallery--images-demo { margin-bottom: 40px; } .gallery--images-demo img { display: block; height: 160px; } .gallery--watch-demo:after { content: 'flickity'; display: none; } .gallery--watch-demo .gallery-cell { margin-right: 10px; } .gallery--cell-selector-demo { position: relative; } .gallery--pixel-position-demo .gallery-cell { width: 300px; } .gallery--set-gallery-size-disabled { height: 160px; } .gallery--set-gallery-size-disabled .gallery-cell { height: 100%; } .gallery--set-gallery-size-disabled-percentage { padding-bottom: 50%; } .gallery--set-gallery-size-disabled-percentage .flickity-viewport { position: absolute; width: 100%; } .gallery--set-gallery-size-disabled-percentage .gallery-cell { height: 100%; } .gallery--resize-option { width: 300px; } .gallery--resize { width: 50%; min-width: 240px; } .gallery--resize.is-expanded { width: 100%; } .gallery--resize.is-expanded .gallery-cell:before { line-height: 320px; } .gallery--position-cells .gallery-cell { position: relative; width: 33%; } .gallery--position-cells .gallery-cell.is-expanded { width: 80%; } .gallery-cell .button { position: absolute; left: 10px; top: 10px; } .gallery--as-nav-for-main { margin-bottom: 40px; } .gallery--nav .gallery-cell { height: 80px; width: 100px; } .gallery--nav .gallery-cell:before { font-size: 50px; line-height: 80px; } .gallery--nav .gallery-cell.is-nav-selected { background: #ED2; } .gallery--static-click .gallery-cell { width: 26%; } .gallery--static-click .gallery-cell.is-clicked { background: #ED2; } @media screen and (min-width: 768px) { .gallery--media-queried .gallery-cell { width: 50%; } .gallery--watch-demo:after { content: ''; } .gallery--images-demo img { height: 400px; } } /*********** flickity gallery carousel end ****************/ /****************** team ******************/ .teamcolumn { float: left; width: 100%; text-align: center; margin-bottom: -14px; padding: 0 14px; } .teamcolumn .teamcolumn-inner { float: left; width: 100%; border: 1px solid #f4f4f4; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; } .teamcolumn h4 { font-weight: 600; font-size: 18px; margin-bottom: 7px; } .teamcolumn img { display: inline-block; margin: 0 auto; float: none; } .teamcolumn .team-name { padding: 27px 14px; float: left; width: 100%; } .teamcolumn .team-name h6 { margin-bottom: 7px; font-size: 16px; font-style: italic; font-weight: 400; color: #d0d0d0; } .teamcolumn .team-name p { margin-bottom: 20px; } i.teamicon { display: inline-block; font-size: 16px; text-align: center; width: 40px; height: 40px; padding-top: 12px; margin-right: 5px; margin-left: 5px; color: #c5c9d2; background: #f4f4f4; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; } i.teamicon:hover { color: #53aedd; -webkit-transition: background 0.5s ease; -moz-transition: background 0.5s ease; -o-transition: background 0.5s ease; transition: background 0.5s ease; } @media (max-width: 996px) { .teamcolumn { margin-top: 54px; margin-bottom: 0; } } /***hover effect***/ .view1 { -webkit-backface-visibility: hidden; float: left; width: 100%; overflow: hidden; position: relative; text-align: center; } .view1 .mask, .view1 .content { width: 100%; height: 100%; position: absolute; top: 0; right: 0; } .view1 .mask { padding: 0%; -webkit-backface-visibility: hidden; } .view1 .maskinner { position: absolute; width: 100%; top: 50%; margin-top: -14px; } .view1 a:link, .view1 a:visited { display: inline-block; letter-spacing: 1px; font-size: 14px; margin-bottom: 0; font-weight: 600; font-family: "source sans pro"; padding-top: 0; text-transform: uppercase; color: #fff; background: transparent; text-align: center; width: 100%; height: auto; } .view-first1 img { -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .view-first1 .mask { background: rgba(83, 174, 221, 0.8); opacity: 0; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .teamcolumn:hover img { opacity: 1; -webkit-transform: scale(1.1, 1.1); -moz-transform: scale(1.1, 1.1); -o-transform: scale(1.1, 1.1); -ms-transform: scale(1.1, 1.1); transform: scale(1.1, 1.1); } .teamcolumn:hover .mask { opacity: 1; } .teamcolumn .view-first1:hover a { -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter: alpha(opacity=100); opacity: 1; -webkit-transform: translateY(0px); -moz-transform: translateY(0px); -o-transform: translateY(0px); -ms-transform: translateY(0px); transform: translateY(0px); } /***hover effect end***/ /************* team end *************/ /************** home blog ********************/ .homeblog { z-index: 1; float: left; position: relative; text-align: center; margin-bottom: 27px; } .homeblog h4 { font-weight: 600; font-size: 18px; margin-bottom: 10px; margin-top: 27px; } .homeblog .date { width: 100%; float: left; } .homeblog .date p { display: inline-block; margin-bottom: 10px; font-size: 15px; font-family: "source sans pro"; font-style: italic; color: #d0d0d0; margin-right: 7px; } .homeblog .date i { font-size: 13px; margin: 0 3px; padding: 0; color: #c5c9d2; } @media (max-width: 767px) { .homeblog { width: 100%; float: left; } } .homeblog:hover img { opacity: 1; -webkit-transform: scale(1.1, 1.1); -moz-transform: scale(1.1, 1.1); -o-transform: scale(1.1, 1.1); -ms-transform: scale(1.1, 1.1); transform: scale(1.1, 1.1); } .homeblog:hover .mask { opacity: 1; } .homeblog .view-first1:hover a { -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter: alpha(opacity=100); opacity: 1; -webkit-transform: translateY(0px); -moz-transform: translateY(0px); -o-transform: translateY(0px); -ms-transform: translateY(0px); transform: translateY(0px); } /************** home blog end ********************/ /************** contact ***************/ /* for contact form */ #main { width: 100%; float: left; height: auto; padding: 0; } #main #response li.error { color: red; } #main #response li.success { color: green; } #main input[type="text"] { width: 100%; max-width: 500px; color: #fff!important; margin-top: 0; height: 50px; padding: 0 27px; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; margin-bottom: 14px; float: left; font-size: 14px; font-family: "source sans pro"; font-weight: 400; box-shadow: none; border: none; text-transform: none; outline: none; background: #5a5f68; -webkit-transition: background 0.5s ease; -moz-transition: background 0.5s ease; -o-transition: background 0.5s ease; transition: background 0.5s ease; } #main input[type="text"]:focus { background: #81858b; } #main textarea { width: 100%; max-width: 500px; padding: 14px 27px; border-radius: 30px; height: 220px; margin-top: 0; float: left; color: #fff; box-shadow: none; text-transform: none; outline: none; border: none; background: #5a5f68; -webkit-transition: background 0.5s ease; -moz-transition: background 0.5s ease; -o-transition: background 0.5s ease; transition: background 0.5s ease; } #main textarea:focus { background: #81858b; } @media (max-width: 992px) { #main input[type="text"] { max-width: 100%; } #main textarea { max-width: 100%; } } .buttoncontact input { display: inline-block; text-wrap: none; text-align: center; line-height: 1; padding: 15px 22px; text-transform: uppercase; background: #707418; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; color: #fff; outline: none; font-family: "source sans pro"; -webkit-transition: background 0.5s ease; -moz-transition: background 0.5s ease; -o-transition: background 0.5s ease; transition: background 0.5s ease; border: none; margin-top: 14px; font-weight: 400; } .buttoncontact input:hover { background: #3d434d; } #main ::-webkit-input-placeholder { font-weight: 600; font-size: 13px; color: #fff!important; font-family: "source sans pro"; text-transform: uppercase; } #main ::-moz-placeholder { font-weight: 600; font-size: 13px; color: #fff!important; font-family: "source sans pro"; text-transform: uppercase!; } #main :-ms-input-placeholder { font-weight: 600; font-size: 13px; color: #fff!important; font-family: "source sans pro"; text-transform: uppercase; } #main :input:-moz-placeholder { font-weight: 600; font-size: 13px; color: #fff!important; font-family: "source sans pro"; text-transform: uppercase; } /******* contact form end ********/ /******* address and faq ********/ .map-overlay { position: relative; z-index: 100; width: 100%; float: left; height: 400px; top: 400px; margin-top: -400px; max-width: 100%; } .map { position: relative; z-index: 5; width: 100%; float: left; text-align: center; max-width: 100%; } .map iframe { position: relative; z-index: 100; max-width: 100%; width: 100%; min-height: 400px; border: none; } @media (max-width: 1000px) { .map-overlay { height: 200px; top: 200px; margin-top: -200px; max-width: 100%; } .map iframe { width: 100%; height: auto; min-height: 100px; max-width: 700px; float: none; margin: 0 auto; } } @media (max-width: 800px) { .map iframe { width: 100%; height: auto; min-height: 100px; max-width: 500px; float: none; margin: 0 auto; } } @media (max-width: 580px) { .map iframe { width: 100%; height: auto; min-height: 100px; max-width: 220px; float: none; margin: 0 auto; } } .address { float: left; width: 100%; border: 1px solid #f0f0f0; padding: 27px; } .address h4 { font-weight: bold; text-transform: uppercase; text-align: center; font-size: 15px; margin-bottom: 14px; line-height: 1.8; } .address p { text-align: center; } .address .ul-list { padding-left: 27px; } .address .ul-list li { font-family: "open sans"; font-style: italic; font-weight: 400; font-size: 14px; margin-bottom: 20px; color: #727982; } .address .ul-list li i { display: inline-block; border: 1px solid #ededed; width: 54px; height: 54px; text-align: center; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; color: #53aedd; font-size: 20px; padding-top: 16px; padding-left: 10px; margin-right: 14px; } /*** accordion one ***/ .panel { box-shadow: none; } .panel-group .panel.panel-default { -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; border: none; background: transparent; box-shadow: none; } .panel-group .panel-body { padding: 0 27px 14px 27px; } .panel-group .panel-heading { display: inline-block; width: 100%; margin-bottom: 14px; padding: 0; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; -webkit-transition: background 0.5s ease; -moz-transition: background 0.5s ease; -o-transition: background 0.5s ease; transition: background 0.5s ease; } .panel-group .panel-heading i { font-size: 20px; padding-right: 5px; font-weight: bold; } .panel-group .panel-heading a { display: block; font-size: 13px; padding: 14px 27px; background: #707418 url("../images/images-minus.png") right center no-repeat; font-family: "source sans pro"; color: #fff; font-weight: 600; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; text-transform: uppercase; } .panel-group .panel-heading a:hover { -webkit-transition: background 0.5s ease; -moz-transition: background 0.5s ease; -o-transition: background 0.5s ease; transition: background 0.5s ease; background: #81858b url("../images/images-plus.png") right center no-repeat; } .panel-group .panel-heading a.collapsed { -webkit-transition: background 0.5s ease; -moz-transition: background 0.5s ease; -o-transition: background 0.5s ease; transition: background 0.5s ease; background: #5a5f68 url("../images/images-plus.png") right center no-repeat; } .panel-group .panel-heading a.collapsed:hover { -webkit-transition: background 0.5s ease; -moz-transition: background 0.5s ease; -o-transition: background 0.5s ease; transition: background 0.5s ease; background: #81858b url("../images/images-plus.png") right center no-repeat; } @media (max-width: 992px) { .panel-group .panel-heading { width: 100%; max-width: 100%; } } /** bootstrap fix **/ .panel-group .panel-heading + .panel-collapse > .panel-body, .panel-group .panel-heading + .panel-collapse > .list-group { border-top: none; } /*** accordion one end ***/ /***** address and faq end ****/ /************** contact ***************/ /************* footer *************/ footer.bottom { width: 100%; float: left; padding: 54px 0; background: #3d434d; } footer.bottom a:link, footer.bottom a:visited { color: #9f9f9f; } footer.bottom a:link:hover, footer.bottom a:visited:hover { color: #53aedd; } footer.bottom h4 { color: #fff; font-weight: 600; font-size: 15px; margin-bottom: 10px; } @media (max-width: 992px) { footer.bottom { text-align: center; } } /** social icons **/ .socialicons { text-align: center; } .socialicons li { margin: 0 5px 5px 0; display: inline-block; text-align: center; } ul.socialicons li a:link, ul.socialicons li a:visited { display: inline-block; width: 54px; height: 54px; background: #31363e; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } ul.socialicons li a:link:hover, ul.socialicons li a:visited:hover { background: #53aedd; } ul.socialicons li i { font-size: 27px; padding-top: 15px; color: #3d434d; } /** social icons end **/ .copyright { width: 100%; float: left; margin-top: 27px; margin-bottom: 27px; text-align: center; } .copyright p { margin-bottom: 0; } .copyright a { font-family: "source sans pro"; font-weight: 600; } .scrollbutton { text-align: center; } .scrollbutton i { font-size: 27px; } /** footer stick to bottom fix **/ .push { height: 44px; } .bodywrapper { min-height: 100%; height: 100%; margin-bottom: -44px; } @media (max-width: 1000px) { footer.bottom h3 { margin-bottom: 27px; } } /** footer stick to bottom fix end **/ /************ footer end ************/ /************** blog pages **************/ .masonrycontainer2 { height: 100%; } .masonrycontainer2 img { margin-bottom: 10px; width: 100%; } .masonrycontainer2 .masonrys { margin: 0 0 54px 0; } .meta { width: 100%; float: left; padding: 27px 0; margin-bottom: 27px; border-bottom: 1px solid #f0f0f0; } .meta p { display: inline-block; margin-bottom: 0; font-size: 15 px; line-height: 1; font-family: "source sans pro"; font-style: italic; color: #b8b7b7; margin-right: 10px; } .meta i { font-size: 13px; margin: 0 3px; padding: 0; color: #b8b7b7; } .pagination { float: right; } .pagination > li > a, .pagination > li > span { position: relative; float: left; margin-left: -1px; line-height: inherit; color: inherit; text-decoration: none; background-color: #fff; } .pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus { color: #fff; background-color: #53aedd; } .commentwrapper { width: 100%; float: left; } .commentwrapper .blogform #main input[type="text"] { background: #81858b; } .commentwrapper .blogform #main input[type="text"]:focus { background: #5a5f68; } .commentwrapper .blogform #main textarea { background: #81858b; } .commentwrapper .blogform #main textarea:focus { background: #5a5f68; } .commentwrapper .comment { position: relative; background: #f9f9f9; padding: 27px; margin-bottom: 27px; } .commentwrapper .comment p { margin-bottom: 0; font-family: "source sans pro"; font-style: italic; } .commentwrapper .comment a { position: absolute; top: 24px; right: 27px; color: #b8b7b7; text-transform: uppercase; font-style: normal; font-family: "source sans pro"; background: url("../images/images-reply.png") left center no-repeat; padding-left: 25px; font-weight: 600; } .commentwrapper .comment a:hover { color: #53aedd; } .commentwrapper .comment h5 { margin-bottom: 14px; font-weight: 600; } .commentwrapper .comment h5 span { margin-left: 27px; color: #b8b7b7; font-style: italic; font-size: 15px; font-family: "source sans pro"; } .commentwrapper img { -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; } .sidebar { float: left; height: 100%; border-left: 1px solid #f0f0f0; padding-left: 54px; margin-left: 27px; } .sidebar h4 { font-size: 15px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding-bottom: 14px; border-bottom: 1px solid #f0f0f0; margin-bottom: 27px; } .sidebar .widget { margin-bottom: 27px; } .sidebar-left { float: left; border-right: 1px solid #f0f0f0; padding-right: 54px; margin-right: 27px; } .sidebar-left h4 { font-size: 15px; font-weight: 600; text-transform: uppercase; padding-bottom: 14px; border-bottom: 1px solid #f0f0f0; margin-bottom: 27px; } .sidebar-left .widget { margin-bottom: 27px; } @media screen and (max-width: 992px) { .sidebar { border-left: none; padding-left: 0; margin-left: 0; } .sidebar-left { border-right: none; padding-right: 0; margin-right: 0; } } /* for contact form */ .blogform #main { width: 100%; float: left; height: auto; padding: 0; } .blogform #main #response li.error { color: red; } .blogform #main #response li.success { color: green; } .blogform #main .contact1a input[type="text"] { width: 49%; margin-right: 2%; } .blogform #main .contact1b input[type="text"] { width: 49%; } .blogform #main .contact2 input[type="text"] { width: 100%; } .blogform #main input[type="text"] { max-width: 100%; color: #fff!important; margin-top: 0; height: 50px; padding: 0 27px; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; margin-bottom: 14px; float: left; font-size: 14px; font-family: "source sans pro"; font-weight: 400; box-shadow: none; border: none; background: #5a5f68; -webkit-transition: background 0.5s ease; -moz-transition: background 0.5s ease; -o-transition: background 0.5s ease; transition: background 0.5s ease; } .blogform #main input[type="text"]:focus { background: #81858b; } .blogform #main input[placeholder], .blogform #main [placeholder], .blogform #main *[placeholder] { font-weight: 600; font-size: 13px; color: #fff!important; font-family: "source sans pro"; text-transform: uppercase; } .blogform #main textarea { width: 100%; max-width: 100%; padding: 14px 27px; border-radius: 30px; height: 220px; margin-top: 0; float: left; box-shadow: none; outline: none; border: none; background: #5a5f68; -webkit-transition: background 0.5s ease; -moz-transition: background 0.5s ease; -o-transition: background 0.5s ease; transition: background 0.5s ease; } .blogform #main textarea:focus { background: #81858b; } /******* contact form end ********/ /************* blog pages end *************/ /************* chart **************/ .ct-double-octave:after, .ct-major-eleventh:after, .ct-major-second:after, .ct-major-seventh:after, .ct-major-sixth:after, .ct-major-tenth:after, .ct-major-third:after, .ct-major-twelfth:after, .ct-minor-second:after, .ct-minor-seventh:after, .ct-minor-sixth:after, .ct-minor-third:after, .ct-octave:after, .ct-perfect-fifth:after, .ct-perfect-fourth:after, .ct-square:after { content: ""; clear: both; } .ct-double-octave:after, .ct-double-octave:before, .ct-golden-section:after, .ct-major-eleventh:after, .ct-major-eleventh:before, .ct-major-second:after, .ct-major-second:before, .ct-major-seventh:after, .ct-major-seventh:before, .ct-major-sixth:after, .ct-major-sixth:before, .ct-major-tenth:after, .ct-major-tenth:before, .ct-major-third:after, .ct-major-third:before, .ct-major-twelfth:after, .ct-major-twelfth:before, .ct-minor-second:after, .ct-minor-second:before, .ct-minor-seventh:after, .ct-minor-seventh:before, .ct-minor-sixth:after, .ct-minor-sixth:before, .ct-minor-third:after, .ct-minor-third:before, .ct-octave:after, .ct-octave:before, .ct-perfect-fifth:after, .ct-perfect-fifth:before, .ct-perfect-fourth:after, .ct-perfect-fourth:before, .ct-square:after, .ct-square:before { content: ""; } .ct-label { fill: rgba(0, 0, 0, 0.4); color: rgba(0, 0, 0, 0.4); font-size: .75rem; line-height: 1; } .ct-chart-bar .ct-label, .ct-chart-line .ct-label { display: block; display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; } .ct-label.ct-horizontal.ct-start { -webkit-box-align: flex-end; -webkit-align-items: flex-end; -ms-flex-align: flex-end; align-items: flex-end; -webkit-box-pack: flex-start; -webkit-justify-content: flex-start; -ms-flex-pack: flex-start; justify-content: flex-start; text-align: left; text-anchor: start; } .ct-label.ct-horizontal.ct-end { -webkit-box-align: flex-start; -webkit-align-items: flex-start; -ms-flex-align: flex-start; align-items: flex-start; -webkit-box-pack: flex-start; -webkit-justify-content: flex-start; -ms-flex-pack: flex-start; justify-content: flex-start; text-align: left; text-anchor: start; } .ct-label.ct-vertical.ct-start { -webkit-box-align: flex-end; -webkit-align-items: flex-end; -ms-flex-align: flex-end; align-items: flex-end; -webkit-box-pack: flex-end; -webkit-justify-content: flex-end; -ms-flex-pack: flex-end; justify-content: flex-end; text-align: right; text-anchor: end; } .ct-label.ct-vertical.ct-end { -webkit-box-align: flex-end; -webkit-align-items: flex-end; -ms-flex-align: flex-end; align-items: flex-end; -webkit-box-pack: flex-start; -webkit-justify-content: flex-start; -ms-flex-pack: flex-start; justify-content: flex-start; text-align: left; text-anchor: start; } .ct-chart-bar .ct-label.ct-horizontal.ct-start { -webkit-box-align: flex-end; -webkit-align-items: flex-end; -ms-flex-align: flex-end; align-items: flex-end; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; text-align: center; text-anchor: start; } .ct-chart-bar .ct-label.ct-horizontal.ct-end { -webkit-box-align: flex-start; -webkit-align-items: flex-start; -ms-flex-align: flex-start; align-items: flex-start; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; text-align: center; text-anchor: start; } .ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-start { -webkit-box-align: flex-end; -webkit-align-items: flex-end; -ms-flex-align: flex-end; align-items: flex-end; -webkit-box-pack: flex-start; -webkit-justify-content: flex-start; -ms-flex-pack: flex-start; justify-content: flex-start; text-align: left; text-anchor: start; } .ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-end { -webkit-box-align: flex-start; -webkit-align-items: flex-start; -ms-flex-align: flex-start; align-items: flex-start; -webkit-box-pack: flex-start; -webkit-justify-content: flex-start; -ms-flex-pack: flex-start; justify-content: flex-start; text-align: left; text-anchor: start; } .ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-start { -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: flex-end; -webkit-justify-content: flex-end; -ms-flex-pack: flex-end; justify-content: flex-end; text-align: right; text-anchor: end; } .ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-end { -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: flex-start; -webkit-justify-content: flex-start; -ms-flex-pack: flex-start; justify-content: flex-start; text-align: left; text-anchor: end; } .ct-grid { stroke: rgba(0, 0, 0, 0.2); stroke-width: 1px; stroke-dasharray: 2px; } .ct-point { stroke-width: 10px; stroke-linecap: round; } .ct-line { fill: none; stroke-width: 4px; } .ct-area { stroke: none; fill-opacity: 0.1; } .ct-bar { fill: none; stroke-width: 10px; } .ct-slice-donut { fill: none; stroke-width: 60px; } .ct-series-a .ct-bar, .ct-series-a .ct-line, .ct-series-a .ct-point, .ct-series-a .ct-slice-donut { stroke: #53aedd; } .ct-series-a .ct-area, .ct-series-a .ct-slice-pie { fill: #d70206; } .ct-series-b .ct-bar, .ct-series-b .ct-line, .ct-series-b .ct-point, .ct-series-b .ct-slice-donut { stroke: #f05b4f; } .ct-series-b .ct-area, .ct-series-b .ct-slice-pie { fill: #f05b4f; } .ct-series-c .ct-bar, .ct-series-c .ct-line, .ct-series-c .ct-point, .ct-series-c .ct-slice-donut { stroke: #f4c63d; } .ct-series-c .ct-area, .ct-series-c .ct-slice-pie { fill: #f4c63d; } .ct-series-d .ct-bar, .ct-series-d .ct-line, .ct-series-d .ct-point, .ct-series-d .ct-slice-donut { stroke: #d17905; } .ct-series-d .ct-area, .ct-series-d .ct-slice-pie { fill: #d17905; } .ct-series-e .ct-bar, .ct-series-e .ct-line, .ct-series-e .ct-point, .ct-series-e .ct-slice-donut { stroke: #453d3f; } .ct-series-e .ct-area, .ct-series-e .ct-slice-pie { fill: #453d3f; } .ct-series-f .ct-bar, .ct-series-f .ct-line, .ct-series-f .ct-point, .ct-series-f .ct-slice-donut { stroke: #59922b; } .ct-series-f .ct-area, .ct-series-f .ct-slice-pie { fill: #59922b; } .ct-series-g .ct-bar, .ct-series-g .ct-line, .ct-series-g .ct-point, .ct-series-g .ct-slice-donut { stroke: #0544d3; } .ct-series-g .ct-area, .ct-series-g .ct-slice-pie { fill: #0544d3; } .ct-series-h .ct-bar, .ct-series-h .ct-line, .ct-series-h .ct-point, .ct-series-h .ct-slice-donut { stroke: #6b0392; } .ct-series-h .ct-area, .ct-series-h .ct-slice-pie { fill: #6b0392; } .ct-series-i .ct-bar, .ct-series-i .ct-line, .ct-series-i .ct-point, .ct-series-i .ct-slice-donut { stroke: #f05b4f; } .ct-series-i .ct-area, .ct-series-i .ct-slice-pie { fill: #f05b4f; } .ct-series-j .ct-bar, .ct-series-j .ct-line, .ct-series-j .ct-point, .ct-series-j .ct-slice-donut { stroke: #dda458; } .ct-series-j .ct-area, .ct-series-j .ct-slice-pie { fill: #dda458; } .ct-series-k .ct-bar, .ct-series-k .ct-line, .ct-series-k .ct-point, .ct-series-k .ct-slice-donut { stroke: #eacf7d; } .ct-series-k .ct-area, .ct-series-k .ct-slice-pie { fill: #eacf7d; } .ct-series-l .ct-bar, .ct-series-l .ct-line, .ct-series-l .ct-point, .ct-series-l .ct-slice-donut { stroke: #86797d; } .ct-series-l .ct-area, .ct-series-l .ct-slice-pie { fill: #86797d; } .ct-series-m .ct-bar, .ct-series-m .ct-line, .ct-series-m .ct-point, .ct-series-m .ct-slice-donut { stroke: #b2c326; } .ct-series-m .ct-area, .ct-series-m .ct-slice-pie { fill: #b2c326; } .ct-series-n .ct-bar, .ct-series-n .ct-line, .ct-series-n .ct-point, .ct-series-n .ct-slice-donut { stroke: #6188e2; } .ct-series-n .ct-area, .ct-series-n .ct-slice-pie { fill: #6188e2; } .ct-series-o .ct-bar, .ct-series-o .ct-line, .ct-series-o .ct-point, .ct-series-o .ct-slice-donut { stroke: #a748ca; } .ct-series-o .ct-area, .ct-series-o .ct-slice-pie { fill: #a748ca; } .ct-square { display: block; position: relative; width: 100%; } .ct-square:before { display: block; float: left; width: 0; height: 0; padding-bottom: 100%; } .ct-square:after { display: table; } .ct-square > svg { display: block; position: absolute; top: 0; left: 0; } .ct-minor-second { display: block; position: relative; width: 100%; } .ct-minor-second:before { display: block; float: left; width: 0; height: 0; padding-bottom: 93.75%; } .ct-minor-second:after { display: table; } .ct-minor-second > svg { display: block; position: absolute; top: 0; left: 0; } .ct-major-second { display: block; position: relative; width: 100%; } .ct-major-second:before { display: block; float: left; width: 0; height: 0; padding-bottom: 88.88888889%; } .ct-major-second:after { display: table; } .ct-major-second > svg { display: block; position: absolute; top: 0; left: 0; } .ct-minor-third { display: block; position: relative; width: 100%; } .ct-minor-third:before { display: block; float: left; width: 0; height: 0; padding-bottom: 83.33333333%; } .ct-minor-third:after { display: table; } .ct-minor-third > svg { display: block; position: absolute; top: 0; left: 0; } .ct-major-third { display: block; position: relative; width: 100%; } .ct-major-third:before { display: block; float: left; width: 0; height: 0; padding-bottom: 80%; } .ct-major-third:after { display: table; } .ct-major-third > svg { display: block; position: absolute; top: 0; left: 0; } .ct-perfect-fourth { display: block; position: relative; width: 100%; } .ct-perfect-fourth:before { display: block; float: left; width: 0; height: 0; padding-bottom: 75%; } .ct-perfect-fourth:after { display: table; } .ct-perfect-fourth > svg { display: block; position: absolute; top: 0; left: 0; } .ct-perfect-fifth { display: block; position: relative; width: 100%; } .ct-perfect-fifth:before { display: block; float: left; width: 0; height: 0; padding-bottom: 66.66666667%; } .ct-perfect-fifth:after { display: table; } .ct-perfect-fifth > svg { display: block; position: absolute; top: 0; left: 0; } .ct-minor-sixth { display: block; position: relative; width: 100%; } .ct-minor-sixth:before { display: block; float: left; width: 0; height: 0; padding-bottom: 62.5%; } .ct-minor-sixth:after { display: table; } .ct-minor-sixth > svg { display: block; position: absolute; top: 0; left: 0; } .ct-golden-section { display: block; position: relative; width: 100%; } .ct-golden-section:before { display: block; float: left; content: ""; width: 0; height: 0; padding-bottom: 61.80469716%; } .ct-golden-section:after { display: table; clear: both; } .ct-golden-section > svg { display: block; position: absolute; top: 0; left: 0; } .ct-major-sixth { display: block; position: relative; width: 100%; } .ct-major-sixth:before { display: block; float: left; width: 0; height: 0; padding-bottom: 60%; } .ct-major-sixth:after { display: table; } .ct-major-sixth > svg { display: block; position: absolute; top: 0; left: 0; } .ct-minor-seventh { display: block; position: relative; width: 100%; } .ct-minor-seventh:before { display: block; float: left; width: 0; height: 0; padding-bottom: 56.25%; } .ct-minor-seventh:after { display: table; } .ct-minor-seventh > svg { display: block; position: absolute; top: 0; left: 0; } .ct-major-seventh { display: block; position: relative; width: 100%; } .ct-major-seventh:before { display: block; float: left; width: 0; height: 0; padding-bottom: 53.33333333%; } .ct-major-seventh:after { display: table; } .ct-major-seventh > svg { display: block; position: absolute; top: 0; left: 0; } .ct-octave { display: block; position: relative; width: 100%; } .ct-octave:before { display: block; float: left; width: 0; height: 0; padding-bottom: 50%; } .ct-octave:after { display: table; } .ct-octave > svg { display: block; position: absolute; top: 0; left: 0; } .ct-major-tenth { display: block; position: relative; width: 100%; } .ct-major-tenth:before { display: block; float: left; width: 0; height: 0; padding-bottom: 40%; } .ct-major-tenth:after { display: table; } .ct-major-tenth > svg { display: block; position: absolute; top: 0; left: 0; } .ct-major-eleventh { display: block; position: relative; width: 100%; } .ct-major-eleventh:before { display: block; float: left; width: 0; height: 0; padding-bottom: 37.5%; } .ct-major-eleventh:after { display: table; } .ct-major-eleventh > svg { display: block; position: absolute; top: 0; left: 0; } .ct-major-twelfth { display: block; position: relative; width: 100%; } .ct-major-twelfth:before { display: block; float: left; width: 0; height: 0; padding-bottom: 33.33333333%; } .ct-major-twelfth:after { display: table; } .ct-major-twelfth > svg { display: block; position: absolute; top: 0; left: 0; } .ct-double-octave { display: block; position: relative; width: 100%; } .ct-double-octave:before { display: block; float: left; width: 0; height: 0; padding-bottom: 25%; } .ct-double-octave:after { display: table; } .ct-double-octave > svg { display: block; position: absolute; top: 0; left: 0; } span.ct-label { font-size: 15px; color: #555555; font-family: "source sans pro"; line-height: 1; } .ct-chart { width: 85%; float: left; } /*********** chart end *****************/ /****************** twitter ****************/ .user, .tweet, .timePosted { text-align: center; } .user { width: 100%; } .tweet p { width: 100%; } .twitter p { color: #fff; opacity: 0.6; } .timePosted { width: 100%; } .user { clear: left; } .user img { -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; width: 65px; height: 65px; } .user a span[data-scribe="element:name"] { display: none; } .user a span[data-scribe="element:screen_name"] { display: block; margin: 22px auto; } .interact { text-align: center; width: 100%; margin-top: -7px; } .interact a { margin: 0 5px; } .media img { max-width: 250px; max-height: 250px; } /********* twitter end *********/ /************ single page ************/ .bodywrapper-pages { padding-bottom: 54px; float: left; width: 100%; } .mainheadlinewrapperpage { padding: 54px 0; float: left; width: 100%; margin-bottom: 54px; background: #53aedd; } .mainheadlinewrapperpage h1 { font-size: 28px; margin-bottom: 7px; color: #fff; font-weight: 400; } .mainheadlinewrapperpage p { color: #fff; opacity: 0.7; line-height: 1; margin-bottom: 0; font-family: "source sans pro"; } .breadcrumb { padding: 0; margin-bottom: 0; margin-top: 18px; list-style: none; background-color: transparent; border-radius: 0; } .breadcrumb > li { display: inline-block; } .breadcrumb > li a { color: #fff; opacity: 0.6; font-family: "source sans pro"; font-size: 15px; } .breadcrumb > li a:hover { opacity: 1; color: #fff; } .breadcrumb > li + li:before { padding: 0 5px; color: #fff; content: "/\00a0"; } .breadcrumb > .active { color: #fff; font-family: "source sans pro"; font-size: 15px; } /************ single page end ************/ /************ insurance single page ************/ .insurance-headline { width: 100%; float: left; background: #53aedd; text-align: center; padding: 54px 0 0 0; } .insurance-headline h1 { font-size: 35px; margin-bottom: 27px; } .insurance-headline p { max-width: 600px; margin: 0 auto; } .insurance-headline a { display: block; opacity: 0.7; letter-spacing: 1px; font-weight: 600; } .insurance-headline a:hover { opacity: 1; } .insurance-headline img { margin-bottom: 27px; } .insurance-headline h4 { text-transform: uppercase; font-size: 15px; font-weight: 600; } .insurance-headline ul.single-icons-wrapper { width: 100%; float: left; margin-top: 27px; margin-bottom: 0; } .insurance-headline ul.single-icons-wrapper li { margin-bottom: 0; padding: 0 0 27px 0; border-bottom: 2px solid #53aedd; } .insurance-headline ul.single-icons-wrapper li:hover { border-bottom: 2px solid #3d434d; } .insurance-headline .single-icon { border-right: 1px solid rgba(255, 255, 255, 0.4); padding: 27px; } .insurance-headline .single-icon.last { border: none; } .insurance-headline h1, .insurance-headline h2, .insurance-headline h3, .insurance-headline h4, .insurance-headline h5, .insurance-headline h6, .insurance-headline p { color: #fff; } ul.insurance-list { padding-right: 27px; } ul.insurance-list li { border-bottom: 1px solid #dedddd; padding: 4px 0; } ul.insurance-list b { color: #3d434d; } ul.insurance-list span { width: 200px; text-align: left; float: right; } @media (max-width: 767px) { .insurance-headline .single-icon { border-right: none; } .insurance-headline ul.single-icons-wrapper li { padding: 0 0 14px 0; border-bottom: none; } .insurance-headline ul.single-icons-wrapper li:hover { border-bottom: none; } } @media (max-width: 500px) { ul.insurance-list span { width: auto; text-align: left; float: none; padding-left: 20px; } } .insurance-section1 { width: 100%; float: left; background: #53aedd; } .insurance-section1 img { margin-top: -27px; } .insurance-section1 p { opacity: 0.7; } .insurance-section1 p, .insurance-section1 h1, .insurance-section1 h2, .insurance-section1 h3, .insurance-section1 h4, .insurance-section1 h5, .insurance-section1 h6, .insurance-section1 li { color: #fff; } .insurance-section1 ul li { position: relative; } .insurance-section1 ul li .img-wrapper { float: left; width: 30%; min-width: 95px; text-align: center; } .insurance-section1 ul li .img-wrapper-inner { width: 90px; height: 90px; background: #fff; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; padding-top: 42px; } .insurance-section1 ul li .text-wrapper { float: left; width: 70%; min-width: auto; padding-left: 10px; } .insurance-section1 ul li h4 { text-transform: uppercase; font-size: 15px; letter-spacing: 1px; font-weight: 600; } @media (max-width: 1200px) { .insurance-section1 ul li { float: left; position: relative; } .insurance-section1 ul li .img-wrapper { width: 20%; min-width: 95px; } .mobile-change { background: #fff; } } .insurance-icons { text-align: center; } .insurance-icons h5 { text-transform: uppercase; font-weight: 600; letter-spacing: 1px; } .insurance-icons .insurance-icon { background: #53aedd; width: 90px; height: 90px; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; text-align: center; padding-top: 28px; margin: 0 auto 27px auto; } .section-cta { width: 100%; float: left; display: -webkit-flex; display: flex; background: #13577a; } .section-cta p, .section-cta h1, .section-cta h2, .section-cta h3, .section-cta h4, .section-cta h5, .section-cta h6, .section-cta li { color: #fff; } .section-cta .cta-left { width: 50%; float: left; padding: 54px 0; } .section-cta .cta-left .cta-left-inner { width: 100%; float: right; padding: 0 27px; max-width: 575px; } @media (max-width: 1200px) { .section-cta { text-align: center; display: block; } .section-cta .cta-left { width: 100%; } .section-cta .cta-left .cta-left-inner { width: 100%; float: left; padding: 54px 27px; max-width: 100%; } } /************ insurance single page end ************/ /********* gallery page **********/ .isotope-hidden.isotope-item { pointer-events: none; z-index: 1; } /**** Isotope CSS3 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; } /**** disabling Isotope CSS3 transitions ****/ .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; } /* End: Recommended Isotope styles */ /* disable CSS transitions for containers with infinite scrolling*/ .isotope.infinite-scrolling { -webkit-transition: none; -moz-transition: none; -ms-transition: none; -o-transition: none; transition: none; } /**** filter Options ****/ #options ul { min-height: 27px; width: 100%; margin-top: 0; margin-left: 0; list-style: none; text-align: center; margin-bottom: 0; padding: 0; text-transform: uppercase; } #options ul li { display: inline-block; margin-bottom: 0; margin-top: 0; } #options ul li a:link, #options ul li a:visited { font-size: 14px; color: #fff; letter-spacing: 1px; background: #3d434d; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; -webkit-transition: background 0.5s ease; -moz-transition: background 0.5s ease; -o-transition: background 0.5s ease; transition: background 0.5s ease; font-family: "source sans pro"; font-weight: 600; text-transform: uppercase; padding: 5px 25px; display: inline-block; margin-bottom: 27px; } #options ul li a:hover { background: #53aedd; } #options ul li a:focus { background: #53aedd; } .isotopecontainer { margin: 0 auto 54px auto; float: none; width: 100%; background: transparent; } .photos .photo { max-width: 33%; margin: 1%; float: none; } @media (max-width: 1000px) { .photos .photo { max-width: 48%; margin: 1%; float: none; } } @media (max-width: 500px) { .photos .photo { max-width: 100%; margin: 14px 0; float: none; } } .photos .photo img { display: block; width: 100%; } .photos .photo2 img { display: block; width: 100%; } .isotope-item { z-index: 2; } .isotope-hidden.isotope-item { pointer-events: none; z-index: 1; } /**** Isotope portfolio end*****/ /***hover effect***/ .view { -webkit-backface-visibility: hidden; float: left; overflow: hidden; position: relative; text-align: center; } .view .mask, .view .content { width: 100%; height: 100%; position: absolute; top: 0; right: 0; } .view .mask { padding: 0%; -webkit-backface-visibility: hidden; } .view .maskinner { position: absolute; width: 100%; top: 50%; margin-top: -44px; } .view img { display: block; position: relative; } .view h5 { font-size: 14px; font-weight: 600; text-transform: uppercase; color: #fff; } .view a:link, .view a:visited { display: inline-block; font-size: 18px; margin-bottom: 14px; padding-top: 18px; text-transform: uppercase; color: #53aedd; background: #fff; -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; text-align: center; width: 54px; height: 54px; } .view a:hover { background: #3d434d; } .view-first img { -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .view-first .mask { opacity: 0; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .view-first a { opacity: 0; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .view-first:hover img { opacity: 1; -webkit-transform: scale(1.1, 1.1); -moz-transform: scale(1.1, 1.1); -o-transform: scale(1.1, 1.1); -ms-transform: scale(1.1, 1.1); transform: scale(1.1, 1.1); } .view-first:hover .mask { background: rgba(83, 174, 221, 0.8); -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter: alpha(opacity=100); opacity: 1; } .view-first:hover a, .view-first:hover p, .view-first:hover a.info { -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter: alpha(opacity=100); opacity: 1; -webkit-transform: translateY(0px); -moz-transform: translateY(0px); -o-transform: translateY(0px); -ms-transform: translateY(0px); transform: translateY(0px); } /***hover effect end***/ /************* gallery page end *****************/ /************ tabs ****************/ .nav-tabs { border-bottom: 1px solid #ddd; } .nav-tabs > li { float: left; margin-bottom: -1px; } .nav-tabs > li > a { display: block; margin-right: 2px; line-height: 3; border: 1px solid #f0f0f0; border-radius: 0; } .nav-tabs > li > a:hover { border-color: #f0f0f0; } .tab-pane { padding: 14px 0; } /************* tabs end **************/
0.296756
0.083479
* { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; background: #fcfcfc; } .container { display: flex; overflow: hidden; } /*side bar nav style starts here*/ .sidebar { background: #0050af; height: 1300px; position: fixed; z-index: 1; top: 0; left: 0; width: 200px; overflow-x: hidden; padding: 20px; } .nav-link { list-style: none; margin-top: 30px; } .nav-link li { margin-bottom: 40px; } .nav-link a { color: #fff; text-decoration: none; } .text-yellow { color: #ffc100; font-size: 16px; padding-right: 10px; padding-top: 15px; } .text-white { padding-left: 15px; font-size: 16px; padding-right: 10px; padding-top: 15px; } .btn-sign-out { background: #004191; transform: translateY(200px); padding: 10px 40px; border: none; border-radius: 5px; } .butn { color: #fff; } .fa-power-off { color: #fff; padding-right: 10px; } /*content style starts here*/ .content { /* align-items: flex-end; justify-content: flex-end;*/ transform: translateY(300px); margin: 0 auto; } .navbar:last-child { padding-right: 15.5em; } .navbar .navbar-brand { margin-right: 15.5em; padding: 1em; } .fa-trash, .fa-pen { justify-content: space-between; display: inline-flex; } .main { margin-left: 200px; /* Same as the width of the sidebar */ padding: 20px 10px; color: black; } .section-2 { margin-left: 200px; /* Same as the width of the sidebar */ padding: 20px 10px; color: black; } .circular-square { border-radius: 50px; width: 100px; } .img-fluid { border-radius: 50px; width: 30px; float: inherit; } .breadcrumb-item.btn { border-radius: 0.7rem; } .action-btn .btn { justify-content: space-between; border-radius: 0.7rem; border-color: rgb(76, 129, 197); } .btn btn-light { color: royalblue; } .breadcrumb { background: transparent; } .card { border-radius: 1rem; margin-bottom: 2rem; } .fa-search { background: white; border-radius: 0 5px 0 5px; }
css/admin-dashboard-mentors.css
* { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; background: #fcfcfc; } .container { display: flex; overflow: hidden; } /*side bar nav style starts here*/ .sidebar { background: #0050af; height: 1300px; position: fixed; z-index: 1; top: 0; left: 0; width: 200px; overflow-x: hidden; padding: 20px; } .nav-link { list-style: none; margin-top: 30px; } .nav-link li { margin-bottom: 40px; } .nav-link a { color: #fff; text-decoration: none; } .text-yellow { color: #ffc100; font-size: 16px; padding-right: 10px; padding-top: 15px; } .text-white { padding-left: 15px; font-size: 16px; padding-right: 10px; padding-top: 15px; } .btn-sign-out { background: #004191; transform: translateY(200px); padding: 10px 40px; border: none; border-radius: 5px; } .butn { color: #fff; } .fa-power-off { color: #fff; padding-right: 10px; } /*content style starts here*/ .content { /* align-items: flex-end; justify-content: flex-end;*/ transform: translateY(300px); margin: 0 auto; } .navbar:last-child { padding-right: 15.5em; } .navbar .navbar-brand { margin-right: 15.5em; padding: 1em; } .fa-trash, .fa-pen { justify-content: space-between; display: inline-flex; } .main { margin-left: 200px; /* Same as the width of the sidebar */ padding: 20px 10px; color: black; } .section-2 { margin-left: 200px; /* Same as the width of the sidebar */ padding: 20px 10px; color: black; } .circular-square { border-radius: 50px; width: 100px; } .img-fluid { border-radius: 50px; width: 30px; float: inherit; } .breadcrumb-item.btn { border-radius: 0.7rem; } .action-btn .btn { justify-content: space-between; border-radius: 0.7rem; border-color: rgb(76, 129, 197); } .btn btn-light { color: royalblue; } .breadcrumb { background: transparent; } .card { border-radius: 1rem; margin-bottom: 2rem; } .fa-search { background: white; border-radius: 0 5px 0 5px; }
0.451085
0.123948
.user_no_love{width:990px;background:#fff;height:400px;background:url(../images/usernolove.jpg) 0px 0px no-repeat;position:relative;} .usernolovebtn{height:56px;width:251px;background:url(../images/usernolovebtn.png) 0px 0px no-repeat;position:absolute;left:577px;top:247px;display:block;} .usernolovebtn:hover{background-position:0px -56px;} .user_main_index{width:990px;background:#fafafa;} .user_main_index_l{width:700px;background:#fff;float:left;} .user_main_index_r{width:290px;float:left;} .uindexr_ad1{height:100px;width:290px;position:relative;display:block;cursor:default;} .uindexr_ad1 .shut{position:absolute;right:8px;top:8px;height:24px;color:#fff;background:url(../images/shut24.png) 0px 0px no-repeat;width:24px;display:none;cursor:pointer;} .uindexr_ad1:hover .shut{display:block;} .tz_result_main_right_middle{width:990px;margin:0px auto;} .tz_result_main_right_middle1{width:990px;height:68px;position:relative;line-height:68px;font-size:14px;color:#333;text-indent:20px;border-bottom:1px solid #ddd;position:relative;background:#fff;} .tz_result_main_right_middle1 span.time{line-height:68px;font-size:12px;color:#999;position:absolute;top:0px;right:20px;} .tz_result_main_right_middle1 span.time a{padding-left:10px;color:#999;} .tz_result_main_right_middle1 span.time a:hover{color:#ff3232;text-decoration:underline;} .tz_result_main_right_middlex{width:758px;} .testr_title{height:50px;line-height:50px;text-indent:14px;font-size:14px;} .retest{width:204px;height:40px;display:block;background:#ff3232;margin:14px auto 0px;font-size:14px;color:#fff;font-weight:bold;line-height:40px;text-align:center;} .retest:hover{background:#e90808;} .usc_item{width:672px;height:160px;border-bottom:1px solid #eee;padding:14px;} .usc_item_img{height:160px;width:160px;display:block;float:left;} .usc_item_img img{display:block;height:160px;width:160px;} .usc_item_c{float:left;width:498px;height:160px;padding-left:14px;} .usc_item_c .title{height:24px;line-height:24px;font-size:18px;font-family:Microsoft Yahei,黑体;color:#333;} .usc_item_c .title:hover{color:#ff3232;text-decoration:underline;} .usc_item_c .span1{line-height:32px;color:#999;} .usc_item_c .author{color:#ff3232;} .usc_item_c .author:hover{text-decoration:underline;} .uir_con1{width:276px;padding-left:14px;position:relative;} .uir_con1_more{color:#999;position:absolute;right:14px;top:0px;line-height:60px;} .uir_con1_more:hover{color:#ff3232;text-decoration:underline;} .uir_con1 h3{color:#333;font-size:18px;line-height:60px;font-family:Microsoft Yahei,黑体;} .uir_ul1{} .uir_ul1 li{float:left;height:62px;width:62px;margin:0px 6px 6px 0px;border-radius:4px;overflow:hidden;} .uir_ul1 li.mr0{} .uir_ul1 li a{display:block;height:60px;width:60px;border-radius:4px;overflow:hidden;} .uir_ul1 li a img{height:60px;width:60px;display:block;border-radius:4px;overflow:hidden;} .uir_ul2{background:#fff;border:1px solid #eee;border-bottom:0px;margin-right:14px;} .uir_ul2 li{height:44px;line-height:44px;border-bottom:1px solid #eee;position:relative;padding-left:14px;} .uir_ul2 li a{font-size:14px;color:#666;} .uir_ul2 li a:hover{color:#ff3232;text-decoration:underline;} .uir_ul2 li span.c{position:absolute;right:14px;top:0px;line-height:44px;font-size:12px;color:#aaa;display:block;} .uindex_item{width:672px;margin:0px 14px;padding:10px 0px 0px;border-bottom:1px solid #eee;} .uindex_item .avatar{display:block;height:60px;width:60px;float:left;border-radius:4px;overflow:hidden;} .uindex_item .avatar img{display:block;height:60px;width:60px;border-radius:4px;} .uindex_item .c{float:left;width:590px;padding-left:10px;} .uindex_item .c .name{display:block;height:28px;line-height:28px;color:#ff3232;font-weight:bold;} .uindex_item .c .name a{color:#ff3232;font-size:14px;} .uindex_item .c .name a:hover{text-decoration:underline;} .uindex_item .c .con{} .uindex_item .c .con .avatar1{height:60px;display:inline-block;vertical-align:top;*display:inline;*zoom:1;font-size:14px;color:#ff3232;font-weight:bold;line-height:60px;float:left;padding-right:4px;} .uindex_item .c .con .avatar1 img{border-radius:20px;height:40px;width:40px;float:left;margin:10px 10px 10px 0px;} .uindex_item .c .con .avatar1:hover{text-decoration:underline;} .uindex_item .c .con p{line-height:60px;color:#666;color:#666;font-size:14px;float:left;} .uindex_item .c .con p .tag{color:#333;font-weight:bold;} .uindex_item .c .yy{width:590px;background:#fafafa;position:relative;} .uindex_item .c .yy .arrow{display:block;height:10px;width:10px;background:url(../images/littlearrow11.gif) 0px 0px no-repeat;left:10px;top:-10px;position:absolute;} .yycon{float:left;width:390px;padding-left:12px;} .blocklink{display:block;padding:10px;} .blocklink:hover{background:#f5f5f5;} .yycon1{width:558px;float:left;} .yycon h3{font-size:18px;color:#333;font-weight:bold;font-family:Microsoft Yahei,黑体;height:32px;line-height:32px;position:relative;color:#ff3232;} .yycon h3 em{line-height:32px;font-size:12px;color:#999;position:absolute;right:10px;top:0px;text-align:right;font-family:宋体;} .yycon span{height:32px;line-height:32px;color:#999;display:block;} .yycon a.link{color:#ff3232;font-size:14px;color:#ff3232;line-height:24px;} .yycon a.link:hover{text-decoration:underline;} .yycon p{line-height:22px;color:#666;font-size:14px;padding-top:4px;} .yy_cd{height:140px;width:550px;padding:10px 10px 6px;float:left;} .yy_cd img{height:136px;width:136px;margin:0px 1px 0px 0px;float:left;display:block;_display:inlinefloat:left;;} .uindex_item .c div.time{color:#aaa;line-height:44px;height:44px;} .uindex_item .c div.time .pl{float:right;display:block;height:44px;line-height:44px;color:#aaa;} .uindex_item .c div.time .pl:hover{color:#ff3232;text-decoration:underline;} .uindex_item .c .yy .yycpimg{float:left;height:150px;width:150px;float:right;} .uindex_item .c .yy .yycpimg img{height:150px;width:150px;} .uindex_comments{width:590px;background:#fafafa;margin-bottom:14px;display:none;} .uindex_comments .c1{padding:10px;} .uindex_comments .c1 textarea{color:#333;height:36px;padding:10px;line-height:18px;border:1px solid #eee;background:#fff;width:548px;overflow:auto;float:left;} .uindex_comments .c1 input.submit{float:right;height:32px;width:66px;color:#fff;background:#ff3232;border:0px;margin-top:5px;cursor:pointer;} .uindex_comments .c1 input.submit:hover{background:#e90808;} .uindex_comments .c2{padding:10px;} .uindex_comments .c2 ul{} .uindex_comments .c2 li{padding:8px 0px;float:left;width:570px;border-top:1px solid #eee;color:#666;} .uindex_comments .c2 li a.tx{display:block;height:32px;width:32px;float:left;margin-right:10px;float:left;border-radius:4px;overflow:hidden;} .uindex_comments .c2 li div.r{float:left;width:520px;} .uindex_comments .c2 li a.tx img{height:32px;width:32px;border-radius:4px;} .uindex_comments .c2 li a.author{color:#ff3232;} .uindex_comments .c2 li a.author:hover{text-decoration:underline;} .uindex_comments .c2 li p{display:inline;line-height:18px;} .uindex_comments .c2 li p a{color:#ff3232;} .uindex_comments .c2 li p a:hover{text-decoration:underline;} .uindex_comments .c2 li.last{text-align:right;line-height:40px;} .fbcp{width:580px;background:#fafafa;border:1px solid #eee;height:300px;margin-top:10px;} .fbcp_img{height:280px;width:200px;float:left;display:block;margin:10px;_display:inline;} .fbcp_img img{display:block;height:280px;width:200px;} .fbcp div.fbcp_c{float:left;width:340px;padding-left:10px;} .fbcp div.fbcp_c h2{height:50px;line-height:50px;color:#333;font-size:24px;font-family:Microsoft Yahei,黑体;padding-top:10px;overflow:hidden;} .fbcp div.fbcp_c h2 a{color:#333;} .fbcp div.fbcp_c h2 a:hover{color:#ff3232;text-decoration:underline;} .fbcp div.fbcp_c p{color:#666;line-height:24px;font-size:14px;padding-right:20px;} .fbcp div.fbcp_c a.link{color:#ff3232;line-height:24px;font-size:14px;} .fbcp div.fbcp_c a.link:hover{text-decoration:underline;} .fbzp{width:580px;background:#fafafa;border:1px solid #eee;height:220px;margin-top:10px;} .fbzp_img{height:200px;width:200px;float:left;display:block;margin:10px;_display:inline;} .fbzp_img img{display:block;height:200px;width:200px;} .fbzp div.fbzp_c{float:left;width:350px;padding-left:10px;} .fbzp div.fbzp_c h2{height:50px;line-height:50px;color:#333;font-size:24px;font-family:Microsoft Yahei,黑体;padding-top:10px;overflow:hidden;} .fbzp div.fbzp_c h2 a{color:#333;} .fbzp div.fbzp_c h2 a:hover{color:#ff3232;text-decoration:underline;} .fbzp div.fbzp_c p{color:#666;line-height:24px;font-size:14px;padding-right:20px;} .fbzp div.fbzp_c a.link{color:#ff3232;line-height:24px;font-size:14px;} .fbzp div.fbzp_c a.link:hover{text-decoration:underline;} .fbcd{width:580px;background:#fafafa;border:1px solid #eee;height:172px;margin-top:10px;position:relative;} .fbcd h2{line-height:54px;color:#333;height:54px;text-indent:14px;font-size:18px;font-family:Microsoft Yahei;} .fbcd h2 a{color:#333;} .fbcd h2 a:hover{color:#ff3232;text-decoration:underline;} .fbcd ul{padding:0px 10px;} .fbcd ul li{float:left;height:106px;width:106px;margin-right:4px;} .fbcd ul li a{height:106px;width:106px;display:block;} .fbcd ul li a img{height:106px;width:106px;display:block;} .fbcd a.link{position:absolute;right:14px;top:0px;line-height:54px;color:#ff3232;font-size:14px;} .fbcd a.link:hover{text-decoration:underline;} .listtyle_tlz{width:990px;background:#fafafa;padding-bottom:20px;} .liststyle_test{width:970px;background:#fafafa;padding:20px 0px 20px 20px;} .usertest_item_con{width:230px;height:344px;margin:0px 10px 30px 0px;float:left;} .retestbtn{height:43px;width:228px;display:block;color:#fff;font-size:14px;font-weight:bold;line-height:44px;text-align:center;border:1px solid #eee;border-top:0px;} .retestbtn_tzcs{background:#63b814;} .retestbtn_jkcs{background:#0ca2f9;} .retestbtn_pfcs{background:#dd5aaa;} .retestbtn_tzyys{background:#ae2c0c;} .usertest_item_con .wrap_a{display:block;height:300px;width:228px;border:1px solid #eee;background:#fff;} .usertest_item_con .wrap_a_tzcs{} .usertest_item_con .wrap_a_jkcs{background:url(../images/jkcs_3001.jpg) 0px 0px no-repeat;} .usertest_item_con .wrap_a_jkcs dt{color:#0ca2f9;} .usertest_item_con .wrap_a_tzcs{background:url(../images/tzcs_3001.jpg) 0px 0px no-repeat;} .usertest_item_con .wrap_a_tzcs dt{color:#63b814;} .usertest_item_con .wrap_a_pfcs{background:url(../images/pfcs_3001.jpg) 0px 0px no-repeat;} .usertest_item_con .wrap_a_pfcs dt{color:#dd5aaa;} .usertest_item_con .wrap_a_tzyys{background:url(../images/tzyys_3001.jpg) 0px 0px no-repeat;} .usertest_item_con .wrap_a_tzyys dt{color:#ae2c0c;} .usertest_item_con .notest_img{display:block;height:300px;width:228px;} .usertest_item_con .wrap_a:hover{border:1px solid #ddd;} .usertest_item_con h2{height:40px;line-height:40px;color:#666;font-size:12px;color:#666;border-bottom:1px solid #eee;text-indent:14px;position:relative;} .usertest_item_con h2 span.time{display:block;position:absolute;right:14px;height:40px;top:0px;color:#aaa;} .user_tzcs_titlec{height:250px;width:228px;position:relative;} .user_tzcs_titlec dl{padding:0px 14px;} .user_tzcs_titlec dt{height:40px;line-height:40px;display:block;font-size:24px;color:#ff3232;font-family:Microsoft Yahei;padding-top:10px;} .user_tzcs_titlec dd.dd2{line-height:18px;color:#666;} .user_tzcs_titlec dd.dd1{color:#333;font-size:14px;display:block;line-height:18px;font-weight:bold;padding-bottom:10px;height:18px;} .user_tzcs_titlec span.more{color:#aaa;position:absolute;bottom:0px;right:14px;line-height:24px;} .listtyle3_list1{width:744px;float:left;padding-top:14px;padding-left:14px;padding-bottom:4px;background:#fff;} .testbtn{height:50px;width:230px;background:#ff3232;font-size:14px;color:#fff;text-align:center;display:block;margin-top:10px;line-height:50px;} .testbtn:hover{background:#e90808;} .userzp_zp{width:260px;border:1px solid #eee;float:left;height:350px;margin:0px 20px 20px 0px;background:#fff;position:relative;} .userzp_zp_370{height:370px;} .mr0{margin-right:0px;} .userzp_zp .imgw{height:240px;width:240px;position:relative;padding:10px 10px 0px;} .userzp_zp a.img{display:block;height:240px;width:240px;position:relative;} .userzp_zp a.img img{display:block;height:240px;width:240px;} .userzp_zp .imgw span.delthis{background:#c90000;position:absolute;top:10px;right:10px;height:24px;line-height:24px;color:#fff;padding:0px 10px;display:none;} .userzp_zp .imgw span.delthis span{cursor:pointer;} .userzp_zp .imgw span.delthis span:hover{text-decoration:underline;} .userzp_zp .imgw span.delthis a{color:#fff;} .userzp_zp .imgw span.delthis a:hover{text-decoration:underline;} .userzp_zp .imgw span.confuse{background:#c90000;position:absolute;bottom:0px;right:10px;line-height:18px;color:#fff;padding:10px;width:220px;} .userzp_zp .imgw em{background:#c90000;position:absolute;top:226px;right:10px;height:24px;line-height:24px;color:#fff;padding:0px 10px;} .userzp_zp a.name{display:block;height:28px;width:232px;line-height:28px;font-size:14px;color:#333;font-weight:bold;padding:10px 14px 0px;} .userzp_zp a.name:hover{text-decoration:underline;color:#ff3232;} .userzp_zp span.span1{height:24px;line-height:24px;padding:0px 14px 0px;display:block;color:#ff3232;font-size:12px;} .userzp_zp span.span2{height:24px;line-height:24px;padding:0px 14px 0px;display:block;color:#bbb;font-size:12px;} .userzp_zp a.link{height:24px;line-height:24px;padding:0px 14px 0px;color:#ff3232;font-size:12px;} .userzp_zp a.link:hover{text-decoration:underline;} .userzp_zp p.p1{color:#888;line-height:18px;padding:4px 14px;height:36px;overflow:hidden;} .userzp_zp span.pl{height:24px;line-height:24px;padding:0px 14px 0px;color:#999;font-size:12px;} .userzp_zp span.pl em{color:#ff3232;} .userzp_zp span.plc{position:absolute;right:14px;top:260px;line-height:28px;color:#999;} .userheader{height:210px;margin:0px auto 20px;width:990px;background:#fff;} .userheader .avatar_w{height:210px;width:210px;float:left;} .userheader .avatar_w img{display:block;height:210px;width:210px;} .userheader .user_userinfo{width:170px;padding:20px;float:right;background:#fff;height:170px;} .userheader .user_userinfo ul{} .userheader .user_userinfo ul li{height:81px;width:81px;float:left;margin:0px 8px 8px 0px;background:#f8f8f8;} .userheader .user_userinfo ul li.li1,.userheader .user_userinfo ul li.li1 a{-webkit-border-radius: 32px;-webkit-border-bottom-right-radius: 0;-moz-border-radius: 32px;-moz-border-radius-bottomright: 0;border-radius: 32px;border-bottom-right-radius: 0;} .userheader .user_userinfo ul li.li2,.userheader .user_userinfo ul li.li2 a{-webkit-border-radius: 32px;-webkit-border-bottom-left-radius: 0;-moz-border-radius: 32px;-moz-border-radius-bottomleft: 0;border-radius: 32px;border-bottom-left-radius: 0;} .userheader .user_userinfo ul li.li3,.userheader .user_userinfo ul li.li3 a{-webkit-border-radius: 32px;-webkit-border-top-right-radius: 0;-moz-border-radius: 32px;-moz-border-radius-topright: 0;border-radius: 32px;border-top-right-radius: 0;} .userheader .user_userinfo ul li.li4,.userheader .user_userinfo ul li.li4 a{-webkit-border-radius: 32px;-webkit-border-top-left-radius: 0;-moz-border-radius: 32px;-moz-border-radius-topleft: 0;border-radius: 32px;border-top-left-radius: 0;} .userheader .user_userinfo ul li.li1{margin:0px 8px 8px 0px;} .userheader .user_userinfo ul li.li2{margin:0px 0px 8px 0px;} .userheader .user_userinfo ul li.li3{margin:0px 8px 0px 0px;} .userheader .user_userinfo ul li.li4{margin:0px 0px 0px 0px;} .userheader .user_userinfo ul li a{display:block;height:81px;width:81px;box-shadow:0px 0px 6px rgba(0,0,0,0.05) inset;} .userheader .user_userinfo ul li a:hover{background:#ff3232;color:#fff;} .userheader .user_userinfo ul li a span{font-size:12px;color:#999;line-height:20px;display:block;padding-left:14px;padding-top:14px;} .userheader .user_userinfo ul li a strong{display:block;font-size:18px;color:#ff3232;font-family:Microsoft Yahei;padding-left:14px;line-height:32px;} .userheader .user_userinfo ul li a strong.grey{color:#999;} .userheader .user_userinfo ul li.li4 a strong{font-size:18px;} .userheader .user_userinfo ul li a:hover span{color:#fff;} .userheader .user_userinfo ul li a:hover strong{color:#fff;} .userh_main{float:left;width:570px;height:210px;} .userh_main .tools{position:absolute;right:0px;top:20px;height:22px;float:right;display:inline-block;vertical-align:top;*display:inline;*zoom:1;} .userh_main .tools a{display:inline-block;vertical-align:top;*display:inline;*zoom:1;height:22px;margin-left:6px;} .userh_main .tools a.mail{display:inline-block;vertical-align:top;*display:inline;*zoom:1;height:22px;padding:0px 12px;background:#eee;text-align:center;color:#999;line-height:22px;} .userh_main .tools a.mail:hover{color:#666;background:#ddd;} .userh_main div.info1{height:105px;border-bottom:1px solid #eee;margin:0px 20px;width:530px;position:relative;} .userh_main div.info1 h1{font-size:24px;color:#333;line-height:44px;font-family:Microsoft Yahei;padding-top:14px;} .userh_main div.info1 span.info{line-height:22px;color:#999;} .userh_main div.info1 span.info em{padding:0px 4px;} .userh_main div.info1 span.info a{color:#999;} .userh_main div.info1 span.info a:hover{color:#ff3232;text-decoration:underline;} .userh_main div.info1 a.edit{line-height:24px;color:#999;position:absolute;top:24px;right:0px;} .userh_main div.info1 a.edit:hover{color:#ff3232;text-decoration:underline;} .userh_main p.sign{font-size:12px;color:#666;line-height:24px;padding:14px 18px;} .user_nav{height:50px;width:990px;margin:0px auto 20px;} .user_nav ul{} .user_nav ul li{display:inline-block;vertical-align:top;*display:inline;*zoom:1;height:50px;line-height:50px;font-size:14px;color:#333;} .user_nav ul li a{color:#333;display:inline-block;vertical-align:top;*display:inline;*zoom:1;padding:0px 0px;text-align:center;margin:0px 20px;} .user_nav ul li a:hover{color:#ff3232;text-decoration:underline;} .user_nav ul li.current a{border-bottom:4px solid #ff3232;color:#ff3232;font-weight:bold;} .user_nav ul li.create_cp{float:right;margin:0px;width:120px;background:#f5f5f5;padding:8px;border-left:1px solid #ddd;height:34px;} .user_nav ul li.create_cp a{color:#ff3232;font-weight:bold;display:block;background:#f5f5f5;height:34px;line-height:34px;} .user_nav ul li.create_cp a:hover{background:#ff3232;color:#fff;} .user_main{width:990px;margin:0px auto 20px;background:#fafafa;} .day_w{width:988px;} .day_left{width:232px;float:left;} .day_left .date{width:232px;background:#fff;height:80px;padding:20px 0px 0px;} .day_left .date .date1{float:left;width:104px;line-height:60px;color:#999;padding:0px 0px 0px 24px;text-align:left;font-size:18px;font-family:Microsoft Yahei;} .day_left .date .date2{font-size:54px;line-height:60px;padding:0px 24px 0px 0px;text-align:right;width:70px;float:right;font-family:arial;} .day_right{width:756px;float:right;} .user_backbtn1{display:block;height:68px;width:68px;float:left;border-right:1px solid #eee;background:#fff url(../images/userbackbtn1.gif) 0px 0px no-repeat;} .user_backbtn1:hover{background-position:0px -68px;} .user_inner_tab{height:68px;width:990px;background:#fff;position:relative;border-bottom:1px solid #eee;z-index:100;} .user_inner_tab_758{width:758px;} .user_inner_tab_ul{padding:14px 20px;float:left;} .user_inner_tab_ul li{display:inline-block;vertical-align:top;*display:inline;*zoom:1;height:40px;line-height:40px;font-size:14px;position:relative;color:#333;float:left;} .user_inner_tab_ul li a.link{display:block;background:#fff;color:#333;padding:0px 14px;margin-right:10px;border-radius:4px;} .user_inner_tab_ul li a.link:hover{background-color:#f5f5f5;} .user_inner_tab_ul li a.current{display:inline-block;vertical-align:top;*display:inline;*zoom:1;padding:0px 14px;margin-right:10px;border-radius:4px;background:#ff3232;color:#fff;} .user_inner_tab_ul li a.current:hover{background-color:#ff3232;} .user_inner_tab_ul li.hasmore{} .user_inner_tab_ul li.hasmore a.link{padding-right:30px;background:url(../images/arrow_20x80.gif) right -40px no-repeat;} .user_inner_tab_ul li.hasmore a.current{padding-right:30px;background:#ff3232 url(../images/arrow_20x80.gif) right 0px no-repeat;} .user_inner_tab_ul li.hasmore a.link:hover{background-color:#f5f5f5;} .user_inner_tab_ul li.hasmore a.current:hover{background-color:#ff3232;} .user_inner_tab_ul li.hasmore .more{position:absolute;right:10px;top:40px;background:#fff;border:1px solid #eee;border-top:0px;border-bottom:0px;display:none;} .user_inner_tab_ul li.hasmore_cur .more{display:block;} .user_inner_tab_ul li.hasmore .more a{display:block;height:40px;line-height:40px;text-align:center;font-size:14px;color:#333;border-bottom:1px solid #eee;padding:0px 14px;_width:100px;} .user_inner_tab_ul li.hasmore .more a:hover{color:#ff3232;background:#fafafa;} .user_inner_tab_btn{position:absolute;top:14px;right:20px;display:inline-block;vertical-align:top;*display:inline;*zoom:1;height:40px;line-height:40px;font-size:14px;background:#f5f5f5;color:#333;padding:0px 14px;border-radius:4px;} .user_inner_tab_btn:hover{background:#eee;} .user_inner_tab_links{position:absolute;top:14px;right:120px;display:inline-block;vertical-align:top;*display:inline;*zoom:1;height:40px;line-height:40px;font-size:12px;} .user_inner_tab_links_r0{right:20px;} .user_inner_tab_links a{color:#999;} .user_inner_tab_links a:hover{color:#ff3232;text-decoration:underline;} .listtyle1_page{height:40px;margin:40px auto;text-align:center;width:100%;clear:both;} .listtyle1_page_w{display:inline-block;vertical-align:top;*display:inline;*zoom:1;margin:0px auto;} .listtyle1_page_w a{display:inline-block;vertical-align:top;*display:inline;*zoom:1;height:40px;line-height:40px;padding:0px 13px;min-width:14px;text-align:center;margin-right:1px;background:#fff;white-space: nowrap;color:#666;font-size:14px;_width:10px;} .listtyle1_page_w span{display:inline-block;vertical-align:top;*display:inline;*zoom:1;padding:0px 10px;min-width:14px;line-height:40px;} .listtyle1_page_w a.current{background:#ff3232;color:#fff;} .listtyle1_page_w a:hover{background:#ff3232;color:#fff;} .listtyle1_page_w a.prev{margin-right:20px;} .listtyle1_page_w a.next{margin-left:20px;} .listtyle1_page1{height:40px;margin:40px auto;text-align:center;width:100%;clear:both;} .listtyle1_page_w1{display:inline-block;vertical-align:top;*display:inline;*zoom:1;margin:0px auto;} .listtyle1_page_w1 a{display:inline-block;vertical-align:top;*display:inline;*zoom:1;height:40px;line-height:40px;padding:0px 13px;min-width:14px;text-align:center;margin-right:1px;background:#eee;white-space: nowrap;color:#666;font-size:14px;_width:10px;} .listtyle1_page_w1 span{display:inline-block;vertical-align:top;*display:inline;*zoom:1;padding:0px 10px;min-width:14px;line-height:40px;} .listtyle1_page_w1 a.current{background:#ff3232;color:#fff;} .listtyle1_page_w1 a:hover{background:#ff3232;color:#fff;} .listtyle1_page_w1 a.prev{margin-right:20px;} .listtyle1_page_w1 a.next{margin-left:20px;} .listtyle3_list{width:756px;float:left;} .listtyle3{margin-left:17px;background:#fff;height:360px;width:232px;position:relative;float:left;margin-bottom:17px;_display:inline;} .ml0{margin-left:0px;} .listtyle3_332{height:332px;} .listtyle3_354{height:354px;} .listtyle3 div.img{position:relative;height:232px;width:232px;} .listtyle3 div.img a.img{display:block;height:232px;width:232px;} .listtyle3 div.img img.cpimg{display:block;height:232px;width:232px;} .listtyle3 div.img .gx{display:inline-block;vertical-align:top;*display:inline;*zoom:1;height:38px;position:absolute;right:-6px;top:12px;background:url(../images/gxarrow.png) right 32px no-repeat;} .listtyle3 div.img .gx a{display:inline-block;vertical-align:top;*display:inline;*zoom:1;height:32px;padding:0px 12px;background:#60a531;line-height:32px;color:#fff;box-shadow:0px 1px 1px rgba(0,0,0,0.5);font-size:14px;} .listtyle3 div.img .gx span{display:inline-block;vertical-align:top;*display:inline;*zoom:1;height:32px;padding:0px 12px;background:#60a531;line-height:32px;color:#fff;box-shadow:0px 1px 1px rgba(0,0,0,0.5);font-size:14px;} .listtyle3 div.img .gx a:hover{text-decoration:underline;} .listtyle3 .info2 {position:absolute;height:232px;width:232px;left:0px;top:0px;overflow:hidden;} .listtyle3 .info2 a.link_cp{display:block;height:232px;width:232px;overflow:hidden;position:absolute;left:0;top:0px;background:url(../images/blank.gif) 0px 0px repeat;} .listtyle3 .info2 a.img{display:block;height:232px;width:232px;background:url(../images/blank.gif) 0px 0px repeat;} .listtyle3 .info2_c{display:block;height:232px;width:232px;background:url(../images/black75.png) 0px 0px repeat;position:absolute;left:232px;top:0px;overflow:hidden;} .listtyle3 .info2 .gx2{z-index:100;overflow:hidden;display:inline-block;vertical-align:top;*display:inline;*zoom:1;height:32px;position:absolute;right:-6px;top:12px;background:#60a531;box-shadow:0px 1px 1px rgba(0,0,0,0.5);line-height:32px;color:#fff;font-size:14px;} .listtyle3 .info2 .gx2 span{padding:0px 12px;display:inline-block;vertical-align:top;*display:inline;*zoom:1;} .listtyle3 .info2 .gx2 a{line-height:32px;color:#fff;font-size:14px;} .listtyle3 .info2 .gx2 a:hover{text-decoration:underline;} .listtyle3 .info2 a.link_cp ul{padding:71px 0px 41px;height:120px;} .listtyle3 .info2 a.link_cp ul li{height:40px;line-height:40px;color:#fff;font-size:12px;float:left;width:100px;background:url(../images/list_style1_icons.png) no-repeat;text-indent:50px;} .listtyle3 .info2 a.link_cp ul li.col2{width:232px;} .listtyle3 .info2 a.link_cp ul li.zl{background-position:10px 0px;} .listtyle3 .info2 a.link_cp ul li.gy{background-position:10px -40px;} .listtyle3 .info2 a.link_cp ul li.kw{background-position:10px -80px;} .listtyle3 .info2 a.link_cp ul li.nd{background-position:10px -120px;} .listtyle3 .info2 a.link_cp ul li.sj{background-position:10px -160px;} .listtyle3 .info2 a.link_cp ol{padding:51px 0px 41px 20px;height:120px;} .listtyle3 .info2 a.link_cp ol li{height:24px;line-height:24px;color:#fff;font-size:12px;float:left;display:inline-block;vertical-align:top;*display:inline;*zoom:1;padding:0px 11px;margin-right:10px;margin-bottom:10px;} .listtyle3 .info2 a.link_cp ol li.yi{background:#60a531;} .listtyle3 .info2 a.link_cp ol li.ji{background:#ff3232;} .listtyle3 .info2 a.link_cp ol li.nor{background:#ff822e;} .listtyle3 .info2 a.link_cp ol li.col2{width:232px;} .listtyle3 div.info1{float:left;width:232px;background:#fff;position:relative;} .listtyle3 div.info1 .info1_t2{position:absolute;right:15px;top:20px;color:red;} .listtyle3 a.title{height:50px;line-height:50px;font-size:14px;color:#333;font-weight:bold;padding-left:14px;} .listtyle3 a.title:hover{color:#ff3232;text-decoration:underline;} .listtyle3 div.info1 .user{height:32px;width:204px;margin:0px auto;} .listtyle3 div.info1 .user .avatar{height:32px;width:32px;display:block;float:left;} .listtyle3 div.info1 .user .avatar img{height:32px;width:32px;display:block;} .listtyle3 div.info1 .user p{float:left;width:160px;line-height:16px;padding-left:10px;color:#666;height:32px;overflow:hidden;} .listtyle3 div.info1 .user p a{color:#ff3232;} .listtyle3 div.info1 .user p a:hover{text-decoration:underline;} .listtyle3 div.info1 .user p strong{color:#ff3232;} .listtyle3 div.info1 span.time {height:44px;display:block;padding:0px 14px;line-height:44px;padding-bottom:0px;color:#999;} .listtyle3 div.info1 span.time em{float:right;} .listtyle3 div.info3{height:100px;position:relative;overflow:hidden;} .listtyle3_354 div.info3{height:122px;} .listtyle3 div.info3 h3{margin-top:10px;height:28px;line-height:28px;text-indent:14px;} .listtyle3 div.info3 h3 a{color:#333;font-size:14px;font-weight:bold;} .listtyle3 div.info3 h3 a:hover{color:#ff3232;} .listtyle3 div.info3 div.d1{height:24px;line-height:24px;padding-left:14px;} .listtyle3 div.info3 div.d1 span{color:#999;padding-right:10px;display:inline-block;vertical-align:top;*zoom:1;*display:inline;} .listtyle3 div.info3 a.author{line-height:24px;color:#ff3232;padding-left:14px;} .listtyle3 div.info3 a.author:hover{text-decoration:underline;} .listtyle3 div.info3 span.belong{display:block;height:24px;line-height:24px;color:#999;padding-left:14px;} .listtyle3 div.info3 span.belong a{color:#666;} .listtyle3 div.info3 span.belong a:hover{color:#ff3232;text-decoration:underline;} .listtyle3 div.info3 .delete{position:absolute;right:0px;bottom:13px;display:block;height:22px;line-height:22px;color:#999;cursor:pointer;} .listtyle3 div.info3 .delete a{color:#999;} .listtyle3 div.info3 .delete a:hover{color:#ff3232;text-decoration:underline;} .usc_w{background:#fafafa;} .fliterstyle1{float:left;width:232px;_overflow:hidden;} .fliterstyle11{padding-top:0px;float:left;width:232px;_overflow:hidden;} .fliterstyle1 div.chosedbox{padding:14px 0px 6px 14px;width:218px;background:#fff;overflow:hidden;margin-bottom:20px;} .fliterstyle1 div.chosedbox a{float:left;margin:0px 8px 8px 0px;display:block;height:32px;width:98px;background:#ff3232 url(../images/liststyle1_icons.png) right 0px no-repeat;color:#fff;line-height:32px;font-size:12px;text-indent:14px;overflow:hidden;_display:inline;} .fliterstyle1 div.chosedbox a:hover{background-color:#e90808;} .fliterstyle1_main{width:232px;background:#fff;margin-bottom:20px;} .fliterstyle1_main .tab{height:50px;background:#f5f5f5;} .fliterstyle1_main .tab li{float:left;width:116px;position:relative;} .fliterstyle1_main .tab li a{display:block;color:#333;font-weight:bold;text-align:center;font-size:14px;line-height:50px;} .fliterstyle1_main .tab li a:hover{text-decoration:underline;} .fliterstyle1_main .tab li.current{background:#fff;} .fliterstyle1_main .tab li.current a{color:#ff3232;} .fliterstyle11 .fliterstyle1_main{width:232px;margin-bottom:20px;} .fliterstyle11 .fliterstyle1_main .tab{height:40px;background:#fafafa;padding:14px;width:204px;} .fliterstyle11 .fliterstyle1_main .tab li{float:left;width:102px;position:relative;height:40px;} .fliterstyle11 .fliterstyle1_main .tab li a{display:block;color:#333;font-weight:bold;text-align:center;font-size:14px;line-height:40px;} .fliterstyle11 .fliterstyle1_main .tab li a:hover{text-decoration:underline;} .fliterstyle11 .fliterstyle1_main .tab li.current{background:#ff3232;} .fliterstyle11 .fliterstyle1_main .tab li.current a{color:#fff;} .fliterstyle1_main .tabcon{overflow:hidden;float:left;} .fliterstyle1_main .tabcon a.back{display:block;height:50px;line-height:50px;width:232px;font-size:14px;color:#333;text-indent:14px;background:#fff;margin-bottom:20px;} .fliterstyle1_main .tabcon a.back:hover{background:#f5f5f5;color:#ff3232;text-decoration:underline;} .fliterstyle1_main .tabcon dl{} .fliterstyle1_main .tabcon dl dt{display:block;height:50px;line-height:50px;color:#333;text-indent:14px;font-size:14px;background:#fff;border-bottom:1px solid #ddd;float:left;width:232px;position:relative;} .fliterstyle1_main .tabcon dl dt a{color:#333;} .fliterstyle1_main .tabcon dl dt a:hover{text-decoration:underline;color:#ff3232;} .fliterstyle1_main .tabcon dl dt a.retest{color:#999;position:absolute;right:14px;top:0px;line-height:50px;font-size:12px;} .fliterstyle1_main .tabcon dl dt a.retest:hover{color:#ff3232;text-decoration:underline;} .fliterstyle1_main .tabcon dl dd{display:none;padding:0px 0px 6px 14px;width:218px;background:#fafafa;float:left;} .fliterstyle1_main .tabcon dl dd.row2 a{float:left;margin:0px 8px 8px 0px;display:block;height:30px;width:202px;border:1px solid #eee;background:#fff;color:#333;line-height:30px;font-size:12px;text-align:center;overflow:hidden;position:relative;} .fliterstyle1_main .tabcon dl dd.row2 a span.yjtip{position:absolute;height:20px;background:#60a531;color:#e90808;line-height:20px;color:#fff;padding:0px 5px;display:inline-block;vertical-align:top;*display:inline;*zoom:1;left:5px;top:5px;display:none;} .fliterstyle1_main .tabcon dl dd.row2 a strong{display:inline-block;vertical-align:top;*display:inline;*zoom:1;float:left;padding-left:14px;} .fliterstyle1_main .tabcon dl dd.row2 a em{display:inline-block;vertical-align:top;*display:inline;*zoom:1;float:right;padding-right:14px;color:#999;} .fliterstyle1_main .tabcon dl dd.bb0{border-bottom:0px;} .fliterstyle1_main .tabcon dl dd a{float:left;margin:0px 8px 8px 0px;display:block;height:30px;width:96px;border:1px solid #eee;background:#fff;color:#333;line-height:30px;font-size:12px;text-align:center;overflow:hidden;} .fliterstyle1_main .tabcon dl dd a:hover{border:1px solid #aaa;background:#fff url(../images/liststyle1_icons.png) right -66px no-repeat;} .fliterstyle1_main .tabcon dl dd a.chosed{border:1px solid #f3f3f3;background:#fff url(../images/liststyle1_icons.png) right -34px no-repeat;} .fliterstyle1_main .tabcon dl dd.long{height:30px;line-height:30px;color:#666;text-align:center;padding:7px;border-top:1px solid #eee;} .fliterstyle1_main .tabcon dl dd.long:hover{background:#eee;cursor:pointer;} .fliterstyle1_main .tabcon dl dd a.filter_otherbtn{background:#ddd;border:1px solid #ccc;width:202px;} .fliterstyle1_main .tabcon dl dd a.filter_otherbtn:hover{background:#ccc;} .fliterstyle1_main .tabcon dl dd div.others{display:none;float:left;} .fliterstyle1_main .tabcon dl dd a.filter_otherbtn{} .fliterstyle1_main .tabcon dl.on dt{} .fliterstyle1_main .tabcon dl.on dd{display:block;} .userfav_ztheader{width:736px;margin-left:20px;background:#fff;margin-bottom:20px;float:left;} .userfav_ztheader_main{position:relative;} .userfav_ztheader .headerimg_w{display:block;width:736px;overflow:hidden;} .userfav_ztheader .headerimg{width:736px;display:block;} .userfav_ztheader h1.title{font-size:24px;color:#333;line-height:50px;font-family:Microsoft Yahei;text-indent:20px;padding-top:10px;} .userfav_ztheader h1.title a{color:#333;} .userfav_ztheader h1.title a:hover{color:#ff3232;} .userfav_ztheader p{line-height:24px;color:#666;padding:5px 20px 5px;font-size:14px;} .userfav_ztheader span.info{height:32px;line-height:32px;color:#999;display:block;padding:0px 20px 10px;position:relative;} .userfav_ztheader span.info a{color:#ff3232;} .userfav_ztheader span.info a:hover{text-decoration:underline;} .userfav_ztheader span.info em{display:block;position:absolute;right:20px;top:0px;line-height:32px;} .userfav_ztheader a.delete{display:inline-block;vertical-align:top;*display:inline;*zoom:1;position:absolute;top:20px;right:20px;background:#eee;color:#999;padding:0px 10px;height:24px;line-height:24px;display:none;} .userfav_ztheader a.delete:hover{background:#ff3232;color:#fff;} .userfav_ztheader a.delete_cd{display:inline-block;vertical-align:top;*display:inline;*zoom:1;position:absolute;top:20px;right:20px;background:#eee;color:#999;padding:0px 10px;height:24px;line-height:24px;display:none;} .userfav_ztheader a.delete_cd:hover{background:#ff3232;color:#fff;} .create_cd_btn{height:50px;width:230px;background:#ff3232;color:#fff;font-weight:bold;font-size:14px;text-align:center;border:1px solid #e90808;line-height:50px;display:block;margin-bottom:20px;} .create_cd_btn:hover{background:#e90808;} .user_forum{width:736px;padding-left:20px;float:right;} .forumlist_style2{width:948px;background:#fff;float:left;margin:0px;border:1px solid #eee;border-bottom:0px;} .forumlist_style2_w736{width:736px;} .forumpage{height:80px;} .postforum_btn{background:#ff3232;border:1px solid #e90808;height:38px;width:98px;margin:20px;display:block;line-height:38px;color:#fff;font-size:14px;font-weight:bold;text-align:center;float:left;_display:inline;} .postforum_btn:hover{background:#e90808;} .backtoforum_btn{background:#f5f5f5;border:1px solid #e5e5e5;height:38px;width:98px;margin:20px;display:block;line-height:38px;color:#888;font-size:14px;font-weight:bold;text-align:center;float:left;_display:inline;} .backtoforum_btn:hover{background:#e5e5e5;color:#555;} .postforum_page{padding:24px 20px;float:right;display:inline-block;*display:inline;*zoom:1;vertical-align:top;} .postforum_page{} .postforum_page li{display:inline-block;*display:inline;*zoom:1;vertical-align:top;height:32px;padding:0px 4px;white-space:nowrap;font-size:14px;color:#666;line-height:32px;text-align:center;} .postforum_page li a{display:inline-block;*display:inline;*zoom:1;vertical-align:top;height:32px;padding:0px 8px;min-width:20px;_width:20px;white-space:nowrap;text-align:center;background:#eee;color:#666;} .postforum_page li a:hover{background:#ff3232;color:#fff;} .postforum_page li span{display:inline-block;*display:inline;*zoom:1;vertical-align:top;height:32px;padding:0px 6px;min-width:20px;_width:20px;white-space:nowrap;text-align:center;} .forumlist_style2_toolbar{background:#f5f5f5;border-top:1px solid #ddd;border-bottom:1px solid #ddd;height:60px;} .forumlist_style2_toolbar .postskind{float:left;height:60px;padding-left:20px;width:450px;float:left;color:#333;font-size:14px;font-family:Microsoft Yahei;position:relative;line-height:60px;} .forumlist_style2_w736 .forumlist_style2_toolbar .postskind{width:516px;} .forumlist_style2_toolbar .re_and_view{float:left;width:90px;line-height:60px;height:60px;color:#333;font-size:14px;font-family:Microsoft Yahei;} .forumlist_style2_toolbar .author{float:left;width:90px;line-height:60px;height:60px;color:#333;font-size:14px;font-family:Microsoft Yahei;} .forumlist_style2_toolbar .postskind dl{position:absolute;left:86px;top:14px;font-size:14px;line-height:32px;width:80px;padding-bottom:10px;} .forumlist_style2_toolbar .postskind dl.on{background:#fff;border:1px solid #ddd;left:85px;top:13px;} .forumlist_style2_toolbar .postskind dl dt{display:block;height:32px;width:80px;font-size:14px;color:#ff3232;text-indent:10px;background:url(../images/littlearrow.png) 70px 24px no-repeat;} .forumlist_style2_toolbar .postskind dl dd{height:32px;line-height:32px;text-indent:10px;display:none;} .forumlist_style2_toolbar .postskind dl dd a{color:#666;font-size:14px;} .forumlist_style2_toolbar .postskind dl dd a:hover{color:#ff3232;text-decoration:underline;} .forumlist_style2_toolbar .postskind dl.on dt{background-image:none;} .forumlist_style2_toolbar .postskind dl.on dd{display:block;} .forumlist_style2_list{} .forumlist_style2_list li{border-bottom:1px solid #eee;} .forumlist_style2_list li div.div1{float:left;width:60px;height:60px;} .forumlist_style2_list li div.div1 em{display:block;height:60px;width:60px;} .forumlist_style2_list li div.div1 em.hot{background:url(../images/forumicons.png) 0px 0px no-repeat;} .forumlist_style2_list li div.div1 em.top{background:url(../images/forumicons.png) 0px -60px no-repeat;} .forumlist_style2_list li div.div1 em.img{background:url(../images/forumicons.png) 0px -120px no-repeat;} .forumlist_style2_list li div.div1 em.others{background:url(../images/forumicons.png) 0px -180px no-repeat;} .forumlist_style2_list li div.div2{float:left;width:700px;overflow:hidden;} .forumlist_style2_list li div.div22{width:630px;} .forumlist_style2_list li div.div2 h3{padding:20px 10px 20px 0px;} .forumlist_style2_list li div.div2 h3 a{color:#333;font-size:14px;line-height:22px;} .forumlist_style2_list li div.div2 h3 a strong.searchword{color:#ff3232;font-weight:bold;} .forumlist_style2_list li div.div2 h3 a strong.cp{color:#ff3232;font-weight:bold;} .forumlist_style2_list li div.div2 h3 a:hover{color:#ff3232;text-decoration:underline;} .forumlist_style2_list li div.div2 h3 span{padding:0px 10px;color:#ff3232;} .forumlist_style2_list li div.div3{float:left;height:60px;width:187px;} .forumlist_style2_list li div.div33{width:121px;} .forumlist_style2_list li div.div3 a.img{height:40px;width:40px;display:block;float:left;border-radius:20px;overflow:hidden;margin:10px 6px 10px 0px;} .forumlist_style2_list li div.div3 a.img img{height:40px;width:40px;display:block;float:left;border-radius:20px;overflow:hidden;} .forumlist_style2_list li div.div3 div.t{height:36px;float:left;width:140px;overflow:hidden;padding:12px 0px;overflow:hidden;} .forumlist_style2_list li div.div3 div.t a{line-height:18px;color:#ff3232;white-space: nowrap;} .forumlist_style2_list li div.div3 div.t a:hover{text-decoration:underline;} .forumlist_style2_list li div.div3 div.t em{color:#aaa;line-height:18px;} .forumlist_style2_list li div.div3 span.count{line-height:60px;text-align:center;color:#999;} .tizhi_w{width:758px;float:left;background:#fff;} .alertbox_w{width:400px;} .alertbox_w .ul_w{width:400px;background:#f5f5f5;border-bottom:1px solid #ddd;padding:25px 0px 15px;border-bottom:1px solid #ddd;} .alertbox_w ul{width:340px;margin:0px auto;height:250px;overflow:auto;} .alertbox_w ul li{height:38px;line-height:38px;color:#666;background:#fff;margin:0px auto 10px;width:300px;cursor:pointer;border:1px solid #fff;} .alertbox_w ul li:hover{border:1px solid #ddd;} .alertbox_w .btns{width:400px;height:84px;position:relative;overflow:hidden;} .alertbox_w .btns a.ok{display:block;height:42px;width:100px;background:#ff3232;border:1px solid #d90808;font-size:14px;color:#fff;text-align:center;top:20px;right:20px;line-height:42px;position:absolute;} .alertbox_w .btns a.ok:hover{background:#e90808;} .alertbox_w .btns a.delthiscp{display:block;height:42px;width:100px;background:#f5f5f5;border:1px solid #ddd;font-size:14px;color:#666;text-align:center;top:20px;left:20px;line-height:42px;position:absolute;} .alertbox_w .btns a.delthiscp:hover{background:#ddd;} .alertbox_w ul li span.checkbox{display:block;height:40px;width:40px;float:left;background:url(../images/checkboxstyle1.gif) 0px 0px no-repeat;} .alertbox_w ul li.checkbox_checked span.checkbox{background-position:0px -40px;} .alertbox_w ul li strong{float:left;display:block;height:40px;width:250px;font-size:14px;color:#666;text-align:left;} .sixin_list{background:#fff;width:990px;float:left;} .sixin_list1{width:758px;} .sixin_list_title{height:50px;line-height:50px;font-size:14px;color:#333;text-indent:14px;border-bottom:1px solid #ddd;position:relative;} .sixin_list_title span.btns{height:50px;font-size:12px;color:#999;padding:0px 14px;position:absolute;right:0px;top:0px;} .sixin_list_title span.btns a{color:#999;padding-left:10px;} .sixin_list_title span.btns a:hover{color:#ff3232;text-decoration:underline;} .sixin_list_ul{} .sixin_list_ul li{height:80px;width:950px;border-bottom:1px solid #eee;padding:20px 20px;position:relative;} .sixin_list_ul li:hover{background:#fafafa;} .sixin_list_ul li a.img{float:left;height:80px;width:80px;position:relative;} .sixin_list_ul li a.img img{height:80px;width:80px;display:block;} .sixin_list_ul li div.c{float:left;height:80px;width:850px;padding-left:14px;} .sixin_list_ul li div.c strong.name{display:block;height:32px;line-height:32px;font-size:14px;color:#333;font-weight:bold;} .sixin_list_ul li div.c strong.name a{color:#333;} .sixin_list_ul li div.c strong.name a span{color:#ff3232;} .sixin_list_ul li div.c strong.name a:hover{color:#ff3232;text-decoration:underline;} .sixin_list_ul li div.c p{font-size:14px;color:#666;line-height:24px;height:48px;overflow:hidden;} .sixin_list_ul li div.c p a{color:#666;} .sixin_list_ul li div.c p a:hover{color:#ff3232;text-decoration:underline;} .sixin_list_ul li div.c p strong{font-size:12px;padding-right:10px;} .sixin_list_ul li div.c p strong em{color:#ff3232;padding-right:4px;} .sixin_list_ul li div.c span.time{position:absolute;height:20px;line-height:20px;right:20px;top:20px;color:#999;} .sixin_list_ul li div.c span.time a{color:#999;padding-left:10px;display:none;} .sixin_list_ul li div.c span.time a:hover{color:#ff3232;} .sixin_list_ul li div.c em.info{height:24px;line-height:24px;display:block;color:#999;} .sixin_list_ul li div.c em.info span{color:#666;} .sixin_list_w{background:#fff;} .sixin_list_w_f5f5f5{padding-bottom:40px;} .sixin_list_w div.fast_re{padding:20px 68px 0px;height:40px;position:relative;} .sixin_list_w div.fast_re input.text{height:18px;line-height:18px;font-size:14px;color:#999;padding:10px;border:1px solid #ddd;width:559px;background:#fafafa;} .sixin_list_w div.fast_re button.send{position:absolute;left:658px;height:38px;background:#ff3232;color:#fff;font-size:14px;width:80px;text-align:center;border:0px;line-height:38px;top:21px;} .sixin_qq{width:668px;padding-left:68px;} .sixin_qq_li{padding:20px 0px 0px 0px;} .sixin_qq_li a.avatar{display:block;height:80px;width:80px;} .sixin_qq_li a.avatar img{display:block;height:80px;width:80px;} .sixin_qq_li div.d{width:500px;} .sixin_qq_li div.c{display:inline-block;vertical-align:top;*display:block;*zoom:1;padding:14px;background:#fff;position:relative;width: expression(this.width > 467 ? '467px': true); max-width: 467px;border-radius:8px;} .sixin_qq_li div.d p{font-size:14px;line-height:24px;} .sixin_qq_li div.d p a{color:#ff3232;text-decoration:underline;} .sixin_qq_li div.d p a:hover{text-decoration:underline;} .sixin_qq_li span.arrow{background:url(../images/sixin_arrow.gif) no-repeat;display:block;height:12px;width:12px;overflow:hidden;top:10px;position:absolute;} .sixin_qq_li em.time{display:block;height:32px;line-height:32px;} .sixin_qq_li em.time a.delete{padding:0px 10px;color:#999;display:none;} .sixin_qq_li em.time a.delete:hover{text-decoration:underline;color:#ff3232;} .sixin_qq_li_left a.avatar{float:left;} .sixin_qq_li_left div.d{float:left;} .sixin_qq_li_left div.c{float:left;background:#fafafa;border:1px solid #eee;margin-left:20px;_display:inline;box-shadow:2px 2px 2px rgba(0,0,0,0.2);} .sixin_qq_li_left div.c p{color:#333;} .sixin_qq_li_left span.arrow{left:-12px;background-position:0px 0px;} .sixin_qq_li_left em.time{color:#999;float:left;padding-left:20px;} .sixin_qq_li_right a.avatar{float:right;} .sixin_qq_li_right div.d{float:right;} .sixin_qq_li_right div.c{float:right;background:#ff3232;color:#fff;margin-right:20px;_display:inline;box-shadow:-2px 2px 2px rgba(0,0,0,0.3);} .sixin_qq_li_right div.c p{color:#fff;} .sixin_qq_li_right div.c p a{color:#fff;text-decoration:underline;} .sixin_qq_li_right span.arrow{right:-10px;background-position:0px -12px;} .sixin_qq_li_right em.time{color:#999;text-align:right;padding-right:20px;} .useredit_w{width:922px;background:#fafafa;padding-left:68px;} .useredit_ul{padding:20px 0px 40px;} .useredit_ul li{float:left;margin:5px auto;} .useredit_ul dl dt{display:block;height:40px;line-height:40px;text-align:right;width:100px;float:left;color:#666;font-size:14px;padding-right:5px;} .useredit_ul dl dd.dd1{float:left;width:330px;float:left;} .useredit_ul dl dd.dd1 input.text{height:20px;padding:9px;border:1px solid #ddd;width:310px;font-size:14px;color:#999;} .useredit_ul dl dd.dd1 input.text_l{height:20px;padding:9px;border:1px solid #ddd;width:310px;font-size:14px;color:#999;} .useredit_ul dl dd.dd1 .textarea1{padding:9px;border:1px solid #ddd;height:150px;width:310px;font-size:14px;color:#999;} .useredit_ul dl dd.dd1 .textarea2{padding:9px;border:1px solid #ddd;height:80px;width:310px;font-size:14px;color:#999;} .useredit_ul dl dd.dd1 .submit{height:38px;width:80px;border:1px solid #E90808;background:#ff3232;color:#fff;font-size:14px;_border:none;} .useredit_ul dl dd.dd1 .submit:hover{background:#e90808;} .useredit_ul dl dd.dd1 img.useravatar{display:block;height:160px;width:160px;} .useredit_ul dl dd.dd1 .addnewavatar{height:160px;width:160px;background:#ddd;position:relative;overflow:hidden;} .useredit_ul dl dd.dd1 .addnewavatar input{font-size:200px;position:absolute;right:0px,top:0px; opacity: 0;-ms-filter: "alpha(opacity=0)";filter: alpha(opacity=0); zoom: 1;cursor:pointer;} .useredit_ul dl dd.dd1 select{padding:4px;position:relative;top:5px;margin-right:10px;} .useredit_ul dl dd.dd1 span{line-height:40px;color:#999;font-size:14px;} .useredit_ul dl dd.dd2{float:left;width:300px;height:40px;float:left;line-height:40px;} .useredit_ul dl dd.dd2 span.tip{line-height:40px;padding-left:10px;color:#999;} .useredit_ul1{padding:50px 0px;} .useredit_ul1 li{width:140px;float:left;height:140px;} .useredit_ul1 li .icon{height:100px;width:100px;display:block;margin:0px auto;background:url(../images/dsfbd_icons.gif) no-repeat;} .useredit_ul1 li .icon:hover{box-shadow:0px 0px 6px rgba(0,0,0,0.5);} .useredit_ul1 li .icon1{background-position:0px 0px;} .useredit_ul1 li .icon2{background-position:0px -100px;} .useredit_ul1 li .icon3{background-position:0px -200px;} .useredit_ul1 li .icon4{background-position:0px -300px;} .useredit_ul1 li .icon5{background-position:0px -400px;} .useredit_ul1 li .icon6{background-position:0px -500px;} .useredit_ul1 li p{height:32px;line-height:32px;text-align:center;color:#999;} .useredit_ul1 li p img{display:block;margin:10px auto 0;} .customize-user-avatar img {float: left;margin-right: 10px;width: 100px;height: 100px;} .customize-user-avatar a{color:#307DCA;line-height:24px;cursor:pointer;} .customize-user-avatar a:hover{text-decoration:underline;} .backtouserindex{display:block;height:50px;line-height:50px;color:#333;text-indent:14px;display:block;width:232px;font-size:14px;margin-bottom:20px;background:#fff;} .backtouserindex:hover{color:#ff3232;text-decoration:underline;} .jian{float:left;margin-right:20px;height:340px;width:305px;display:inline;} .bc{clear:both;width:203px;height:48px;margin:0px auto;} .bc input{width:126px;height:34px;background:url("../images/ucenter_bg4.gif") no-repeat scroll left -417px transparent;border:0px;cursor:pointer;} .tu h5{font-size:12px; font-weight:normal; color:#444; height:30px; line-height:20px; margin-bottom:10px;} .tu .da{margin-bottom:20px; color:#444;} .tu .xiao{padding-top:20px; color:#444;} .tu .da img{width:180px; height:180px; border:1px solid #ddd;margin-right:5px;} .tu .zhong img{width:50px; height:50px; border:1px solid #ddd;float:left;margin-right:5px;} .tu .xiao img{width:30px; height:30px; border:1px solid #ddd;float:left;margin-right:5px;} .tu .zhong{margin-right:80px; margin-right:30px\9; display:inline; float:left;white-space:nowrap; color:#444;} .tu .zhong span{ display:block; padding-top:28px;} .tu .xiao span{display:block; padding-top:8px;} img{border:none;} .ui-slider{POSITION: relative; HEIGHT: 16px} .ui-slider-handle{Z-INDEX: 2; border:1px solid #ddd; POSITION: absolute; LINE-HEIGHT: 1;WIDTH: 11px; BACKGROUND: #ffffff;HEIGHT: 16px;FONT-SIZE: 100%;TEXT-DECORATION: none;} .photo-slider{ POSITION: relative} .photo-slider .ui-slider{Z-INDEX: 2;HEIGHT: 16px} .photo-slider .ui-slider-handle{BORDER-BOTTOM: medium none;BORDER-LEFT: medium none;WIDTH: 11px;BACKGROUND: url(../images/p_handle.gif) no-repeat;HEIGHT: 16px; BORDER-TOP: medium none;BORDER-RIGHT: medium none} .photo-slider IMG{ HEIGHT: 18px} .photo-slider IMG{ WIDTH: 160px} .photo-slider{ WIDTH: 160px} .box-head{COLOR: #333} .box-light{MARGIN-TOP: 10px} #photo-canvas IMG{ POSITION: absolute} #photo-canvas TABLE{ Z-INDEX: 2; POSITION: relative} #photo-canvas .window{ border:1px solid #999; WIDTH: 128px; HEIGHT: 128px;} #photo-canvas .window P{ FILTER: alpha(opacity:1); WIDTH: 128px;ZOOM: 1;BACKGROUND: #fff; HEIGHT: 128px;opacity: 0.1} #photo-canvas .overlay{ FILTER: alpha(opacity:50); WIDTH: 40px;ZOOM: 1;BACKGROUND: #ccc;HEIGHT: 40px; opacity: 0.5} .ui-slider{height:16px;position:relative;} .ui-slider-handle{width:11px;height:16px;line-height:1;background:#FFFFFF;border:1px solid #DDDDDD;font-size:100%;position:absolute;text-decoration:none;z-index:2;} .photo-slider{position:relative;float:left;} .photo-slider .ui-slider{height:16px;z-index:2;} .photo-slider .ui-slider-handle{width:11px;height:16px;border:none;background:url(http://www.meishij.net/static/u/images/p_handle.gif) no-repeat;} .photo-slider img{height:18px;} .photo-slider img,.photo-slider{width:260px;} .box-head{color:#333;} .box-light{margin-top:10px;} /*定义本页css*/ #photo-canvas{border:1px solid #999;cursor:move;height:300px;overflow:hidden;position:relative;width:300px;} #photo-canvas img{position:absolute;} #photo-canvas table{position:relative;z-index:2;} #photo-canvas .window{width:180px;height:180px;} #photo-canvas .window p{width:180px;height:180px;opacity:0;zoom:1;} #photo-canvas .overlay{width:60px;height:60px;background:#000;opacity:0.4;zoom:1;filter:alpha(opacity:40);} a.zoom-in {float:left;} a.zoom-out {float:left;} .editusertx_btn a.btn{height:38px;width:100px;background:#ff3232;border:1px solid #e90808;line-height:38px;font-size:14px;color:#fff;display:block;text-align:center;} .editusertx_btn a.btn:hover{background:#e90808;} .editusertx_btn a.clicked{background:#f5f5f5;border:1px solid #ddd;color:#999;} .editusertx_btn a.clicked:hover{background:#eee;} .editusertx_box{} .tzcs_w{width:990px;background:#f5f5f5;} .mssxtest_w{width:990px;background:#fff;overflow:hidden;} .mssxtest_item{width:990px;overflow:hidden;float:left;position:relative;} .mssxtest_scw{width:50000px;} .mssxtest_dl{padding:20px 55px;} .mssxtest_ques{height:60px;line-height:60px;font-size:24px;color:#333;font-family:Microsoft Yahei;padding-bottom:15px;} .mssxtest_options{width:880px;height:250px;} .mssxtest_options a.options{height:40px;width:100px;line-height:40px;background:#eee;color:#666;text-align:center;display:block;font-size:14px;float:left;margin:5px;} .mssxtest_options a.options:hover{color:#fff;background:#ff3232;} .mssxtest_options a.options_checked{color:#fff;background:#ff3232;} .mssxtest_btns{height:66px;text-align:center;width:990px;padding-bottom:50px;} .mssxtest_btns a.btn{display:inline-block;vertical-align:top;*display:inline;*zoom:1;margin:0px 10px;height:66px;width:66px;background:url(../images/mssxtest_btns.png) no-repeat;overflow:hidden;cursor:default;} .mssxtest_btns a.prevbtn{background-position:0px 0px;cursor:pointer;} .mssxtest_btns a.prevbtn:hover{background-position:-66px 0px;} .mssxtest_btns a.nextbtn{background-position:0px -66px;} .mssxtest_btns a.nextbtn_active{background-position:0px -198px;cursor:pointer;} .mssxtest_btns a.prevbtn_active:hover{background-position:-66px -132px;} .mssxtest_btns a.nextbtn_active:hover{background-position:-66px -198px;} .mssxtest_btns a.submitbtn{background-position:0px -264px;} .mssxtest_btns a.submitbtn_active{background-position:0px -330px;cursor:pointer;} .mssxtest_btns a.submitbtn_active:hover{background-position:-66px -330px;} .listtyle_cd1{width:990px;padding:20px 0px;background:#fafafa;} .user_cditem{width:990px;} .user_cditem .l{float:left;height:137px;width:100px;margin-left:20px;_display:inline;} .user_cditem .l .author{height:137px;width:100px;} .user_cditem .l .author a.img{height:88px;width:88px;border-radius:44px;overflow:hidden;display:block;margin:6px 6px 0px;} .user_cditem .l .author a.img img{height:88px;width:88px;border-radius:44px;overflow:hidden;} .user_cditem .l .author a.t{height:32px;width:100px;line-height:32px;font-size:14px;color:#666;text-align:center;display:block;} .user_cditem .l .author a.t:hover{color:#ff3232;text-decoration:underline;} .user_cditem .l .time{height:98px;width:98px;background:#fff;border:1px solid #eee;} .user_cditem .l .time span{display:block;height:32px;width:100px;color:#aaa;line-height:40px;text-align:center;overflow:hidden;} .user_cditem .l .time strong{display:block;height:60px;line-height:50px;color:#333;font-size:50px;font-family:arial;text-align:center;font-weight:bold;} .user_cditem .r{width:828px;float:right;border:1px solid #eee;margin-right:20px;background:#fff;margin-bottom:20px;} .user_cditem .zp_r{width:828px;float:right;margin-right:20px;} .user_cditem_h{height:20px;line-height:20px;position:relative;overflow:hidden;} .user_cditem_h a{color:#ff3232;font-size:18px;font-family:Microsoft Yahei,黑体;} .user_cditem_h a:hover{color:#ff3232;text-decoration:underline;} .user_cditem_h span{position:absolute;right:20px;top:0px;display:block;width:100px;text-align:right;line-height:50px;color:#999;} .user_cditem_h span strong{color:#ff3232;padding:0px 3px;font-weight:bold;} .user_cditem_c{width:788px;padding:20px;height:117px;position:relative;} .user_cditem_c_zt{height:133px;} .user_cditem_c .delthis{height:28px;display:inline-block;vertical-align:top;*display:inline;*zoom:1;padding:0px 10px;text-align:center;background:#C90000;color:#fff;font-size:12px;line-height:28px;position:absolute;right:0px;top:0px;display:none;cursor:pointer;} .user_cditem_c .delthis span:hover{text-decoration:underline;} .user_cditem_c a.bigimg{display:block;height:117px;width:696px;} .user_cditem_c a.bigimg img{height:117px;width:696px;display:block;} .user_cditem_c_zt a.zt{display:block;height:133px;width:788px;} .user_cditem_c_zt a.zt img{display:block;height:133px;width:788px;} .user_cditem_c dl dt{display:block;height:117px;width:290px;float:left;} .user_cditem_c dl dt p.para{line-height:17px;color:#666;padding-top:10px;height:51px;} .user_cditem_c dl dt span.author{line-height:30px;height:30px;display:block;color:#999;padding:6px 10px 0px 0px;} .user_cditem_c dl dt span.author a.img{height:30px;width:30px;display:block;border-radius:15px;overflow:hidden;float:left;padding-right:10px;} .user_cditem_c dl dt span.author a.img img{display:block;height:30px;width:30px;border-radius:15px;} .user_cditem_c dl dt span.author a.t{color:#ff3232;} .user_cditem_c dl dt span.author a.t:hover{text-decoration:underline;} .user_cditem_c dl dt span.author strong{float:right;} .user_cditem_c dl dd{display:block;float:right;height:117px;width:488px;} .user_cditem_c dl dd a{display:block;height:117px;width:117px;position:relative;float:left;margin-left:5px;_display:inline;} .user_cditem_c dl dd a img{display:block;height:117px;width:117px;} .user_cditem_c dl dd a strong{display:block;height:28px;width:117px;line-height:28px;color:#fff;background:url(../images/black75.png) repeat;position:absolute;right:0px;bottom:0px;text-align:center;display:none;} .user_cditem_c dl dd a:hover strong{display:block;} .zp_w{width:990px;background:#fafafa;margin:0px auto 20px;} .zp_l{width:690px;background:#fff;float:left;position:relative;} .zp_bigimg{width:650px;display:block;margin:20px 20px 0px;} .zp_ms{padding:14px 20px 6px;line-height:24px;font-size:14px;color:#333;} .zp_time{height:18px;line-height:18px;color:#999;padding:0px 20px 14px;display:block;} .zp_time a{color:#ff3232;padding:0px 3px;} .zp_time a:hover{text-decoration:underline;} .zp_title_w{height:80px;width:990px;position:relative;background:#fff;border-bottom:1px solid #ddd;} .zp_title{height:80px;line-height:80px;font-size:24px;color:#333;font-family:Microsoft Yahei,黑体;text-indent:20px;} .zp_link_w{padding:20px 20px;border-bottom:1px solid #eee;border-top:1px solid #eee;position:relative;} .zp_link_w ul{height:46px;float:left;} .zp_link_w ul li{height:46px;width:46px;margin-right:6px;border-radius:50%;overflow:hidden;float:left;} .zp_link_w ul li a{display:block;height:46px;width:46px;} .zp_link_w ul li a img{display:block;height:46px;width:46px;} .zp_link_w p{line-height:46px;font-size:14px;color:#666;float:left;padding-left:10px;} .zp_btns_w{height:46px;position:absolute;right:20px;top:20px;} .zp_zanbtn{cursor:pointer;display:block;height:46px;width:46px;float:right;margin-right:10px;background:url(../images/zan_inzpcon.gif) 0px 0px no-repeat;} .zp_zanbtn:hover{background-position:0px -46px;} .zp_zanbtned{cursor:pointer;display:block;height:46px;width:46px;float:right;margin-right:10px;background:url(../images/zan_inzpcon.gif) 0px -92px no-repeat;} .zp_zanbtned:hover{background-position:0px -138px;} .zp_link{height:44px;display:inline-block;vertical-align:top;*display:inline;*zoom:1;float:right;margin:0px auto;background:#ff3232;padding:0px 20px;color:#fff;font-size:14px;line-height:44px;border:1px solid #e90808;} .zp_link:hover{background:#e90808;} .zp_r{width:300px;float:left;} .zp_others{width:300px;} .zp_others h2{font-size:18px;color:#333;font-family:Microsoft Yahei,黑体;text-indent:14px;height:60px;line-height:60px;} .zp_others ul{padding-left:14px;} .zp_others ul li{float:left;height:90px;width:90px;margin:0px 1px 1px 0px;_display:inline;} .zp_others ul li a{display:block;height:90px;width:90px;} .zp_others ul li a img{display:block;height:90px;width:90px;} .zp_others a.more{color:#999;height:44px;line-height:44px;display:block;text-align:center;margin:14px;} .zp_others a.more:hover{background:#eee;} .zp_author{padding:20px 14px 14px;position:relative;border-bottom:1px solid #eee;} .zp_author_avatar{height:60px;width:60px;float:left;display:block;border-radius:4px;overflow:hidden;} .zp_author_avatar img{display:block;height:60px;width:60px;border-radius:4px;overflow:hidden;} .zp_author_info{width:200px;float:left;height:60px;padding-left:10px;} .zp_author_info a.name{font-size:14px;color:#333;font-weight:bold;height:32px;line-height:32px;} .zp_author_info a.name:hover{color:#ff3232;text-decoration:underline;} .zp_author_info span.i{color:#999;line-height:18px;} .zp_gz_w{height:44px;margin:14px 0px 0px;line-height:44px;float:left;display:block;color:#fff;text-align:center;width:272px;background:#ff3232;} .zp_gz_w:hover{background:#e90808;} .zp_followTa{position:absolute;right:14px;top:20px;} .favbtns1{display:block;height:50px;width:160px;position:absolute;margin:14px;right:0px;top:0px;} .favbtns1 .share{display:block;background:#fff;color:#888;font-size:14px;font-weight:bold;text-align:center;height:48px;width:158px;float:left;line-height:48px;} .favbtns1 .share:hover{background:#fafafa;} .favbtns1 .share a{display:inline-block;vertical-align:top;*display:inline;*zoom:1;height:24px;width:24px;background:url(../images/bgshareiconnn.gif?v=1) no-repeat;margin-top:13px;} .favbtns1 #bdshare .share a.qq{background-position:-4px -4px;} .favbtns1 #bdshare .share a.weibo{background-position:-4px -32px;} .favbtns1 #bdshare .share a.qq:hover{background-position:-4px -4px;opacity:1;filter:alpha(opacity=100);} .favbtns1 #bdshare .share a.weibo:hover{background-position:-4px -32px;opacity:1;filter:alpha(opacity=100);} .favbtns1 #bdshare .share a.qzone{background-position:-4px -60px;} .favbtns1 #bdshare .share a.qzone:hover{background-position:-4px -60px;opacity:1;filter:alpha(opacity=100);} .cp_comments_list{width:670px;padding:20px 0px 0px;} .cp_com_form_w{width:630px;padding:0px 20px;} .cp_com_form_w a.useravatar{float:left;height:50px;width:50px;float:left;display:block;} .cp_com_form_w a.useravatar img{display:block;height:50px;width:50px;} .cp_com_form_w .form_w{display:block;height:150px;width:560px;float:left;margin-left:20px;position:relative;} .cp_com_form_w .form_w textarea{height:70px;width:530px;padding:14px;border:1px solid #ddd;background:#fcfcfc;color:#333;font-size:14px;} .cp_com_form_w .form_w input.submit{height:40px;width:80px;background:#ff3232;border:1px solid #e90808;font-size:14px;color:#fff;position:absolute;right:0px;bottom:0px;} .cp_com_form_w .form_w input.submit_off{background:#fcfcfc;border:1px solid #ddd;color:#999;} .cp_com_form_w .form_w .mask{display:block;height:120px;width:560px;background:url(../images/blank.gif) 0px 0px repeat;left:0px;top:0px;text-align:center;position:absolute;left:0px;top:0px;padding-top:30px;} .cp_com_form_w .form_w .mask div.w{height:40px;display:inline-block;vertical-align:top;*display:inline;*zoom:1;} .cp_com_form_w .form_w .mask a,.cp_com_form_w .form_w .mask span{display:inline-block;vertical-align:top;*display:inline;*zoom:1;padding:0px 15px;height:38px;line-height:38px;margin:0px 5px;background:#ff3232;border:1px solid #e90808;color:#fff;font-size:14px;} .cp_com_form_w .form_w .mask a:hover,.cp_com_form_w .form_w .mask span:hover{background:#e90808;cursor:pointer;} .cp_comlist_w{width:630px;padding:20px 20px 0px;} .cp_comlist_w ul li{} .cp_comlist_w ul li a.avatar{height:82px;width:50px;float:left;} .cp_comlist_w ul li a.avatar img{display:Block;height:50px;width:50px;} .cp_comlist_w ul li a.avatar h5{height:32px;line-height:32px;color:#999;text-align:center;white-space:nowrap;overflow:hidden;width:50px;} .cp_comlist_w ul li a.avatar:hover{color:#ff3232;text-decoration:underline;} .cp_comlist_w ul li a.avatar:hover h5{color:#ff3232;text-decoration:underline;} .cp_comlist_w ul li div.c{float:left;margin-left:20px;width:560px;} .cp_comlist_w ul li div.c p.p1{font-size:14px;color:#666;line-height:24px;} .cp_comlist_w ul li div.c p.p1 strong{color:#ff3232;padding-right:5px;} .cp_comlist_w ul li div.info{position:relative;height:40px;line-height:40px;color:#999;} .cp_comlist_w ul li div.info span a{color:#ff3232;padding:0px 3px;} .cp_comlist_w ul li div.info span a:hover{text-decoration:underline;} .cp_comlist_w ul li div.info a.re{color:#999;position:absolute;right:0px;top:0px;line-height:40px;display:inline-block;vertical-align:top;*display:inline;*zoom:1;} .cp_comlist_w ul li div.info a.re:hover{color:#ff3232;textd-decoration:underline;} .cp_comlist_w ul li div.info1{position:relative;height:30px;line-height:30px;color:#999;} .cp_comlist_w ul li div.info1 span a{color:#ff3232;padding:0px 3px;} .cp_comlist_w ul li div.info1 span a:hover{text-decoration:underline;} .cp_comlist_w ul li div.c1{float:left;margin-left:10px;width:460px;} .cp_comlist_w ul li div.c .comscoms{width:520px;padding:10px 20px 0px;background:#f5f5f5;margin-bottom:20px;} .cp_comlist_w ul li div.c .comscoms ul{float:left;} .cp_comlist_w ul li div.c .comscoms ul li{border-bottom:1px solid #e5e5e5;padding:10px 0px 0px;} .cp_comlist_w ul li div.c p.p2{font-size:14px;color:#666;line-height:20px;width:450px;padding-bottom:10px;} .cp_comlist_w ul li div.c p.p2 a{color:#ff3232;padding-right:5px;} .cp_comlist_w ul li div.c p.p2 a:hover{text-decoration:underline;} .cp_comlist_w ul li a.avatar1{height:50px;width:50px;float:left;margin-bottom:10px;} .cp_comlist_w ul li a.avatar1 img{display:block;height:50px;width:50px;} .cp_comlist_w ul li .saybtn{height:32px;width:100px;background:#ff3232;border:1px solid #e90808;display:block;float:right;line-height:32px;color:#fff;text-align:center;margin:10px 0px 20px} .cp_comlist_w ul li .saybtn:hover{background:#e90808;} .cp_comlist_w ul li .saybtn_ed{background:#eee;border:1px solid #ddd;color:#888;} .cp_comlist_w ul li .saybtn_ed:hover{background:#ddd;} .re_form{float:right;width:520px;height:150px;position:relative;top:-10px;display:none;} .re_form textarea{height:70px;width:490px;padding:14px;border:1px solid #ddd;background:#fff;font-size:14px;color:#333;} .re_form input{position:absolute;right:0px;bottom:10px;height:30px;width:80px;color:#fff;font-size:12px;text-align:center;background:#ff3232;border:1px solid #e90808;line-height:30px;} .commentslist_li{padding:20px 0px 0px;border-bottom:1px solid #eee;} .user_nocon{width:990px;margin:0px auto;padding:40px 0px 80px;background:#fff;text-align:center;} .user_nocon p{font-size:14px;color:#666;line-height:24px;padding:20px 100px;} .user_nocon a.btn{display:inline-block;vertical-align:center;*display:inline;*zoom:1;font-size:14px;font-weight:bold;height:42px;line-height:42px;background:#ff3232;color:#fff;padding:0px 20px;border:1px solid #e90808;} .user_nocon a.btn:hover{background:#e90808;} .usercp_w{width:736px;float:right;background:#fff;height:100px;} .cp_list{background:#fff;width:736px;float:right;} .cp_list_title{height:50px;line-height:50px;font-size:14px;color:#333;text-indent:14px;border-bottom:1px solid #ddd;position:relative;} .cp_list_title span.btns{height:50px;font-size:12px;color:#999;padding:0px 14px;position:absolute;right:0px;top:0px;} .cp_list_title span.btns a{color:#999;padding-left:10px;} .cp_list_title span.btns a:hover{color:#ff3232;text-decoration:underline;} .cp_list_ul{} .cp_list_ul li{height:120px;width:696px;border-bottom:1px solid #eee;padding:20px 20px;position:relative;} .cp_list_ul li:hover{background:#fafafa;} .cp_list_ul li a.img{float:left;height:120px;width:120px;position:relative;} .cp_list_ul li a.img img{height:120px;width:120px;display:block;} .cp_list_ul li a.img span.new{height:20px;display:inline-block;vertical-align:top;*display:inline;*zoom:1;top:-10px;right:-10px;background:#ff3232;color:#fff;font-size:12px;font-family:arial;position:absolute;padding:0px 4px;border-radius:10px;line-height:20px;overflow:hidden;min-width:12px;_width:12px;white-space:nowrap;text-align:center;} .cp_list_ul li div.c{float:left;height:120px;width:560px;padding-left:14px;} .cp_list_ul li div.c strong.name{display:block;height:32px;line-height:32px;font-size:14px;color:#333;font-weight:bold;} .cp_list_ul li div.c strong.name a{color:#333;} .cp_list_ul li div.c strong.name a span{color:#ff3232;} .cp_list_ul li div.c strong.name a:hover{color:#ff3232;text-decoration:underline;} .cp_list_ul li div.c p{font-size:14px;color:#666;line-height:24px;overflow:hidden;} .cp_list_ul li div.c p a{color:#666;} .cp_list_ul li div.c p a:hover{color:#ff3232;text-decoration:underline;} .cp_list_ul li div.c p strong{font-size:12px;padding-right:10px;} .cp_list_ul li div.c p strong em{color:#ff3232;padding-right:4px;} .cp_list_ul li div.c span.time{position:absolute;height:20px;line-height:20px;right:20px;top:20px;color:#999;} .cp_list_ul li div.c span.time a{color:#999;padding-left:10px;display:none;} .cp_list_ul li div.c span.time a:hover{color:#ff3232;} .cp_list_ul li div.c em.info{height:24px;line-height:24px;display:block;color:#999;} .cp_list_ul li div.c em.info span{color:#666;} .nocontenttt{padding:100px 0px 140px;text-align:center;font-size:14px;color:#666;line-height:48px;} .nocontentttbtn{display:block;height:48px;width:200px;background:#ff3232;color:#fff;font-weight:bold;margin:0px auto;} .nocontentttbtn:hover{background:#e90808;} .w758{float:left;width:758px;} .noti_list{background:#fff;width:990px;float:left;} .noti_list1{width:758px;} .noti_list_title{height:50px;line-height:50px;font-size:14px;color:#333;text-indent:14px;border-bottom:1px solid #ddd;position:relative;} .noti_list_title span.btns{height:50px;font-size:12px;color:#999;padding:0px 14px;position:absolute;right:0px;top:0px;} .noti_list_title span.btns a{color:#999;padding-left:10px;} .noti_list_title span.btns a:hover{color:#ff3232;text-decoration:underline;} .noti_list_ul{} .noti_list_ul li{width:950px;border-bottom:1px solid #eee;padding:20px 20px;position:relative;} .noti_list_ul li:hover{background:#fafafa;} .noti_list_ul li a.img{float:left;height:80px;width:80px;position:relative;} .noti_list_ul li a.img img{hwidth:80px;display:block;} .noti_list_ul li div.c{width:950px;padding:0px;} .noti_list_ul li div.c strong.name{display:block;height:32px;line-height:32px;font-size:14px;color:#333;font-weight:bold;} .noti_list_ul li div.c strong.name a{color:#333;} .noti_list_ul li div.c strong.name a span{color:#ff3232;} .noti_list_ul li div.c strong.name a:hover{color:#ff3232;text-decoration:underline;} .noti_list_ul li div.c p{font-size:14px;color:#666;line-height:24px;overflow:hidden;} .noti_list_ul li div.c p strong{font-size:12px;padding-right:10px;} .noti_list_ul li div.c p strong em{color:#ff3232;padding-right:4px;} .noti_list_ul li div.c p a{color:#Ff3232;} .noti_list_ul li div.c span.time{height:20px;line-height:20px;float:right;color:#999;} .noti_list_ul li div.c em.info{height:24px;line-height:24px;display:block;color:#999;} .noti_list_ul li div.c em.info span{color:#666;} .import_tip{color:red;} .useredit_ul strong{font-weight: bold;} .search_in_myspace{position:absolute;height:38px;border:1px solid #ddd;border-radius:2px;overflow:hidden;right:126px;top:14px;width:220px;} .search_in_myspace .text{border:0 none;box-sizing: content-box;height:22px;padding:8px;line-height:22px;font-size:14px;color:#333;width:204px;} .search_in_myspace .submit{width:34px;height:34px;position:absolute;right:2px;top:2px;background:#fff url(http://static.meishij.net/n/images/searchbtn1.png) -3px -3px no-repeat;border:0px;cursor:pointer;} .search_in_myspace .submit:hover{background-position:-3px -43px;}
public/static/index/css/user.css
.user_no_love{width:990px;background:#fff;height:400px;background:url(../images/usernolove.jpg) 0px 0px no-repeat;position:relative;} .usernolovebtn{height:56px;width:251px;background:url(../images/usernolovebtn.png) 0px 0px no-repeat;position:absolute;left:577px;top:247px;display:block;} .usernolovebtn:hover{background-position:0px -56px;} .user_main_index{width:990px;background:#fafafa;} .user_main_index_l{width:700px;background:#fff;float:left;} .user_main_index_r{width:290px;float:left;} .uindexr_ad1{height:100px;width:290px;position:relative;display:block;cursor:default;} .uindexr_ad1 .shut{position:absolute;right:8px;top:8px;height:24px;color:#fff;background:url(../images/shut24.png) 0px 0px no-repeat;width:24px;display:none;cursor:pointer;} .uindexr_ad1:hover .shut{display:block;} .tz_result_main_right_middle{width:990px;margin:0px auto;} .tz_result_main_right_middle1{width:990px;height:68px;position:relative;line-height:68px;font-size:14px;color:#333;text-indent:20px;border-bottom:1px solid #ddd;position:relative;background:#fff;} .tz_result_main_right_middle1 span.time{line-height:68px;font-size:12px;color:#999;position:absolute;top:0px;right:20px;} .tz_result_main_right_middle1 span.time a{padding-left:10px;color:#999;} .tz_result_main_right_middle1 span.time a:hover{color:#ff3232;text-decoration:underline;} .tz_result_main_right_middlex{width:758px;} .testr_title{height:50px;line-height:50px;text-indent:14px;font-size:14px;} .retest{width:204px;height:40px;display:block;background:#ff3232;margin:14px auto 0px;font-size:14px;color:#fff;font-weight:bold;line-height:40px;text-align:center;} .retest:hover{background:#e90808;} .usc_item{width:672px;height:160px;border-bottom:1px solid #eee;padding:14px;} .usc_item_img{height:160px;width:160px;display:block;float:left;} .usc_item_img img{display:block;height:160px;width:160px;} .usc_item_c{float:left;width:498px;height:160px;padding-left:14px;} .usc_item_c .title{height:24px;line-height:24px;font-size:18px;font-family:Microsoft Yahei,黑体;color:#333;} .usc_item_c .title:hover{color:#ff3232;text-decoration:underline;} .usc_item_c .span1{line-height:32px;color:#999;} .usc_item_c .author{color:#ff3232;} .usc_item_c .author:hover{text-decoration:underline;} .uir_con1{width:276px;padding-left:14px;position:relative;} .uir_con1_more{color:#999;position:absolute;right:14px;top:0px;line-height:60px;} .uir_con1_more:hover{color:#ff3232;text-decoration:underline;} .uir_con1 h3{color:#333;font-size:18px;line-height:60px;font-family:Microsoft Yahei,黑体;} .uir_ul1{} .uir_ul1 li{float:left;height:62px;width:62px;margin:0px 6px 6px 0px;border-radius:4px;overflow:hidden;} .uir_ul1 li.mr0{} .uir_ul1 li a{display:block;height:60px;width:60px;border-radius:4px;overflow:hidden;} .uir_ul1 li a img{height:60px;width:60px;display:block;border-radius:4px;overflow:hidden;} .uir_ul2{background:#fff;border:1px solid #eee;border-bottom:0px;margin-right:14px;} .uir_ul2 li{height:44px;line-height:44px;border-bottom:1px solid #eee;position:relative;padding-left:14px;} .uir_ul2 li a{font-size:14px;color:#666;} .uir_ul2 li a:hover{color:#ff3232;text-decoration:underline;} .uir_ul2 li span.c{position:absolute;right:14px;top:0px;line-height:44px;font-size:12px;color:#aaa;display:block;} .uindex_item{width:672px;margin:0px 14px;padding:10px 0px 0px;border-bottom:1px solid #eee;} .uindex_item .avatar{display:block;height:60px;width:60px;float:left;border-radius:4px;overflow:hidden;} .uindex_item .avatar img{display:block;height:60px;width:60px;border-radius:4px;} .uindex_item .c{float:left;width:590px;padding-left:10px;} .uindex_item .c .name{display:block;height:28px;line-height:28px;color:#ff3232;font-weight:bold;} .uindex_item .c .name a{color:#ff3232;font-size:14px;} .uindex_item .c .name a:hover{text-decoration:underline;} .uindex_item .c .con{} .uindex_item .c .con .avatar1{height:60px;display:inline-block;vertical-align:top;*display:inline;*zoom:1;font-size:14px;color:#ff3232;font-weight:bold;line-height:60px;float:left;padding-right:4px;} .uindex_item .c .con .avatar1 img{border-radius:20px;height:40px;width:40px;float:left;margin:10px 10px 10px 0px;} .uindex_item .c .con .avatar1:hover{text-decoration:underline;} .uindex_item .c .con p{line-height:60px;color:#666;color:#666;font-size:14px;float:left;} .uindex_item .c .con p .tag{color:#333;font-weight:bold;} .uindex_item .c .yy{width:590px;background:#fafafa;position:relative;} .uindex_item .c .yy .arrow{display:block;height:10px;width:10px;background:url(../images/littlearrow11.gif) 0px 0px no-repeat;left:10px;top:-10px;position:absolute;} .yycon{float:left;width:390px;padding-left:12px;} .blocklink{display:block;padding:10px;} .blocklink:hover{background:#f5f5f5;} .yycon1{width:558px;float:left;} .yycon h3{font-size:18px;color:#333;font-weight:bold;font-family:Microsoft Yahei,黑体;height:32px;line-height:32px;position:relative;color:#ff3232;} .yycon h3 em{line-height:32px;font-size:12px;color:#999;position:absolute;right:10px;top:0px;text-align:right;font-family:宋体;} .yycon span{height:32px;line-height:32px;color:#999;display:block;} .yycon a.link{color:#ff3232;font-size:14px;color:#ff3232;line-height:24px;} .yycon a.link:hover{text-decoration:underline;} .yycon p{line-height:22px;color:#666;font-size:14px;padding-top:4px;} .yy_cd{height:140px;width:550px;padding:10px 10px 6px;float:left;} .yy_cd img{height:136px;width:136px;margin:0px 1px 0px 0px;float:left;display:block;_display:inlinefloat:left;;} .uindex_item .c div.time{color:#aaa;line-height:44px;height:44px;} .uindex_item .c div.time .pl{float:right;display:block;height:44px;line-height:44px;color:#aaa;} .uindex_item .c div.time .pl:hover{color:#ff3232;text-decoration:underline;} .uindex_item .c .yy .yycpimg{float:left;height:150px;width:150px;float:right;} .uindex_item .c .yy .yycpimg img{height:150px;width:150px;} .uindex_comments{width:590px;background:#fafafa;margin-bottom:14px;display:none;} .uindex_comments .c1{padding:10px;} .uindex_comments .c1 textarea{color:#333;height:36px;padding:10px;line-height:18px;border:1px solid #eee;background:#fff;width:548px;overflow:auto;float:left;} .uindex_comments .c1 input.submit{float:right;height:32px;width:66px;color:#fff;background:#ff3232;border:0px;margin-top:5px;cursor:pointer;} .uindex_comments .c1 input.submit:hover{background:#e90808;} .uindex_comments .c2{padding:10px;} .uindex_comments .c2 ul{} .uindex_comments .c2 li{padding:8px 0px;float:left;width:570px;border-top:1px solid #eee;color:#666;} .uindex_comments .c2 li a.tx{display:block;height:32px;width:32px;float:left;margin-right:10px;float:left;border-radius:4px;overflow:hidden;} .uindex_comments .c2 li div.r{float:left;width:520px;} .uindex_comments .c2 li a.tx img{height:32px;width:32px;border-radius:4px;} .uindex_comments .c2 li a.author{color:#ff3232;} .uindex_comments .c2 li a.author:hover{text-decoration:underline;} .uindex_comments .c2 li p{display:inline;line-height:18px;} .uindex_comments .c2 li p a{color:#ff3232;} .uindex_comments .c2 li p a:hover{text-decoration:underline;} .uindex_comments .c2 li.last{text-align:right;line-height:40px;} .fbcp{width:580px;background:#fafafa;border:1px solid #eee;height:300px;margin-top:10px;} .fbcp_img{height:280px;width:200px;float:left;display:block;margin:10px;_display:inline;} .fbcp_img img{display:block;height:280px;width:200px;} .fbcp div.fbcp_c{float:left;width:340px;padding-left:10px;} .fbcp div.fbcp_c h2{height:50px;line-height:50px;color:#333;font-size:24px;font-family:Microsoft Yahei,黑体;padding-top:10px;overflow:hidden;} .fbcp div.fbcp_c h2 a{color:#333;} .fbcp div.fbcp_c h2 a:hover{color:#ff3232;text-decoration:underline;} .fbcp div.fbcp_c p{color:#666;line-height:24px;font-size:14px;padding-right:20px;} .fbcp div.fbcp_c a.link{color:#ff3232;line-height:24px;font-size:14px;} .fbcp div.fbcp_c a.link:hover{text-decoration:underline;} .fbzp{width:580px;background:#fafafa;border:1px solid #eee;height:220px;margin-top:10px;} .fbzp_img{height:200px;width:200px;float:left;display:block;margin:10px;_display:inline;} .fbzp_img img{display:block;height:200px;width:200px;} .fbzp div.fbzp_c{float:left;width:350px;padding-left:10px;} .fbzp div.fbzp_c h2{height:50px;line-height:50px;color:#333;font-size:24px;font-family:Microsoft Yahei,黑体;padding-top:10px;overflow:hidden;} .fbzp div.fbzp_c h2 a{color:#333;} .fbzp div.fbzp_c h2 a:hover{color:#ff3232;text-decoration:underline;} .fbzp div.fbzp_c p{color:#666;line-height:24px;font-size:14px;padding-right:20px;} .fbzp div.fbzp_c a.link{color:#ff3232;line-height:24px;font-size:14px;} .fbzp div.fbzp_c a.link:hover{text-decoration:underline;} .fbcd{width:580px;background:#fafafa;border:1px solid #eee;height:172px;margin-top:10px;position:relative;} .fbcd h2{line-height:54px;color:#333;height:54px;text-indent:14px;font-size:18px;font-family:Microsoft Yahei;} .fbcd h2 a{color:#333;} .fbcd h2 a:hover{color:#ff3232;text-decoration:underline;} .fbcd ul{padding:0px 10px;} .fbcd ul li{float:left;height:106px;width:106px;margin-right:4px;} .fbcd ul li a{height:106px;width:106px;display:block;} .fbcd ul li a img{height:106px;width:106px;display:block;} .fbcd a.link{position:absolute;right:14px;top:0px;line-height:54px;color:#ff3232;font-size:14px;} .fbcd a.link:hover{text-decoration:underline;} .listtyle_tlz{width:990px;background:#fafafa;padding-bottom:20px;} .liststyle_test{width:970px;background:#fafafa;padding:20px 0px 20px 20px;} .usertest_item_con{width:230px;height:344px;margin:0px 10px 30px 0px;float:left;} .retestbtn{height:43px;width:228px;display:block;color:#fff;font-size:14px;font-weight:bold;line-height:44px;text-align:center;border:1px solid #eee;border-top:0px;} .retestbtn_tzcs{background:#63b814;} .retestbtn_jkcs{background:#0ca2f9;} .retestbtn_pfcs{background:#dd5aaa;} .retestbtn_tzyys{background:#ae2c0c;} .usertest_item_con .wrap_a{display:block;height:300px;width:228px;border:1px solid #eee;background:#fff;} .usertest_item_con .wrap_a_tzcs{} .usertest_item_con .wrap_a_jkcs{background:url(../images/jkcs_3001.jpg) 0px 0px no-repeat;} .usertest_item_con .wrap_a_jkcs dt{color:#0ca2f9;} .usertest_item_con .wrap_a_tzcs{background:url(../images/tzcs_3001.jpg) 0px 0px no-repeat;} .usertest_item_con .wrap_a_tzcs dt{color:#63b814;} .usertest_item_con .wrap_a_pfcs{background:url(../images/pfcs_3001.jpg) 0px 0px no-repeat;} .usertest_item_con .wrap_a_pfcs dt{color:#dd5aaa;} .usertest_item_con .wrap_a_tzyys{background:url(../images/tzyys_3001.jpg) 0px 0px no-repeat;} .usertest_item_con .wrap_a_tzyys dt{color:#ae2c0c;} .usertest_item_con .notest_img{display:block;height:300px;width:228px;} .usertest_item_con .wrap_a:hover{border:1px solid #ddd;} .usertest_item_con h2{height:40px;line-height:40px;color:#666;font-size:12px;color:#666;border-bottom:1px solid #eee;text-indent:14px;position:relative;} .usertest_item_con h2 span.time{display:block;position:absolute;right:14px;height:40px;top:0px;color:#aaa;} .user_tzcs_titlec{height:250px;width:228px;position:relative;} .user_tzcs_titlec dl{padding:0px 14px;} .user_tzcs_titlec dt{height:40px;line-height:40px;display:block;font-size:24px;color:#ff3232;font-family:Microsoft Yahei;padding-top:10px;} .user_tzcs_titlec dd.dd2{line-height:18px;color:#666;} .user_tzcs_titlec dd.dd1{color:#333;font-size:14px;display:block;line-height:18px;font-weight:bold;padding-bottom:10px;height:18px;} .user_tzcs_titlec span.more{color:#aaa;position:absolute;bottom:0px;right:14px;line-height:24px;} .listtyle3_list1{width:744px;float:left;padding-top:14px;padding-left:14px;padding-bottom:4px;background:#fff;} .testbtn{height:50px;width:230px;background:#ff3232;font-size:14px;color:#fff;text-align:center;display:block;margin-top:10px;line-height:50px;} .testbtn:hover{background:#e90808;} .userzp_zp{width:260px;border:1px solid #eee;float:left;height:350px;margin:0px 20px 20px 0px;background:#fff;position:relative;} .userzp_zp_370{height:370px;} .mr0{margin-right:0px;} .userzp_zp .imgw{height:240px;width:240px;position:relative;padding:10px 10px 0px;} .userzp_zp a.img{display:block;height:240px;width:240px;position:relative;} .userzp_zp a.img img{display:block;height:240px;width:240px;} .userzp_zp .imgw span.delthis{background:#c90000;position:absolute;top:10px;right:10px;height:24px;line-height:24px;color:#fff;padding:0px 10px;display:none;} .userzp_zp .imgw span.delthis span{cursor:pointer;} .userzp_zp .imgw span.delthis span:hover{text-decoration:underline;} .userzp_zp .imgw span.delthis a{color:#fff;} .userzp_zp .imgw span.delthis a:hover{text-decoration:underline;} .userzp_zp .imgw span.confuse{background:#c90000;position:absolute;bottom:0px;right:10px;line-height:18px;color:#fff;padding:10px;width:220px;} .userzp_zp .imgw em{background:#c90000;position:absolute;top:226px;right:10px;height:24px;line-height:24px;color:#fff;padding:0px 10px;} .userzp_zp a.name{display:block;height:28px;width:232px;line-height:28px;font-size:14px;color:#333;font-weight:bold;padding:10px 14px 0px;} .userzp_zp a.name:hover{text-decoration:underline;color:#ff3232;} .userzp_zp span.span1{height:24px;line-height:24px;padding:0px 14px 0px;display:block;color:#ff3232;font-size:12px;} .userzp_zp span.span2{height:24px;line-height:24px;padding:0px 14px 0px;display:block;color:#bbb;font-size:12px;} .userzp_zp a.link{height:24px;line-height:24px;padding:0px 14px 0px;color:#ff3232;font-size:12px;} .userzp_zp a.link:hover{text-decoration:underline;} .userzp_zp p.p1{color:#888;line-height:18px;padding:4px 14px;height:36px;overflow:hidden;} .userzp_zp span.pl{height:24px;line-height:24px;padding:0px 14px 0px;color:#999;font-size:12px;} .userzp_zp span.pl em{color:#ff3232;} .userzp_zp span.plc{position:absolute;right:14px;top:260px;line-height:28px;color:#999;} .userheader{height:210px;margin:0px auto 20px;width:990px;background:#fff;} .userheader .avatar_w{height:210px;width:210px;float:left;} .userheader .avatar_w img{display:block;height:210px;width:210px;} .userheader .user_userinfo{width:170px;padding:20px;float:right;background:#fff;height:170px;} .userheader .user_userinfo ul{} .userheader .user_userinfo ul li{height:81px;width:81px;float:left;margin:0px 8px 8px 0px;background:#f8f8f8;} .userheader .user_userinfo ul li.li1,.userheader .user_userinfo ul li.li1 a{-webkit-border-radius: 32px;-webkit-border-bottom-right-radius: 0;-moz-border-radius: 32px;-moz-border-radius-bottomright: 0;border-radius: 32px;border-bottom-right-radius: 0;} .userheader .user_userinfo ul li.li2,.userheader .user_userinfo ul li.li2 a{-webkit-border-radius: 32px;-webkit-border-bottom-left-radius: 0;-moz-border-radius: 32px;-moz-border-radius-bottomleft: 0;border-radius: 32px;border-bottom-left-radius: 0;} .userheader .user_userinfo ul li.li3,.userheader .user_userinfo ul li.li3 a{-webkit-border-radius: 32px;-webkit-border-top-right-radius: 0;-moz-border-radius: 32px;-moz-border-radius-topright: 0;border-radius: 32px;border-top-right-radius: 0;} .userheader .user_userinfo ul li.li4,.userheader .user_userinfo ul li.li4 a{-webkit-border-radius: 32px;-webkit-border-top-left-radius: 0;-moz-border-radius: 32px;-moz-border-radius-topleft: 0;border-radius: 32px;border-top-left-radius: 0;} .userheader .user_userinfo ul li.li1{margin:0px 8px 8px 0px;} .userheader .user_userinfo ul li.li2{margin:0px 0px 8px 0px;} .userheader .user_userinfo ul li.li3{margin:0px 8px 0px 0px;} .userheader .user_userinfo ul li.li4{margin:0px 0px 0px 0px;} .userheader .user_userinfo ul li a{display:block;height:81px;width:81px;box-shadow:0px 0px 6px rgba(0,0,0,0.05) inset;} .userheader .user_userinfo ul li a:hover{background:#ff3232;color:#fff;} .userheader .user_userinfo ul li a span{font-size:12px;color:#999;line-height:20px;display:block;padding-left:14px;padding-top:14px;} .userheader .user_userinfo ul li a strong{display:block;font-size:18px;color:#ff3232;font-family:Microsoft Yahei;padding-left:14px;line-height:32px;} .userheader .user_userinfo ul li a strong.grey{color:#999;} .userheader .user_userinfo ul li.li4 a strong{font-size:18px;} .userheader .user_userinfo ul li a:hover span{color:#fff;} .userheader .user_userinfo ul li a:hover strong{color:#fff;} .userh_main{float:left;width:570px;height:210px;} .userh_main .tools{position:absolute;right:0px;top:20px;height:22px;float:right;display:inline-block;vertical-align:top;*display:inline;*zoom:1;} .userh_main .tools a{display:inline-block;vertical-align:top;*display:inline;*zoom:1;height:22px;margin-left:6px;} .userh_main .tools a.mail{display:inline-block;vertical-align:top;*display:inline;*zoom:1;height:22px;padding:0px 12px;background:#eee;text-align:center;color:#999;line-height:22px;} .userh_main .tools a.mail:hover{color:#666;background:#ddd;} .userh_main div.info1{height:105px;border-bottom:1px solid #eee;margin:0px 20px;width:530px;position:relative;} .userh_main div.info1 h1{font-size:24px;color:#333;line-height:44px;font-family:Microsoft Yahei;padding-top:14px;} .userh_main div.info1 span.info{line-height:22px;color:#999;} .userh_main div.info1 span.info em{padding:0px 4px;} .userh_main div.info1 span.info a{color:#999;} .userh_main div.info1 span.info a:hover{color:#ff3232;text-decoration:underline;} .userh_main div.info1 a.edit{line-height:24px;color:#999;position:absolute;top:24px;right:0px;} .userh_main div.info1 a.edit:hover{color:#ff3232;text-decoration:underline;} .userh_main p.sign{font-size:12px;color:#666;line-height:24px;padding:14px 18px;} .user_nav{height:50px;width:990px;margin:0px auto 20px;} .user_nav ul{} .user_nav ul li{display:inline-block;vertical-align:top;*display:inline;*zoom:1;height:50px;line-height:50px;font-size:14px;color:#333;} .user_nav ul li a{color:#333;display:inline-block;vertical-align:top;*display:inline;*zoom:1;padding:0px 0px;text-align:center;margin:0px 20px;} .user_nav ul li a:hover{color:#ff3232;text-decoration:underline;} .user_nav ul li.current a{border-bottom:4px solid #ff3232;color:#ff3232;font-weight:bold;} .user_nav ul li.create_cp{float:right;margin:0px;width:120px;background:#f5f5f5;padding:8px;border-left:1px solid #ddd;height:34px;} .user_nav ul li.create_cp a{color:#ff3232;font-weight:bold;display:block;background:#f5f5f5;height:34px;line-height:34px;} .user_nav ul li.create_cp a:hover{background:#ff3232;color:#fff;} .user_main{width:990px;margin:0px auto 20px;background:#fafafa;} .day_w{width:988px;} .day_left{width:232px;float:left;} .day_left .date{width:232px;background:#fff;height:80px;padding:20px 0px 0px;} .day_left .date .date1{float:left;width:104px;line-height:60px;color:#999;padding:0px 0px 0px 24px;text-align:left;font-size:18px;font-family:Microsoft Yahei;} .day_left .date .date2{font-size:54px;line-height:60px;padding:0px 24px 0px 0px;text-align:right;width:70px;float:right;font-family:arial;} .day_right{width:756px;float:right;} .user_backbtn1{display:block;height:68px;width:68px;float:left;border-right:1px solid #eee;background:#fff url(../images/userbackbtn1.gif) 0px 0px no-repeat;} .user_backbtn1:hover{background-position:0px -68px;} .user_inner_tab{height:68px;width:990px;background:#fff;position:relative;border-bottom:1px solid #eee;z-index:100;} .user_inner_tab_758{width:758px;} .user_inner_tab_ul{padding:14px 20px;float:left;} .user_inner_tab_ul li{display:inline-block;vertical-align:top;*display:inline;*zoom:1;height:40px;line-height:40px;font-size:14px;position:relative;color:#333;float:left;} .user_inner_tab_ul li a.link{display:block;background:#fff;color:#333;padding:0px 14px;margin-right:10px;border-radius:4px;} .user_inner_tab_ul li a.link:hover{background-color:#f5f5f5;} .user_inner_tab_ul li a.current{display:inline-block;vertical-align:top;*display:inline;*zoom:1;padding:0px 14px;margin-right:10px;border-radius:4px;background:#ff3232;color:#fff;} .user_inner_tab_ul li a.current:hover{background-color:#ff3232;} .user_inner_tab_ul li.hasmore{} .user_inner_tab_ul li.hasmore a.link{padding-right:30px;background:url(../images/arrow_20x80.gif) right -40px no-repeat;} .user_inner_tab_ul li.hasmore a.current{padding-right:30px;background:#ff3232 url(../images/arrow_20x80.gif) right 0px no-repeat;} .user_inner_tab_ul li.hasmore a.link:hover{background-color:#f5f5f5;} .user_inner_tab_ul li.hasmore a.current:hover{background-color:#ff3232;} .user_inner_tab_ul li.hasmore .more{position:absolute;right:10px;top:40px;background:#fff;border:1px solid #eee;border-top:0px;border-bottom:0px;display:none;} .user_inner_tab_ul li.hasmore_cur .more{display:block;} .user_inner_tab_ul li.hasmore .more a{display:block;height:40px;line-height:40px;text-align:center;font-size:14px;color:#333;border-bottom:1px solid #eee;padding:0px 14px;_width:100px;} .user_inner_tab_ul li.hasmore .more a:hover{color:#ff3232;background:#fafafa;} .user_inner_tab_btn{position:absolute;top:14px;right:20px;display:inline-block;vertical-align:top;*display:inline;*zoom:1;height:40px;line-height:40px;font-size:14px;background:#f5f5f5;color:#333;padding:0px 14px;border-radius:4px;} .user_inner_tab_btn:hover{background:#eee;} .user_inner_tab_links{position:absolute;top:14px;right:120px;display:inline-block;vertical-align:top;*display:inline;*zoom:1;height:40px;line-height:40px;font-size:12px;} .user_inner_tab_links_r0{right:20px;} .user_inner_tab_links a{color:#999;} .user_inner_tab_links a:hover{color:#ff3232;text-decoration:underline;} .listtyle1_page{height:40px;margin:40px auto;text-align:center;width:100%;clear:both;} .listtyle1_page_w{display:inline-block;vertical-align:top;*display:inline;*zoom:1;margin:0px auto;} .listtyle1_page_w a{display:inline-block;vertical-align:top;*display:inline;*zoom:1;height:40px;line-height:40px;padding:0px 13px;min-width:14px;text-align:center;margin-right:1px;background:#fff;white-space: nowrap;color:#666;font-size:14px;_width:10px;} .listtyle1_page_w span{display:inline-block;vertical-align:top;*display:inline;*zoom:1;padding:0px 10px;min-width:14px;line-height:40px;} .listtyle1_page_w a.current{background:#ff3232;color:#fff;} .listtyle1_page_w a:hover{background:#ff3232;color:#fff;} .listtyle1_page_w a.prev{margin-right:20px;} .listtyle1_page_w a.next{margin-left:20px;} .listtyle1_page1{height:40px;margin:40px auto;text-align:center;width:100%;clear:both;} .listtyle1_page_w1{display:inline-block;vertical-align:top;*display:inline;*zoom:1;margin:0px auto;} .listtyle1_page_w1 a{display:inline-block;vertical-align:top;*display:inline;*zoom:1;height:40px;line-height:40px;padding:0px 13px;min-width:14px;text-align:center;margin-right:1px;background:#eee;white-space: nowrap;color:#666;font-size:14px;_width:10px;} .listtyle1_page_w1 span{display:inline-block;vertical-align:top;*display:inline;*zoom:1;padding:0px 10px;min-width:14px;line-height:40px;} .listtyle1_page_w1 a.current{background:#ff3232;color:#fff;} .listtyle1_page_w1 a:hover{background:#ff3232;color:#fff;} .listtyle1_page_w1 a.prev{margin-right:20px;} .listtyle1_page_w1 a.next{margin-left:20px;} .listtyle3_list{width:756px;float:left;} .listtyle3{margin-left:17px;background:#fff;height:360px;width:232px;position:relative;float:left;margin-bottom:17px;_display:inline;} .ml0{margin-left:0px;} .listtyle3_332{height:332px;} .listtyle3_354{height:354px;} .listtyle3 div.img{position:relative;height:232px;width:232px;} .listtyle3 div.img a.img{display:block;height:232px;width:232px;} .listtyle3 div.img img.cpimg{display:block;height:232px;width:232px;} .listtyle3 div.img .gx{display:inline-block;vertical-align:top;*display:inline;*zoom:1;height:38px;position:absolute;right:-6px;top:12px;background:url(../images/gxarrow.png) right 32px no-repeat;} .listtyle3 div.img .gx a{display:inline-block;vertical-align:top;*display:inline;*zoom:1;height:32px;padding:0px 12px;background:#60a531;line-height:32px;color:#fff;box-shadow:0px 1px 1px rgba(0,0,0,0.5);font-size:14px;} .listtyle3 div.img .gx span{display:inline-block;vertical-align:top;*display:inline;*zoom:1;height:32px;padding:0px 12px;background:#60a531;line-height:32px;color:#fff;box-shadow:0px 1px 1px rgba(0,0,0,0.5);font-size:14px;} .listtyle3 div.img .gx a:hover{text-decoration:underline;} .listtyle3 .info2 {position:absolute;height:232px;width:232px;left:0px;top:0px;overflow:hidden;} .listtyle3 .info2 a.link_cp{display:block;height:232px;width:232px;overflow:hidden;position:absolute;left:0;top:0px;background:url(../images/blank.gif) 0px 0px repeat;} .listtyle3 .info2 a.img{display:block;height:232px;width:232px;background:url(../images/blank.gif) 0px 0px repeat;} .listtyle3 .info2_c{display:block;height:232px;width:232px;background:url(../images/black75.png) 0px 0px repeat;position:absolute;left:232px;top:0px;overflow:hidden;} .listtyle3 .info2 .gx2{z-index:100;overflow:hidden;display:inline-block;vertical-align:top;*display:inline;*zoom:1;height:32px;position:absolute;right:-6px;top:12px;background:#60a531;box-shadow:0px 1px 1px rgba(0,0,0,0.5);line-height:32px;color:#fff;font-size:14px;} .listtyle3 .info2 .gx2 span{padding:0px 12px;display:inline-block;vertical-align:top;*display:inline;*zoom:1;} .listtyle3 .info2 .gx2 a{line-height:32px;color:#fff;font-size:14px;} .listtyle3 .info2 .gx2 a:hover{text-decoration:underline;} .listtyle3 .info2 a.link_cp ul{padding:71px 0px 41px;height:120px;} .listtyle3 .info2 a.link_cp ul li{height:40px;line-height:40px;color:#fff;font-size:12px;float:left;width:100px;background:url(../images/list_style1_icons.png) no-repeat;text-indent:50px;} .listtyle3 .info2 a.link_cp ul li.col2{width:232px;} .listtyle3 .info2 a.link_cp ul li.zl{background-position:10px 0px;} .listtyle3 .info2 a.link_cp ul li.gy{background-position:10px -40px;} .listtyle3 .info2 a.link_cp ul li.kw{background-position:10px -80px;} .listtyle3 .info2 a.link_cp ul li.nd{background-position:10px -120px;} .listtyle3 .info2 a.link_cp ul li.sj{background-position:10px -160px;} .listtyle3 .info2 a.link_cp ol{padding:51px 0px 41px 20px;height:120px;} .listtyle3 .info2 a.link_cp ol li{height:24px;line-height:24px;color:#fff;font-size:12px;float:left;display:inline-block;vertical-align:top;*display:inline;*zoom:1;padding:0px 11px;margin-right:10px;margin-bottom:10px;} .listtyle3 .info2 a.link_cp ol li.yi{background:#60a531;} .listtyle3 .info2 a.link_cp ol li.ji{background:#ff3232;} .listtyle3 .info2 a.link_cp ol li.nor{background:#ff822e;} .listtyle3 .info2 a.link_cp ol li.col2{width:232px;} .listtyle3 div.info1{float:left;width:232px;background:#fff;position:relative;} .listtyle3 div.info1 .info1_t2{position:absolute;right:15px;top:20px;color:red;} .listtyle3 a.title{height:50px;line-height:50px;font-size:14px;color:#333;font-weight:bold;padding-left:14px;} .listtyle3 a.title:hover{color:#ff3232;text-decoration:underline;} .listtyle3 div.info1 .user{height:32px;width:204px;margin:0px auto;} .listtyle3 div.info1 .user .avatar{height:32px;width:32px;display:block;float:left;} .listtyle3 div.info1 .user .avatar img{height:32px;width:32px;display:block;} .listtyle3 div.info1 .user p{float:left;width:160px;line-height:16px;padding-left:10px;color:#666;height:32px;overflow:hidden;} .listtyle3 div.info1 .user p a{color:#ff3232;} .listtyle3 div.info1 .user p a:hover{text-decoration:underline;} .listtyle3 div.info1 .user p strong{color:#ff3232;} .listtyle3 div.info1 span.time {height:44px;display:block;padding:0px 14px;line-height:44px;padding-bottom:0px;color:#999;} .listtyle3 div.info1 span.time em{float:right;} .listtyle3 div.info3{height:100px;position:relative;overflow:hidden;} .listtyle3_354 div.info3{height:122px;} .listtyle3 div.info3 h3{margin-top:10px;height:28px;line-height:28px;text-indent:14px;} .listtyle3 div.info3 h3 a{color:#333;font-size:14px;font-weight:bold;} .listtyle3 div.info3 h3 a:hover{color:#ff3232;} .listtyle3 div.info3 div.d1{height:24px;line-height:24px;padding-left:14px;} .listtyle3 div.info3 div.d1 span{color:#999;padding-right:10px;display:inline-block;vertical-align:top;*zoom:1;*display:inline;} .listtyle3 div.info3 a.author{line-height:24px;color:#ff3232;padding-left:14px;} .listtyle3 div.info3 a.author:hover{text-decoration:underline;} .listtyle3 div.info3 span.belong{display:block;height:24px;line-height:24px;color:#999;padding-left:14px;} .listtyle3 div.info3 span.belong a{color:#666;} .listtyle3 div.info3 span.belong a:hover{color:#ff3232;text-decoration:underline;} .listtyle3 div.info3 .delete{position:absolute;right:0px;bottom:13px;display:block;height:22px;line-height:22px;color:#999;cursor:pointer;} .listtyle3 div.info3 .delete a{color:#999;} .listtyle3 div.info3 .delete a:hover{color:#ff3232;text-decoration:underline;} .usc_w{background:#fafafa;} .fliterstyle1{float:left;width:232px;_overflow:hidden;} .fliterstyle11{padding-top:0px;float:left;width:232px;_overflow:hidden;} .fliterstyle1 div.chosedbox{padding:14px 0px 6px 14px;width:218px;background:#fff;overflow:hidden;margin-bottom:20px;} .fliterstyle1 div.chosedbox a{float:left;margin:0px 8px 8px 0px;display:block;height:32px;width:98px;background:#ff3232 url(../images/liststyle1_icons.png) right 0px no-repeat;color:#fff;line-height:32px;font-size:12px;text-indent:14px;overflow:hidden;_display:inline;} .fliterstyle1 div.chosedbox a:hover{background-color:#e90808;} .fliterstyle1_main{width:232px;background:#fff;margin-bottom:20px;} .fliterstyle1_main .tab{height:50px;background:#f5f5f5;} .fliterstyle1_main .tab li{float:left;width:116px;position:relative;} .fliterstyle1_main .tab li a{display:block;color:#333;font-weight:bold;text-align:center;font-size:14px;line-height:50px;} .fliterstyle1_main .tab li a:hover{text-decoration:underline;} .fliterstyle1_main .tab li.current{background:#fff;} .fliterstyle1_main .tab li.current a{color:#ff3232;} .fliterstyle11 .fliterstyle1_main{width:232px;margin-bottom:20px;} .fliterstyle11 .fliterstyle1_main .tab{height:40px;background:#fafafa;padding:14px;width:204px;} .fliterstyle11 .fliterstyle1_main .tab li{float:left;width:102px;position:relative;height:40px;} .fliterstyle11 .fliterstyle1_main .tab li a{display:block;color:#333;font-weight:bold;text-align:center;font-size:14px;line-height:40px;} .fliterstyle11 .fliterstyle1_main .tab li a:hover{text-decoration:underline;} .fliterstyle11 .fliterstyle1_main .tab li.current{background:#ff3232;} .fliterstyle11 .fliterstyle1_main .tab li.current a{color:#fff;} .fliterstyle1_main .tabcon{overflow:hidden;float:left;} .fliterstyle1_main .tabcon a.back{display:block;height:50px;line-height:50px;width:232px;font-size:14px;color:#333;text-indent:14px;background:#fff;margin-bottom:20px;} .fliterstyle1_main .tabcon a.back:hover{background:#f5f5f5;color:#ff3232;text-decoration:underline;} .fliterstyle1_main .tabcon dl{} .fliterstyle1_main .tabcon dl dt{display:block;height:50px;line-height:50px;color:#333;text-indent:14px;font-size:14px;background:#fff;border-bottom:1px solid #ddd;float:left;width:232px;position:relative;} .fliterstyle1_main .tabcon dl dt a{color:#333;} .fliterstyle1_main .tabcon dl dt a:hover{text-decoration:underline;color:#ff3232;} .fliterstyle1_main .tabcon dl dt a.retest{color:#999;position:absolute;right:14px;top:0px;line-height:50px;font-size:12px;} .fliterstyle1_main .tabcon dl dt a.retest:hover{color:#ff3232;text-decoration:underline;} .fliterstyle1_main .tabcon dl dd{display:none;padding:0px 0px 6px 14px;width:218px;background:#fafafa;float:left;} .fliterstyle1_main .tabcon dl dd.row2 a{float:left;margin:0px 8px 8px 0px;display:block;height:30px;width:202px;border:1px solid #eee;background:#fff;color:#333;line-height:30px;font-size:12px;text-align:center;overflow:hidden;position:relative;} .fliterstyle1_main .tabcon dl dd.row2 a span.yjtip{position:absolute;height:20px;background:#60a531;color:#e90808;line-height:20px;color:#fff;padding:0px 5px;display:inline-block;vertical-align:top;*display:inline;*zoom:1;left:5px;top:5px;display:none;} .fliterstyle1_main .tabcon dl dd.row2 a strong{display:inline-block;vertical-align:top;*display:inline;*zoom:1;float:left;padding-left:14px;} .fliterstyle1_main .tabcon dl dd.row2 a em{display:inline-block;vertical-align:top;*display:inline;*zoom:1;float:right;padding-right:14px;color:#999;} .fliterstyle1_main .tabcon dl dd.bb0{border-bottom:0px;} .fliterstyle1_main .tabcon dl dd a{float:left;margin:0px 8px 8px 0px;display:block;height:30px;width:96px;border:1px solid #eee;background:#fff;color:#333;line-height:30px;font-size:12px;text-align:center;overflow:hidden;} .fliterstyle1_main .tabcon dl dd a:hover{border:1px solid #aaa;background:#fff url(../images/liststyle1_icons.png) right -66px no-repeat;} .fliterstyle1_main .tabcon dl dd a.chosed{border:1px solid #f3f3f3;background:#fff url(../images/liststyle1_icons.png) right -34px no-repeat;} .fliterstyle1_main .tabcon dl dd.long{height:30px;line-height:30px;color:#666;text-align:center;padding:7px;border-top:1px solid #eee;} .fliterstyle1_main .tabcon dl dd.long:hover{background:#eee;cursor:pointer;} .fliterstyle1_main .tabcon dl dd a.filter_otherbtn{background:#ddd;border:1px solid #ccc;width:202px;} .fliterstyle1_main .tabcon dl dd a.filter_otherbtn:hover{background:#ccc;} .fliterstyle1_main .tabcon dl dd div.others{display:none;float:left;} .fliterstyle1_main .tabcon dl dd a.filter_otherbtn{} .fliterstyle1_main .tabcon dl.on dt{} .fliterstyle1_main .tabcon dl.on dd{display:block;} .userfav_ztheader{width:736px;margin-left:20px;background:#fff;margin-bottom:20px;float:left;} .userfav_ztheader_main{position:relative;} .userfav_ztheader .headerimg_w{display:block;width:736px;overflow:hidden;} .userfav_ztheader .headerimg{width:736px;display:block;} .userfav_ztheader h1.title{font-size:24px;color:#333;line-height:50px;font-family:Microsoft Yahei;text-indent:20px;padding-top:10px;} .userfav_ztheader h1.title a{color:#333;} .userfav_ztheader h1.title a:hover{color:#ff3232;} .userfav_ztheader p{line-height:24px;color:#666;padding:5px 20px 5px;font-size:14px;} .userfav_ztheader span.info{height:32px;line-height:32px;color:#999;display:block;padding:0px 20px 10px;position:relative;} .userfav_ztheader span.info a{color:#ff3232;} .userfav_ztheader span.info a:hover{text-decoration:underline;} .userfav_ztheader span.info em{display:block;position:absolute;right:20px;top:0px;line-height:32px;} .userfav_ztheader a.delete{display:inline-block;vertical-align:top;*display:inline;*zoom:1;position:absolute;top:20px;right:20px;background:#eee;color:#999;padding:0px 10px;height:24px;line-height:24px;display:none;} .userfav_ztheader a.delete:hover{background:#ff3232;color:#fff;} .userfav_ztheader a.delete_cd{display:inline-block;vertical-align:top;*display:inline;*zoom:1;position:absolute;top:20px;right:20px;background:#eee;color:#999;padding:0px 10px;height:24px;line-height:24px;display:none;} .userfav_ztheader a.delete_cd:hover{background:#ff3232;color:#fff;} .create_cd_btn{height:50px;width:230px;background:#ff3232;color:#fff;font-weight:bold;font-size:14px;text-align:center;border:1px solid #e90808;line-height:50px;display:block;margin-bottom:20px;} .create_cd_btn:hover{background:#e90808;} .user_forum{width:736px;padding-left:20px;float:right;} .forumlist_style2{width:948px;background:#fff;float:left;margin:0px;border:1px solid #eee;border-bottom:0px;} .forumlist_style2_w736{width:736px;} .forumpage{height:80px;} .postforum_btn{background:#ff3232;border:1px solid #e90808;height:38px;width:98px;margin:20px;display:block;line-height:38px;color:#fff;font-size:14px;font-weight:bold;text-align:center;float:left;_display:inline;} .postforum_btn:hover{background:#e90808;} .backtoforum_btn{background:#f5f5f5;border:1px solid #e5e5e5;height:38px;width:98px;margin:20px;display:block;line-height:38px;color:#888;font-size:14px;font-weight:bold;text-align:center;float:left;_display:inline;} .backtoforum_btn:hover{background:#e5e5e5;color:#555;} .postforum_page{padding:24px 20px;float:right;display:inline-block;*display:inline;*zoom:1;vertical-align:top;} .postforum_page{} .postforum_page li{display:inline-block;*display:inline;*zoom:1;vertical-align:top;height:32px;padding:0px 4px;white-space:nowrap;font-size:14px;color:#666;line-height:32px;text-align:center;} .postforum_page li a{display:inline-block;*display:inline;*zoom:1;vertical-align:top;height:32px;padding:0px 8px;min-width:20px;_width:20px;white-space:nowrap;text-align:center;background:#eee;color:#666;} .postforum_page li a:hover{background:#ff3232;color:#fff;} .postforum_page li span{display:inline-block;*display:inline;*zoom:1;vertical-align:top;height:32px;padding:0px 6px;min-width:20px;_width:20px;white-space:nowrap;text-align:center;} .forumlist_style2_toolbar{background:#f5f5f5;border-top:1px solid #ddd;border-bottom:1px solid #ddd;height:60px;} .forumlist_style2_toolbar .postskind{float:left;height:60px;padding-left:20px;width:450px;float:left;color:#333;font-size:14px;font-family:Microsoft Yahei;position:relative;line-height:60px;} .forumlist_style2_w736 .forumlist_style2_toolbar .postskind{width:516px;} .forumlist_style2_toolbar .re_and_view{float:left;width:90px;line-height:60px;height:60px;color:#333;font-size:14px;font-family:Microsoft Yahei;} .forumlist_style2_toolbar .author{float:left;width:90px;line-height:60px;height:60px;color:#333;font-size:14px;font-family:Microsoft Yahei;} .forumlist_style2_toolbar .postskind dl{position:absolute;left:86px;top:14px;font-size:14px;line-height:32px;width:80px;padding-bottom:10px;} .forumlist_style2_toolbar .postskind dl.on{background:#fff;border:1px solid #ddd;left:85px;top:13px;} .forumlist_style2_toolbar .postskind dl dt{display:block;height:32px;width:80px;font-size:14px;color:#ff3232;text-indent:10px;background:url(../images/littlearrow.png) 70px 24px no-repeat;} .forumlist_style2_toolbar .postskind dl dd{height:32px;line-height:32px;text-indent:10px;display:none;} .forumlist_style2_toolbar .postskind dl dd a{color:#666;font-size:14px;} .forumlist_style2_toolbar .postskind dl dd a:hover{color:#ff3232;text-decoration:underline;} .forumlist_style2_toolbar .postskind dl.on dt{background-image:none;} .forumlist_style2_toolbar .postskind dl.on dd{display:block;} .forumlist_style2_list{} .forumlist_style2_list li{border-bottom:1px solid #eee;} .forumlist_style2_list li div.div1{float:left;width:60px;height:60px;} .forumlist_style2_list li div.div1 em{display:block;height:60px;width:60px;} .forumlist_style2_list li div.div1 em.hot{background:url(../images/forumicons.png) 0px 0px no-repeat;} .forumlist_style2_list li div.div1 em.top{background:url(../images/forumicons.png) 0px -60px no-repeat;} .forumlist_style2_list li div.div1 em.img{background:url(../images/forumicons.png) 0px -120px no-repeat;} .forumlist_style2_list li div.div1 em.others{background:url(../images/forumicons.png) 0px -180px no-repeat;} .forumlist_style2_list li div.div2{float:left;width:700px;overflow:hidden;} .forumlist_style2_list li div.div22{width:630px;} .forumlist_style2_list li div.div2 h3{padding:20px 10px 20px 0px;} .forumlist_style2_list li div.div2 h3 a{color:#333;font-size:14px;line-height:22px;} .forumlist_style2_list li div.div2 h3 a strong.searchword{color:#ff3232;font-weight:bold;} .forumlist_style2_list li div.div2 h3 a strong.cp{color:#ff3232;font-weight:bold;} .forumlist_style2_list li div.div2 h3 a:hover{color:#ff3232;text-decoration:underline;} .forumlist_style2_list li div.div2 h3 span{padding:0px 10px;color:#ff3232;} .forumlist_style2_list li div.div3{float:left;height:60px;width:187px;} .forumlist_style2_list li div.div33{width:121px;} .forumlist_style2_list li div.div3 a.img{height:40px;width:40px;display:block;float:left;border-radius:20px;overflow:hidden;margin:10px 6px 10px 0px;} .forumlist_style2_list li div.div3 a.img img{height:40px;width:40px;display:block;float:left;border-radius:20px;overflow:hidden;} .forumlist_style2_list li div.div3 div.t{height:36px;float:left;width:140px;overflow:hidden;padding:12px 0px;overflow:hidden;} .forumlist_style2_list li div.div3 div.t a{line-height:18px;color:#ff3232;white-space: nowrap;} .forumlist_style2_list li div.div3 div.t a:hover{text-decoration:underline;} .forumlist_style2_list li div.div3 div.t em{color:#aaa;line-height:18px;} .forumlist_style2_list li div.div3 span.count{line-height:60px;text-align:center;color:#999;} .tizhi_w{width:758px;float:left;background:#fff;} .alertbox_w{width:400px;} .alertbox_w .ul_w{width:400px;background:#f5f5f5;border-bottom:1px solid #ddd;padding:25px 0px 15px;border-bottom:1px solid #ddd;} .alertbox_w ul{width:340px;margin:0px auto;height:250px;overflow:auto;} .alertbox_w ul li{height:38px;line-height:38px;color:#666;background:#fff;margin:0px auto 10px;width:300px;cursor:pointer;border:1px solid #fff;} .alertbox_w ul li:hover{border:1px solid #ddd;} .alertbox_w .btns{width:400px;height:84px;position:relative;overflow:hidden;} .alertbox_w .btns a.ok{display:block;height:42px;width:100px;background:#ff3232;border:1px solid #d90808;font-size:14px;color:#fff;text-align:center;top:20px;right:20px;line-height:42px;position:absolute;} .alertbox_w .btns a.ok:hover{background:#e90808;} .alertbox_w .btns a.delthiscp{display:block;height:42px;width:100px;background:#f5f5f5;border:1px solid #ddd;font-size:14px;color:#666;text-align:center;top:20px;left:20px;line-height:42px;position:absolute;} .alertbox_w .btns a.delthiscp:hover{background:#ddd;} .alertbox_w ul li span.checkbox{display:block;height:40px;width:40px;float:left;background:url(../images/checkboxstyle1.gif) 0px 0px no-repeat;} .alertbox_w ul li.checkbox_checked span.checkbox{background-position:0px -40px;} .alertbox_w ul li strong{float:left;display:block;height:40px;width:250px;font-size:14px;color:#666;text-align:left;} .sixin_list{background:#fff;width:990px;float:left;} .sixin_list1{width:758px;} .sixin_list_title{height:50px;line-height:50px;font-size:14px;color:#333;text-indent:14px;border-bottom:1px solid #ddd;position:relative;} .sixin_list_title span.btns{height:50px;font-size:12px;color:#999;padding:0px 14px;position:absolute;right:0px;top:0px;} .sixin_list_title span.btns a{color:#999;padding-left:10px;} .sixin_list_title span.btns a:hover{color:#ff3232;text-decoration:underline;} .sixin_list_ul{} .sixin_list_ul li{height:80px;width:950px;border-bottom:1px solid #eee;padding:20px 20px;position:relative;} .sixin_list_ul li:hover{background:#fafafa;} .sixin_list_ul li a.img{float:left;height:80px;width:80px;position:relative;} .sixin_list_ul li a.img img{height:80px;width:80px;display:block;} .sixin_list_ul li div.c{float:left;height:80px;width:850px;padding-left:14px;} .sixin_list_ul li div.c strong.name{display:block;height:32px;line-height:32px;font-size:14px;color:#333;font-weight:bold;} .sixin_list_ul li div.c strong.name a{color:#333;} .sixin_list_ul li div.c strong.name a span{color:#ff3232;} .sixin_list_ul li div.c strong.name a:hover{color:#ff3232;text-decoration:underline;} .sixin_list_ul li div.c p{font-size:14px;color:#666;line-height:24px;height:48px;overflow:hidden;} .sixin_list_ul li div.c p a{color:#666;} .sixin_list_ul li div.c p a:hover{color:#ff3232;text-decoration:underline;} .sixin_list_ul li div.c p strong{font-size:12px;padding-right:10px;} .sixin_list_ul li div.c p strong em{color:#ff3232;padding-right:4px;} .sixin_list_ul li div.c span.time{position:absolute;height:20px;line-height:20px;right:20px;top:20px;color:#999;} .sixin_list_ul li div.c span.time a{color:#999;padding-left:10px;display:none;} .sixin_list_ul li div.c span.time a:hover{color:#ff3232;} .sixin_list_ul li div.c em.info{height:24px;line-height:24px;display:block;color:#999;} .sixin_list_ul li div.c em.info span{color:#666;} .sixin_list_w{background:#fff;} .sixin_list_w_f5f5f5{padding-bottom:40px;} .sixin_list_w div.fast_re{padding:20px 68px 0px;height:40px;position:relative;} .sixin_list_w div.fast_re input.text{height:18px;line-height:18px;font-size:14px;color:#999;padding:10px;border:1px solid #ddd;width:559px;background:#fafafa;} .sixin_list_w div.fast_re button.send{position:absolute;left:658px;height:38px;background:#ff3232;color:#fff;font-size:14px;width:80px;text-align:center;border:0px;line-height:38px;top:21px;} .sixin_qq{width:668px;padding-left:68px;} .sixin_qq_li{padding:20px 0px 0px 0px;} .sixin_qq_li a.avatar{display:block;height:80px;width:80px;} .sixin_qq_li a.avatar img{display:block;height:80px;width:80px;} .sixin_qq_li div.d{width:500px;} .sixin_qq_li div.c{display:inline-block;vertical-align:top;*display:block;*zoom:1;padding:14px;background:#fff;position:relative;width: expression(this.width > 467 ? '467px': true); max-width: 467px;border-radius:8px;} .sixin_qq_li div.d p{font-size:14px;line-height:24px;} .sixin_qq_li div.d p a{color:#ff3232;text-decoration:underline;} .sixin_qq_li div.d p a:hover{text-decoration:underline;} .sixin_qq_li span.arrow{background:url(../images/sixin_arrow.gif) no-repeat;display:block;height:12px;width:12px;overflow:hidden;top:10px;position:absolute;} .sixin_qq_li em.time{display:block;height:32px;line-height:32px;} .sixin_qq_li em.time a.delete{padding:0px 10px;color:#999;display:none;} .sixin_qq_li em.time a.delete:hover{text-decoration:underline;color:#ff3232;} .sixin_qq_li_left a.avatar{float:left;} .sixin_qq_li_left div.d{float:left;} .sixin_qq_li_left div.c{float:left;background:#fafafa;border:1px solid #eee;margin-left:20px;_display:inline;box-shadow:2px 2px 2px rgba(0,0,0,0.2);} .sixin_qq_li_left div.c p{color:#333;} .sixin_qq_li_left span.arrow{left:-12px;background-position:0px 0px;} .sixin_qq_li_left em.time{color:#999;float:left;padding-left:20px;} .sixin_qq_li_right a.avatar{float:right;} .sixin_qq_li_right div.d{float:right;} .sixin_qq_li_right div.c{float:right;background:#ff3232;color:#fff;margin-right:20px;_display:inline;box-shadow:-2px 2px 2px rgba(0,0,0,0.3);} .sixin_qq_li_right div.c p{color:#fff;} .sixin_qq_li_right div.c p a{color:#fff;text-decoration:underline;} .sixin_qq_li_right span.arrow{right:-10px;background-position:0px -12px;} .sixin_qq_li_right em.time{color:#999;text-align:right;padding-right:20px;} .useredit_w{width:922px;background:#fafafa;padding-left:68px;} .useredit_ul{padding:20px 0px 40px;} .useredit_ul li{float:left;margin:5px auto;} .useredit_ul dl dt{display:block;height:40px;line-height:40px;text-align:right;width:100px;float:left;color:#666;font-size:14px;padding-right:5px;} .useredit_ul dl dd.dd1{float:left;width:330px;float:left;} .useredit_ul dl dd.dd1 input.text{height:20px;padding:9px;border:1px solid #ddd;width:310px;font-size:14px;color:#999;} .useredit_ul dl dd.dd1 input.text_l{height:20px;padding:9px;border:1px solid #ddd;width:310px;font-size:14px;color:#999;} .useredit_ul dl dd.dd1 .textarea1{padding:9px;border:1px solid #ddd;height:150px;width:310px;font-size:14px;color:#999;} .useredit_ul dl dd.dd1 .textarea2{padding:9px;border:1px solid #ddd;height:80px;width:310px;font-size:14px;color:#999;} .useredit_ul dl dd.dd1 .submit{height:38px;width:80px;border:1px solid #E90808;background:#ff3232;color:#fff;font-size:14px;_border:none;} .useredit_ul dl dd.dd1 .submit:hover{background:#e90808;} .useredit_ul dl dd.dd1 img.useravatar{display:block;height:160px;width:160px;} .useredit_ul dl dd.dd1 .addnewavatar{height:160px;width:160px;background:#ddd;position:relative;overflow:hidden;} .useredit_ul dl dd.dd1 .addnewavatar input{font-size:200px;position:absolute;right:0px,top:0px; opacity: 0;-ms-filter: "alpha(opacity=0)";filter: alpha(opacity=0); zoom: 1;cursor:pointer;} .useredit_ul dl dd.dd1 select{padding:4px;position:relative;top:5px;margin-right:10px;} .useredit_ul dl dd.dd1 span{line-height:40px;color:#999;font-size:14px;} .useredit_ul dl dd.dd2{float:left;width:300px;height:40px;float:left;line-height:40px;} .useredit_ul dl dd.dd2 span.tip{line-height:40px;padding-left:10px;color:#999;} .useredit_ul1{padding:50px 0px;} .useredit_ul1 li{width:140px;float:left;height:140px;} .useredit_ul1 li .icon{height:100px;width:100px;display:block;margin:0px auto;background:url(../images/dsfbd_icons.gif) no-repeat;} .useredit_ul1 li .icon:hover{box-shadow:0px 0px 6px rgba(0,0,0,0.5);} .useredit_ul1 li .icon1{background-position:0px 0px;} .useredit_ul1 li .icon2{background-position:0px -100px;} .useredit_ul1 li .icon3{background-position:0px -200px;} .useredit_ul1 li .icon4{background-position:0px -300px;} .useredit_ul1 li .icon5{background-position:0px -400px;} .useredit_ul1 li .icon6{background-position:0px -500px;} .useredit_ul1 li p{height:32px;line-height:32px;text-align:center;color:#999;} .useredit_ul1 li p img{display:block;margin:10px auto 0;} .customize-user-avatar img {float: left;margin-right: 10px;width: 100px;height: 100px;} .customize-user-avatar a{color:#307DCA;line-height:24px;cursor:pointer;} .customize-user-avatar a:hover{text-decoration:underline;} .backtouserindex{display:block;height:50px;line-height:50px;color:#333;text-indent:14px;display:block;width:232px;font-size:14px;margin-bottom:20px;background:#fff;} .backtouserindex:hover{color:#ff3232;text-decoration:underline;} .jian{float:left;margin-right:20px;height:340px;width:305px;display:inline;} .bc{clear:both;width:203px;height:48px;margin:0px auto;} .bc input{width:126px;height:34px;background:url("../images/ucenter_bg4.gif") no-repeat scroll left -417px transparent;border:0px;cursor:pointer;} .tu h5{font-size:12px; font-weight:normal; color:#444; height:30px; line-height:20px; margin-bottom:10px;} .tu .da{margin-bottom:20px; color:#444;} .tu .xiao{padding-top:20px; color:#444;} .tu .da img{width:180px; height:180px; border:1px solid #ddd;margin-right:5px;} .tu .zhong img{width:50px; height:50px; border:1px solid #ddd;float:left;margin-right:5px;} .tu .xiao img{width:30px; height:30px; border:1px solid #ddd;float:left;margin-right:5px;} .tu .zhong{margin-right:80px; margin-right:30px\9; display:inline; float:left;white-space:nowrap; color:#444;} .tu .zhong span{ display:block; padding-top:28px;} .tu .xiao span{display:block; padding-top:8px;} img{border:none;} .ui-slider{POSITION: relative; HEIGHT: 16px} .ui-slider-handle{Z-INDEX: 2; border:1px solid #ddd; POSITION: absolute; LINE-HEIGHT: 1;WIDTH: 11px; BACKGROUND: #ffffff;HEIGHT: 16px;FONT-SIZE: 100%;TEXT-DECORATION: none;} .photo-slider{ POSITION: relative} .photo-slider .ui-slider{Z-INDEX: 2;HEIGHT: 16px} .photo-slider .ui-slider-handle{BORDER-BOTTOM: medium none;BORDER-LEFT: medium none;WIDTH: 11px;BACKGROUND: url(../images/p_handle.gif) no-repeat;HEIGHT: 16px; BORDER-TOP: medium none;BORDER-RIGHT: medium none} .photo-slider IMG{ HEIGHT: 18px} .photo-slider IMG{ WIDTH: 160px} .photo-slider{ WIDTH: 160px} .box-head{COLOR: #333} .box-light{MARGIN-TOP: 10px} #photo-canvas IMG{ POSITION: absolute} #photo-canvas TABLE{ Z-INDEX: 2; POSITION: relative} #photo-canvas .window{ border:1px solid #999; WIDTH: 128px; HEIGHT: 128px;} #photo-canvas .window P{ FILTER: alpha(opacity:1); WIDTH: 128px;ZOOM: 1;BACKGROUND: #fff; HEIGHT: 128px;opacity: 0.1} #photo-canvas .overlay{ FILTER: alpha(opacity:50); WIDTH: 40px;ZOOM: 1;BACKGROUND: #ccc;HEIGHT: 40px; opacity: 0.5} .ui-slider{height:16px;position:relative;} .ui-slider-handle{width:11px;height:16px;line-height:1;background:#FFFFFF;border:1px solid #DDDDDD;font-size:100%;position:absolute;text-decoration:none;z-index:2;} .photo-slider{position:relative;float:left;} .photo-slider .ui-slider{height:16px;z-index:2;} .photo-slider .ui-slider-handle{width:11px;height:16px;border:none;background:url(http://www.meishij.net/static/u/images/p_handle.gif) no-repeat;} .photo-slider img{height:18px;} .photo-slider img,.photo-slider{width:260px;} .box-head{color:#333;} .box-light{margin-top:10px;} /*定义本页css*/ #photo-canvas{border:1px solid #999;cursor:move;height:300px;overflow:hidden;position:relative;width:300px;} #photo-canvas img{position:absolute;} #photo-canvas table{position:relative;z-index:2;} #photo-canvas .window{width:180px;height:180px;} #photo-canvas .window p{width:180px;height:180px;opacity:0;zoom:1;} #photo-canvas .overlay{width:60px;height:60px;background:#000;opacity:0.4;zoom:1;filter:alpha(opacity:40);} a.zoom-in {float:left;} a.zoom-out {float:left;} .editusertx_btn a.btn{height:38px;width:100px;background:#ff3232;border:1px solid #e90808;line-height:38px;font-size:14px;color:#fff;display:block;text-align:center;} .editusertx_btn a.btn:hover{background:#e90808;} .editusertx_btn a.clicked{background:#f5f5f5;border:1px solid #ddd;color:#999;} .editusertx_btn a.clicked:hover{background:#eee;} .editusertx_box{} .tzcs_w{width:990px;background:#f5f5f5;} .mssxtest_w{width:990px;background:#fff;overflow:hidden;} .mssxtest_item{width:990px;overflow:hidden;float:left;position:relative;} .mssxtest_scw{width:50000px;} .mssxtest_dl{padding:20px 55px;} .mssxtest_ques{height:60px;line-height:60px;font-size:24px;color:#333;font-family:Microsoft Yahei;padding-bottom:15px;} .mssxtest_options{width:880px;height:250px;} .mssxtest_options a.options{height:40px;width:100px;line-height:40px;background:#eee;color:#666;text-align:center;display:block;font-size:14px;float:left;margin:5px;} .mssxtest_options a.options:hover{color:#fff;background:#ff3232;} .mssxtest_options a.options_checked{color:#fff;background:#ff3232;} .mssxtest_btns{height:66px;text-align:center;width:990px;padding-bottom:50px;} .mssxtest_btns a.btn{display:inline-block;vertical-align:top;*display:inline;*zoom:1;margin:0px 10px;height:66px;width:66px;background:url(../images/mssxtest_btns.png) no-repeat;overflow:hidden;cursor:default;} .mssxtest_btns a.prevbtn{background-position:0px 0px;cursor:pointer;} .mssxtest_btns a.prevbtn:hover{background-position:-66px 0px;} .mssxtest_btns a.nextbtn{background-position:0px -66px;} .mssxtest_btns a.nextbtn_active{background-position:0px -198px;cursor:pointer;} .mssxtest_btns a.prevbtn_active:hover{background-position:-66px -132px;} .mssxtest_btns a.nextbtn_active:hover{background-position:-66px -198px;} .mssxtest_btns a.submitbtn{background-position:0px -264px;} .mssxtest_btns a.submitbtn_active{background-position:0px -330px;cursor:pointer;} .mssxtest_btns a.submitbtn_active:hover{background-position:-66px -330px;} .listtyle_cd1{width:990px;padding:20px 0px;background:#fafafa;} .user_cditem{width:990px;} .user_cditem .l{float:left;height:137px;width:100px;margin-left:20px;_display:inline;} .user_cditem .l .author{height:137px;width:100px;} .user_cditem .l .author a.img{height:88px;width:88px;border-radius:44px;overflow:hidden;display:block;margin:6px 6px 0px;} .user_cditem .l .author a.img img{height:88px;width:88px;border-radius:44px;overflow:hidden;} .user_cditem .l .author a.t{height:32px;width:100px;line-height:32px;font-size:14px;color:#666;text-align:center;display:block;} .user_cditem .l .author a.t:hover{color:#ff3232;text-decoration:underline;} .user_cditem .l .time{height:98px;width:98px;background:#fff;border:1px solid #eee;} .user_cditem .l .time span{display:block;height:32px;width:100px;color:#aaa;line-height:40px;text-align:center;overflow:hidden;} .user_cditem .l .time strong{display:block;height:60px;line-height:50px;color:#333;font-size:50px;font-family:arial;text-align:center;font-weight:bold;} .user_cditem .r{width:828px;float:right;border:1px solid #eee;margin-right:20px;background:#fff;margin-bottom:20px;} .user_cditem .zp_r{width:828px;float:right;margin-right:20px;} .user_cditem_h{height:20px;line-height:20px;position:relative;overflow:hidden;} .user_cditem_h a{color:#ff3232;font-size:18px;font-family:Microsoft Yahei,黑体;} .user_cditem_h a:hover{color:#ff3232;text-decoration:underline;} .user_cditem_h span{position:absolute;right:20px;top:0px;display:block;width:100px;text-align:right;line-height:50px;color:#999;} .user_cditem_h span strong{color:#ff3232;padding:0px 3px;font-weight:bold;} .user_cditem_c{width:788px;padding:20px;height:117px;position:relative;} .user_cditem_c_zt{height:133px;} .user_cditem_c .delthis{height:28px;display:inline-block;vertical-align:top;*display:inline;*zoom:1;padding:0px 10px;text-align:center;background:#C90000;color:#fff;font-size:12px;line-height:28px;position:absolute;right:0px;top:0px;display:none;cursor:pointer;} .user_cditem_c .delthis span:hover{text-decoration:underline;} .user_cditem_c a.bigimg{display:block;height:117px;width:696px;} .user_cditem_c a.bigimg img{height:117px;width:696px;display:block;} .user_cditem_c_zt a.zt{display:block;height:133px;width:788px;} .user_cditem_c_zt a.zt img{display:block;height:133px;width:788px;} .user_cditem_c dl dt{display:block;height:117px;width:290px;float:left;} .user_cditem_c dl dt p.para{line-height:17px;color:#666;padding-top:10px;height:51px;} .user_cditem_c dl dt span.author{line-height:30px;height:30px;display:block;color:#999;padding:6px 10px 0px 0px;} .user_cditem_c dl dt span.author a.img{height:30px;width:30px;display:block;border-radius:15px;overflow:hidden;float:left;padding-right:10px;} .user_cditem_c dl dt span.author a.img img{display:block;height:30px;width:30px;border-radius:15px;} .user_cditem_c dl dt span.author a.t{color:#ff3232;} .user_cditem_c dl dt span.author a.t:hover{text-decoration:underline;} .user_cditem_c dl dt span.author strong{float:right;} .user_cditem_c dl dd{display:block;float:right;height:117px;width:488px;} .user_cditem_c dl dd a{display:block;height:117px;width:117px;position:relative;float:left;margin-left:5px;_display:inline;} .user_cditem_c dl dd a img{display:block;height:117px;width:117px;} .user_cditem_c dl dd a strong{display:block;height:28px;width:117px;line-height:28px;color:#fff;background:url(../images/black75.png) repeat;position:absolute;right:0px;bottom:0px;text-align:center;display:none;} .user_cditem_c dl dd a:hover strong{display:block;} .zp_w{width:990px;background:#fafafa;margin:0px auto 20px;} .zp_l{width:690px;background:#fff;float:left;position:relative;} .zp_bigimg{width:650px;display:block;margin:20px 20px 0px;} .zp_ms{padding:14px 20px 6px;line-height:24px;font-size:14px;color:#333;} .zp_time{height:18px;line-height:18px;color:#999;padding:0px 20px 14px;display:block;} .zp_time a{color:#ff3232;padding:0px 3px;} .zp_time a:hover{text-decoration:underline;} .zp_title_w{height:80px;width:990px;position:relative;background:#fff;border-bottom:1px solid #ddd;} .zp_title{height:80px;line-height:80px;font-size:24px;color:#333;font-family:Microsoft Yahei,黑体;text-indent:20px;} .zp_link_w{padding:20px 20px;border-bottom:1px solid #eee;border-top:1px solid #eee;position:relative;} .zp_link_w ul{height:46px;float:left;} .zp_link_w ul li{height:46px;width:46px;margin-right:6px;border-radius:50%;overflow:hidden;float:left;} .zp_link_w ul li a{display:block;height:46px;width:46px;} .zp_link_w ul li a img{display:block;height:46px;width:46px;} .zp_link_w p{line-height:46px;font-size:14px;color:#666;float:left;padding-left:10px;} .zp_btns_w{height:46px;position:absolute;right:20px;top:20px;} .zp_zanbtn{cursor:pointer;display:block;height:46px;width:46px;float:right;margin-right:10px;background:url(../images/zan_inzpcon.gif) 0px 0px no-repeat;} .zp_zanbtn:hover{background-position:0px -46px;} .zp_zanbtned{cursor:pointer;display:block;height:46px;width:46px;float:right;margin-right:10px;background:url(../images/zan_inzpcon.gif) 0px -92px no-repeat;} .zp_zanbtned:hover{background-position:0px -138px;} .zp_link{height:44px;display:inline-block;vertical-align:top;*display:inline;*zoom:1;float:right;margin:0px auto;background:#ff3232;padding:0px 20px;color:#fff;font-size:14px;line-height:44px;border:1px solid #e90808;} .zp_link:hover{background:#e90808;} .zp_r{width:300px;float:left;} .zp_others{width:300px;} .zp_others h2{font-size:18px;color:#333;font-family:Microsoft Yahei,黑体;text-indent:14px;height:60px;line-height:60px;} .zp_others ul{padding-left:14px;} .zp_others ul li{float:left;height:90px;width:90px;margin:0px 1px 1px 0px;_display:inline;} .zp_others ul li a{display:block;height:90px;width:90px;} .zp_others ul li a img{display:block;height:90px;width:90px;} .zp_others a.more{color:#999;height:44px;line-height:44px;display:block;text-align:center;margin:14px;} .zp_others a.more:hover{background:#eee;} .zp_author{padding:20px 14px 14px;position:relative;border-bottom:1px solid #eee;} .zp_author_avatar{height:60px;width:60px;float:left;display:block;border-radius:4px;overflow:hidden;} .zp_author_avatar img{display:block;height:60px;width:60px;border-radius:4px;overflow:hidden;} .zp_author_info{width:200px;float:left;height:60px;padding-left:10px;} .zp_author_info a.name{font-size:14px;color:#333;font-weight:bold;height:32px;line-height:32px;} .zp_author_info a.name:hover{color:#ff3232;text-decoration:underline;} .zp_author_info span.i{color:#999;line-height:18px;} .zp_gz_w{height:44px;margin:14px 0px 0px;line-height:44px;float:left;display:block;color:#fff;text-align:center;width:272px;background:#ff3232;} .zp_gz_w:hover{background:#e90808;} .zp_followTa{position:absolute;right:14px;top:20px;} .favbtns1{display:block;height:50px;width:160px;position:absolute;margin:14px;right:0px;top:0px;} .favbtns1 .share{display:block;background:#fff;color:#888;font-size:14px;font-weight:bold;text-align:center;height:48px;width:158px;float:left;line-height:48px;} .favbtns1 .share:hover{background:#fafafa;} .favbtns1 .share a{display:inline-block;vertical-align:top;*display:inline;*zoom:1;height:24px;width:24px;background:url(../images/bgshareiconnn.gif?v=1) no-repeat;margin-top:13px;} .favbtns1 #bdshare .share a.qq{background-position:-4px -4px;} .favbtns1 #bdshare .share a.weibo{background-position:-4px -32px;} .favbtns1 #bdshare .share a.qq:hover{background-position:-4px -4px;opacity:1;filter:alpha(opacity=100);} .favbtns1 #bdshare .share a.weibo:hover{background-position:-4px -32px;opacity:1;filter:alpha(opacity=100);} .favbtns1 #bdshare .share a.qzone{background-position:-4px -60px;} .favbtns1 #bdshare .share a.qzone:hover{background-position:-4px -60px;opacity:1;filter:alpha(opacity=100);} .cp_comments_list{width:670px;padding:20px 0px 0px;} .cp_com_form_w{width:630px;padding:0px 20px;} .cp_com_form_w a.useravatar{float:left;height:50px;width:50px;float:left;display:block;} .cp_com_form_w a.useravatar img{display:block;height:50px;width:50px;} .cp_com_form_w .form_w{display:block;height:150px;width:560px;float:left;margin-left:20px;position:relative;} .cp_com_form_w .form_w textarea{height:70px;width:530px;padding:14px;border:1px solid #ddd;background:#fcfcfc;color:#333;font-size:14px;} .cp_com_form_w .form_w input.submit{height:40px;width:80px;background:#ff3232;border:1px solid #e90808;font-size:14px;color:#fff;position:absolute;right:0px;bottom:0px;} .cp_com_form_w .form_w input.submit_off{background:#fcfcfc;border:1px solid #ddd;color:#999;} .cp_com_form_w .form_w .mask{display:block;height:120px;width:560px;background:url(../images/blank.gif) 0px 0px repeat;left:0px;top:0px;text-align:center;position:absolute;left:0px;top:0px;padding-top:30px;} .cp_com_form_w .form_w .mask div.w{height:40px;display:inline-block;vertical-align:top;*display:inline;*zoom:1;} .cp_com_form_w .form_w .mask a,.cp_com_form_w .form_w .mask span{display:inline-block;vertical-align:top;*display:inline;*zoom:1;padding:0px 15px;height:38px;line-height:38px;margin:0px 5px;background:#ff3232;border:1px solid #e90808;color:#fff;font-size:14px;} .cp_com_form_w .form_w .mask a:hover,.cp_com_form_w .form_w .mask span:hover{background:#e90808;cursor:pointer;} .cp_comlist_w{width:630px;padding:20px 20px 0px;} .cp_comlist_w ul li{} .cp_comlist_w ul li a.avatar{height:82px;width:50px;float:left;} .cp_comlist_w ul li a.avatar img{display:Block;height:50px;width:50px;} .cp_comlist_w ul li a.avatar h5{height:32px;line-height:32px;color:#999;text-align:center;white-space:nowrap;overflow:hidden;width:50px;} .cp_comlist_w ul li a.avatar:hover{color:#ff3232;text-decoration:underline;} .cp_comlist_w ul li a.avatar:hover h5{color:#ff3232;text-decoration:underline;} .cp_comlist_w ul li div.c{float:left;margin-left:20px;width:560px;} .cp_comlist_w ul li div.c p.p1{font-size:14px;color:#666;line-height:24px;} .cp_comlist_w ul li div.c p.p1 strong{color:#ff3232;padding-right:5px;} .cp_comlist_w ul li div.info{position:relative;height:40px;line-height:40px;color:#999;} .cp_comlist_w ul li div.info span a{color:#ff3232;padding:0px 3px;} .cp_comlist_w ul li div.info span a:hover{text-decoration:underline;} .cp_comlist_w ul li div.info a.re{color:#999;position:absolute;right:0px;top:0px;line-height:40px;display:inline-block;vertical-align:top;*display:inline;*zoom:1;} .cp_comlist_w ul li div.info a.re:hover{color:#ff3232;textd-decoration:underline;} .cp_comlist_w ul li div.info1{position:relative;height:30px;line-height:30px;color:#999;} .cp_comlist_w ul li div.info1 span a{color:#ff3232;padding:0px 3px;} .cp_comlist_w ul li div.info1 span a:hover{text-decoration:underline;} .cp_comlist_w ul li div.c1{float:left;margin-left:10px;width:460px;} .cp_comlist_w ul li div.c .comscoms{width:520px;padding:10px 20px 0px;background:#f5f5f5;margin-bottom:20px;} .cp_comlist_w ul li div.c .comscoms ul{float:left;} .cp_comlist_w ul li div.c .comscoms ul li{border-bottom:1px solid #e5e5e5;padding:10px 0px 0px;} .cp_comlist_w ul li div.c p.p2{font-size:14px;color:#666;line-height:20px;width:450px;padding-bottom:10px;} .cp_comlist_w ul li div.c p.p2 a{color:#ff3232;padding-right:5px;} .cp_comlist_w ul li div.c p.p2 a:hover{text-decoration:underline;} .cp_comlist_w ul li a.avatar1{height:50px;width:50px;float:left;margin-bottom:10px;} .cp_comlist_w ul li a.avatar1 img{display:block;height:50px;width:50px;} .cp_comlist_w ul li .saybtn{height:32px;width:100px;background:#ff3232;border:1px solid #e90808;display:block;float:right;line-height:32px;color:#fff;text-align:center;margin:10px 0px 20px} .cp_comlist_w ul li .saybtn:hover{background:#e90808;} .cp_comlist_w ul li .saybtn_ed{background:#eee;border:1px solid #ddd;color:#888;} .cp_comlist_w ul li .saybtn_ed:hover{background:#ddd;} .re_form{float:right;width:520px;height:150px;position:relative;top:-10px;display:none;} .re_form textarea{height:70px;width:490px;padding:14px;border:1px solid #ddd;background:#fff;font-size:14px;color:#333;} .re_form input{position:absolute;right:0px;bottom:10px;height:30px;width:80px;color:#fff;font-size:12px;text-align:center;background:#ff3232;border:1px solid #e90808;line-height:30px;} .commentslist_li{padding:20px 0px 0px;border-bottom:1px solid #eee;} .user_nocon{width:990px;margin:0px auto;padding:40px 0px 80px;background:#fff;text-align:center;} .user_nocon p{font-size:14px;color:#666;line-height:24px;padding:20px 100px;} .user_nocon a.btn{display:inline-block;vertical-align:center;*display:inline;*zoom:1;font-size:14px;font-weight:bold;height:42px;line-height:42px;background:#ff3232;color:#fff;padding:0px 20px;border:1px solid #e90808;} .user_nocon a.btn:hover{background:#e90808;} .usercp_w{width:736px;float:right;background:#fff;height:100px;} .cp_list{background:#fff;width:736px;float:right;} .cp_list_title{height:50px;line-height:50px;font-size:14px;color:#333;text-indent:14px;border-bottom:1px solid #ddd;position:relative;} .cp_list_title span.btns{height:50px;font-size:12px;color:#999;padding:0px 14px;position:absolute;right:0px;top:0px;} .cp_list_title span.btns a{color:#999;padding-left:10px;} .cp_list_title span.btns a:hover{color:#ff3232;text-decoration:underline;} .cp_list_ul{} .cp_list_ul li{height:120px;width:696px;border-bottom:1px solid #eee;padding:20px 20px;position:relative;} .cp_list_ul li:hover{background:#fafafa;} .cp_list_ul li a.img{float:left;height:120px;width:120px;position:relative;} .cp_list_ul li a.img img{height:120px;width:120px;display:block;} .cp_list_ul li a.img span.new{height:20px;display:inline-block;vertical-align:top;*display:inline;*zoom:1;top:-10px;right:-10px;background:#ff3232;color:#fff;font-size:12px;font-family:arial;position:absolute;padding:0px 4px;border-radius:10px;line-height:20px;overflow:hidden;min-width:12px;_width:12px;white-space:nowrap;text-align:center;} .cp_list_ul li div.c{float:left;height:120px;width:560px;padding-left:14px;} .cp_list_ul li div.c strong.name{display:block;height:32px;line-height:32px;font-size:14px;color:#333;font-weight:bold;} .cp_list_ul li div.c strong.name a{color:#333;} .cp_list_ul li div.c strong.name a span{color:#ff3232;} .cp_list_ul li div.c strong.name a:hover{color:#ff3232;text-decoration:underline;} .cp_list_ul li div.c p{font-size:14px;color:#666;line-height:24px;overflow:hidden;} .cp_list_ul li div.c p a{color:#666;} .cp_list_ul li div.c p a:hover{color:#ff3232;text-decoration:underline;} .cp_list_ul li div.c p strong{font-size:12px;padding-right:10px;} .cp_list_ul li div.c p strong em{color:#ff3232;padding-right:4px;} .cp_list_ul li div.c span.time{position:absolute;height:20px;line-height:20px;right:20px;top:20px;color:#999;} .cp_list_ul li div.c span.time a{color:#999;padding-left:10px;display:none;} .cp_list_ul li div.c span.time a:hover{color:#ff3232;} .cp_list_ul li div.c em.info{height:24px;line-height:24px;display:block;color:#999;} .cp_list_ul li div.c em.info span{color:#666;} .nocontenttt{padding:100px 0px 140px;text-align:center;font-size:14px;color:#666;line-height:48px;} .nocontentttbtn{display:block;height:48px;width:200px;background:#ff3232;color:#fff;font-weight:bold;margin:0px auto;} .nocontentttbtn:hover{background:#e90808;} .w758{float:left;width:758px;} .noti_list{background:#fff;width:990px;float:left;} .noti_list1{width:758px;} .noti_list_title{height:50px;line-height:50px;font-size:14px;color:#333;text-indent:14px;border-bottom:1px solid #ddd;position:relative;} .noti_list_title span.btns{height:50px;font-size:12px;color:#999;padding:0px 14px;position:absolute;right:0px;top:0px;} .noti_list_title span.btns a{color:#999;padding-left:10px;} .noti_list_title span.btns a:hover{color:#ff3232;text-decoration:underline;} .noti_list_ul{} .noti_list_ul li{width:950px;border-bottom:1px solid #eee;padding:20px 20px;position:relative;} .noti_list_ul li:hover{background:#fafafa;} .noti_list_ul li a.img{float:left;height:80px;width:80px;position:relative;} .noti_list_ul li a.img img{hwidth:80px;display:block;} .noti_list_ul li div.c{width:950px;padding:0px;} .noti_list_ul li div.c strong.name{display:block;height:32px;line-height:32px;font-size:14px;color:#333;font-weight:bold;} .noti_list_ul li div.c strong.name a{color:#333;} .noti_list_ul li div.c strong.name a span{color:#ff3232;} .noti_list_ul li div.c strong.name a:hover{color:#ff3232;text-decoration:underline;} .noti_list_ul li div.c p{font-size:14px;color:#666;line-height:24px;overflow:hidden;} .noti_list_ul li div.c p strong{font-size:12px;padding-right:10px;} .noti_list_ul li div.c p strong em{color:#ff3232;padding-right:4px;} .noti_list_ul li div.c p a{color:#Ff3232;} .noti_list_ul li div.c span.time{height:20px;line-height:20px;float:right;color:#999;} .noti_list_ul li div.c em.info{height:24px;line-height:24px;display:block;color:#999;} .noti_list_ul li div.c em.info span{color:#666;} .import_tip{color:red;} .useredit_ul strong{font-weight: bold;} .search_in_myspace{position:absolute;height:38px;border:1px solid #ddd;border-radius:2px;overflow:hidden;right:126px;top:14px;width:220px;} .search_in_myspace .text{border:0 none;box-sizing: content-box;height:22px;padding:8px;line-height:22px;font-size:14px;color:#333;width:204px;} .search_in_myspace .submit{width:34px;height:34px;position:absolute;right:2px;top:2px;background:#fff url(http://static.meishij.net/n/images/searchbtn1.png) -3px -3px no-repeat;border:0px;cursor:pointer;} .search_in_myspace .submit:hover{background-position:-3px -43px;}
0.224225
0.068537
@media only screen and (min-width: 1200px) { /*SISTERS*/ #container-sisters {grid-column: 1/4; grid-row: 1;} #container-sister-newbacklink {grid-column: 1/4; grid-row: 1/2;} #container-sister-newtopic {grid-column: 1/2; grid-row: 2/3;} #container-sister-backlinks {grid-column: 1/2; grid-row: 3/7;} #container-sister-topics {grid-column: 2/4; grid-row: 2/5;} #container-users-userlist {grid-column: 1/4; grid-row: 1/2;} } /*==============================*/ /*====MEDIUM DESKTOP DEVICES====*/ /*==============================*/ @media only screen and (min-width: 960px) and (max-width: 1199px) { /*SISTERS*/ #container-sisters {grid-column: 1/13; grid-row: 1;} #container-sister-newbacklink {grid-column: 1/4; grid-row: 1;} #container-sister-newtopic {grid-column: 9/13; grid-row: 1;} #container-separator-sister {grid-column: 1/13; grid-row: 2;} #container-sister-backlinks {grid-column: 5/12; grid-row: 3;} #container-sister-topics {grid-column: 5/13; grid-row: 3;} } /*==============================*/ /*====MEDIUM DEVICES TABLETS====*/ /*==============================*/ @media only screen and (min-width: 660px) and (max-width: 959px) { /*SISTERS*/ #container-sisters {grid-column: 1/13; grid-row: 1;} #container-sister-newbacklink {grid-column: 1/4; grid-row: 1;} #container-sister-newtopic {grid-column: 9/13; grid-row: 1;} #container-separator-sister {grid-column: 1/13; grid-row: 2;} #container-sister-backlinks {grid-column: 5/12; grid-row: 3;} #container-sister-topics {grid-column: 5/13; grid-row: 3;} } /*==============================*/ /*=====MEDIUM DEVICES MOBILE====*/ /*==============================*/ @media only screen and (min-width: 480px) and (max-width: 659px) { /*SISTERS*/ #container-sisters {grid-column: 1/13; grid-row: 1;} #container-sister-newbacklink {grid-column: 1/4; grid-row: 1;} #container-sister-newtopic {grid-column: 9/13; grid-row: 1;} #container-separator-sister {grid-column: 1/13; grid-row: 2;} #container-sister-backlinks {grid-column: 2/12; grid-row: 3;} #container-sister-topics {grid-column: 5/13; grid-row: 3;} } /*==============================*/ /*=====SMALL DEVICES MOBILE=====*/ /*==============================*/ @media only screen and (max-width: 479px) { /*SISTERS*/ #container-sisters {grid-column: 1/13; grid-row: 1;} #container-sister-newbacklink {grid-column: 1/4; grid-row: 1;} #container-sister-newtopic {grid-column: 9/13; grid-row: 1;} #container-separator-sister {grid-column: 1/13; grid-row: 2;} #container-sister-backlinks {grid-column: 5/12; grid-row: 3;} #container-sister-topics {grid-column: 5/13; grid-row: 3;} }
public/assets/css/grid.css
@media only screen and (min-width: 1200px) { /*SISTERS*/ #container-sisters {grid-column: 1/4; grid-row: 1;} #container-sister-newbacklink {grid-column: 1/4; grid-row: 1/2;} #container-sister-newtopic {grid-column: 1/2; grid-row: 2/3;} #container-sister-backlinks {grid-column: 1/2; grid-row: 3/7;} #container-sister-topics {grid-column: 2/4; grid-row: 2/5;} #container-users-userlist {grid-column: 1/4; grid-row: 1/2;} } /*==============================*/ /*====MEDIUM DESKTOP DEVICES====*/ /*==============================*/ @media only screen and (min-width: 960px) and (max-width: 1199px) { /*SISTERS*/ #container-sisters {grid-column: 1/13; grid-row: 1;} #container-sister-newbacklink {grid-column: 1/4; grid-row: 1;} #container-sister-newtopic {grid-column: 9/13; grid-row: 1;} #container-separator-sister {grid-column: 1/13; grid-row: 2;} #container-sister-backlinks {grid-column: 5/12; grid-row: 3;} #container-sister-topics {grid-column: 5/13; grid-row: 3;} } /*==============================*/ /*====MEDIUM DEVICES TABLETS====*/ /*==============================*/ @media only screen and (min-width: 660px) and (max-width: 959px) { /*SISTERS*/ #container-sisters {grid-column: 1/13; grid-row: 1;} #container-sister-newbacklink {grid-column: 1/4; grid-row: 1;} #container-sister-newtopic {grid-column: 9/13; grid-row: 1;} #container-separator-sister {grid-column: 1/13; grid-row: 2;} #container-sister-backlinks {grid-column: 5/12; grid-row: 3;} #container-sister-topics {grid-column: 5/13; grid-row: 3;} } /*==============================*/ /*=====MEDIUM DEVICES MOBILE====*/ /*==============================*/ @media only screen and (min-width: 480px) and (max-width: 659px) { /*SISTERS*/ #container-sisters {grid-column: 1/13; grid-row: 1;} #container-sister-newbacklink {grid-column: 1/4; grid-row: 1;} #container-sister-newtopic {grid-column: 9/13; grid-row: 1;} #container-separator-sister {grid-column: 1/13; grid-row: 2;} #container-sister-backlinks {grid-column: 2/12; grid-row: 3;} #container-sister-topics {grid-column: 5/13; grid-row: 3;} } /*==============================*/ /*=====SMALL DEVICES MOBILE=====*/ /*==============================*/ @media only screen and (max-width: 479px) { /*SISTERS*/ #container-sisters {grid-column: 1/13; grid-row: 1;} #container-sister-newbacklink {grid-column: 1/4; grid-row: 1;} #container-sister-newtopic {grid-column: 9/13; grid-row: 1;} #container-separator-sister {grid-column: 1/13; grid-row: 2;} #container-sister-backlinks {grid-column: 5/12; grid-row: 3;} #container-sister-topics {grid-column: 5/13; grid-row: 3;} }
0.268366
0.14013
body { word-wrap: break-word; font-family: Helvetica, Arial; /*这里是设置字体,Helvetica字体在移动端各系统都支持(都不支持微软雅黑)*/ color: #333; -webkit-text-size-adjust: none; /*设置文本不会放大,普通网页在移动端打开文本是会跟随网页结构缩放的*/ margin: 0; } html{ -webkit-text-size-adjust:none; font-size: 62.5%; } ul,li,p{ padding: 0; margin: 0; list-style-type:none; } a:focus, a:active, a:focus-within, a:visited, a:hover{ text-decoration: none!important; } body *{ -webkit-tap-highlight-color: transparent; /*在一些手机上,如iphone,点击按钮等元素会出现点击态的背景色,设置为透明就看不出来了*/ } body{ height: 100%; background-color: #F4F4F4; } .dis_flex{ display: flex; flex-shrink:0; } header{ height: 279px; } header>div:first-child{ position: fixed; top: 0; left: 0; height: 150px; width: 100%; background: linear-gradient(to bottom, #FF9254 , #FF5B2B); } header>div:last-child{ position: fixed; top: 239px; left: 0; height: 40px; width: 100%; line-height: 40px; background-color: #fff; font-size: 18px; padding: 0 10px; } /*标题*/ div.title_header { position: fixed; height: 50px; width: 100%; top: 20px; left: 0; z-index: 1000; color: #fff; } div.title_header>div{ width: 33%; text-align: center; height: 100%; } div.title_header>div>span{ line-height: 50px; font-size: 18px; } /*左边*/ div.title_header>div:first-child{ text-align: left; align-items: center; margin-left: 0.5%; } div.title_header>div:first-child>img{ width: 20px; margin-left: 7px; } /*右边*/ div.title_header>div:last-child{ text-align: right; margin-right: 0.5%; } div.title_header>div:last-child>img{ margin-right: 5px; width: 24px; height: 24px; } div.title_header>div:last-child>span{ margin-right: 7px; width: 24px; height: 24px; color: #999999; } header>div>div:last-child{ position: fixed; top: 70px; left: 0; height: 80px; color: #fff; width: 100%; } header>div>div:last-child>div{ width: 50%; height: 100%; font-size: 14px; } header>div>div:last-child>div:first-child>span{ margin-left: 10px; } header>div>div:last-child>div:first-child>span:first-child{ font-size: 18px; } header>div>div:last-child>div:last-child>span{ background-color: #fff; border-radius: 20px; padding: 5px 15px; margin-right: 10px; } header>div>div:last-child>div:first-child{ flex-direction: column; justify-content: center; } header>div>div:last-child>div:last-child{ justify-content: flex-end; align-items: center; margin-right: 10px; } .col_hui{ color: #999999; } .col_cheng{ color: #FF5B2B; } .fon_32{ font-size: 32px; margin-bottom: 5px; } .fon_18{ font-size: 18px; } .body>div:last-child{ padding: 0 10px; } .Salesman{ display: flex; background-color: #fff; margin-top: 10px; border-radius: 5px; height: 100px; } .Salesman:last-child{ margin-bottom: 10px; } .Salesman>div{ width: 30%; font-size: 14px; } .Salesman>div:first-child{ align-items: center; width: 70%; } .Salesman>div:first-child>img{ width: 80px; height: 70px; margin: 0 10px; } .Salesman>div:first-child>div{ flex-direction: column; height: 80px; justify-content: space-between; } .Salesman>div:first-child>div>div{ flex-direction: column; } .Salesman>div:last-child{ flex-direction: column; align-items: center; justify-content: center; } .data_cx{ border-top: 3px solid #F4F4F4; border-bottom: 3px solid #F4F4F4; justify-content: space-between; align-items: center; height: 40px; font-size: 18px; position: fixed; top: 150px; left: 0; width: 100%; background-color: #fff; } .data_cx:nth-child(3){ border-top: 0; position: fixed; top: 196px; left: 0; width: 100%; background-color: #fff; } .data_cx>span:first-child{ margin-left: 10px; } .data_cx>div{ margin-right: 10px; position: static!important; color: #999999!important; height: auto!important; width: auto!important; } .data_cx>input:first-child{ margin-left: 10px; } .data_cx>button{ margin-right: 10px; }
src/main/webapp/css/management.css
body { word-wrap: break-word; font-family: Helvetica, Arial; /*这里是设置字体,Helvetica字体在移动端各系统都支持(都不支持微软雅黑)*/ color: #333; -webkit-text-size-adjust: none; /*设置文本不会放大,普通网页在移动端打开文本是会跟随网页结构缩放的*/ margin: 0; } html{ -webkit-text-size-adjust:none; font-size: 62.5%; } ul,li,p{ padding: 0; margin: 0; list-style-type:none; } a:focus, a:active, a:focus-within, a:visited, a:hover{ text-decoration: none!important; } body *{ -webkit-tap-highlight-color: transparent; /*在一些手机上,如iphone,点击按钮等元素会出现点击态的背景色,设置为透明就看不出来了*/ } body{ height: 100%; background-color: #F4F4F4; } .dis_flex{ display: flex; flex-shrink:0; } header{ height: 279px; } header>div:first-child{ position: fixed; top: 0; left: 0; height: 150px; width: 100%; background: linear-gradient(to bottom, #FF9254 , #FF5B2B); } header>div:last-child{ position: fixed; top: 239px; left: 0; height: 40px; width: 100%; line-height: 40px; background-color: #fff; font-size: 18px; padding: 0 10px; } /*标题*/ div.title_header { position: fixed; height: 50px; width: 100%; top: 20px; left: 0; z-index: 1000; color: #fff; } div.title_header>div{ width: 33%; text-align: center; height: 100%; } div.title_header>div>span{ line-height: 50px; font-size: 18px; } /*左边*/ div.title_header>div:first-child{ text-align: left; align-items: center; margin-left: 0.5%; } div.title_header>div:first-child>img{ width: 20px; margin-left: 7px; } /*右边*/ div.title_header>div:last-child{ text-align: right; margin-right: 0.5%; } div.title_header>div:last-child>img{ margin-right: 5px; width: 24px; height: 24px; } div.title_header>div:last-child>span{ margin-right: 7px; width: 24px; height: 24px; color: #999999; } header>div>div:last-child{ position: fixed; top: 70px; left: 0; height: 80px; color: #fff; width: 100%; } header>div>div:last-child>div{ width: 50%; height: 100%; font-size: 14px; } header>div>div:last-child>div:first-child>span{ margin-left: 10px; } header>div>div:last-child>div:first-child>span:first-child{ font-size: 18px; } header>div>div:last-child>div:last-child>span{ background-color: #fff; border-radius: 20px; padding: 5px 15px; margin-right: 10px; } header>div>div:last-child>div:first-child{ flex-direction: column; justify-content: center; } header>div>div:last-child>div:last-child{ justify-content: flex-end; align-items: center; margin-right: 10px; } .col_hui{ color: #999999; } .col_cheng{ color: #FF5B2B; } .fon_32{ font-size: 32px; margin-bottom: 5px; } .fon_18{ font-size: 18px; } .body>div:last-child{ padding: 0 10px; } .Salesman{ display: flex; background-color: #fff; margin-top: 10px; border-radius: 5px; height: 100px; } .Salesman:last-child{ margin-bottom: 10px; } .Salesman>div{ width: 30%; font-size: 14px; } .Salesman>div:first-child{ align-items: center; width: 70%; } .Salesman>div:first-child>img{ width: 80px; height: 70px; margin: 0 10px; } .Salesman>div:first-child>div{ flex-direction: column; height: 80px; justify-content: space-between; } .Salesman>div:first-child>div>div{ flex-direction: column; } .Salesman>div:last-child{ flex-direction: column; align-items: center; justify-content: center; } .data_cx{ border-top: 3px solid #F4F4F4; border-bottom: 3px solid #F4F4F4; justify-content: space-between; align-items: center; height: 40px; font-size: 18px; position: fixed; top: 150px; left: 0; width: 100%; background-color: #fff; } .data_cx:nth-child(3){ border-top: 0; position: fixed; top: 196px; left: 0; width: 100%; background-color: #fff; } .data_cx>span:first-child{ margin-left: 10px; } .data_cx>div{ margin-right: 10px; position: static!important; color: #999999!important; height: auto!important; width: auto!important; } .data_cx>input:first-child{ margin-left: 10px; } .data_cx>button{ margin-right: 10px; }
0.314156
0.091139
* { box-sizing: border-box; } body { /* font-family: 'Open Sans', sans-serif; */ font-family: 'Amatic SC', cursive; } header { /* background-color: #e2d4c9; */ padding: 1rem; margin-bottom: 1rem; /* border-bottom: 1px solid #ccc; */ width: 100%; } .header-content { display: table; } .header-content h1 { margin: 0; display: table-cell; vertical-align: middle; font-size: 2rem; font-weight: 400; } .header-content h1 span { display: none; } @media (min-width: 760px) { .header-content h1 span { display: inline; font-size: 0.9rem; font-weight: 300; } } .header-content .logo { display: table-cell; vertical-align: middle; } .wrapper { max-width: 1200px; margin: 0 auto; } .cards { margin: 0 auto; } .thumbnails { box-sizing: border-box; margin: 0 auto; text-align: center; } .thumbnails::after { content: " "; display: table; clear: both; } figure { opacity: 0; margin: 0; overflow: hidden; width: 200px; } figure.thumbnail p { color: #2d434e; font-weight: 800; font-size: 1.4rem; margin: 0.2rem 0 0.7rem 0; } figure figcaption { margin: 0; padding: 0; display: initial; } @media (min-width: 760px) { figure figcaption { display: none; } } .card { width: 200px; opacity: 0; transform-property: opacity, transform; transform-origin: 50%; -webkit-backface-visibility: hidden; backface-visibility: hidden; } .card img { width: 100%; } footer { margin: 2rem 0; padding: 1rem; /* border-top: 1px solid #ccc; */ float: left; width: 100%; } footer div { width: 156px; /* 36 x 4 + (4 x 3) */ padding: 0; margin: 0 auto; background-color: #c0c; } footer ol { margin: 0; padding: 0; list-style-type: none; } footer ol li { float: left; padding: 0; margin: 0; margin-right: 4px; line-height: 0; } footer ol li:last-child { margin-right: 0; } footer ol li a { margin: 0; padding: 0; } footer ol li a img { vertical-align: middle; } footer ol li a:hover { box-shadow: 0px 10px 14px 0px rgba(0,0,0,0.35); }
css/app.css
* { box-sizing: border-box; } body { /* font-family: 'Open Sans', sans-serif; */ font-family: 'Amatic SC', cursive; } header { /* background-color: #e2d4c9; */ padding: 1rem; margin-bottom: 1rem; /* border-bottom: 1px solid #ccc; */ width: 100%; } .header-content { display: table; } .header-content h1 { margin: 0; display: table-cell; vertical-align: middle; font-size: 2rem; font-weight: 400; } .header-content h1 span { display: none; } @media (min-width: 760px) { .header-content h1 span { display: inline; font-size: 0.9rem; font-weight: 300; } } .header-content .logo { display: table-cell; vertical-align: middle; } .wrapper { max-width: 1200px; margin: 0 auto; } .cards { margin: 0 auto; } .thumbnails { box-sizing: border-box; margin: 0 auto; text-align: center; } .thumbnails::after { content: " "; display: table; clear: both; } figure { opacity: 0; margin: 0; overflow: hidden; width: 200px; } figure.thumbnail p { color: #2d434e; font-weight: 800; font-size: 1.4rem; margin: 0.2rem 0 0.7rem 0; } figure figcaption { margin: 0; padding: 0; display: initial; } @media (min-width: 760px) { figure figcaption { display: none; } } .card { width: 200px; opacity: 0; transform-property: opacity, transform; transform-origin: 50%; -webkit-backface-visibility: hidden; backface-visibility: hidden; } .card img { width: 100%; } footer { margin: 2rem 0; padding: 1rem; /* border-top: 1px solid #ccc; */ float: left; width: 100%; } footer div { width: 156px; /* 36 x 4 + (4 x 3) */ padding: 0; margin: 0 auto; background-color: #c0c; } footer ol { margin: 0; padding: 0; list-style-type: none; } footer ol li { float: left; padding: 0; margin: 0; margin-right: 4px; line-height: 0; } footer ol li:last-child { margin-right: 0; } footer ol li a { margin: 0; padding: 0; } footer ol li a img { vertical-align: middle; } footer ol li a:hover { box-shadow: 0px 10px 14px 0px rgba(0,0,0,0.35); }
0.520253
0.139807
.pro_cart{ width:110px; float: right; margin: 50px 10px 0px 0px; } .pro_cart nav ul:first-child{ list-style: none; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; box-shadow: 3px 0px 8px -2px #ccc; } .pro_cart nav ul li{ margin-bottom: 2px; font-size: 0.8em; position: relative; font-family: Arial!important; } .pro_cart nav ul li.opn_link a{ } .pro_cart nav ul li a{ color: #535352; display:block; text-decoration: none; padding:7px 0px 7px 10px; background:url(../images/open_menu_shade.png) left bottom no-repeat!important; } .pro_cart nav ul li ul{ list-style: none; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; } .pro_cart nav ul li ul li{ font-size: 0.95em; padding:3px 0px; overflow:auto; } .pro_cart nav ul li ul li a{ padding:5px; background: none!important; color: #a4a73b; font-size: 0.95em; width:60px; float: left; border:none; } .cross_icon{ background:url(../images/del_icon2.png) no-repeat!important; width:16px; height:16px; display:inline-block; float:left; margin:12px 5px 0px 5px; } .cart_item{ display:inline-block; float:left; } .cart_item img{ float:left; } .cart_item_price{ display:inline-block; color:#535352; margin: 8px 0px 0px 10px; display: none; } #total_cart{ padding:5px 0px 5px 10px; background:url(../images/open_menu_shade2.png) right top no-repeat!important; } #total_cart #totalamount{ float:right; display:inline-block; font-weight: bold; margin-right: 10px; } .pro_cart nav ul li span.mnu { background:url(../images/menu_arrow.png) no-repeat scroll 0 0 transparent; height: 15px; position: absolute; right: 0; top: 16px; width: 16px; display: none; } .pro_cart nav ul li span.cl_mn{ background:url(../images/menu_arrow_cl.png) no-repeat scroll 0 0 transparent; height: 15px; position: absolute; right: 0; top: 13px; width: 16px; } .pro_cart nav ul li.opn_link a span{ background:url(../images/menu_arrow_cl.png) no-repeat scroll 0 0 transparent; height: 15px; position: absolute; top: 13px; } .pro_cart nav ul li iframe{ min-width:190px!important; } .full_site .left_column { box-shadow: 4px 0 3px -2px rgba(0, 0, 0, 0.7); background: -moz-linear-gradient(top, #eaeaea 0%, #ffffff 27%, #ffffff 52%, #ffffff 72%, #dfdfdf 100%)!important; background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eaeaea), color-stop(27%,#ffffff), color-stop(52%,#ffffff), color-stop(72%,#ffffff), color-stop(100%,#dfdfdf)); background: -webkit-linear-gradient(top, #eaeaea 0%,#ffffff 27%,#ffffff 52%,#ffffff 72%,#dfdfdf 100%); background: -o-linear-gradient(top, #eaeaea 0%,#ffffff 27%,#ffffff 52%,#ffffff 72%,#dfdfdf 100%); background: -ms-linear-gradient(top, #eaeaea 0%,#ffffff 27%,#ffffff 52%,#ffffff 72%,#dfdfdf 100%); background: linear-gradient(to bottom, #eaeaea 0%,#ffffff 27%,#ffffff 52%,#ffffff 72%,#dfdfdf 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaeaea', endColorstr='#dfdfdf',GradientType=0 ); }
web/bundles/lovethatfit/site/css/main_1.css
.pro_cart{ width:110px; float: right; margin: 50px 10px 0px 0px; } .pro_cart nav ul:first-child{ list-style: none; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; box-shadow: 3px 0px 8px -2px #ccc; } .pro_cart nav ul li{ margin-bottom: 2px; font-size: 0.8em; position: relative; font-family: Arial!important; } .pro_cart nav ul li.opn_link a{ } .pro_cart nav ul li a{ color: #535352; display:block; text-decoration: none; padding:7px 0px 7px 10px; background:url(../images/open_menu_shade.png) left bottom no-repeat!important; } .pro_cart nav ul li ul{ list-style: none; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; } .pro_cart nav ul li ul li{ font-size: 0.95em; padding:3px 0px; overflow:auto; } .pro_cart nav ul li ul li a{ padding:5px; background: none!important; color: #a4a73b; font-size: 0.95em; width:60px; float: left; border:none; } .cross_icon{ background:url(../images/del_icon2.png) no-repeat!important; width:16px; height:16px; display:inline-block; float:left; margin:12px 5px 0px 5px; } .cart_item{ display:inline-block; float:left; } .cart_item img{ float:left; } .cart_item_price{ display:inline-block; color:#535352; margin: 8px 0px 0px 10px; display: none; } #total_cart{ padding:5px 0px 5px 10px; background:url(../images/open_menu_shade2.png) right top no-repeat!important; } #total_cart #totalamount{ float:right; display:inline-block; font-weight: bold; margin-right: 10px; } .pro_cart nav ul li span.mnu { background:url(../images/menu_arrow.png) no-repeat scroll 0 0 transparent; height: 15px; position: absolute; right: 0; top: 16px; width: 16px; display: none; } .pro_cart nav ul li span.cl_mn{ background:url(../images/menu_arrow_cl.png) no-repeat scroll 0 0 transparent; height: 15px; position: absolute; right: 0; top: 13px; width: 16px; } .pro_cart nav ul li.opn_link a span{ background:url(../images/menu_arrow_cl.png) no-repeat scroll 0 0 transparent; height: 15px; position: absolute; top: 13px; } .pro_cart nav ul li iframe{ min-width:190px!important; } .full_site .left_column { box-shadow: 4px 0 3px -2px rgba(0, 0, 0, 0.7); background: -moz-linear-gradient(top, #eaeaea 0%, #ffffff 27%, #ffffff 52%, #ffffff 72%, #dfdfdf 100%)!important; background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eaeaea), color-stop(27%,#ffffff), color-stop(52%,#ffffff), color-stop(72%,#ffffff), color-stop(100%,#dfdfdf)); background: -webkit-linear-gradient(top, #eaeaea 0%,#ffffff 27%,#ffffff 52%,#ffffff 72%,#dfdfdf 100%); background: -o-linear-gradient(top, #eaeaea 0%,#ffffff 27%,#ffffff 52%,#ffffff 72%,#dfdfdf 100%); background: -ms-linear-gradient(top, #eaeaea 0%,#ffffff 27%,#ffffff 52%,#ffffff 72%,#dfdfdf 100%); background: linear-gradient(to bottom, #eaeaea 0%,#ffffff 27%,#ffffff 52%,#ffffff 72%,#dfdfdf 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaeaea', endColorstr='#dfdfdf',GradientType=0 ); }
0.265309
0.100746
body{ background: url(../images/bg-gif2.jpg); background-repeat: no-repeat; background-size: cover; } #wrapper{ width: 100%; /* width: auto; */ height: 100%; display: flex; flex-direction: row; box-sizing: border-box; align-content: center; } #welcome{ display: flex; flex-direction: row; justify-content: center; background-color: black; color: white; font-family: Roboto; height: 70px; text-align: center; align-items: center; } #trending{ background-color: black; color: white; font-family: Roboto; } #buttons{ display: flex; flex-direction: column; justify-content: flex-start; width: 200px; /* box-sizing: border-box; */ margin-top: 20px; /* padding:10px; */ } #outerButton{ display: flex; flex-direction: column; justify-content: center; width: 100%; } #button-container{ display: flex; flex-direction: column; justify-content: center; font-family: Roboto; width: 100%; background: rgba(232, 215, 249, 0.45); border: 5px solid #EE1289; } #outerForm{ display: flex; flex-direction: row; justify-content: center; width: 100%; } #search-form{ display: flex; flex-direction: column; justify-content: center; font-family: Roboto; width: 100%; background: rgba(232, 215, 249, 0.45); border: 5px solid #EE1289; } #outerGif{ display: flex; flex-direction: row; justify-content: center; width: 100%; /* margin: 20px; padding:10px; */ margin-top: 20px; } #gifs-container{ width: 100%; height: 300px; overflow-y: auto; display: flex; flex-direction: row; flex-wrap: nowrap; } #rating{ background-color: black; color: white; font-family: Roboto; } #trending{ background-color: black; color: white; font-family: Roboto; justify-content: center; align-content: center; } #imgDiv{ height: 250px; } @media (max-width: 441) { /* */ }
assets/css/style.css
body{ background: url(../images/bg-gif2.jpg); background-repeat: no-repeat; background-size: cover; } #wrapper{ width: 100%; /* width: auto; */ height: 100%; display: flex; flex-direction: row; box-sizing: border-box; align-content: center; } #welcome{ display: flex; flex-direction: row; justify-content: center; background-color: black; color: white; font-family: Roboto; height: 70px; text-align: center; align-items: center; } #trending{ background-color: black; color: white; font-family: Roboto; } #buttons{ display: flex; flex-direction: column; justify-content: flex-start; width: 200px; /* box-sizing: border-box; */ margin-top: 20px; /* padding:10px; */ } #outerButton{ display: flex; flex-direction: column; justify-content: center; width: 100%; } #button-container{ display: flex; flex-direction: column; justify-content: center; font-family: Roboto; width: 100%; background: rgba(232, 215, 249, 0.45); border: 5px solid #EE1289; } #outerForm{ display: flex; flex-direction: row; justify-content: center; width: 100%; } #search-form{ display: flex; flex-direction: column; justify-content: center; font-family: Roboto; width: 100%; background: rgba(232, 215, 249, 0.45); border: 5px solid #EE1289; } #outerGif{ display: flex; flex-direction: row; justify-content: center; width: 100%; /* margin: 20px; padding:10px; */ margin-top: 20px; } #gifs-container{ width: 100%; height: 300px; overflow-y: auto; display: flex; flex-direction: row; flex-wrap: nowrap; } #rating{ background-color: black; color: white; font-family: Roboto; } #trending{ background-color: black; color: white; font-family: Roboto; justify-content: center; align-content: center; } #imgDiv{ height: 250px; } @media (max-width: 441) { /* */ }
0.329607
0.077692
.c-blu{ background-color: #5C78FD; } .c-ligBlu{ background-color: #DDEEFD; } .c-ligBlu1{ background-color: #BFDFFF; } .c-wh{ background-color: #ffffff; } .c-bla{ background-color: #000000; } .c-gre{ background-color: #31c926; } .c-ligGre{ background-color: #D7FFE7; } .c-ligGre1{ background-color: #B4FDD0; } .c-red{ background-color: #fd6162; } .c-ligRed{ background-color: #FFDFE0; } .c-ligRed1{ background-color: #FFC5C3; } .c-graBlu{ background-image: -webkit-gradient(linear, left top, left bottom, from(#38DEF4 ), color-stop(36%, #5BC2F6 ), to(#6CB3FB )); background-image: -webkit-linear-gradient(top, #38DEF4 0%,#5BC2F6 36%, #6CB3FB 100%); background-image: linear-gradient(top, #38DEF4 0%,#5BC2F6 36%, #6CB3FB 100%); } .c-graRed{ background-image: -webkit-gradient(linear, left top, left bottom, from(#FFAA9A ), color-stop(36%, #FE8980 ), to(#FD6162 )); background-image: -webkit-linear-gradient(top, #FFAA9A 0%,#FE8980 36%, #FD6162 100%); background-image: linear-gradient(top, #FFAA9A 0%,#FE8980 36%, #FD6162 100%); } .c-graPur{ background-image: -webkit-gradient(linear, left top, left bottom, from(#691FA3 ), color-stop(36%, #873CEE ), to(#6554E5 )); background-image: -webkit-linear-gradient(top, #691FA3 0%,#873CEE 36%, #6554E5 100%); background-image: linear-gradient(top, #691FA3 0%,#873CEE 36%, #6554E5 100%); } .c-graPin{ background-image: -webkit-gradient(linear, left top, left bottom, from(#A45B67 ), color-stop(36%, #F97D96 ), to(#FF6D92 )); background-image: -webkit-linear-gradient(top, #A45B67 0%,#F97D96 36%, #FF6D92 100%); background-image: linear-gradient(top, #A45B67 0%,#F97D96 36%, #FF6D92 100%); } .t-wh{ color: #ffffff !important; } .t-gra{ color: #9D9D9D; } .t-blu{ color: #0000ff; } .t-blu1{ color: #00ffff; } .t-red{ color: #ff0000; } .t-yel{ color: #fffe00; } .t-gre{ color: #00ff00; } .t-pur{ color: #ff00ff; } .t-9a9{ color: #9a9a9a; } .t-d4d{ color: #d4d2ce; } .t-363{ color: #363636; } .t-5c7{ color: #5C78FD; } .b-wh{ border-color: #ffffff !important; } .b-gra{ border-color: #9D9D9D; } .b-blu{ border-color: #0000ff; } .b-blu1{ border-color: #00ffff; } .b-red{ border-color: #ff0000; } .b-yel{ border-color: #fffe00; } .b-gre{ border-color: #00ff00; } .b-pur{ border-color: #ff00ff; }
component/common/css/color.css
.c-blu{ background-color: #5C78FD; } .c-ligBlu{ background-color: #DDEEFD; } .c-ligBlu1{ background-color: #BFDFFF; } .c-wh{ background-color: #ffffff; } .c-bla{ background-color: #000000; } .c-gre{ background-color: #31c926; } .c-ligGre{ background-color: #D7FFE7; } .c-ligGre1{ background-color: #B4FDD0; } .c-red{ background-color: #fd6162; } .c-ligRed{ background-color: #FFDFE0; } .c-ligRed1{ background-color: #FFC5C3; } .c-graBlu{ background-image: -webkit-gradient(linear, left top, left bottom, from(#38DEF4 ), color-stop(36%, #5BC2F6 ), to(#6CB3FB )); background-image: -webkit-linear-gradient(top, #38DEF4 0%,#5BC2F6 36%, #6CB3FB 100%); background-image: linear-gradient(top, #38DEF4 0%,#5BC2F6 36%, #6CB3FB 100%); } .c-graRed{ background-image: -webkit-gradient(linear, left top, left bottom, from(#FFAA9A ), color-stop(36%, #FE8980 ), to(#FD6162 )); background-image: -webkit-linear-gradient(top, #FFAA9A 0%,#FE8980 36%, #FD6162 100%); background-image: linear-gradient(top, #FFAA9A 0%,#FE8980 36%, #FD6162 100%); } .c-graPur{ background-image: -webkit-gradient(linear, left top, left bottom, from(#691FA3 ), color-stop(36%, #873CEE ), to(#6554E5 )); background-image: -webkit-linear-gradient(top, #691FA3 0%,#873CEE 36%, #6554E5 100%); background-image: linear-gradient(top, #691FA3 0%,#873CEE 36%, #6554E5 100%); } .c-graPin{ background-image: -webkit-gradient(linear, left top, left bottom, from(#A45B67 ), color-stop(36%, #F97D96 ), to(#FF6D92 )); background-image: -webkit-linear-gradient(top, #A45B67 0%,#F97D96 36%, #FF6D92 100%); background-image: linear-gradient(top, #A45B67 0%,#F97D96 36%, #FF6D92 100%); } .t-wh{ color: #ffffff !important; } .t-gra{ color: #9D9D9D; } .t-blu{ color: #0000ff; } .t-blu1{ color: #00ffff; } .t-red{ color: #ff0000; } .t-yel{ color: #fffe00; } .t-gre{ color: #00ff00; } .t-pur{ color: #ff00ff; } .t-9a9{ color: #9a9a9a; } .t-d4d{ color: #d4d2ce; } .t-363{ color: #363636; } .t-5c7{ color: #5C78FD; } .b-wh{ border-color: #ffffff !important; } .b-gra{ border-color: #9D9D9D; } .b-blu{ border-color: #0000ff; } .b-blu1{ border-color: #00ffff; } .b-red{ border-color: #ff0000; } .b-yel{ border-color: #fffe00; } .b-gre{ border-color: #00ff00; } .b-pur{ border-color: #ff00ff; }
0.344554
0.102394
html, body { overflow: hidden; font-family: Arial, Helvetica, sans-serif; font-size: 11px; width: 100%; height: 100%; color: #444444; } svg text { cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .wrapper_main { float: left; display: flex; justify-content: center; margin-top: 5px; width: 100%; height: 100%; } .view_title { position: absolute; right: 0px; padding-top: 1px; padding-bottom: 1px; padding-left: 5px; padding-right: 6px; font-size: 10px; color: #FFFFFF; background-color: #52617B; } #weight_view { float: left; position: relative; width: 220px; height: 97vh; margin-left: 15px; margin-right: 5px; border-style: solid; border-width: thin; border-color: #DDDDDD; } #tg_weight_svg { float: left; width: 100%; height: 28%; margin-bottom: auto; } #bg_weight_svg { float: left; width: 100%; height: 28%; margin-bottom: auto; } #bw_weight_svg { float: left; width: 100%; height: 28%; } #ratio_bound_svg { float: left; width: 100%; height: 15%; } #emb_view { float: left; position: relative; width: 97vh; height: 97vh; border-style: solid; border-width: thin; border-color: #DDDDDD; } #emb_svg { float: left; width: 100%; height: 100%; } #emb_view_legend { position: absolute; width: 70px; height: 130px; left: 2px; top: 2px; z-index: 10; } #emb_view_axis_legend { position: absolute; width: 45px; height: 45px; left: 1px; bottom: 1px; z-index: 10; /* border-style: solid; */ /* border-width: thin; */ } #comp_view { float: left; position: relative; width: 400px; height: 97vh; margin-left: 5px; margin-right: 14px; border-style: solid; border-width: thin; border-color: #DDDDDD; } #comps { float: left; width: 70%; height: 100%; } .comp { float: left; width: 50%; height: 100%; } #comp_x_svg {} #comp_y_svg {} #comp_feat_name_svg { float: left; width: 30%; height: 100%; } #misc { float: left; display: flex; justify-content: center; position: absolute; width: 100%; height: 23px; right: 0px; bottom: 0px; z-index: 10; font-size: 10px; background-color: #f5f5f5; } #label_data_names { float: left; display: flex; align-items: center; width: 50px; height: 100%; z-index: 10; font-size: 10px; cursor: pointer; } #data_names { float: left; margin-top: 3px; margin-left: -3px; width: 70px; height: 16px; z-index: 10; font-size: 10px; cursor: pointer; } #label_new_data_name { float: left; display: flex; align-items: center; margin-left: 10px; width: 60px; height: 100%; z-index: 10; font-size: 10px; vertical-align: middle; cursor: pointer; } #new_data_name { float: left; margin-top: 3px; margin-left: -7px; width: 70px; height: 11px; z-index: 10; font-size: 10px; cursor: pointer; } #save_button { float: left; margin-top: 3px; margin-left: 3px; width: 40px; height: 17px; z-index: 10; font-size: 10px; cursor: pointer; text-align: center; }
ulca_ui/style/style.css
html, body { overflow: hidden; font-family: Arial, Helvetica, sans-serif; font-size: 11px; width: 100%; height: 100%; color: #444444; } svg text { cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .wrapper_main { float: left; display: flex; justify-content: center; margin-top: 5px; width: 100%; height: 100%; } .view_title { position: absolute; right: 0px; padding-top: 1px; padding-bottom: 1px; padding-left: 5px; padding-right: 6px; font-size: 10px; color: #FFFFFF; background-color: #52617B; } #weight_view { float: left; position: relative; width: 220px; height: 97vh; margin-left: 15px; margin-right: 5px; border-style: solid; border-width: thin; border-color: #DDDDDD; } #tg_weight_svg { float: left; width: 100%; height: 28%; margin-bottom: auto; } #bg_weight_svg { float: left; width: 100%; height: 28%; margin-bottom: auto; } #bw_weight_svg { float: left; width: 100%; height: 28%; } #ratio_bound_svg { float: left; width: 100%; height: 15%; } #emb_view { float: left; position: relative; width: 97vh; height: 97vh; border-style: solid; border-width: thin; border-color: #DDDDDD; } #emb_svg { float: left; width: 100%; height: 100%; } #emb_view_legend { position: absolute; width: 70px; height: 130px; left: 2px; top: 2px; z-index: 10; } #emb_view_axis_legend { position: absolute; width: 45px; height: 45px; left: 1px; bottom: 1px; z-index: 10; /* border-style: solid; */ /* border-width: thin; */ } #comp_view { float: left; position: relative; width: 400px; height: 97vh; margin-left: 5px; margin-right: 14px; border-style: solid; border-width: thin; border-color: #DDDDDD; } #comps { float: left; width: 70%; height: 100%; } .comp { float: left; width: 50%; height: 100%; } #comp_x_svg {} #comp_y_svg {} #comp_feat_name_svg { float: left; width: 30%; height: 100%; } #misc { float: left; display: flex; justify-content: center; position: absolute; width: 100%; height: 23px; right: 0px; bottom: 0px; z-index: 10; font-size: 10px; background-color: #f5f5f5; } #label_data_names { float: left; display: flex; align-items: center; width: 50px; height: 100%; z-index: 10; font-size: 10px; cursor: pointer; } #data_names { float: left; margin-top: 3px; margin-left: -3px; width: 70px; height: 16px; z-index: 10; font-size: 10px; cursor: pointer; } #label_new_data_name { float: left; display: flex; align-items: center; margin-left: 10px; width: 60px; height: 100%; z-index: 10; font-size: 10px; vertical-align: middle; cursor: pointer; } #new_data_name { float: left; margin-top: 3px; margin-left: -7px; width: 70px; height: 11px; z-index: 10; font-size: 10px; cursor: pointer; } #save_button { float: left; margin-top: 3px; margin-left: 3px; width: 40px; height: 17px; z-index: 10; font-size: 10px; cursor: pointer; text-align: center; }
0.439747
0.067701
body, html { padding: 0; margin: 0; } #mosaic_editor, #mosaic_libman { font: 400 16px/18px 'Roboto', sans-serif; color: #222222A5; } input, textarea { background: #00000008 0% 0% no-repeat padding-box; border: 2px solid #2222220D; border-radius: 5px; padding: 5px 10px; } /* library manager */ #mosaic_libman h1 { font: 500 25px/25px 'Roboto', sans-serif; letter-spacing: 0.85px; color: #222222; text-transform: uppercase; } #mosaic_libman h2 { font: 500 25px/25px 'Roboto', sans-serif; letter-spacing: 0.72px; color: #222222; } #mosaic_libman h3 { font: 500 20px/25px 'Roboto', sans-serif; letter-spacing: 0.72px; color: #222222; } #mosaic_libman button svg { margin-right: 0.5em; font-size: 20px; vertical-align: middle; } #mosaic_libman .libhead { display: flex; flex-direction: row; justify-content: space-between; align-items: baseline; } .syncstatus.active svg { animation: 1.5s linear infinite spinner; } .syncstatus.done { animation: 1.5s linear fadeout; opacity: 0; } @keyframes spinner { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @keyframes fadeout { from { opacity: 1; } to { opacity: 0; } } #mosaic_libman .addbuttons { display: flex; flex-direction: row; justify-content: right; gap: 20px; padding: 20px 20px; border-bottom: 1px solid #e7e7e7; } #mosaic_libman .schsel { display: flex; flex-direction: column; overflow: hidden; } #mosaic_libman .schsel h2 { padding: 0 20px; } #mosaic_libman .schsel .schematics { padding: 0 20px; overflow: auto; } #mosaic_libman button, #mosaic_libman input[type=submit], #mosaic_libman .buttongroup { background: #f8f8f8 0% 0% no-repeat padding-box; box-shadow: 0px 1px 4px #00000033; border-radius: 7px; border: none; padding: 10px 15px; } #mosaic_libman button:active { box-shadow: 0px 0px 4px hsla(0, 0%, 0%, 0.2); } #mosaic_libman button.primary, #mosaic_libman input[type=submit], #mosaic_libman .buttongroup.primary { background-color: #0E1A32; color: white; } #mosaic_libman .buttongroup.primary > button, #mosaic_libman .buttongroup summary::after { color: white; border-color: white; } #mosaic_libman .buttongroup.primary > button:disabled { color: grey; } #mosaic_libman .buttongroup { display: flex; flex-direction: row; align-items: center; padding: 0; position: relative; } #mosaic_libman .buttongroup summary { padding: 10px 15px; border-left: 1px solid rgb(224, 224, 224); } #mosaic_libman .buttongroup summary::after { transform: rotate(45deg); top:-5px; left:0px; } #mosaic_libman .buttongroup details > button { position: absolute; left: 0; bottom: -100%; width: 100%; } #mosaic_libman .buttongroup > button { background: none; box-shadow: none; } #mosaic_libman .libraries { grid-area: libraries; display: flex; flex-direction: column; border-right: 1px solid #e7e7e7; overflow: hidden; } #mosaic_libman .libraries > *{ padding: 1em; } #mosaic_libman .libraries .dbsel { flex-grow: 1; } #mosaic_libman .schematics { grid-area: schematics; display: flex; flex-direction: column; } #mosaic_libman .cellsel { flex-grow: 1; overflow: auto; } #mosaic_libman .cellsel details { margin: 0.5em 0; } #mosaic_libman .dbprops { padding: 0; background-color: #00000007; } #mosaic_libman .proppane { grid-area: properties; border-left: 1px solid #e7e7e7; padding: 20px; } #mosaic_libman .proppane .preview { padding: 1em; margin-bottom: 1em; background-color: #f3f3f3; } #mosaic_libman .properties { display: grid; grid-template-columns: [labels] auto [controls] auto; grid-auto-flow: row; row-gap: 1em; align-items: center; } #mosaic_libman .properties label { grid-column: labels; grid-row: auto; } #mosaic_libman .properties input { grid-column: controls; grid-row: auto; box-sizing: border-box; width: 100%; } #mosaic_libman input[type=radio] { display: none; } #mosaic_libman input[type=radio] + label { display: block; padding: 10px 15px; margin-top: 5px; } #mosaic_libman input[type=radio]:checked + label { background-color: rgba(0, 0, 0, 0.041); border-radius: 7px; } #mosaic_libman .schematics label svg { font-size: 1.5em; vertical-align: middle; margin-right: 0.2em; } #mosaic_libman .schematics label form { display: inline; } #mosaic_libman details .detailbody { max-height: 0px; transition: max-height 1s; overflow: hidden; margin-left:7px; } #mosaic_libman details[open] .detailbody { max-height: 10000px; } #mosaic_libman details summary { list-style-type: none; } #mosaic_libman .cellsel details summary { padding: 10px 15px; border-radius: 7px; } #mosaic_libman .dbprops details summary { padding:1em; } #mosaic_libman .dbprops details form { margin: 0 1em 1em 1em; } #mosaic_libman .cellsel details[open] summary { background: #0E1A32 0% 0% no-repeat padding-box; color:white; } #mosaic_libman details summary::after { content: ""; border: solid black; border-width: 0 1px 1px 0; padding: 3px; transform: rotate(-45deg); float: right; position: relative; top:4px; left:-4px; transition: transform 100ms; } #mosaic_libman details[open] summary::after { transform: rotate(45deg); border: solid white; border-width: 0 1px 1px 0; } #mosaic_libman .dbprops details[open] summary::after { border: solid black; border-width: 0 1px 1px 0; } #mosaic_libman { display: grid; grid-template-areas: 'libraries schematics properties'; grid-template-rows: 1fr; grid-template-columns: 1fr 2fr 2fr; } #mosaic_libman .window { background: white; box-shadow: 0px 0px 10px #00000033; border-radius: 7px; border: 1px solid lightgray; padding: 20px 20px; } #mosaic_libman .window.hidden { display: none; } #mosaic_libman .modal { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } #mosaic_libman .modal input[type=text] { display: block; margin: 1em 0; } #mosaic_libman .modal input[type=submit] { margin-left:1em; } #mosaic_libman .contextmenu { position: absolute; } #mosaic_libman .contextmenu ul { padding: 0; margin: 0; list-style-type: none; } /* editor */ #mosaic_editor * { margin: 0; padding: 0; } #mosaic_editor h1, #mosaic_editor h2, #mosaic_editor h3, #mosaic_editor h4, #mosaic_editor h5, #mosaic_editor h6 { font-size: 1.1em; margin: 0.5em 0; } #mosaic_editor, #mosaic_app, #mosaic_libman { width: 100%; height: 100%; overflow: hidden; } #mosaic_app { display: flex; flex-direction: column; } #mosaic_app .menu { grid-row: 1; background-color: white; box-shadow: 0px 0px 8px #00000008; border: 0.5px solid #7070701f; z-index: 1; display: flex; justify-content: space-between; align-items: center; background-image: url(icons/Logo.svg); background-repeat: no-repeat; background-position: 15px 50%; padding-left: 65px; } #mosaic_app .menu .primary { display: flex; justify-content: flex-start; flex-wrap: wrap; } #mosaic_app .menu .secondary { display: flex; justify-content: flex-end; } #mosaic_app .content { position: relative; flex-grow: 1; flex-shrink: 5; overflow:hidden; } #mosaic_app .devicetray { position: absolute; top: 25px; left: 25px; background: #FFFFFF 0% 0% no-repeat padding-box; box-shadow: 0px 0px 8px #00000008; border: 0.5px solid #7070701f; border-radius: 15px; display: flex; flex-direction: column; padding: 0.5em; max-height: calc(100% - 50px); /* overflow-y: auto; */ /* overflow-x: visible; */ max-width: 5em; box-sizing: border-box; user-select: none; } #mosaic_app .sidebar { position: absolute; top: 25px; right: 25px; background: #FFFFFF 0% 0% no-repeat padding-box; box-shadow: 0px 0px 8px #00000008; border: 0.5px solid #70707040; border-radius: 10px; width: 300px; max-height: calc(100% - 50px); overflow-y: auto; overflow-x: hidden; box-sizing: border-box; } #mosaic_app .sidebar h1 { background-color: #0E1A32; color: white; margin: 0; border-radius: 10px 10px 0 0; padding: 15px 20px; font: 500 18px/20px 'Roboto', sans-serif; letter-spacing: 0.70px; } #mosaic_app .sidebar .properties { padding: 20px; } #mosaic_app .chrome a, #mosaic_app .chrome button, #mosaic_app .chrome label { padding: 0.5em; margin: 0.75em 0.5em; background-color: white; box-shadow: 0px 0px 8px #0000001A; border-radius: 5px; width: 1em; height: 1em; color: #222222A5; border: none; box-sizing: content-box; } #mosaic_app .chrome svg { fill: #222222A5; } #mosaic_app .chrome span.sep { border-right: 1px solid lightgray; padding: 0; margin: 0.75em 0.5em; } #mosaic_app .chrome a:hover, #mosaic_app .chrome button:hover { background-color: lightgray; } #mosaic_app .chrome a:active, #mosaic_app .chrome a.active, #mosaic_app .chrome button.active, #mosaic_app .chrome input[type=radio]:checked + label { background-color: #0E1A32; color: white; } #mosaic_app .chrome a:active svg, #mosaic_app .chrome a.active svg, #mosaic_app .chrome button.active svg, #mosaic_app .chrome input[type=radio]:checked + label svg { fill: white; } #mosaic_app .chrome input { display: none; } #mosaic_app .devicetray button { padding: 0.7em; width: 25px; height: 25px; display: inline-block; } #mosaic_app .devicetray svg { width: 25px; height: 25px; } #mosaic_app .devicetray details { position: relative; } #mosaic_app .devicetray summary { list-style-type: none; } #mosaic_app .devicetray summary::after { content: ""; position: absolute; bottom:0.7em; right:0.7em; border-color: transparent; border-top-color: black; border-style: solid; border-width: 3px; } #mosaic_app .devicetray details .tray { position: absolute; top:0; left:120%; display: flex; flex-direction: row; background: #FFFFFF 0% 0% no-repeat padding-box; /* box-shadow: 0px 0px 8px #00000008; */ border: 0.5px solid #7070701f; border-radius: 5px; z-index: 0; } #mosaic_app .devicetray details .tray::before { content: ""; position: absolute; z-index: -1; top: calc(50% - 10px); left: -10px; transform: rotate(45deg); width: 20px; height: 20px; background: white; border-left: 0.5px solid #7070701f; border-bottom: 0.5px solid #7070701f; } #mosaic_editor .properties { display: grid; grid-template-columns: [labels] auto [controls] 1fr; grid-auto-flow: row; grid-gap: .8em; } #mosaic_editor .properties label { grid-column: labels; grid-row: auto; } #mosaic_editor .properties input { grid-column: controls; grid-row: auto; box-sizing: border-box; width: 100%; } #mosaic_canvas { overflow: hidden; } #mosaic_editor svg { overflow: visible; stroke-linecap: round; } #mosaic_editor g.staging, #mosaic_editor g.toolstaging { opacity: 0.5; } g.device { transform-box: view-box; transform-origin: center; user-select: none; } g.staging, g.toolstaging g.device { transition: all 70ms ease-out; } line.wirebb { stroke: transparent; transition: stroke 200ms; stroke-width: 25px; fill: none; } line.wirebb:hover { stroke: #00000008; } text.identifier { font-size: 0.7em; } rect.select { fill: #0000001A } /* tetris theme */ .tetris { background-color: #f9f9f9; } .tetris.pan { cursor: url(icons/arrows-move.svg) 6 0, grab; } .tetris.wire { cursor: url(icons/pencil.svg) 0 16, crosshair; } .tetris.probe { cursor: url(icons/search.svg) 5 5, crosshair; } .tetris.eraser .wire:hover, .tetris.eraser .device { cursor: url(icons/eraser.svg) 6 14, crosshair; } .tetris line.grid { stroke: lightgray; stroke-width: 0.5px; fill: none; } .tetris rect.tetris { fill: rgb(238, 238, 238); stroke: rgb(238, 238, 238); stroke-width: calc(10px*0.8284271247461903); /* 2*rx*(sqrt(2)-1) */ rx: 10px; } .tetris g.device.selected rect.tetris, .tetris rect.tetris.selected { fill: rgb(229, 216, 243) !important; stroke: rgb(229, 216, 243) !important; } .tetris .port.selected polyline { fill: rgb(229, 216, 243) !important; } .tetris g.device.nmos rect.tetris, .tetris g.device.npn rect.tetris { fill: rgb(216, 236, 243); stroke: rgb(216, 236, 243); } .tetris g.device.pmos rect.tetris, .tetris g.device.pnp rect.tetris { fill: rgb(243, 231, 216); stroke: rgb(243, 231, 216); } .tetris g.device.capacitor rect.tetris, .tetris g.device.inductor rect.tetris, .tetris g.device.resistor rect.tetris, .tetris g.device.diode rect.tetris { fill: rgb(216, 243, 226); stroke: rgb(216, 243, 226); } .tetris g.device.vsource rect.tetris, .tetris g.device.isource rect.tetris { fill: rgb(243, 243, 216); stroke: rgb(243, 243, 216); } .tetris g.device.port polyline { fill: rgb(243, 243, 216); } .tetris circle.port { fill: rgb(145, 0, 0); stroke: rgb(53, 0, 0); } .tetris g.device circle.port { display: none; } .tetris g.device.selected circle.port { display: inherit; } .tetris g.device polyline, .tetris g.device circle.outline, .tetris g.device rect.outline, .tetris g.device path { stroke: black; stroke-width: 2px; fill: none; } .tetris line.wire { stroke: black; stroke-width: 2px; fill: none; } .tetris circle.wire { fill: black; } .tetris g.wire.selected line.wire { stroke-dasharray: 10px 3px; /* this is not ideal */ } .tetris circle.nc { fill: none; stroke: red; stroke-dasharray: 1 4; } /* eyesore theme */ .eyesore line.grid { stroke: lightgray; stroke-width: 1px; stroke-dasharray: 1 99999; stroke-linecap: butt; fill: none; vector-effect: non-scaling-stroke; } .eyesore #mosaic_canvas { shape-rendering: crispEdges; background-color: black; } .eyesore rect.tetris { fill: transparent; } .eyesore circle.port { fill: red; } .eyesore circle.nc { fill: red; } .eyesore text { fill: red; } .eyesore g.device polyline, .eyesore g.device path, .eyesore g.device circle.outline, .eyesore g.device rect.outline, .eyesore g.device polygon { stroke: #00cc66; stroke-width: 1px; fill: none; vector-effect: non-scaling-stroke; } .eyesore g.device.port polyline { fill: rgb(255, 0, 0); stroke: none; } .eyesore g.device.port circle.port { fill: none; } .eyesore g.device.port.supply polyline, .eyesore g.device.port.ground polyline { stroke: #00cc66; fill: transparent; } .eyesore g.device text { stroke: #00cc66; /* stroke-width: 1px; */ fill: #00cc66; vector-effect: non-scaling-stroke; } .eyesore line.wire { stroke: #39bfff; stroke-width: 1px; fill: none; vector-effect: non-scaling-stroke; } .eyesore circle.wire { fill: #39bfff; }
pyttoresque/app/static/style.css
body, html { padding: 0; margin: 0; } #mosaic_editor, #mosaic_libman { font: 400 16px/18px 'Roboto', sans-serif; color: #222222A5; } input, textarea { background: #00000008 0% 0% no-repeat padding-box; border: 2px solid #2222220D; border-radius: 5px; padding: 5px 10px; } /* library manager */ #mosaic_libman h1 { font: 500 25px/25px 'Roboto', sans-serif; letter-spacing: 0.85px; color: #222222; text-transform: uppercase; } #mosaic_libman h2 { font: 500 25px/25px 'Roboto', sans-serif; letter-spacing: 0.72px; color: #222222; } #mosaic_libman h3 { font: 500 20px/25px 'Roboto', sans-serif; letter-spacing: 0.72px; color: #222222; } #mosaic_libman button svg { margin-right: 0.5em; font-size: 20px; vertical-align: middle; } #mosaic_libman .libhead { display: flex; flex-direction: row; justify-content: space-between; align-items: baseline; } .syncstatus.active svg { animation: 1.5s linear infinite spinner; } .syncstatus.done { animation: 1.5s linear fadeout; opacity: 0; } @keyframes spinner { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @keyframes fadeout { from { opacity: 1; } to { opacity: 0; } } #mosaic_libman .addbuttons { display: flex; flex-direction: row; justify-content: right; gap: 20px; padding: 20px 20px; border-bottom: 1px solid #e7e7e7; } #mosaic_libman .schsel { display: flex; flex-direction: column; overflow: hidden; } #mosaic_libman .schsel h2 { padding: 0 20px; } #mosaic_libman .schsel .schematics { padding: 0 20px; overflow: auto; } #mosaic_libman button, #mosaic_libman input[type=submit], #mosaic_libman .buttongroup { background: #f8f8f8 0% 0% no-repeat padding-box; box-shadow: 0px 1px 4px #00000033; border-radius: 7px; border: none; padding: 10px 15px; } #mosaic_libman button:active { box-shadow: 0px 0px 4px hsla(0, 0%, 0%, 0.2); } #mosaic_libman button.primary, #mosaic_libman input[type=submit], #mosaic_libman .buttongroup.primary { background-color: #0E1A32; color: white; } #mosaic_libman .buttongroup.primary > button, #mosaic_libman .buttongroup summary::after { color: white; border-color: white; } #mosaic_libman .buttongroup.primary > button:disabled { color: grey; } #mosaic_libman .buttongroup { display: flex; flex-direction: row; align-items: center; padding: 0; position: relative; } #mosaic_libman .buttongroup summary { padding: 10px 15px; border-left: 1px solid rgb(224, 224, 224); } #mosaic_libman .buttongroup summary::after { transform: rotate(45deg); top:-5px; left:0px; } #mosaic_libman .buttongroup details > button { position: absolute; left: 0; bottom: -100%; width: 100%; } #mosaic_libman .buttongroup > button { background: none; box-shadow: none; } #mosaic_libman .libraries { grid-area: libraries; display: flex; flex-direction: column; border-right: 1px solid #e7e7e7; overflow: hidden; } #mosaic_libman .libraries > *{ padding: 1em; } #mosaic_libman .libraries .dbsel { flex-grow: 1; } #mosaic_libman .schematics { grid-area: schematics; display: flex; flex-direction: column; } #mosaic_libman .cellsel { flex-grow: 1; overflow: auto; } #mosaic_libman .cellsel details { margin: 0.5em 0; } #mosaic_libman .dbprops { padding: 0; background-color: #00000007; } #mosaic_libman .proppane { grid-area: properties; border-left: 1px solid #e7e7e7; padding: 20px; } #mosaic_libman .proppane .preview { padding: 1em; margin-bottom: 1em; background-color: #f3f3f3; } #mosaic_libman .properties { display: grid; grid-template-columns: [labels] auto [controls] auto; grid-auto-flow: row; row-gap: 1em; align-items: center; } #mosaic_libman .properties label { grid-column: labels; grid-row: auto; } #mosaic_libman .properties input { grid-column: controls; grid-row: auto; box-sizing: border-box; width: 100%; } #mosaic_libman input[type=radio] { display: none; } #mosaic_libman input[type=radio] + label { display: block; padding: 10px 15px; margin-top: 5px; } #mosaic_libman input[type=radio]:checked + label { background-color: rgba(0, 0, 0, 0.041); border-radius: 7px; } #mosaic_libman .schematics label svg { font-size: 1.5em; vertical-align: middle; margin-right: 0.2em; } #mosaic_libman .schematics label form { display: inline; } #mosaic_libman details .detailbody { max-height: 0px; transition: max-height 1s; overflow: hidden; margin-left:7px; } #mosaic_libman details[open] .detailbody { max-height: 10000px; } #mosaic_libman details summary { list-style-type: none; } #mosaic_libman .cellsel details summary { padding: 10px 15px; border-radius: 7px; } #mosaic_libman .dbprops details summary { padding:1em; } #mosaic_libman .dbprops details form { margin: 0 1em 1em 1em; } #mosaic_libman .cellsel details[open] summary { background: #0E1A32 0% 0% no-repeat padding-box; color:white; } #mosaic_libman details summary::after { content: ""; border: solid black; border-width: 0 1px 1px 0; padding: 3px; transform: rotate(-45deg); float: right; position: relative; top:4px; left:-4px; transition: transform 100ms; } #mosaic_libman details[open] summary::after { transform: rotate(45deg); border: solid white; border-width: 0 1px 1px 0; } #mosaic_libman .dbprops details[open] summary::after { border: solid black; border-width: 0 1px 1px 0; } #mosaic_libman { display: grid; grid-template-areas: 'libraries schematics properties'; grid-template-rows: 1fr; grid-template-columns: 1fr 2fr 2fr; } #mosaic_libman .window { background: white; box-shadow: 0px 0px 10px #00000033; border-radius: 7px; border: 1px solid lightgray; padding: 20px 20px; } #mosaic_libman .window.hidden { display: none; } #mosaic_libman .modal { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } #mosaic_libman .modal input[type=text] { display: block; margin: 1em 0; } #mosaic_libman .modal input[type=submit] { margin-left:1em; } #mosaic_libman .contextmenu { position: absolute; } #mosaic_libman .contextmenu ul { padding: 0; margin: 0; list-style-type: none; } /* editor */ #mosaic_editor * { margin: 0; padding: 0; } #mosaic_editor h1, #mosaic_editor h2, #mosaic_editor h3, #mosaic_editor h4, #mosaic_editor h5, #mosaic_editor h6 { font-size: 1.1em; margin: 0.5em 0; } #mosaic_editor, #mosaic_app, #mosaic_libman { width: 100%; height: 100%; overflow: hidden; } #mosaic_app { display: flex; flex-direction: column; } #mosaic_app .menu { grid-row: 1; background-color: white; box-shadow: 0px 0px 8px #00000008; border: 0.5px solid #7070701f; z-index: 1; display: flex; justify-content: space-between; align-items: center; background-image: url(icons/Logo.svg); background-repeat: no-repeat; background-position: 15px 50%; padding-left: 65px; } #mosaic_app .menu .primary { display: flex; justify-content: flex-start; flex-wrap: wrap; } #mosaic_app .menu .secondary { display: flex; justify-content: flex-end; } #mosaic_app .content { position: relative; flex-grow: 1; flex-shrink: 5; overflow:hidden; } #mosaic_app .devicetray { position: absolute; top: 25px; left: 25px; background: #FFFFFF 0% 0% no-repeat padding-box; box-shadow: 0px 0px 8px #00000008; border: 0.5px solid #7070701f; border-radius: 15px; display: flex; flex-direction: column; padding: 0.5em; max-height: calc(100% - 50px); /* overflow-y: auto; */ /* overflow-x: visible; */ max-width: 5em; box-sizing: border-box; user-select: none; } #mosaic_app .sidebar { position: absolute; top: 25px; right: 25px; background: #FFFFFF 0% 0% no-repeat padding-box; box-shadow: 0px 0px 8px #00000008; border: 0.5px solid #70707040; border-radius: 10px; width: 300px; max-height: calc(100% - 50px); overflow-y: auto; overflow-x: hidden; box-sizing: border-box; } #mosaic_app .sidebar h1 { background-color: #0E1A32; color: white; margin: 0; border-radius: 10px 10px 0 0; padding: 15px 20px; font: 500 18px/20px 'Roboto', sans-serif; letter-spacing: 0.70px; } #mosaic_app .sidebar .properties { padding: 20px; } #mosaic_app .chrome a, #mosaic_app .chrome button, #mosaic_app .chrome label { padding: 0.5em; margin: 0.75em 0.5em; background-color: white; box-shadow: 0px 0px 8px #0000001A; border-radius: 5px; width: 1em; height: 1em; color: #222222A5; border: none; box-sizing: content-box; } #mosaic_app .chrome svg { fill: #222222A5; } #mosaic_app .chrome span.sep { border-right: 1px solid lightgray; padding: 0; margin: 0.75em 0.5em; } #mosaic_app .chrome a:hover, #mosaic_app .chrome button:hover { background-color: lightgray; } #mosaic_app .chrome a:active, #mosaic_app .chrome a.active, #mosaic_app .chrome button.active, #mosaic_app .chrome input[type=radio]:checked + label { background-color: #0E1A32; color: white; } #mosaic_app .chrome a:active svg, #mosaic_app .chrome a.active svg, #mosaic_app .chrome button.active svg, #mosaic_app .chrome input[type=radio]:checked + label svg { fill: white; } #mosaic_app .chrome input { display: none; } #mosaic_app .devicetray button { padding: 0.7em; width: 25px; height: 25px; display: inline-block; } #mosaic_app .devicetray svg { width: 25px; height: 25px; } #mosaic_app .devicetray details { position: relative; } #mosaic_app .devicetray summary { list-style-type: none; } #mosaic_app .devicetray summary::after { content: ""; position: absolute; bottom:0.7em; right:0.7em; border-color: transparent; border-top-color: black; border-style: solid; border-width: 3px; } #mosaic_app .devicetray details .tray { position: absolute; top:0; left:120%; display: flex; flex-direction: row; background: #FFFFFF 0% 0% no-repeat padding-box; /* box-shadow: 0px 0px 8px #00000008; */ border: 0.5px solid #7070701f; border-radius: 5px; z-index: 0; } #mosaic_app .devicetray details .tray::before { content: ""; position: absolute; z-index: -1; top: calc(50% - 10px); left: -10px; transform: rotate(45deg); width: 20px; height: 20px; background: white; border-left: 0.5px solid #7070701f; border-bottom: 0.5px solid #7070701f; } #mosaic_editor .properties { display: grid; grid-template-columns: [labels] auto [controls] 1fr; grid-auto-flow: row; grid-gap: .8em; } #mosaic_editor .properties label { grid-column: labels; grid-row: auto; } #mosaic_editor .properties input { grid-column: controls; grid-row: auto; box-sizing: border-box; width: 100%; } #mosaic_canvas { overflow: hidden; } #mosaic_editor svg { overflow: visible; stroke-linecap: round; } #mosaic_editor g.staging, #mosaic_editor g.toolstaging { opacity: 0.5; } g.device { transform-box: view-box; transform-origin: center; user-select: none; } g.staging, g.toolstaging g.device { transition: all 70ms ease-out; } line.wirebb { stroke: transparent; transition: stroke 200ms; stroke-width: 25px; fill: none; } line.wirebb:hover { stroke: #00000008; } text.identifier { font-size: 0.7em; } rect.select { fill: #0000001A } /* tetris theme */ .tetris { background-color: #f9f9f9; } .tetris.pan { cursor: url(icons/arrows-move.svg) 6 0, grab; } .tetris.wire { cursor: url(icons/pencil.svg) 0 16, crosshair; } .tetris.probe { cursor: url(icons/search.svg) 5 5, crosshair; } .tetris.eraser .wire:hover, .tetris.eraser .device { cursor: url(icons/eraser.svg) 6 14, crosshair; } .tetris line.grid { stroke: lightgray; stroke-width: 0.5px; fill: none; } .tetris rect.tetris { fill: rgb(238, 238, 238); stroke: rgb(238, 238, 238); stroke-width: calc(10px*0.8284271247461903); /* 2*rx*(sqrt(2)-1) */ rx: 10px; } .tetris g.device.selected rect.tetris, .tetris rect.tetris.selected { fill: rgb(229, 216, 243) !important; stroke: rgb(229, 216, 243) !important; } .tetris .port.selected polyline { fill: rgb(229, 216, 243) !important; } .tetris g.device.nmos rect.tetris, .tetris g.device.npn rect.tetris { fill: rgb(216, 236, 243); stroke: rgb(216, 236, 243); } .tetris g.device.pmos rect.tetris, .tetris g.device.pnp rect.tetris { fill: rgb(243, 231, 216); stroke: rgb(243, 231, 216); } .tetris g.device.capacitor rect.tetris, .tetris g.device.inductor rect.tetris, .tetris g.device.resistor rect.tetris, .tetris g.device.diode rect.tetris { fill: rgb(216, 243, 226); stroke: rgb(216, 243, 226); } .tetris g.device.vsource rect.tetris, .tetris g.device.isource rect.tetris { fill: rgb(243, 243, 216); stroke: rgb(243, 243, 216); } .tetris g.device.port polyline { fill: rgb(243, 243, 216); } .tetris circle.port { fill: rgb(145, 0, 0); stroke: rgb(53, 0, 0); } .tetris g.device circle.port { display: none; } .tetris g.device.selected circle.port { display: inherit; } .tetris g.device polyline, .tetris g.device circle.outline, .tetris g.device rect.outline, .tetris g.device path { stroke: black; stroke-width: 2px; fill: none; } .tetris line.wire { stroke: black; stroke-width: 2px; fill: none; } .tetris circle.wire { fill: black; } .tetris g.wire.selected line.wire { stroke-dasharray: 10px 3px; /* this is not ideal */ } .tetris circle.nc { fill: none; stroke: red; stroke-dasharray: 1 4; } /* eyesore theme */ .eyesore line.grid { stroke: lightgray; stroke-width: 1px; stroke-dasharray: 1 99999; stroke-linecap: butt; fill: none; vector-effect: non-scaling-stroke; } .eyesore #mosaic_canvas { shape-rendering: crispEdges; background-color: black; } .eyesore rect.tetris { fill: transparent; } .eyesore circle.port { fill: red; } .eyesore circle.nc { fill: red; } .eyesore text { fill: red; } .eyesore g.device polyline, .eyesore g.device path, .eyesore g.device circle.outline, .eyesore g.device rect.outline, .eyesore g.device polygon { stroke: #00cc66; stroke-width: 1px; fill: none; vector-effect: non-scaling-stroke; } .eyesore g.device.port polyline { fill: rgb(255, 0, 0); stroke: none; } .eyesore g.device.port circle.port { fill: none; } .eyesore g.device.port.supply polyline, .eyesore g.device.port.ground polyline { stroke: #00cc66; fill: transparent; } .eyesore g.device text { stroke: #00cc66; /* stroke-width: 1px; */ fill: #00cc66; vector-effect: non-scaling-stroke; } .eyesore line.wire { stroke: #39bfff; stroke-width: 1px; fill: none; vector-effect: non-scaling-stroke; } .eyesore circle.wire { fill: #39bfff; }
0.474388
0.136321
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600&display=swap"); :root { --color-black: hsl(0, 0%, 10%); --color-white: hsl(0, 0%, 100%); --color-darken: hsl(0, 0%, 20%); --color-pink-100: hsl(336, 95%, 94%); --color-pink-200: hsl(338, 91%, 87%); --color-pink-300: hsl(339, 90%, 81%); --color-pink-400: hsl(339, 88%, 74%); --color-pink-500: hsl(339, 82%, 67%); --color-pink-600: hsl(339, 76%, 59%); --color-pink-700: hsl(339, 67%, 52%); --color-pink-800: hsl(339, 68%, 45%); --color-pink-900: hsl(339, 69%, 38%); --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); } *, *::before, *::after { padding: 0; margin: 0; -webkit-box-sizing: border-box; box-sizing: border-box; list-style: none; list-style-type: none; text-decoration: none; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; } html { font-size: 100%; -webkit-box-sizing: inherit; box-sizing: inherit; scroll-behavior: smooth; } body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; font-size: 1rem; font-weight: 400; line-height: 1.5; color: var(--color-black); background: var(--color-white); } a, button { font-family: inherit; font-size: inherit; line-height: inherit; cursor: pointer; border: none; outline: none; background: none; } img, video { display: block; max-width: 100%; height: auto; -o-object-fit: cover; object-fit: cover; } img { image-rendering: -webkit-optimize-contrast; image-rendering: -moz-crisp-edges; image-rendering: crisp-edges; } .container { max-width: 75rem; height: auto; margin: 0 auto; padding: 0 1.25rem; } .brand { font-family: "Rubik", sans-serif; font-size: 1.625rem; font-weight: 600; line-height: 1.25; letter-spacing: -1px; color: var(--color-pink-600); text-transform: uppercase; } .header { position: fixed; top: 0; left: 0; width: 100%; height: auto; z-index: 100; margin: 0 auto; background: var(--color-white); -webkit-box-shadow: var(--shadow-medium); box-shadow: var(--shadow-medium); } .header .wrapper { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 2rem; max-width: 100%; height: 4rem; margin: 0 auto; } .header .menu > .menu-item { position: relative; display: inline-block; margin: 0 0.75rem; } .header .menu > .menu-item > a { display: block; font-family: inherit; font-size: 1rem; font-weight: 500; line-height: inherit; padding: 1rem 0; border: none; outline: none; color: var(--color-black); text-transform: capitalize; -webkit-transition: all 0.35s ease; transition: all 0.35s ease; } .header .menu > .menu-item > a .expand { position: relative; display: inline-block; width: 0.75rem; height: 0.75rem; margin-left: 0.35rem; pointer-events: none; border: none; outline: none; } .header .menu > .menu-item > a .expand:before, .header .menu > .menu-item > a .expand:after { position: absolute; -webkit-box-sizing: inherit; box-sizing: inherit; content: ""; top: 50%; left: 50%; width: 100%; height: 2px; background: var(--color-black); -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); -webkit-transition: all 0.35s ease; transition: all 0.35s ease; } .header .menu > .menu-item:hover > a { color: var(--color-pink-700); } .header .menu > .menu-item:hover > a .expand::before, .header .menu > .menu-item:hover > a .expand::after { background: var(--color-pink-700); } .header .menu > .menu-item > a .expand::after { -webkit-transform: translate(-50%, -50%) rotate(-90deg); transform: translate(-50%, -50%) rotate(-90deg); } .header .menu > .menu-item > .sub-menu > .menu-item > a:hover { color: var(--color-pink-700); } .header .menu > .menu-item > .sub-menu { position: absolute; top: 100%; left: -1rem; width: 13rem; height: auto; padding: 0.75rem 0; border: none; outline: none; opacity: 0; visibility: hidden; border-top: 3px solid var(--color-pink-600); background: var(--color-white); -webkit-box-shadow: var(--shadow-medium); box-shadow: var(--shadow-medium); -webkit-transform: translateY(1rem); transform: translateY(1rem); -webkit-transition: all 0.35s ease; transition: all 0.35s ease; } .header .menu > .menu-item > .sub-menu > .menu-item { display: block; } .header .menu > .menu-item > .sub-menu > .menu-item > a { display: block; font-family: inherit; font-size: 1rem; font-weight: 500; line-height: inherit; padding: 0.5rem 1.25rem; color: var(--color-black); text-transform: capitalize; -webkit-transition: all 0.35s ease; transition: all 0.35s ease; } .header .burger { position: relative; cursor: pointer; display: none; width: 1.75rem; height: 1rem; margin-top: -0.25rem; outline: none; opacity: 0; visibility: hidden; background: none; -webkit-transform: rotate(0deg); transform: rotate(0deg); -webkit-transition: all 0.35s ease; transition: all 0.35s ease; } .header .burger-line { position: absolute; display: block; width: 100%; height: 2px; left: 0; border: none; outline: none; opacity: 1; border-radius: 0.25rem; background: var(--color-black); -webkit-transform: rotate(0deg); transform: rotate(0deg); -webkit-transition: all 0.25s ease; transition: all 0.25s ease; } .header .burger-line:nth-child(1) { top: 0; } .header .burger-line:nth-child(2), .header .burger-line:nth-child(3) { top: 0.5rem; } .header .burger-line:nth-child(4) { top: 1rem; } .header .overlay { position: fixed; top: 0; left: 0; height: 100%; width: 100%; z-index: 100; opacity: 0; visibility: hidden; background: rgba(0, 0, 0, 0.65); -webkit-transition: all 0.35s ease; transition: all 0.35s ease; } @media only screen and (min-width: 993px) { .header .menu > .menu-item-child:hover > .sub-menu { display: block; opacity: 1; visibility: visible; -webkit-transform: translateY(0); transform: translateY(0); } .header .menu > .menu-item-child:hover > a .expand::after { -webkit-transform: translate(-50%, -50%) rotate(0deg); transform: translate(-50%, -50%) rotate(0deg); } } @media only screen and (max-width: 992px) { .header .overlay.active { display: block; opacity: 1; visibility: visible; } .header .navbar { position: fixed; top: 0; left: -100%; width: 75%; height: 100%; z-index: 999; opacity: 0; overflow-y: auto; visibility: hidden; background: var(--color-white); -webkit-box-shadow: var(--shadow-medium); box-shadow: var(--shadow-medium); -webkit-transition: all 0.5s ease; transition: all 0.5s ease; } .header .navbar.active { left: 0rem; opacity: 1; visibility: visible; } .header .menu { width: 100%; height: auto; margin: 1rem 0; } .header .menu > .menu-item { display: block; margin: 0; } .header .menu > .menu-item-child > a { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .header .menu > .menu-item > a { padding: 0.625rem 1.25rem; color: var(--color-black); } .header .menu > .menu-item > a .expand::before, .header .menu > .menu-item > a .expand::after { background: var(--color-black); } .header .menu > .menu-item-child.active > a .expand:after { -webkit-transform: translate(-50%, -50%) rotate(0deg); transform: translate(-50%, -50%) rotate(0deg); } .header .menu > .menu-item > .sub-menu { position: relative; top: auto; left: auto; width: 100%; max-height: 0; padding: 0px; border: none; outline: none; opacity: 1; overflow: hidden; visibility: visible; background: transparent; -webkit-box-shadow: none; box-shadow: none; -webkit-transform: translateY(0px); transform: translateY(0px); } .header .menu > .menu-item > .sub-menu > .menu-item > a { padding: 0.625rem 2rem; color: var(--color-black); } .header .burger { display: block; opacity: 1; visibility: visible; } }
public/css/style.css
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600&display=swap"); :root { --color-black: hsl(0, 0%, 10%); --color-white: hsl(0, 0%, 100%); --color-darken: hsl(0, 0%, 20%); --color-pink-100: hsl(336, 95%, 94%); --color-pink-200: hsl(338, 91%, 87%); --color-pink-300: hsl(339, 90%, 81%); --color-pink-400: hsl(339, 88%, 74%); --color-pink-500: hsl(339, 82%, 67%); --color-pink-600: hsl(339, 76%, 59%); --color-pink-700: hsl(339, 67%, 52%); --color-pink-800: hsl(339, 68%, 45%); --color-pink-900: hsl(339, 69%, 38%); --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); } *, *::before, *::after { padding: 0; margin: 0; -webkit-box-sizing: border-box; box-sizing: border-box; list-style: none; list-style-type: none; text-decoration: none; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; } html { font-size: 100%; -webkit-box-sizing: inherit; box-sizing: inherit; scroll-behavior: smooth; } body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; font-size: 1rem; font-weight: 400; line-height: 1.5; color: var(--color-black); background: var(--color-white); } a, button { font-family: inherit; font-size: inherit; line-height: inherit; cursor: pointer; border: none; outline: none; background: none; } img, video { display: block; max-width: 100%; height: auto; -o-object-fit: cover; object-fit: cover; } img { image-rendering: -webkit-optimize-contrast; image-rendering: -moz-crisp-edges; image-rendering: crisp-edges; } .container { max-width: 75rem; height: auto; margin: 0 auto; padding: 0 1.25rem; } .brand { font-family: "Rubik", sans-serif; font-size: 1.625rem; font-weight: 600; line-height: 1.25; letter-spacing: -1px; color: var(--color-pink-600); text-transform: uppercase; } .header { position: fixed; top: 0; left: 0; width: 100%; height: auto; z-index: 100; margin: 0 auto; background: var(--color-white); -webkit-box-shadow: var(--shadow-medium); box-shadow: var(--shadow-medium); } .header .wrapper { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 2rem; max-width: 100%; height: 4rem; margin: 0 auto; } .header .menu > .menu-item { position: relative; display: inline-block; margin: 0 0.75rem; } .header .menu > .menu-item > a { display: block; font-family: inherit; font-size: 1rem; font-weight: 500; line-height: inherit; padding: 1rem 0; border: none; outline: none; color: var(--color-black); text-transform: capitalize; -webkit-transition: all 0.35s ease; transition: all 0.35s ease; } .header .menu > .menu-item > a .expand { position: relative; display: inline-block; width: 0.75rem; height: 0.75rem; margin-left: 0.35rem; pointer-events: none; border: none; outline: none; } .header .menu > .menu-item > a .expand:before, .header .menu > .menu-item > a .expand:after { position: absolute; -webkit-box-sizing: inherit; box-sizing: inherit; content: ""; top: 50%; left: 50%; width: 100%; height: 2px; background: var(--color-black); -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); -webkit-transition: all 0.35s ease; transition: all 0.35s ease; } .header .menu > .menu-item:hover > a { color: var(--color-pink-700); } .header .menu > .menu-item:hover > a .expand::before, .header .menu > .menu-item:hover > a .expand::after { background: var(--color-pink-700); } .header .menu > .menu-item > a .expand::after { -webkit-transform: translate(-50%, -50%) rotate(-90deg); transform: translate(-50%, -50%) rotate(-90deg); } .header .menu > .menu-item > .sub-menu > .menu-item > a:hover { color: var(--color-pink-700); } .header .menu > .menu-item > .sub-menu { position: absolute; top: 100%; left: -1rem; width: 13rem; height: auto; padding: 0.75rem 0; border: none; outline: none; opacity: 0; visibility: hidden; border-top: 3px solid var(--color-pink-600); background: var(--color-white); -webkit-box-shadow: var(--shadow-medium); box-shadow: var(--shadow-medium); -webkit-transform: translateY(1rem); transform: translateY(1rem); -webkit-transition: all 0.35s ease; transition: all 0.35s ease; } .header .menu > .menu-item > .sub-menu > .menu-item { display: block; } .header .menu > .menu-item > .sub-menu > .menu-item > a { display: block; font-family: inherit; font-size: 1rem; font-weight: 500; line-height: inherit; padding: 0.5rem 1.25rem; color: var(--color-black); text-transform: capitalize; -webkit-transition: all 0.35s ease; transition: all 0.35s ease; } .header .burger { position: relative; cursor: pointer; display: none; width: 1.75rem; height: 1rem; margin-top: -0.25rem; outline: none; opacity: 0; visibility: hidden; background: none; -webkit-transform: rotate(0deg); transform: rotate(0deg); -webkit-transition: all 0.35s ease; transition: all 0.35s ease; } .header .burger-line { position: absolute; display: block; width: 100%; height: 2px; left: 0; border: none; outline: none; opacity: 1; border-radius: 0.25rem; background: var(--color-black); -webkit-transform: rotate(0deg); transform: rotate(0deg); -webkit-transition: all 0.25s ease; transition: all 0.25s ease; } .header .burger-line:nth-child(1) { top: 0; } .header .burger-line:nth-child(2), .header .burger-line:nth-child(3) { top: 0.5rem; } .header .burger-line:nth-child(4) { top: 1rem; } .header .overlay { position: fixed; top: 0; left: 0; height: 100%; width: 100%; z-index: 100; opacity: 0; visibility: hidden; background: rgba(0, 0, 0, 0.65); -webkit-transition: all 0.35s ease; transition: all 0.35s ease; } @media only screen and (min-width: 993px) { .header .menu > .menu-item-child:hover > .sub-menu { display: block; opacity: 1; visibility: visible; -webkit-transform: translateY(0); transform: translateY(0); } .header .menu > .menu-item-child:hover > a .expand::after { -webkit-transform: translate(-50%, -50%) rotate(0deg); transform: translate(-50%, -50%) rotate(0deg); } } @media only screen and (max-width: 992px) { .header .overlay.active { display: block; opacity: 1; visibility: visible; } .header .navbar { position: fixed; top: 0; left: -100%; width: 75%; height: 100%; z-index: 999; opacity: 0; overflow-y: auto; visibility: hidden; background: var(--color-white); -webkit-box-shadow: var(--shadow-medium); box-shadow: var(--shadow-medium); -webkit-transition: all 0.5s ease; transition: all 0.5s ease; } .header .navbar.active { left: 0rem; opacity: 1; visibility: visible; } .header .menu { width: 100%; height: auto; margin: 1rem 0; } .header .menu > .menu-item { display: block; margin: 0; } .header .menu > .menu-item-child > a { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .header .menu > .menu-item > a { padding: 0.625rem 1.25rem; color: var(--color-black); } .header .menu > .menu-item > a .expand::before, .header .menu > .menu-item > a .expand::after { background: var(--color-black); } .header .menu > .menu-item-child.active > a .expand:after { -webkit-transform: translate(-50%, -50%) rotate(0deg); transform: translate(-50%, -50%) rotate(0deg); } .header .menu > .menu-item > .sub-menu { position: relative; top: auto; left: auto; width: 100%; max-height: 0; padding: 0px; border: none; outline: none; opacity: 1; overflow: hidden; visibility: visible; background: transparent; -webkit-box-shadow: none; box-shadow: none; -webkit-transform: translateY(0px); transform: translateY(0px); } .header .menu > .menu-item > .sub-menu > .menu-item > a { padding: 0.625rem 2rem; color: var(--color-black); } .header .burger { display: block; opacity: 1; visibility: visible; } }
0.341692
0.079068
.btn-group, .btn-group-vertical { position: relative; display: inline-flex; vertical-align: middle; } .btn-group > .btn, .btn-group-vertical > .btn { position: relative; flex: 0 1 auto; } .btn-group > .btn:hover, .btn-group-vertical > .btn:hover { z-index: 2; } .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn.active { z-index: 2; } .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group, .btn-group-vertical .btn + .btn, .btn-group-vertical .btn + .btn-group, .btn-group-vertical .btn-group + .btn, .btn-group-vertical .btn-group + .btn-group { margin-left: -1px; } .btn-toolbar { display: flex; justify-content: flex-start; } .btn-toolbar .input-group { width: auto; } .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { border-radius: 0; } .btn-group > .btn:first-child { margin-left: 0; } .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { border-bottom-right-radius: 0; border-top-right-radius: 0; } .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; } .btn-group > .btn-group { float: left; } .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { border-bottom-right-radius: 0; border-top-right-radius: 0; } .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { border-bottom-left-radius: 0; border-top-left-radius: 0; } .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { outline: 0; } .btn + .dropdown-toggle-split { padding-right: 0.75rem; padding-left: 0.75rem; } .btn + .dropdown-toggle-split::after { margin-left: 0; } .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { padding-right: 0.375rem; padding-left: 0.375rem; } .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { padding-right: 1.125rem; padding-left: 1.125rem; } .btn-group-vertical { display: inline-flex; flex-direction: column; align-items: flex-start; justify-content: center; } .btn-group-vertical .btn, .btn-group-vertical .btn-group { width: 100%; } .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; } .btn-group-vertical > .btn:not(:first-child):not(:last-child) { border-radius: 0; } .btn-group-vertical > .btn:first-child:not(:last-child) { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical > .btn:last-child:not(:first-child) { border-top-right-radius: 0; border-top-left-radius: 0; } .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } .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; } .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { border-top-right-radius: 0; border-top-left-radius: 0; } [data-toggle="buttons"] > .btn input[type="radio"], [data-toggle="buttons"] > .btn input[type="checkbox"], [data-toggle="buttons"] > .btn-group > .btn input[type="radio"], [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] { position: absolute; clip: rect(0, 0, 0, 0); pointer-events: none; } .btn { display: inline-block; font-weight: normal; line-height: 1.25; text-align: center; white-space: nowrap; vertical-align: middle; user-select: none; border: 1px solid transparent; padding: 0.5rem 1rem; font-size: 1rem; border-radius: 0.25rem; transition: all 0.2s ease-in-out; } .btn:focus, .btn:hover { text-decoration: none; } .btn:focus, .btn.focus { outline: 0; box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25); } .btn.disabled, .btn:disabled { cursor: not-allowed; opacity: .65; } .btn:active, .btn.active { background-image: none; } a.btn.disabled, fieldset[disabled] a.btn { pointer-events: none; } .btn-primary { color: #fff; background-color: #0275d8; border-color: #0275d8; } .btn-primary:hover { color: #fff; background-color: #025aa5; border-color: #01549b; } .btn-primary:focus, .btn-primary.focus { box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.5); } .btn-primary.disabled, .btn-primary:disabled { background-color: #0275d8; border-color: #0275d8; } .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle { color: #fff; background-color: #025aa5; background-image: none; border-color: #01549b; } .btn-secondary { color: #292b2c; background-color: #fff; border-color: #ccc; } .btn-secondary:hover { color: #292b2c; background-color: #e6e6e6; border-color: #adadad; } .btn-secondary:focus, .btn-secondary.focus { box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5); } .btn-secondary.disabled, .btn-secondary:disabled { background-color: #fff; border-color: #ccc; } .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle { color: #292b2c; background-color: #e6e6e6; background-image: none; border-color: #adadad; } .btn-info { color: #fff; background-color: #5bc0de; border-color: #5bc0de; } .btn-info:hover { color: #fff; background-color: #31b0d5; border-color: #2aabd2; } .btn-info:focus, .btn-info.focus { box-shadow: 0 0 0 2px rgba(91, 192, 222, 0.5); } .btn-info.disabled, .btn-info:disabled { background-color: #5bc0de; border-color: #5bc0de; } .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle { color: #fff; background-color: #31b0d5; background-image: none; border-color: #2aabd2; } .btn-success { color: #fff; background-color: #5cb85c; border-color: #5cb85c; } .btn-success:hover { color: #fff; background-color: #449d44; border-color: #419641; } .btn-success:focus, .btn-success.focus { box-shadow: 0 0 0 2px rgba(92, 184, 92, 0.5); } .btn-success.disabled, .btn-success:disabled { background-color: #5cb85c; border-color: #5cb85c; } .btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle { color: #fff; background-color: #449d44; background-image: none; border-color: #419641; } .btn-warning { color: #fff; background-color: #f0ad4e; border-color: #f0ad4e; } .btn-warning:hover { color: #fff; background-color: #ec971f; border-color: #eb9316; } .btn-warning:focus, .btn-warning.focus { box-shadow: 0 0 0 2px rgba(240, 173, 78, 0.5); } .btn-warning.disabled, .btn-warning:disabled { background-color: #f0ad4e; border-color: #f0ad4e; } .btn-warning:active, .btn-warning.active, .show > .btn-warning.dropdown-toggle { color: #fff; background-color: #ec971f; background-image: none; border-color: #eb9316; } .btn-danger { color: #fff; background-color: #d9534f; border-color: #d9534f; } .btn-danger:hover { color: #fff; background-color: #c9302c; border-color: #c12e2a; } .btn-danger:focus, .btn-danger.focus { box-shadow: 0 0 0 2px rgba(217, 83, 79, 0.5); } .btn-danger.disabled, .btn-danger:disabled { background-color: #d9534f; border-color: #d9534f; } .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle { color: #fff; background-color: #c9302c; background-image: none; border-color: #c12e2a; } .btn-outline-primary { color: #0275d8; background-image: none; background-color: transparent; border-color: #0275d8; } .btn-outline-primary:hover { color: #fff; background-color: #0275d8; border-color: #0275d8; } .btn-outline-primary:focus, .btn-outline-primary.focus { box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.5); } .btn-outline-primary.disabled, .btn-outline-primary:disabled { color: #0275d8; background-color: transparent; } .btn-outline-primary:active, .btn-outline-primary.active, .show > .btn-outline-primary.dropdown-toggle { color: #fff; background-color: #0275d8; border-color: #0275d8; } .btn-outline-secondary { color: #ccc; background-image: none; background-color: transparent; border-color: #ccc; } .btn-outline-secondary:hover { color: #fff; background-color: #ccc; border-color: #ccc; } .btn-outline-secondary:focus, .btn-outline-secondary.focus { box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5); } .btn-outline-secondary.disabled, .btn-outline-secondary:disabled { color: #ccc; background-color: transparent; } .btn-outline-secondary:active, .btn-outline-secondary.active, .show > .btn-outline-secondary.dropdown-toggle { color: #fff; background-color: #ccc; border-color: #ccc; } .btn-outline-info { color: #5bc0de; background-image: none; background-color: transparent; border-color: #5bc0de; } .btn-outline-info:hover { color: #fff; background-color: #5bc0de; border-color: #5bc0de; } .btn-outline-info:focus, .btn-outline-info.focus { box-shadow: 0 0 0 2px rgba(91, 192, 222, 0.5); } .btn-outline-info.disabled, .btn-outline-info:disabled { color: #5bc0de; background-color: transparent; } .btn-outline-info:active, .btn-outline-info.active, .show > .btn-outline-info.dropdown-toggle { color: #fff; background-color: #5bc0de; border-color: #5bc0de; } .btn-outline-success { color: #5cb85c; background-image: none; background-color: transparent; border-color: #5cb85c; } .btn-outline-success:hover { color: #fff; background-color: #5cb85c; border-color: #5cb85c; } .btn-outline-success:focus, .btn-outline-success.focus { box-shadow: 0 0 0 2px rgba(92, 184, 92, 0.5); } .btn-outline-success.disabled, .btn-outline-success:disabled { color: #5cb85c; background-color: transparent; } .btn-outline-success:active, .btn-outline-success.active, .show > .btn-outline-success.dropdown-toggle { color: #fff; background-color: #5cb85c; border-color: #5cb85c; } .btn-outline-warning { color: #f0ad4e; background-image: none; background-color: transparent; border-color: #f0ad4e; } .btn-outline-warning:hover { color: #fff; background-color: #f0ad4e; border-color: #f0ad4e; } .btn-outline-warning:focus, .btn-outline-warning.focus { box-shadow: 0 0 0 2px rgba(240, 173, 78, 0.5); } .btn-outline-warning.disabled, .btn-outline-warning:disabled { color: #f0ad4e; background-color: transparent; } .btn-outline-warning:active, .btn-outline-warning.active, .show > .btn-outline-warning.dropdown-toggle { color: #fff; background-color: #f0ad4e; border-color: #f0ad4e; } .btn-outline-danger { color: #d9534f; background-image: none; background-color: transparent; border-color: #d9534f; } .btn-outline-danger:hover { color: #fff; background-color: #d9534f; border-color: #d9534f; } .btn-outline-danger:focus, .btn-outline-danger.focus { box-shadow: 0 0 0 2px rgba(217, 83, 79, 0.5); } .btn-outline-danger.disabled, .btn-outline-danger:disabled { color: #d9534f; background-color: transparent; } .btn-outline-danger:active, .btn-outline-danger.active, .show > .btn-outline-danger.dropdown-toggle { color: #fff; background-color: #d9534f; border-color: #d9534f; } .btn-link { font-weight: normal; color: #0275d8; border-radius: 0; } .btn-link, .btn-link:active, .btn-link.active, .btn-link:disabled { background-color: transparent; } .btn-link, .btn-link:focus, .btn-link:active { border-color: transparent; } .btn-link:hover { border-color: transparent; } .btn-link:focus, .btn-link:hover { color: #014c8c; text-decoration: underline; background-color: transparent; } .btn-link:disabled { color: #636c72; } .btn-link:disabled:focus, .btn-link:disabled:hover { text-decoration: none; } .btn-lg, .btn-group-lg > .btn { padding: 0.75rem 1.5rem; font-size: 1.25rem; border-radius: 0.3rem; } .btn-sm, .btn-group-sm > .btn { padding: 0.25rem 0.5rem; font-size: 0.875rem; border-radius: 0.2rem; } .btn-block { display: block; width: 100%; } .btn-block + .btn-block { margin-top: 0.5rem; } input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block { width: 100%; } .table { width: 100%; max-width: 100%; margin-bottom: 1rem; } .table th, .table td { padding: 0.75rem; vertical-align: top; border-top: 1px solid #eceeef; } .table thead th { vertical-align: bottom; border-bottom: 2px solid #eceeef; } .table tbody + tbody { border-top: 2px solid #eceeef; } .table .table { background-color: #fff; } .table-sm th, .table-sm td { padding: 0.3rem; } .table-bordered { border: 1px solid #eceeef; } .table-bordered th, .table-bordered td { border: 1px solid #eceeef; } .table-bordered thead th, .table-bordered thead td { border-bottom-width: 2px; } .table-striped tbody tr:nth-of-type(odd) { background-color: rgba(0, 0, 0, 0.05); } .table-hover tbody tr:hover { background-color: rgba(0, 0, 0, 0.075); } .table-active, .table-active > th, .table-active > td { background-color: rgba(0, 0, 0, 0.075); } .table-hover .table-active:hover { background-color: rgba(0, 0, 0, 0.075); } .table-hover .table-active:hover > td, .table-hover .table-active:hover > th { background-color: rgba(0, 0, 0, 0.075); } .table-success, .table-success > th, .table-success > td { background-color: #dff0d8; } .table-hover .table-success:hover { background-color: #d0e9c6; } .table-hover .table-success:hover > td, .table-hover .table-success:hover > th { background-color: #d0e9c6; } .table-info, .table-info > th, .table-info > td { background-color: #d9edf7; } .table-hover .table-info:hover { background-color: #c4e3f3; } .table-hover .table-info:hover > td, .table-hover .table-info:hover > th { background-color: #c4e3f3; } .table-warning, .table-warning > th, .table-warning > td { background-color: #fcf8e3; } .table-hover .table-warning:hover { background-color: #faf2cc; } .table-hover .table-warning:hover > td, .table-hover .table-warning:hover > th { background-color: #faf2cc; } .table-danger, .table-danger > th, .table-danger > td { background-color: #f2dede; } .table-hover .table-danger:hover { background-color: #ebcccc; } .table-hover .table-danger:hover > td, .table-hover .table-danger:hover > th { background-color: #ebcccc; } .thead-inverse th { color: #fff; background-color: #292b2c; } .thead-default th { color: #464a4c; background-color: #eceeef; } .table-inverse { color: #fff; background-color: #292b2c; } .table-inverse th, .table-inverse td, .table-inverse thead th { border-color: #fff; } .table-inverse.table-bordered { border: 0; } .table-responsive { display: block; width: 100%; overflow-x: auto; -ms-overflow-style: -ms-autohiding-scrollbar; } .table-responsive.table-bordered { border: 0; }
bstyles/compiled/button.css
.btn-group, .btn-group-vertical { position: relative; display: inline-flex; vertical-align: middle; } .btn-group > .btn, .btn-group-vertical > .btn { position: relative; flex: 0 1 auto; } .btn-group > .btn:hover, .btn-group-vertical > .btn:hover { z-index: 2; } .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn.active { z-index: 2; } .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group, .btn-group-vertical .btn + .btn, .btn-group-vertical .btn + .btn-group, .btn-group-vertical .btn-group + .btn, .btn-group-vertical .btn-group + .btn-group { margin-left: -1px; } .btn-toolbar { display: flex; justify-content: flex-start; } .btn-toolbar .input-group { width: auto; } .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { border-radius: 0; } .btn-group > .btn:first-child { margin-left: 0; } .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { border-bottom-right-radius: 0; border-top-right-radius: 0; } .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; } .btn-group > .btn-group { float: left; } .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { border-bottom-right-radius: 0; border-top-right-radius: 0; } .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { border-bottom-left-radius: 0; border-top-left-radius: 0; } .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { outline: 0; } .btn + .dropdown-toggle-split { padding-right: 0.75rem; padding-left: 0.75rem; } .btn + .dropdown-toggle-split::after { margin-left: 0; } .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { padding-right: 0.375rem; padding-left: 0.375rem; } .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { padding-right: 1.125rem; padding-left: 1.125rem; } .btn-group-vertical { display: inline-flex; flex-direction: column; align-items: flex-start; justify-content: center; } .btn-group-vertical .btn, .btn-group-vertical .btn-group { width: 100%; } .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; } .btn-group-vertical > .btn:not(:first-child):not(:last-child) { border-radius: 0; } .btn-group-vertical > .btn:first-child:not(:last-child) { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical > .btn:last-child:not(:first-child) { border-top-right-radius: 0; border-top-left-radius: 0; } .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } .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; } .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { border-top-right-radius: 0; border-top-left-radius: 0; } [data-toggle="buttons"] > .btn input[type="radio"], [data-toggle="buttons"] > .btn input[type="checkbox"], [data-toggle="buttons"] > .btn-group > .btn input[type="radio"], [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] { position: absolute; clip: rect(0, 0, 0, 0); pointer-events: none; } .btn { display: inline-block; font-weight: normal; line-height: 1.25; text-align: center; white-space: nowrap; vertical-align: middle; user-select: none; border: 1px solid transparent; padding: 0.5rem 1rem; font-size: 1rem; border-radius: 0.25rem; transition: all 0.2s ease-in-out; } .btn:focus, .btn:hover { text-decoration: none; } .btn:focus, .btn.focus { outline: 0; box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25); } .btn.disabled, .btn:disabled { cursor: not-allowed; opacity: .65; } .btn:active, .btn.active { background-image: none; } a.btn.disabled, fieldset[disabled] a.btn { pointer-events: none; } .btn-primary { color: #fff; background-color: #0275d8; border-color: #0275d8; } .btn-primary:hover { color: #fff; background-color: #025aa5; border-color: #01549b; } .btn-primary:focus, .btn-primary.focus { box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.5); } .btn-primary.disabled, .btn-primary:disabled { background-color: #0275d8; border-color: #0275d8; } .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle { color: #fff; background-color: #025aa5; background-image: none; border-color: #01549b; } .btn-secondary { color: #292b2c; background-color: #fff; border-color: #ccc; } .btn-secondary:hover { color: #292b2c; background-color: #e6e6e6; border-color: #adadad; } .btn-secondary:focus, .btn-secondary.focus { box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5); } .btn-secondary.disabled, .btn-secondary:disabled { background-color: #fff; border-color: #ccc; } .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle { color: #292b2c; background-color: #e6e6e6; background-image: none; border-color: #adadad; } .btn-info { color: #fff; background-color: #5bc0de; border-color: #5bc0de; } .btn-info:hover { color: #fff; background-color: #31b0d5; border-color: #2aabd2; } .btn-info:focus, .btn-info.focus { box-shadow: 0 0 0 2px rgba(91, 192, 222, 0.5); } .btn-info.disabled, .btn-info:disabled { background-color: #5bc0de; border-color: #5bc0de; } .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle { color: #fff; background-color: #31b0d5; background-image: none; border-color: #2aabd2; } .btn-success { color: #fff; background-color: #5cb85c; border-color: #5cb85c; } .btn-success:hover { color: #fff; background-color: #449d44; border-color: #419641; } .btn-success:focus, .btn-success.focus { box-shadow: 0 0 0 2px rgba(92, 184, 92, 0.5); } .btn-success.disabled, .btn-success:disabled { background-color: #5cb85c; border-color: #5cb85c; } .btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle { color: #fff; background-color: #449d44; background-image: none; border-color: #419641; } .btn-warning { color: #fff; background-color: #f0ad4e; border-color: #f0ad4e; } .btn-warning:hover { color: #fff; background-color: #ec971f; border-color: #eb9316; } .btn-warning:focus, .btn-warning.focus { box-shadow: 0 0 0 2px rgba(240, 173, 78, 0.5); } .btn-warning.disabled, .btn-warning:disabled { background-color: #f0ad4e; border-color: #f0ad4e; } .btn-warning:active, .btn-warning.active, .show > .btn-warning.dropdown-toggle { color: #fff; background-color: #ec971f; background-image: none; border-color: #eb9316; } .btn-danger { color: #fff; background-color: #d9534f; border-color: #d9534f; } .btn-danger:hover { color: #fff; background-color: #c9302c; border-color: #c12e2a; } .btn-danger:focus, .btn-danger.focus { box-shadow: 0 0 0 2px rgba(217, 83, 79, 0.5); } .btn-danger.disabled, .btn-danger:disabled { background-color: #d9534f; border-color: #d9534f; } .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle { color: #fff; background-color: #c9302c; background-image: none; border-color: #c12e2a; } .btn-outline-primary { color: #0275d8; background-image: none; background-color: transparent; border-color: #0275d8; } .btn-outline-primary:hover { color: #fff; background-color: #0275d8; border-color: #0275d8; } .btn-outline-primary:focus, .btn-outline-primary.focus { box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.5); } .btn-outline-primary.disabled, .btn-outline-primary:disabled { color: #0275d8; background-color: transparent; } .btn-outline-primary:active, .btn-outline-primary.active, .show > .btn-outline-primary.dropdown-toggle { color: #fff; background-color: #0275d8; border-color: #0275d8; } .btn-outline-secondary { color: #ccc; background-image: none; background-color: transparent; border-color: #ccc; } .btn-outline-secondary:hover { color: #fff; background-color: #ccc; border-color: #ccc; } .btn-outline-secondary:focus, .btn-outline-secondary.focus { box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5); } .btn-outline-secondary.disabled, .btn-outline-secondary:disabled { color: #ccc; background-color: transparent; } .btn-outline-secondary:active, .btn-outline-secondary.active, .show > .btn-outline-secondary.dropdown-toggle { color: #fff; background-color: #ccc; border-color: #ccc; } .btn-outline-info { color: #5bc0de; background-image: none; background-color: transparent; border-color: #5bc0de; } .btn-outline-info:hover { color: #fff; background-color: #5bc0de; border-color: #5bc0de; } .btn-outline-info:focus, .btn-outline-info.focus { box-shadow: 0 0 0 2px rgba(91, 192, 222, 0.5); } .btn-outline-info.disabled, .btn-outline-info:disabled { color: #5bc0de; background-color: transparent; } .btn-outline-info:active, .btn-outline-info.active, .show > .btn-outline-info.dropdown-toggle { color: #fff; background-color: #5bc0de; border-color: #5bc0de; } .btn-outline-success { color: #5cb85c; background-image: none; background-color: transparent; border-color: #5cb85c; } .btn-outline-success:hover { color: #fff; background-color: #5cb85c; border-color: #5cb85c; } .btn-outline-success:focus, .btn-outline-success.focus { box-shadow: 0 0 0 2px rgba(92, 184, 92, 0.5); } .btn-outline-success.disabled, .btn-outline-success:disabled { color: #5cb85c; background-color: transparent; } .btn-outline-success:active, .btn-outline-success.active, .show > .btn-outline-success.dropdown-toggle { color: #fff; background-color: #5cb85c; border-color: #5cb85c; } .btn-outline-warning { color: #f0ad4e; background-image: none; background-color: transparent; border-color: #f0ad4e; } .btn-outline-warning:hover { color: #fff; background-color: #f0ad4e; border-color: #f0ad4e; } .btn-outline-warning:focus, .btn-outline-warning.focus { box-shadow: 0 0 0 2px rgba(240, 173, 78, 0.5); } .btn-outline-warning.disabled, .btn-outline-warning:disabled { color: #f0ad4e; background-color: transparent; } .btn-outline-warning:active, .btn-outline-warning.active, .show > .btn-outline-warning.dropdown-toggle { color: #fff; background-color: #f0ad4e; border-color: #f0ad4e; } .btn-outline-danger { color: #d9534f; background-image: none; background-color: transparent; border-color: #d9534f; } .btn-outline-danger:hover { color: #fff; background-color: #d9534f; border-color: #d9534f; } .btn-outline-danger:focus, .btn-outline-danger.focus { box-shadow: 0 0 0 2px rgba(217, 83, 79, 0.5); } .btn-outline-danger.disabled, .btn-outline-danger:disabled { color: #d9534f; background-color: transparent; } .btn-outline-danger:active, .btn-outline-danger.active, .show > .btn-outline-danger.dropdown-toggle { color: #fff; background-color: #d9534f; border-color: #d9534f; } .btn-link { font-weight: normal; color: #0275d8; border-radius: 0; } .btn-link, .btn-link:active, .btn-link.active, .btn-link:disabled { background-color: transparent; } .btn-link, .btn-link:focus, .btn-link:active { border-color: transparent; } .btn-link:hover { border-color: transparent; } .btn-link:focus, .btn-link:hover { color: #014c8c; text-decoration: underline; background-color: transparent; } .btn-link:disabled { color: #636c72; } .btn-link:disabled:focus, .btn-link:disabled:hover { text-decoration: none; } .btn-lg, .btn-group-lg > .btn { padding: 0.75rem 1.5rem; font-size: 1.25rem; border-radius: 0.3rem; } .btn-sm, .btn-group-sm > .btn { padding: 0.25rem 0.5rem; font-size: 0.875rem; border-radius: 0.2rem; } .btn-block { display: block; width: 100%; } .btn-block + .btn-block { margin-top: 0.5rem; } input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block { width: 100%; } .table { width: 100%; max-width: 100%; margin-bottom: 1rem; } .table th, .table td { padding: 0.75rem; vertical-align: top; border-top: 1px solid #eceeef; } .table thead th { vertical-align: bottom; border-bottom: 2px solid #eceeef; } .table tbody + tbody { border-top: 2px solid #eceeef; } .table .table { background-color: #fff; } .table-sm th, .table-sm td { padding: 0.3rem; } .table-bordered { border: 1px solid #eceeef; } .table-bordered th, .table-bordered td { border: 1px solid #eceeef; } .table-bordered thead th, .table-bordered thead td { border-bottom-width: 2px; } .table-striped tbody tr:nth-of-type(odd) { background-color: rgba(0, 0, 0, 0.05); } .table-hover tbody tr:hover { background-color: rgba(0, 0, 0, 0.075); } .table-active, .table-active > th, .table-active > td { background-color: rgba(0, 0, 0, 0.075); } .table-hover .table-active:hover { background-color: rgba(0, 0, 0, 0.075); } .table-hover .table-active:hover > td, .table-hover .table-active:hover > th { background-color: rgba(0, 0, 0, 0.075); } .table-success, .table-success > th, .table-success > td { background-color: #dff0d8; } .table-hover .table-success:hover { background-color: #d0e9c6; } .table-hover .table-success:hover > td, .table-hover .table-success:hover > th { background-color: #d0e9c6; } .table-info, .table-info > th, .table-info > td { background-color: #d9edf7; } .table-hover .table-info:hover { background-color: #c4e3f3; } .table-hover .table-info:hover > td, .table-hover .table-info:hover > th { background-color: #c4e3f3; } .table-warning, .table-warning > th, .table-warning > td { background-color: #fcf8e3; } .table-hover .table-warning:hover { background-color: #faf2cc; } .table-hover .table-warning:hover > td, .table-hover .table-warning:hover > th { background-color: #faf2cc; } .table-danger, .table-danger > th, .table-danger > td { background-color: #f2dede; } .table-hover .table-danger:hover { background-color: #ebcccc; } .table-hover .table-danger:hover > td, .table-hover .table-danger:hover > th { background-color: #ebcccc; } .thead-inverse th { color: #fff; background-color: #292b2c; } .thead-default th { color: #464a4c; background-color: #eceeef; } .table-inverse { color: #fff; background-color: #292b2c; } .table-inverse th, .table-inverse td, .table-inverse thead th { border-color: #fff; } .table-inverse.table-bordered { border: 0; } .table-responsive { display: block; width: 100%; overflow-x: auto; -ms-overflow-style: -ms-autohiding-scrollbar; } .table-responsive.table-bordered { border: 0; }
0.370225
0.038107
body { height:auto; } /* column-row */ #custom-columns-tabs { height:38px; clear:both; position:relative; border-bottom:1px solid #dfdfdf; } /* add column icon */ #custom-columns-tabs div.light { width:18px; height:18px; padding:10px; background:#f5f5f5; border-right:1px solid #dfdfdf; position:absolute; } #custom-columns-tabs div.light span { width:18px; height:18px; display:block; position:relative; color:#444; cursor:pointer; } #custom-columns-tabs div.light span:before { font:400 20px/1 dashicons; position:absolute; width:18px; height:18px; top:0px; left:0px; } #custom-columns-tabs div.light span:hover:before { text-shadow: 0 0 1px #000000; } #custom-columns-tabs div.inactive span { cursor:default; opacity:0.5; } #custom-columns-tabs #add-column { top:0px; left:0px; } #custom-columns-tabs #columns-to-left { top:0px; left:39px; } #custom-columns-tabs #columns-to-right { top:0px; right:0px; border-right:0px; border-left:1px solid #dfdfdf; } #add-column span:before { content: "\f132"; } #columns-to-left span:before { content: "\f141"; } #columns-to-right span:before { content: "\f139"; } input.hidden { display:none; } #custom-columns-tabs #columns-tabber { position:absolute; top:0px; bottom:0px; left:78px; right:39px; background:#222; color:#eee; overflow:hidden; } #columns-tabber ul { margin:0px; float:left; width:3000px; position:absolute; top:0px; left:0px; } #columns-tabber li { float:left; } #columns-tabber li { cursor:pointer; height:38px; line-height:38px; padding:0 15px; display:block; border-right:1px solid #111; border-left:1px solid #333; position:relative; } #columns-tabber li input { border:0px; border-bottom:1px solid #111; background:none; color:#fff; } #columns-tabber li:hover { background:#111; color:#2EA2CC; } #columns-tabber li:first-child { border-left:0px; } #columns-tabber li.active { background:#0074A2 !important; color:#fff !important; padding-right:30px; } #columns-tabber li.highlight { padding:0 30px; background:#0074A2; opacity:0.5; } #columns-tabber li.ui-sortable-helper { opacity:0.5; } #columns-tabber li span.remove { position:absolute; top:0px; right:7px; width:18px; height:18px; top:50%; margin-top:-9px; display:none; } #columns-tabber li span.remove:after { font:400 20px/1 dashicons; position:absolute; width:18px; height:18px; top:0px; left:0px; content: "\f335"; } #columns-tabber li.active span.remove { display:block; } #menu-management .post-body { background: none repeat scroll 0 0 #F9F9F9; border-bottom-color: #DFDFDF; border-top-color: #FFFFFF; border-style: solid; border-width: 1px 0; display:none; } #menu-management .post-body-content > div { padding: 10px 10px 10px; clear:both; } #menu-management .post-body-content > div.clear, .post-body .sortable { padding:0px !important; } #menu-management .post-body-content > div:last-child { border:0px; } #menu-management .post-body.active { display:block; } .post-body-content .top-bar span.add-field { float:right; width:26px; height:26px; display:block; position:relative; } .post-body-content .top-bar span.add-field:before { font:400 20px/1 dashicons; position:absolute; width:20px; height:20px; top:3px; left:2px; content: "\f132"; } div.column-element div.header, div.post-body-content div.options { border-bottom:1px solid #fff; box-shadow:0 1px 1px rgba(0, 0, 0, 0.04); padding:10px 10px 10px 50px; position:relative; cursor:move; background:#222222; color:#fff; } div.post-body-content div.options { cursor:default; padding:10px 10px 10px 50px !important; } div.column-element div.header span.remove { width:26px; height:26px; display:block; position:absolute; top:12px; right:10px; } div.column-element div.header span.remove:before { font:400 20px/1 dashicons; position:absolute; width:20px; height:20px; top:3px; left:2px; content: "\f158"; } div.column-element div.header span.toggle, div.post-body-content div.options span.toggle { width:26px; height:26px; display:block; position:absolute; top:12px; left:10px; cursor:pointer; } div.column-element div.header span.toggle:before, div.post-body-content div.options span.toggle:before { font:400 20px/1 dashicons; position:absolute; width:20px; height:20px; top:3px; left:2px; content: "\f140"; } div.column-element div.header span.toggle.closed:before, div.post-body-content div.options span.toggle.closed:before { content: "\f139"; } div.column-element div.content { padding:10px; background:#F9F9F9; } div.column-element.highlight { background:#0074A2; border:1px solid #F9F9F9; opacity:0.5; height:50px; } div.column-element div.content label { width:150px; margin-right:5%; display:inline-block; } h3.column-manager { display:inline-block; margin:7px 0px; font-size:14px; } h4.element-manager { display:inline-block; margin:4px 0px; } div.post-body-content div.options-content { border-bottom:1px solid #222222; display:none; } div.post-body-content div.options-content { padding:0px !important; } div.post-body-content div.options-content > div { background:#F5F5F5; box-shadow:0 1px 1px rgba(0, 0, 0, 0.04); padding:10px; border-bottom:1px solid #DFDFDF; } div.post-body-content div.options-content > div > div { padding:10px 10px 0px; display:none; } div.post-body-content div.options-content > div > div > div { padding:10px 10px 0px; display:none; } label.textarea-3 { margin-top:-120px; } div.donate { margin-top:20px; background:#fff; padding:15px 10px; border: 1px solid #E5E5E5; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); }
src/css/style.css
body { height:auto; } /* column-row */ #custom-columns-tabs { height:38px; clear:both; position:relative; border-bottom:1px solid #dfdfdf; } /* add column icon */ #custom-columns-tabs div.light { width:18px; height:18px; padding:10px; background:#f5f5f5; border-right:1px solid #dfdfdf; position:absolute; } #custom-columns-tabs div.light span { width:18px; height:18px; display:block; position:relative; color:#444; cursor:pointer; } #custom-columns-tabs div.light span:before { font:400 20px/1 dashicons; position:absolute; width:18px; height:18px; top:0px; left:0px; } #custom-columns-tabs div.light span:hover:before { text-shadow: 0 0 1px #000000; } #custom-columns-tabs div.inactive span { cursor:default; opacity:0.5; } #custom-columns-tabs #add-column { top:0px; left:0px; } #custom-columns-tabs #columns-to-left { top:0px; left:39px; } #custom-columns-tabs #columns-to-right { top:0px; right:0px; border-right:0px; border-left:1px solid #dfdfdf; } #add-column span:before { content: "\f132"; } #columns-to-left span:before { content: "\f141"; } #columns-to-right span:before { content: "\f139"; } input.hidden { display:none; } #custom-columns-tabs #columns-tabber { position:absolute; top:0px; bottom:0px; left:78px; right:39px; background:#222; color:#eee; overflow:hidden; } #columns-tabber ul { margin:0px; float:left; width:3000px; position:absolute; top:0px; left:0px; } #columns-tabber li { float:left; } #columns-tabber li { cursor:pointer; height:38px; line-height:38px; padding:0 15px; display:block; border-right:1px solid #111; border-left:1px solid #333; position:relative; } #columns-tabber li input { border:0px; border-bottom:1px solid #111; background:none; color:#fff; } #columns-tabber li:hover { background:#111; color:#2EA2CC; } #columns-tabber li:first-child { border-left:0px; } #columns-tabber li.active { background:#0074A2 !important; color:#fff !important; padding-right:30px; } #columns-tabber li.highlight { padding:0 30px; background:#0074A2; opacity:0.5; } #columns-tabber li.ui-sortable-helper { opacity:0.5; } #columns-tabber li span.remove { position:absolute; top:0px; right:7px; width:18px; height:18px; top:50%; margin-top:-9px; display:none; } #columns-tabber li span.remove:after { font:400 20px/1 dashicons; position:absolute; width:18px; height:18px; top:0px; left:0px; content: "\f335"; } #columns-tabber li.active span.remove { display:block; } #menu-management .post-body { background: none repeat scroll 0 0 #F9F9F9; border-bottom-color: #DFDFDF; border-top-color: #FFFFFF; border-style: solid; border-width: 1px 0; display:none; } #menu-management .post-body-content > div { padding: 10px 10px 10px; clear:both; } #menu-management .post-body-content > div.clear, .post-body .sortable { padding:0px !important; } #menu-management .post-body-content > div:last-child { border:0px; } #menu-management .post-body.active { display:block; } .post-body-content .top-bar span.add-field { float:right; width:26px; height:26px; display:block; position:relative; } .post-body-content .top-bar span.add-field:before { font:400 20px/1 dashicons; position:absolute; width:20px; height:20px; top:3px; left:2px; content: "\f132"; } div.column-element div.header, div.post-body-content div.options { border-bottom:1px solid #fff; box-shadow:0 1px 1px rgba(0, 0, 0, 0.04); padding:10px 10px 10px 50px; position:relative; cursor:move; background:#222222; color:#fff; } div.post-body-content div.options { cursor:default; padding:10px 10px 10px 50px !important; } div.column-element div.header span.remove { width:26px; height:26px; display:block; position:absolute; top:12px; right:10px; } div.column-element div.header span.remove:before { font:400 20px/1 dashicons; position:absolute; width:20px; height:20px; top:3px; left:2px; content: "\f158"; } div.column-element div.header span.toggle, div.post-body-content div.options span.toggle { width:26px; height:26px; display:block; position:absolute; top:12px; left:10px; cursor:pointer; } div.column-element div.header span.toggle:before, div.post-body-content div.options span.toggle:before { font:400 20px/1 dashicons; position:absolute; width:20px; height:20px; top:3px; left:2px; content: "\f140"; } div.column-element div.header span.toggle.closed:before, div.post-body-content div.options span.toggle.closed:before { content: "\f139"; } div.column-element div.content { padding:10px; background:#F9F9F9; } div.column-element.highlight { background:#0074A2; border:1px solid #F9F9F9; opacity:0.5; height:50px; } div.column-element div.content label { width:150px; margin-right:5%; display:inline-block; } h3.column-manager { display:inline-block; margin:7px 0px; font-size:14px; } h4.element-manager { display:inline-block; margin:4px 0px; } div.post-body-content div.options-content { border-bottom:1px solid #222222; display:none; } div.post-body-content div.options-content { padding:0px !important; } div.post-body-content div.options-content > div { background:#F5F5F5; box-shadow:0 1px 1px rgba(0, 0, 0, 0.04); padding:10px; border-bottom:1px solid #DFDFDF; } div.post-body-content div.options-content > div > div { padding:10px 10px 0px; display:none; } div.post-body-content div.options-content > div > div > div { padding:10px 10px 0px; display:none; } label.textarea-3 { margin-top:-120px; } div.donate { margin-top:20px; background:#fff; padding:15px 10px; border: 1px solid #E5E5E5; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); }
0.30965
0.065785
@-moz-document domain("teknoseyir.com") { body { background: #222; } hr { border-top: 1px solid #222; } a { color: #ccc; text-decoration: none; } .navbar-default { box-shadow: none; border: none; background: #444; } .col-right .content, .ts-videos .content { background: none; } .videos { background: #333; } .col-left article { display: block; padding: 10px; min-height: 50px; position: relative; border-radius: 3px; margin: 10px 0; background-color: #333; border: none; box-shadow: none; } .stream-top .author, .takip_oneri .author { font-weight: bold; color: #999; } .col-left .content, .rightpane .content { overflow: hidden; margin: 10px 0; color: #999; } #comments { background-color: #222; border: none; border-radius: 3px; } .comment { border-bottom: 2px solid #333; } .social_badge { background-color: #222; } .username { color: #ccc; font-weight: normal; } #respond { border-bottom: 2px solid #333; border-radius: 3px; } .children li { border-top: 1px solid #333; } #yeni-icerik { text-align: center; font-weight: bold; background-color: #444; padding: 7px 0; border-radius: 3px; cursor: pointer; margin-bottom: 10px; color: #ddd; border: none; box-shadow: none; } #yeni-icerik:hover { background-color: #333; } .widget { box-shadow: none; border: none; border-radius: 3px; margin-bottom: 10px; background-color: #333; padding: 10px; } .widget .widget_title { color: #ccc; } .col-right article, .ts-videos article { box-shadow: none; border: none; background-color: #222; margin: 10px 0; position: relative; padding: 10px; border-radius: 3px; min-height: 70px; } .col-right .content a, .ts-videos h1 a { color: #999; } .author-header { margin: 10px; display: block; padding: 10px; box-shadow: none; border: none; border-radius: 3px; background-color: #333; } .user-description { color: #999; } .user-name { color: #999; } .btn-primary { color: #fff; background-color: #222; border: none; } .btn-primary:hover { color: #fff; background-color: #444; border: none; } .btn-default { color: #ccc; background-color: #444; border: none; } .btn-default:hover { color: #ccc; background-color: #222; border: none; } .birsey_yaz { padding: 5px; box-shadow: none; border: none; border-radius: 3px; margin-bottom: 10px; background-color: #333; color: #999; } .form_header a { color: #ccc; } .post_content, .post_input { border: none; background: #444; } textarea.comment_content { border: none; border-radius: 3px; min-height: 30px; color: #ccc; } textarea { background: #333; } .btn-info, .btn-info:focus, .btn-info.focus, .btn-info:active, .btn-info.active, .open>.dropdown-toggle.btn-info { color: #fff; background-color: #333; border: none; } .btn:hover, .btn:focus, .btn.focus { color: #ddd; text-decoration: none; } .btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled.focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info.focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active { background-color: #444; border: none; } .comment-heading { margin: 0; font-size: 12px; font-weight: bold; color: #ccc; } .avatar-40 { border: 2px solid #222; border-radius: 5px; } .widget_one_cikanlar .wp-post-image, .widget_nostalji .wp-post-image { border-radius: 3px; } .author-nav { box-shadow: none; border: none; border-radius: 3px; background-color: #333; } .author-nav>li>a { color: #ccc; border-bottom: 1px solid #222; border-radius: 0; } .nav>li>a:hover, .nav>li>a:focus { text-decoration: none; background-color: #999; } .author-nav>li.active>a, .author-nav>li.active>a:hover, .author-nav>li.active>a:focus { background-color: #999; color: #333; } .navbar-nav>li>.dropdown-menu { margin-top: 0; border-top-left-radius: 0; border-top-right-radius: 0; background: #444; } .dropdown-menu .divider { background-color: #222; } li.bildirim { color: #ddd; } li.bildirim:hover { background: #222; color: #ddd; } li.bildirim a { color: #999; } li.bildirim { border-bottom: 1px solid #222; position: relative; } .embed { border: none; background: #222; border-radius: 3px; color: #ccc; } .dropdown-menu>li>a { color: #ddd; } .comment-more { padding: 10px; border: none; display: block; color: #ccc; background: #444; } .comment-more:hover { color: #ccc; background: #333; } a.reply-more { border-top: 1px solid #444; border-bottom: 1px solid #444; color: #ccc; } a.reply-more:hover { background: #444; } .modal-content { position: relative; background-color: #444; background-clip: padding-box; border: none; color: #ddd; } .modal-header { border-bottom: 1px solid #333; } .user-list { border-bottom: 1px solid #333; } .liste { box-shadow: none; border: none; background-color: #333; color: #ccc; } .liste li.comment { border-bottom: 1px solid #222; } .user_stats { border-top: 1px solid #222; border-bottom: 1px solid #222; } .user_info .col-left article { box-shadow: none; border-bottom: 1px solid #222; padding: 10px; } .modal-footer { border-top: 1px solid #222; } .user_stats a>strong { color: #ddd; } .user_stats a { color: #ddd; } .form-control { color: #ddd; background-color: #222; border: none; box-shadow: none; } .navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:hover, .navbar-default .navbar-nav>.open>a:focus { color: #555; background-color: #999; } li.no_read { background: #999; } .bildirim_tumu a { background-color: #333; } .dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus { background-color: #444; color: #ddd; } .dropdown-menu { background-color: #444; } .menu-drop { background-color: #999; } ul.sub-menu { background-color: #555; } ul.sub-menu li a.active { background-color: #ddd; } .main-head { box-shadow: none; border: none; background-color: #333; color: #ddd; } .profile.wrapper { box-shadow: none; border: none; background-color: #444; color: #ccc; } .devamini_gor { color: #ccc; } .post_content, .post_input { color: #ccc; } .comment-heading:hover { color: #999; } .comment-actions a:hover { color: #999; } .post-actions a:hover { color: #777; margin-left: 10px; } .main-head.videos { background-color: #444; } .col-right article, .ts-videos article { } .user-list .author { color: #ccc; } .col-left h1 a, .rightpane h1 a { color: #ccc; } .avatar-32 { border-radius: 5px; } .avatar-20 { border-radius: 3px; } .avatar-150 { border-radius: 3px; } #loginModal .login_page { background: #444; } .birsey_yaz .progress, #post_form .progress { background-color: #333; } .wide-screen .home-videos-right { margin-top: 10px; width: 400px; } .home-videos .tabs { background: #999; border-radius: 3px; } .home-videos-right { box-shadow: none; border: none; background-color: #333; } .takip-ediyor { color: forestgreen; font-weight: bold; } }
data/usercss/110206.user.css
@-moz-document domain("teknoseyir.com") { body { background: #222; } hr { border-top: 1px solid #222; } a { color: #ccc; text-decoration: none; } .navbar-default { box-shadow: none; border: none; background: #444; } .col-right .content, .ts-videos .content { background: none; } .videos { background: #333; } .col-left article { display: block; padding: 10px; min-height: 50px; position: relative; border-radius: 3px; margin: 10px 0; background-color: #333; border: none; box-shadow: none; } .stream-top .author, .takip_oneri .author { font-weight: bold; color: #999; } .col-left .content, .rightpane .content { overflow: hidden; margin: 10px 0; color: #999; } #comments { background-color: #222; border: none; border-radius: 3px; } .comment { border-bottom: 2px solid #333; } .social_badge { background-color: #222; } .username { color: #ccc; font-weight: normal; } #respond { border-bottom: 2px solid #333; border-radius: 3px; } .children li { border-top: 1px solid #333; } #yeni-icerik { text-align: center; font-weight: bold; background-color: #444; padding: 7px 0; border-radius: 3px; cursor: pointer; margin-bottom: 10px; color: #ddd; border: none; box-shadow: none; } #yeni-icerik:hover { background-color: #333; } .widget { box-shadow: none; border: none; border-radius: 3px; margin-bottom: 10px; background-color: #333; padding: 10px; } .widget .widget_title { color: #ccc; } .col-right article, .ts-videos article { box-shadow: none; border: none; background-color: #222; margin: 10px 0; position: relative; padding: 10px; border-radius: 3px; min-height: 70px; } .col-right .content a, .ts-videos h1 a { color: #999; } .author-header { margin: 10px; display: block; padding: 10px; box-shadow: none; border: none; border-radius: 3px; background-color: #333; } .user-description { color: #999; } .user-name { color: #999; } .btn-primary { color: #fff; background-color: #222; border: none; } .btn-primary:hover { color: #fff; background-color: #444; border: none; } .btn-default { color: #ccc; background-color: #444; border: none; } .btn-default:hover { color: #ccc; background-color: #222; border: none; } .birsey_yaz { padding: 5px; box-shadow: none; border: none; border-radius: 3px; margin-bottom: 10px; background-color: #333; color: #999; } .form_header a { color: #ccc; } .post_content, .post_input { border: none; background: #444; } textarea.comment_content { border: none; border-radius: 3px; min-height: 30px; color: #ccc; } textarea { background: #333; } .btn-info, .btn-info:focus, .btn-info.focus, .btn-info:active, .btn-info.active, .open>.dropdown-toggle.btn-info { color: #fff; background-color: #333; border: none; } .btn:hover, .btn:focus, .btn.focus { color: #ddd; text-decoration: none; } .btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled.focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info.focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active { background-color: #444; border: none; } .comment-heading { margin: 0; font-size: 12px; font-weight: bold; color: #ccc; } .avatar-40 { border: 2px solid #222; border-radius: 5px; } .widget_one_cikanlar .wp-post-image, .widget_nostalji .wp-post-image { border-radius: 3px; } .author-nav { box-shadow: none; border: none; border-radius: 3px; background-color: #333; } .author-nav>li>a { color: #ccc; border-bottom: 1px solid #222; border-radius: 0; } .nav>li>a:hover, .nav>li>a:focus { text-decoration: none; background-color: #999; } .author-nav>li.active>a, .author-nav>li.active>a:hover, .author-nav>li.active>a:focus { background-color: #999; color: #333; } .navbar-nav>li>.dropdown-menu { margin-top: 0; border-top-left-radius: 0; border-top-right-radius: 0; background: #444; } .dropdown-menu .divider { background-color: #222; } li.bildirim { color: #ddd; } li.bildirim:hover { background: #222; color: #ddd; } li.bildirim a { color: #999; } li.bildirim { border-bottom: 1px solid #222; position: relative; } .embed { border: none; background: #222; border-radius: 3px; color: #ccc; } .dropdown-menu>li>a { color: #ddd; } .comment-more { padding: 10px; border: none; display: block; color: #ccc; background: #444; } .comment-more:hover { color: #ccc; background: #333; } a.reply-more { border-top: 1px solid #444; border-bottom: 1px solid #444; color: #ccc; } a.reply-more:hover { background: #444; } .modal-content { position: relative; background-color: #444; background-clip: padding-box; border: none; color: #ddd; } .modal-header { border-bottom: 1px solid #333; } .user-list { border-bottom: 1px solid #333; } .liste { box-shadow: none; border: none; background-color: #333; color: #ccc; } .liste li.comment { border-bottom: 1px solid #222; } .user_stats { border-top: 1px solid #222; border-bottom: 1px solid #222; } .user_info .col-left article { box-shadow: none; border-bottom: 1px solid #222; padding: 10px; } .modal-footer { border-top: 1px solid #222; } .user_stats a>strong { color: #ddd; } .user_stats a { color: #ddd; } .form-control { color: #ddd; background-color: #222; border: none; box-shadow: none; } .navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:hover, .navbar-default .navbar-nav>.open>a:focus { color: #555; background-color: #999; } li.no_read { background: #999; } .bildirim_tumu a { background-color: #333; } .dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus { background-color: #444; color: #ddd; } .dropdown-menu { background-color: #444; } .menu-drop { background-color: #999; } ul.sub-menu { background-color: #555; } ul.sub-menu li a.active { background-color: #ddd; } .main-head { box-shadow: none; border: none; background-color: #333; color: #ddd; } .profile.wrapper { box-shadow: none; border: none; background-color: #444; color: #ccc; } .devamini_gor { color: #ccc; } .post_content, .post_input { color: #ccc; } .comment-heading:hover { color: #999; } .comment-actions a:hover { color: #999; } .post-actions a:hover { color: #777; margin-left: 10px; } .main-head.videos { background-color: #444; } .col-right article, .ts-videos article { } .user-list .author { color: #ccc; } .col-left h1 a, .rightpane h1 a { color: #ccc; } .avatar-32 { border-radius: 5px; } .avatar-20 { border-radius: 3px; } .avatar-150 { border-radius: 3px; } #loginModal .login_page { background: #444; } .birsey_yaz .progress, #post_form .progress { background-color: #333; } .wide-screen .home-videos-right { margin-top: 10px; width: 400px; } .home-videos .tabs { background: #999; border-radius: 3px; } .home-videos-right { box-shadow: none; border: none; background-color: #333; } .takip-ediyor { color: forestgreen; font-weight: bold; } }
0.159675
0.040655
.cookie { top: 5px; } .show-toast { animation: show-toast 250ms ease-in-out forwards; -webkit-animation: show-toast 250ms ease-in-out forwards; -moz-animation: show-toast 250ms ease-in-out forwards; -o-animation: show-toast 250ms ease-in-out forwards; } .hide-toast { animation: hide-toast 250ms ease-in-out forwards; -webkit-animation: hide-toast 250ms ease-in-out forwards; -moz-animation: hide-toast 250ms ease-in-out forwards; -o-animation: hide-toast 250ms ease-in-out forwards; } .fade-out { animation: fade-out 400ms ease-in-out forwards; -webkit-animation: fade-out 400ms ease-in-out forwards; -moz-animation: fade-out 400ms ease-in-out forwards; -o-animation: fade-out 400ms ease-in-out forwards; } @keyframes show-toast { from { transform: translateX(-200%); -webkit-transform: translateX(-200%); -moz-transform: translateX(-200%); -o-transform: translateX(-200%); -ms-transform: translateX(-200%); } to { transform: translateX(0); -webkit-transform: translateX(0); -moz-transform: translateX(0); -o-transform: translateX(0); -ms-transform: translateX(0); } } @-webkit-keyframes show-toast { from { transform: translateX(-200%); -webkit-transform: translateX(-200%); -moz-transform: translateX(-200%); -o-transform: translateX(-200%); -ms-transform: translateX(-200%); } to { transform: translateX(0); -webkit-transform: translateX(0); -moz-transform: translateX(0); -o-transform: translateX(0); -ms-transform: translateX(0); } } @-moz-keyframes show-toast { from { transform: translateX(-200%); -webkit-transform: translateX(-200%); -moz-transform: translateX(-200%); -o-transform: translateX(-200%); -ms-transform: translateX(-200%); } to { transform: translateX(0); -webkit-transform: translateX(0); -moz-transform: translateX(0); -o-transform: translateX(0); -ms-transform: translateX(0); } } @-o-keyframes show-toast { from { transform: translateX(-200%); -webkit-transform: translateX(-200%); -moz-transform: translateX(-200%); -o-transform: translateX(-200%); -ms-transform: translateX(-200%); } to { transform: translateX(0); -webkit-transform: translateX(0); -moz-transform: translateX(0); -o-transform: translateX(0); -ms-transform: translateX(0); } } @-ms-keyframes show-toast { from { transform: translateX(-200%); -webkit-transform: translateX(-200%); -moz-transform: translateX(-200%); -o-transform: translateX(-200%); -ms-transform: translateX(-200%); } to { transform: translateX(0); -webkit-transform: translateX(0); -moz-transform: translateX(0); -o-transform: translateX(0); -ms-transform: translateX(0); } } @-khtml-keyframes show-toast { from { transform: translateX(-200%); -webkit-transform: translateX(-200%); -moz-transform: translateX(-200%); -o-transform: translateX(-200%); -ms-transform: translateX(-200%); } to { transform: translateX(0); -webkit-transform: translateX(0); -moz-transform: translateX(0); -o-transform: translateX(0); -ms-transform: translateX(0); } } @keyframes hide-toast { from { transform: translateX(0); -webkit-transform: translateX(0); -moz-transform: translateX(0); -o-transform: translateX(0); -ms-transform: translateX(0); } to { transform: translateX(200%); -webkit-transform: translateX(200%); -moz-transform: translateX(200%); -o-transform: translateX(200%); -ms-transform: translateX(200%); } 100% { display: none; } } @-webkit-keyframes hide-toast { from { transform: translateX(0); -webkit-transform: translateX(0); -moz-transform: translateX(0); -o-transform: translateX(0); -ms-transform: translateX(0); } to { transform: translateX(200%); -webkit-transform: translateX(200%); -moz-transform: translateX(200%); -o-transform: translateX(200%); -ms-transform: translateX(200%); } 100% { display: none; } } @-moz-keyframes hide-toast { from { transform: translateX(0); -webkit-transform: translateX(0); -moz-transform: translateX(0); -o-transform: translateX(0); -ms-transform: translateX(0); } to { transform: translateX(200%); -webkit-transform: translateX(200%); -moz-transform: translateX(200%); -o-transform: translateX(200%); -ms-transform: translateX(200%); } 100% { display: none; } } @-o-keyframes hide-toast { from { transform: translateX(0); -webkit-transform: translateX(0); -moz-transform: translateX(0); -o-transform: translateX(0); -ms-transform: translateX(0); } to { transform: translateX(200%); -webkit-transform: translateX(200%); -moz-transform: translateX(200%); -o-transform: translateX(200%); -ms-transform: translateX(200%); } 100% { display: none; } } @-ms-keyframes hide-toast { from { transform: translateX(0); -webkit-transform: translateX(0); -moz-transform: translateX(0); -o-transform: translateX(0); -ms-transform: translateX(0); } to { transform: translateX(200%); -webkit-transform: translateX(200%); -moz-transform: translateX(200%); -o-transform: translateX(200%); -ms-transform: translateX(200%); } 100% { display: none; } } @-khtml-keyframes hide-toast { from { transform: translateX(0); -webkit-transform: translateX(0); -moz-transform: translateX(0); -o-transform: translateX(0); -ms-transform: translateX(0); } to { transform: translateX(200%); -webkit-transform: translateX(200%); -moz-transform: translateX(200%); -o-transform: translateX(200%); -ms-transform: translateX(200%); } 100% { display: none; } } @keyframes fade-out { to { opacity: 0; -moz-opacity: 0; } 100% { display: none; } } @-webkit-keyframes fade-out { to { opacity: 0; -moz-opacity: 0; } 100% { display: none; } } @-moz-keyframes fade-out { to { opacity: 0; -moz-opacity: 0; } 100% { display: none; } } @-o-keyframes fade-out { to { opacity: 0; -moz-opacity: 0; } 100% { display: none; } } @-ms-keyframes fade-out { to { opacity: 0; -moz-opacity: 0; } 100% { display: none; } } @-khtml-keyframes fade-out { to { opacity: 0; -moz-opacity: 0; } 100% { display: none; } } @media only screen and (min-width: 1400px) { .cookie { width: 1390px; left: calc((100% - 1400px) / 2 + 5px); } } @media only screen and (max-width: 1399px) { .cookie { width: calc(100% - 10px); left: 5px; } } /*# sourceMappingURL=Cookie.css.map */
src/components/toasts/Cookie.css
.cookie { top: 5px; } .show-toast { animation: show-toast 250ms ease-in-out forwards; -webkit-animation: show-toast 250ms ease-in-out forwards; -moz-animation: show-toast 250ms ease-in-out forwards; -o-animation: show-toast 250ms ease-in-out forwards; } .hide-toast { animation: hide-toast 250ms ease-in-out forwards; -webkit-animation: hide-toast 250ms ease-in-out forwards; -moz-animation: hide-toast 250ms ease-in-out forwards; -o-animation: hide-toast 250ms ease-in-out forwards; } .fade-out { animation: fade-out 400ms ease-in-out forwards; -webkit-animation: fade-out 400ms ease-in-out forwards; -moz-animation: fade-out 400ms ease-in-out forwards; -o-animation: fade-out 400ms ease-in-out forwards; } @keyframes show-toast { from { transform: translateX(-200%); -webkit-transform: translateX(-200%); -moz-transform: translateX(-200%); -o-transform: translateX(-200%); -ms-transform: translateX(-200%); } to { transform: translateX(0); -webkit-transform: translateX(0); -moz-transform: translateX(0); -o-transform: translateX(0); -ms-transform: translateX(0); } } @-webkit-keyframes show-toast { from { transform: translateX(-200%); -webkit-transform: translateX(-200%); -moz-transform: translateX(-200%); -o-transform: translateX(-200%); -ms-transform: translateX(-200%); } to { transform: translateX(0); -webkit-transform: translateX(0); -moz-transform: translateX(0); -o-transform: translateX(0); -ms-transform: translateX(0); } } @-moz-keyframes show-toast { from { transform: translateX(-200%); -webkit-transform: translateX(-200%); -moz-transform: translateX(-200%); -o-transform: translateX(-200%); -ms-transform: translateX(-200%); } to { transform: translateX(0); -webkit-transform: translateX(0); -moz-transform: translateX(0); -o-transform: translateX(0); -ms-transform: translateX(0); } } @-o-keyframes show-toast { from { transform: translateX(-200%); -webkit-transform: translateX(-200%); -moz-transform: translateX(-200%); -o-transform: translateX(-200%); -ms-transform: translateX(-200%); } to { transform: translateX(0); -webkit-transform: translateX(0); -moz-transform: translateX(0); -o-transform: translateX(0); -ms-transform: translateX(0); } } @-ms-keyframes show-toast { from { transform: translateX(-200%); -webkit-transform: translateX(-200%); -moz-transform: translateX(-200%); -o-transform: translateX(-200%); -ms-transform: translateX(-200%); } to { transform: translateX(0); -webkit-transform: translateX(0); -moz-transform: translateX(0); -o-transform: translateX(0); -ms-transform: translateX(0); } } @-khtml-keyframes show-toast { from { transform: translateX(-200%); -webkit-transform: translateX(-200%); -moz-transform: translateX(-200%); -o-transform: translateX(-200%); -ms-transform: translateX(-200%); } to { transform: translateX(0); -webkit-transform: translateX(0); -moz-transform: translateX(0); -o-transform: translateX(0); -ms-transform: translateX(0); } } @keyframes hide-toast { from { transform: translateX(0); -webkit-transform: translateX(0); -moz-transform: translateX(0); -o-transform: translateX(0); -ms-transform: translateX(0); } to { transform: translateX(200%); -webkit-transform: translateX(200%); -moz-transform: translateX(200%); -o-transform: translateX(200%); -ms-transform: translateX(200%); } 100% { display: none; } } @-webkit-keyframes hide-toast { from { transform: translateX(0); -webkit-transform: translateX(0); -moz-transform: translateX(0); -o-transform: translateX(0); -ms-transform: translateX(0); } to { transform: translateX(200%); -webkit-transform: translateX(200%); -moz-transform: translateX(200%); -o-transform: translateX(200%); -ms-transform: translateX(200%); } 100% { display: none; } } @-moz-keyframes hide-toast { from { transform: translateX(0); -webkit-transform: translateX(0); -moz-transform: translateX(0); -o-transform: translateX(0); -ms-transform: translateX(0); } to { transform: translateX(200%); -webkit-transform: translateX(200%); -moz-transform: translateX(200%); -o-transform: translateX(200%); -ms-transform: translateX(200%); } 100% { display: none; } } @-o-keyframes hide-toast { from { transform: translateX(0); -webkit-transform: translateX(0); -moz-transform: translateX(0); -o-transform: translateX(0); -ms-transform: translateX(0); } to { transform: translateX(200%); -webkit-transform: translateX(200%); -moz-transform: translateX(200%); -o-transform: translateX(200%); -ms-transform: translateX(200%); } 100% { display: none; } } @-ms-keyframes hide-toast { from { transform: translateX(0); -webkit-transform: translateX(0); -moz-transform: translateX(0); -o-transform: translateX(0); -ms-transform: translateX(0); } to { transform: translateX(200%); -webkit-transform: translateX(200%); -moz-transform: translateX(200%); -o-transform: translateX(200%); -ms-transform: translateX(200%); } 100% { display: none; } } @-khtml-keyframes hide-toast { from { transform: translateX(0); -webkit-transform: translateX(0); -moz-transform: translateX(0); -o-transform: translateX(0); -ms-transform: translateX(0); } to { transform: translateX(200%); -webkit-transform: translateX(200%); -moz-transform: translateX(200%); -o-transform: translateX(200%); -ms-transform: translateX(200%); } 100% { display: none; } } @keyframes fade-out { to { opacity: 0; -moz-opacity: 0; } 100% { display: none; } } @-webkit-keyframes fade-out { to { opacity: 0; -moz-opacity: 0; } 100% { display: none; } } @-moz-keyframes fade-out { to { opacity: 0; -moz-opacity: 0; } 100% { display: none; } } @-o-keyframes fade-out { to { opacity: 0; -moz-opacity: 0; } 100% { display: none; } } @-ms-keyframes fade-out { to { opacity: 0; -moz-opacity: 0; } 100% { display: none; } } @-khtml-keyframes fade-out { to { opacity: 0; -moz-opacity: 0; } 100% { display: none; } } @media only screen and (min-width: 1400px) { .cookie { width: 1390px; left: calc((100% - 1400px) / 2 + 5px); } } @media only screen and (max-width: 1399px) { .cookie { width: calc(100% - 10px); left: 5px; } } /*# sourceMappingURL=Cookie.css.map */
0.422028
0.15444
*{ padding: 0px; margin: 0px; } .nav, .pagination, .carousel, .panel-title a { cursor: pointer; } html, body{ height: 100%; overflow: hidden; } body { padding: 0px; margin: 0px; line-height: 1.6; font-family: "Helvetica Neue","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif !important; color: #222; font-size: 14px; } /*header*/ .bkm-header { background-color: #353636; width: 100%; height: 50px; } .bkm-header .bkm-logo { float: left; } .bkm-header .bkm-logo span { font-size: 16px; line-height: 45px; padding-left: 20px; color: #8D8D8D; } /*user*/ .bkm-user-setting { cursor: pointer; border-left: 1px solid #424242; width: 130px; height: 100%; float: right; line-height: 50px; } .bkm-user-setting:hover { text-decoration: none; background: #3E3E3E; } .bkm-user-setting > a { text-align: center; font-size: 13px; color: rgba(255,255,255,.5); text-decoration: none; display: block; } .bkm-user-setting > a:hover { color: #CCCCCC !important; text-decoration: none; } .bkm-user-setting > a span { padding-right: 5px; vertical-align: middle; } .bkm-user-menu:after { position: absolute; top: -6px; right: 8px; left: auto; display: inline-block; border-right: 6px solid transparent; border-bottom: 6px solid #fff; border-left: 6px solid transparent; content: ''; } .bkm-user-menu { list-style: none; font-size: 12px !important; padding-top: 5px; padding-bottom: 5px; margin-top: 1px; background: #fff; border-radius: 5px; position: absolute; right: 20px; top: 50px; left: auto; z-index: 1000; min-width: 160px; border-color: #b8b8b8; box-shadow: 0 3px 6px 0 rgba(0,0,0,.25); border-style: solid; border-width: 1px; } .bkm-user-menu li { padding-left: 30px; line-height: 30px !important; } .bkm-user-menu li:hover { background: black; border-radius: 5px; color: white; } .bkm-user-menu li { color: #000000 !important; } .bkm-user-menu li a { color: #000000 ; text-decoration: none; } /*菜单*/ .layout-left-menu{ position:absolute; float: left; min-height: 90%; box-shadow: 0 0 10px #BDBDBD; width: 200px; background: #f7f5fa; margin-top: 5px; margin-left: 5px; padding-left:5px; border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; } #menu{ padding: 10px; list-style: none; line-height: 35px; border-radius: 5px; color: #888 !important; } #menu ul{ list-style: none; background: rgba(255,255,255,.5); } #menu li{ color: #888; } .selected{ background: #eee; border-color: #d5d5d5; color: #000; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .selected>a{ border: transparent solid 1px; border-radius: 3px; background: #eee; border-color: #d5d5d5; color: #000!important; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } #menu a{ text-decoration: none; } #menu a:hover{ text-decoration: none; } #menu>li>a { font-weight: 700; display: block; color:#888; font-family: "Helvetica Neue","Hiragino Sans GB","Microsoft YaHei","\9ED1\4F53",Arial,sans-serif; } #menu li ul{ background: #fff; border: #eee solid 1px; font-size: 12px; color:#8d8d8d; } .childUlLi ul{ margin-bottom: 5px; line-height: 30px; } .childUlLi a{ border-radius: 3px; } .childUlLi a:hover{ background: #eee; color: #000 !important; } .childUlLi a i{ opacity: .5; padding-left: 10px; padding-right: 10px; } .childUlLi ul a{ color: #888; display: block; } .childUlLi ul a:hover{ background: #eee; color: #000; } /*main内容显示*/ .layout-right-content{ margin-left: 210px; padding-left: 10px; padding-top: 5px; height: 90%; min-height: 90%; overflow:auto; } .route-bg{ background-color: #E7E7E7; border-radius: 4px; padding: 5px; margin-right: 5px; } .route-bg i{ color: #ccc; } .route-bg a{ font-size: 12px; color: #666; text-decoration: none; } .route-bg a:hover{ color: #888; text-decoration: none; } .main-content{ position: relative; min-height: 93%; margin-top: 10px; margin-right: 5px; } #page-content{ position: absolute; width: 100%; height: 100%; } /*底部版权*/ .layout-footer{ position: absolute; bottom: 0px; font-size: 12px; background: #ffffff; text-align: center; border:1px solid #eee; width: 100%; height: 30px; }
wms/public/lib/css/default.css
*{ padding: 0px; margin: 0px; } .nav, .pagination, .carousel, .panel-title a { cursor: pointer; } html, body{ height: 100%; overflow: hidden; } body { padding: 0px; margin: 0px; line-height: 1.6; font-family: "Helvetica Neue","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif !important; color: #222; font-size: 14px; } /*header*/ .bkm-header { background-color: #353636; width: 100%; height: 50px; } .bkm-header .bkm-logo { float: left; } .bkm-header .bkm-logo span { font-size: 16px; line-height: 45px; padding-left: 20px; color: #8D8D8D; } /*user*/ .bkm-user-setting { cursor: pointer; border-left: 1px solid #424242; width: 130px; height: 100%; float: right; line-height: 50px; } .bkm-user-setting:hover { text-decoration: none; background: #3E3E3E; } .bkm-user-setting > a { text-align: center; font-size: 13px; color: rgba(255,255,255,.5); text-decoration: none; display: block; } .bkm-user-setting > a:hover { color: #CCCCCC !important; text-decoration: none; } .bkm-user-setting > a span { padding-right: 5px; vertical-align: middle; } .bkm-user-menu:after { position: absolute; top: -6px; right: 8px; left: auto; display: inline-block; border-right: 6px solid transparent; border-bottom: 6px solid #fff; border-left: 6px solid transparent; content: ''; } .bkm-user-menu { list-style: none; font-size: 12px !important; padding-top: 5px; padding-bottom: 5px; margin-top: 1px; background: #fff; border-radius: 5px; position: absolute; right: 20px; top: 50px; left: auto; z-index: 1000; min-width: 160px; border-color: #b8b8b8; box-shadow: 0 3px 6px 0 rgba(0,0,0,.25); border-style: solid; border-width: 1px; } .bkm-user-menu li { padding-left: 30px; line-height: 30px !important; } .bkm-user-menu li:hover { background: black; border-radius: 5px; color: white; } .bkm-user-menu li { color: #000000 !important; } .bkm-user-menu li a { color: #000000 ; text-decoration: none; } /*菜单*/ .layout-left-menu{ position:absolute; float: left; min-height: 90%; box-shadow: 0 0 10px #BDBDBD; width: 200px; background: #f7f5fa; margin-top: 5px; margin-left: 5px; padding-left:5px; border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; } #menu{ padding: 10px; list-style: none; line-height: 35px; border-radius: 5px; color: #888 !important; } #menu ul{ list-style: none; background: rgba(255,255,255,.5); } #menu li{ color: #888; } .selected{ background: #eee; border-color: #d5d5d5; color: #000; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .selected>a{ border: transparent solid 1px; border-radius: 3px; background: #eee; border-color: #d5d5d5; color: #000!important; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } #menu a{ text-decoration: none; } #menu a:hover{ text-decoration: none; } #menu>li>a { font-weight: 700; display: block; color:#888; font-family: "Helvetica Neue","Hiragino Sans GB","Microsoft YaHei","\9ED1\4F53",Arial,sans-serif; } #menu li ul{ background: #fff; border: #eee solid 1px; font-size: 12px; color:#8d8d8d; } .childUlLi ul{ margin-bottom: 5px; line-height: 30px; } .childUlLi a{ border-radius: 3px; } .childUlLi a:hover{ background: #eee; color: #000 !important; } .childUlLi a i{ opacity: .5; padding-left: 10px; padding-right: 10px; } .childUlLi ul a{ color: #888; display: block; } .childUlLi ul a:hover{ background: #eee; color: #000; } /*main内容显示*/ .layout-right-content{ margin-left: 210px; padding-left: 10px; padding-top: 5px; height: 90%; min-height: 90%; overflow:auto; } .route-bg{ background-color: #E7E7E7; border-radius: 4px; padding: 5px; margin-right: 5px; } .route-bg i{ color: #ccc; } .route-bg a{ font-size: 12px; color: #666; text-decoration: none; } .route-bg a:hover{ color: #888; text-decoration: none; } .main-content{ position: relative; min-height: 93%; margin-top: 10px; margin-right: 5px; } #page-content{ position: absolute; width: 100%; height: 100%; } /*底部版权*/ .layout-footer{ position: absolute; bottom: 0px; font-size: 12px; background: #ffffff; text-align: center; border:1px solid #eee; width: 100%; height: 30px; }
0.374448
0.102081
body { /*font-family: 'Trirong', serif;*/ background: #eee; } .p0 { padding: 0; } .resCarousel-inner .item { border: 4px solid #eee; /*vertical-align: top;*/ text-align: center; } .resCarousel-inner .item .tile div, .banner .item div { display: table; width: 100%; /*min-height: 250px;*/ text-align: center; /*box-shadow: 0 1px 1px rgba(0, 0, 0, .1);*/ } .resCarousel-inner .item h1 { display: table-cell; vertical-align: middle; color: white; } /*.banner .item div { background: url('/Assets/css/demoImg.jpg') center top no-repeat; background-size: cover; min-height: 550px; }*/ /*.item .tile div { background: url('/Assets/css/demoImg.jpg') center center no-repeat; background-size: cover; height: 200px; color: white; }*/ .item div h1 { background: rgba(0, 0, 0, .4); } hr { border-top: 1px solid #989898; } /* styles agregar carrito*/ .table > tbody > tr > td, .table > tfoot > tr > td { vertical-align: middle; } @media screen and (max-width: 600px) { table#cart tbody td .form-control { width: 20%; display: inline !important; } .actions .btn { width: 36%; margin: 1.5em 0; } .actions .btn-info { float: left; } .actions .btn-danger { float: right; } table#cart thead { display: none; } table#cart tbody td { display: block; padding: .6rem; min-width: 320px; } table#cart tbody tr td:first-child { background: #333; color: #fff; } table#cart tbody td:before { content: attr(data-th); font-weight: bold; display: inline-block; width: 8rem; } table#cart tfoot td { display: block; } table#cart tfoot td .btn { display: block; } } .qty .count { color: #000; display: inline-block; vertical-align: top; font-size: 25px; font-weight: 700; line-height: 30px; padding: 0 2px; min-width: 35px; text-align: center; } .qty .plus { cursor: pointer; display: inline-block; vertical-align: top; color: white; width: 30px; height: 30px; font: 30px/1 Arial,sans-serif; text-align: center; border-radius: 50%; color: #6e6e6e; } .qty .minus { cursor: pointer; display: inline-block; vertical-align: top; color: white; width: 30px; height: 30px; font: 30px/1 Arial,sans-serif; text-align: center; border-radius: 50%; background-clip: padding-box; color: #6e6e6e; } div { text-align: center; } /*Prevent text selection*/ span { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; } input { border: 0; width: 2%; } nput::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } input:disabled { background-color: white; }
APPRestaurante/APPRestaurante.Web/Assets/css/styles.css
body { /*font-family: 'Trirong', serif;*/ background: #eee; } .p0 { padding: 0; } .resCarousel-inner .item { border: 4px solid #eee; /*vertical-align: top;*/ text-align: center; } .resCarousel-inner .item .tile div, .banner .item div { display: table; width: 100%; /*min-height: 250px;*/ text-align: center; /*box-shadow: 0 1px 1px rgba(0, 0, 0, .1);*/ } .resCarousel-inner .item h1 { display: table-cell; vertical-align: middle; color: white; } /*.banner .item div { background: url('/Assets/css/demoImg.jpg') center top no-repeat; background-size: cover; min-height: 550px; }*/ /*.item .tile div { background: url('/Assets/css/demoImg.jpg') center center no-repeat; background-size: cover; height: 200px; color: white; }*/ .item div h1 { background: rgba(0, 0, 0, .4); } hr { border-top: 1px solid #989898; } /* styles agregar carrito*/ .table > tbody > tr > td, .table > tfoot > tr > td { vertical-align: middle; } @media screen and (max-width: 600px) { table#cart tbody td .form-control { width: 20%; display: inline !important; } .actions .btn { width: 36%; margin: 1.5em 0; } .actions .btn-info { float: left; } .actions .btn-danger { float: right; } table#cart thead { display: none; } table#cart tbody td { display: block; padding: .6rem; min-width: 320px; } table#cart tbody tr td:first-child { background: #333; color: #fff; } table#cart tbody td:before { content: attr(data-th); font-weight: bold; display: inline-block; width: 8rem; } table#cart tfoot td { display: block; } table#cart tfoot td .btn { display: block; } } .qty .count { color: #000; display: inline-block; vertical-align: top; font-size: 25px; font-weight: 700; line-height: 30px; padding: 0 2px; min-width: 35px; text-align: center; } .qty .plus { cursor: pointer; display: inline-block; vertical-align: top; color: white; width: 30px; height: 30px; font: 30px/1 Arial,sans-serif; text-align: center; border-radius: 50%; color: #6e6e6e; } .qty .minus { cursor: pointer; display: inline-block; vertical-align: top; color: white; width: 30px; height: 30px; font: 30px/1 Arial,sans-serif; text-align: center; border-radius: 50%; background-clip: padding-box; color: #6e6e6e; } div { text-align: center; } /*Prevent text selection*/ span { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; } input { border: 0; width: 2%; } nput::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } input:disabled { background-color: white; }
0.301876
0.071074
div.row.conteudo{ margin: 0px 0px -20px; } #heroFull{ background-color: #f2f2f2; height: 100%; } div.hero-body{ padding: 0px 0px; } ::-webkit-scrollbar-track{ background-color: #fff; } ::-webkit-scrollbar{ width: 5px; background: #fff; } ::-webkit-scrollbar-thumb{ background: #333333; } #heroFullHeight{ background-color: #f6f6f6; min-height: calc(100vh - 4.0rem); } #colunaConteudo{ min-height: calc(100vh - 4.0rem); background-color: #f6f6f6; } div.row.conteudo2{ background-color: #f6f6f6; margin: 0px 0px 0px; } #linhaHeader{ border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #ccc; } #inputPesquisar{ border-radius: 50px; background-color: #fff; } #tableStyle{ border-style: solid; border-width: 1px; border-color: black; padding: 0px 10px 10px 10px; } #tableStyleTop{ border-top-style: solid; border-top-width: 1px; border-top-color: black; } #modalBtn{ margin-top: 0.4rem; } #modalTxt{ margin-top: 0.8rem; } div.row.table{ margin: 0px -12px 10px; } #modalTxt2{ margin-top: 0.4rem; } #tableTitle{ margin-top: 0.6rem; margin-bottom: 0.6rem; } #tableRow{ margin-top: 6px; } #notifAceito2{ color: green; } #notifNegado2{ color: #990100; } /*---------------------MENU DO TOPO---------------------*/ /*Remove o sublinhado do link contido na logo REQUEST*/ a.logoLink:link{ text-decoration:none; } .bgtopo{ background-color: white; z-index: 10; } div.col.nomeAdministrador{ padding: 0px 0px; } #nomeAdministrador{ font-weight: bold; color: #333333; font-size: 20px; } #downButton{ color: #333333; font-size: 20px; transition: 0.2s; margin: 0px 12px; text-align: center; background-color: #fff; border: none; } #downButton:hover{ text-decoration: none; background-color: #fff; } #dropdownAdministradorButton{ margin-top: 1.1rem; } #dropdownAdministradorEstilo{ margin: 0px 0px; min-width: 7rem; margin-left: -50px; } /*---------------------MENU LATERAL DESKTOP---------------------*/ #marginItens{ margin-top: 70px; } aside{ width: 60px; background: #333333; padding: 0px 0px 10px 0px; position: absolute; overflow: hidden; z-index: 99; top: 0; } section.main aside.keep{ width: 170px; transition: 0.2s; position: fixed; } aside{ height: 100%; } aside ul { list-style: none; width: 100%; } aside ul li { padding: 10px 20px; position: relative; } aside ul li a { font-size: 15px; color: #fff; text-decoration: none; white-space: nowrap; display: inline-block; padding: 1px; } aside ul li a:hover{ color: #fff; } aside ul li a span{ display: inline-block; vertical-align: middle; color: #fff; width: 38px; } aside ul li:hover{ background: #292929; box-shadow: inset 0px 0px 77px #333333; border-right-style: solid; border-right-width: 4px; border-right-color: #b90504; } aside ul li a:link{ text-decoration: none; } aside ul li:hover{ font-size: 17px; color: white; } /*---------------------MENU LATERAL MOBILE---------------------*/ #logoRequestMobile{ margin-top: -5px; width: 45px; } #mobile-demo{ background: #333333; } .sidenav-trigger{ color: #333333; } .sidenav-trigger:link{ text-decoration: none; } .sidenav{ background-color: #383b44; } li a{ color: white; } .sidenav li > a{ color: white; } .sidenav li > a:hover{ background-color: #2c2e33; color: white; text-decoration: none; } #opcoesMenuMobile{ color: #fff; } /*------------------DADOS DO ADMINISTRADOR------------------*/ #modalStyleAdm{ border: none; box-shadow: none; height: calc(100% - 70px); margin: 0px 0px; } #modalAdm{ border-radius: 10px; width: 30%; } #btnHabilitar{ width: 100%; height: 40px; margin-top: 0.8rem; background-color: #990100; color: #fff; font-weight: 600; margin-bottom: 1rem; } @media only screen and (min-width: 993px) and (max-width: 1207px){#modalAdm{width:45%}} @media only screen and (max-width: 992px){#modalAdm{width:80%}} #titleAdm{ margin-top: 1rem; margin-bottom: 0.5rem; font-weight: 600; font-size: 1.8rem; } #inputEstiloNm{ background-color: #f6f6f6; padding: 0px 0px 0px 20px; } #inputEstiloEm{ background-color: #f6f6f6; padding: 0px 0px 0px 20px; } #inputPassword{ background-color: #f<PASSWORD>; padding: 0px 0px 0px 20px; } #inputNPassword{ background-color: #f6f6f6; padding: 0px 0px 0px 20px; } #inputNCPassword{ background-color: #f6f6f6; padding: 0px 0px 0px 20px; } #colPass{ padding-right: 5px; } #colEye{ padding: 0px; } #pass-status{ padding: 15px; width: 100%; height: 3rem; background-color: #f6f6f6; } #modalFooAdm{ height: 70px; } #modalSalvar{ width: 100px; height: 40px; margin-top: 0.6rem; background-color: #990100; } #modalCancelar{ width: 100px; height: 40px; margin-top: 0.6rem; } /*------------------PAGE DE HISTORICO DO ADMINISTRADOR------------------*/ #oHistorico{ font-size: 35px; font-weight: bold; color: #333333; } #positionDownload{ margin-top: 1.3rem; } #iconDownload{ font-size: 22px; color: #333333; } #legenda{ margin-top: 1.3rem; margin-bottom: 1.3rem; } #legendaNotifAcc{ font-size: 25px; color: green; } #legendaNotifNeg{ font-size: 25px; color: #990100; } #titleEmail{ font-weight: bold; } #textLegenda{ font-size: 15px; } #titulosEmails{ background-color: #333333; border-radius: 10px; } #checkboxTitulos{ margin-top: 1rem; } #checkboxTitleStyle[type="checkbox"].filled-in:checked+span:not(.lever):after { top: 0; width: 20px; height: 20px; border: 2px solid #333333; background-color: #333333; z-index: 0; } #estiloTitulos{ font-weight: bold; color: #fff; } div.row.emails{ background-color: #f6f6f6; margin: 0px 0px 20px; } #colHistoricoEmails{ position: relative; padding: 0px 0px; height: calc(100vh - 18rem); overflow: auto; background-color: #fff; } div.row.historico{ background-color: #f6f6f6; margin: 0px -12px 0px; } #conteudoHistorico{ background-color: #fff; border-left-style: solid; border-left-width: 3px; border-left-color: #fff; border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #ccc; } #conteudoHistorico:hover{ background-color: #f2f2f2; border-left-style: solid; border-left-width: 3px; border-left-color: #990100; } #checkboxLinha{ margin-top: 1rem; } #checkboxStyle[type="checkbox"].filled-in:checked+span:not(.lever):after { top: 0; width: 20px; height: 20px; border: 2px solid #990100; background-color: #990100; z-index: 0; } #estiloInputEmails{ background-color: transparent; box-shadow: none; color: #424242; height: 50px; font-size: 1rem; } #notifAceito{ font-size: 19px; color: green; margin-top: -1.98rem; position: relative; } #notifNegado{ font-size: 19px; color: #990100; margin-top: -1.98rem; position: relative; } /*------------------PAGE DE FUNCIONÁRIO DO ADMINISTRADOR------------------*/ #oFuncionario{ font-size: 35px; font-weight: bold; color: #333333; } #btnCreate{ color: #fff; font-size: 20px; background-color: #990100; border: none; margin-top: -1rem; border-radius: 10px; text-transform: capitalize; margin-left: 1rem; } #modalStyle{ border: none; box-shadow: none; height: calc(100% - 70px); margin: 0px 0px; } #modal1{ border-radius: 10px; width: 30%; } @media only screen and (min-width: 993px) and (max-width: 1207px){#modal1{width:45%}} @media only screen and (max-width: 992px){#modal1{width:80%}} #titleModal{ margin-top: 1rem; margin-bottom: 0.5rem; } #modalFooStyle{ height: 70px; } #inputCadastroFuncionario{ background-color: #f6f6f6; padding: 0px 0px 0px 20px; } #selectFuncionario{ height: 3rem; background-color: #f6f6f6; border: none; box-shadow: none; font-size: 15px; } #modalButton{ width: 100px; height: 40px; margin-top: 0.6rem; } #acoesText{ margin-left: 1rem; margin-right: 1.2rem; font-size: 22px; } #positionActDes{ margin-top: 1.3rem; } #btnActDes{ color: #fff; background-color: transparent; border: none; margin-top: -0.25rem; border-radius: 10px; text-transform: capitalize; } #iconActDes{ font-size: 30px; color: #333333; } #agreeButton{ background-color: #990100; } #titleEmail2{ font-weight: bold; } #titulosEmails2{ background-color: #333333; border-radius: 10px; } #checkboxTitulos2{ margin-top: 1rem; } #checkboxTitleStyle2[type="checkbox"].filled-in:checked+span:not(.lever):after { top: 0; width: 20px; height: 20px; border: 2px solid #fff; background-color: #333333; z-index: 0; } #estiloTitulos2{ font-weight: bold; color: #fff; } div.row.funcionarios{ background-color: #f6f6f6; margin: 0px 0px 20px; } #colListaFuncionarios{ position: relative; padding: 0px 0px; height: calc(100vh - 18rem); overflow: auto; background-color: #fff; } div.row.lista{ background-color: #f6f6f6; margin: 0px -12px 0px; } #conteudoLista{ background-color: #fff; border-left-style: solid; border-left-width: 3px; border-left-color: #fff; border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #ccc; } #conteudoLista:hover{ background-color: #f2f2f2; border-left-style: solid; border-left-width: 3px; border-left-color: #990100; } #checkboxLinha2{ margin-top: 1rem; } #checkboxStyle2[type="checkbox"].filled-in:checked+span:not(.lever):after { top: 0; width: 20px; height: 20px; border: 2px solid #990100; background-color: #990100; z-index: 0; } #estiloInputFuncionario{ background-color: transparent; box-shadow: none; color: #424242; height: 50px; font-size: 1rem; } /*------------------PAGE DE COMPONENTES DO ADMINISTRADOR------------------*/ #barraComponentes{ margin-bottom: -0.6rem; z-index: -1; margin-top: 1rem; } #opcoesComponentes{ padding: 0px 0px; } #componentesFerramentas{ background-color: #fff; } #componentesOpc1{ background-color: #fff; padding: 10px 22px; color: black; border-radius: 10px 10px 0px 0px; transition: 0.1s; text-decoration: none; } #componentesOpc1:hover{ background-color: #fff; padding: 10px 22px; color: black; border-radius: 10px 10px 0px 0px; transition: 0.1s; text-decoration: none; } #componentesOpc2{ background-color: #f2f2f2; padding: 7px 22px; color: black; border-radius: 10px 10px 0px 0px; transition: 0.1s; text-decoration: none; color: #ccc; } #componentesOpc2:hover{ background-color: #fff; padding: 10px 22px; color: black; border-radius: 10px 10px 0px 0px; transition: 0.1s; text-decoration: none; } #componentesOpc3{ background-color: #f2f2f2; padding: 7px 22px; color: black; border-radius: 10px 10px 0px 0px; transition: 0.1s; text-decoration: none; color: #ccc; } #componentesOpc3:hover{ background-color: #fff; padding: 10px 22px; color: black; border-radius: 10px 10px 0px 0px; transition: 0.1s; text-decoration: none; } #positionOptions{ margin-top: 1.3rem; } #btnNovoCurso{ background-color: #990100; } #btnEditarCurso{ background-color: #990100; color: #fff; } /*-----------------MODAL DE NOVO CURSO-----------------*/ #modalStyle2{ border: none; box-shadow: none; height: calc(100% - 70px); margin: 0px 0px; } #modal2{ border-radius: 10px; width: 30%; } @media only screen and (min-width: 993px) and (max-width: 1207px){#modal2{width:45%}} @media only screen and (max-width: 992px){#modal2{width:80%}} #titleModal2{ margin-top: 1rem; margin-bottom: 0.5rem; } #modalFooStyle2{ height: 70px; } #inputCadastroCurso{ background-color: #f6f6f6; padding: 0px 0px 0px 20px; } #selectModulo{ height: 3rem; background-color: #f6f6f6; border: none; box-shadow: none; font-size: 15px; } #modalButton2Cad{ width: 100px; height: 40px; margin-top: 0.6rem; background-color: #990100; } #modalButton2{ width: 100px; height: 40px; margin-top: 0.6rem; } /*------------------------------------------------------*/ /*-----------------MODAL DE EDITAR CURSO-----------------*/ #modalStyle3{ border: none; box-shadow: none; height: calc(100% - 70px); margin: 0px 0px; } #modal3{ border-radius: 10px; width: 30%; } @media only screen and (min-width: 993px) and (max-width: 1207px){#modal3{width:45%}} @media only screen and (max-width: 992px){#modal3{width:80%}} #titleModal3{ margin-top: 1rem; margin-bottom: 0.5rem; } #modalFooStyle3{ height: 70px; } #inputNmCurso{ background-color: #f6f6f6; padding: 0px 0px 0px 20px; } #editarNmCurso{ margin-top: 0.5rem; } #selectInfoCurso{ background-color: #f6f6f6; padding: 0px 0px 0px 0px; } #selectModulo{ height: 3rem; background-color: #f6f6f6; border: none; box-shadow: none; font-size: 15px; } #modalButton3Cad{ width: 100px; height: 40px; margin-top: 0.6rem; background-color: #990100; } #modalButton3{ width: 100px; height: 40px; margin-top: 0.6rem; } /*------------------------------------------------------*/ #colorTitleComponentes{ background-color: #fff; } #titulosComponentes{ background-color: #333333; border-radius: 10px; margin: 0px 15px; } #estiloTitulos3{ font-weight: bold; color: #fff; } div.row.curso{ background-color: #f6f6f6; margin: 0px 0px 20px; } #colCursos{ position: relative; padding: 0px 0px; height: calc(100vh - 18rem); overflow: auto; background-color: #fff; } #linhaCurso{ margin: 0px 15px 20px; } #conteudoCurso{ background-color: #fff; border-left-style: solid; border-left-width: 3px; border-left-color: #fff; border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #ccc; } #conteudoCurso:hover{ background-color: #f2f2f2; border-left-style: solid; border-left-width: 3px; border-left-color: #990100; } #estiloInputCurso{ background-color: transparent; box-shadow: none; color: #424242; height: 50px; font-size: 1rem; } /*------------------PAGE DE DISCIPLINAS------------------*/ #btnNovaDisciplina{ background-color: #990100; } #btnEditarDisciplina{ background-color: #990100; color: #fff; } div.row.disciplina{ background-color: #f6f6f6; margin: 0px 0px 20px; } #colDisciplina{ position: relative; padding: 0px 0px; height: calc(100vh - 18rem); overflow: auto; background-color: #fff; } #linhaDisciplina{ margin: 0px 15px 20px; } #conteudoDisciplina{ background-color: #fff; border-left-style: solid; border-left-width: 3px; border-left-color: #fff; border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #ccc; } #conteudoDisciplina:hover{ background-color: #f2f2f2; border-left-style: solid; border-left-width: 3px; border-left-color: #990100; } #estiloInputDisciplina{ background-color: transparent; box-shadow: none; color: #424242; height: 50px; font-size: 1rem; } /*-----------------MODAL DE NOVA DISCIPLINA-----------------*/ #modalStyle4{ border: none; box-shadow: none; height: calc(100% - 70px); margin: 0px 0px; } #modal4{ border-radius: 10px; width: 30%; } @media only screen and (min-width: 993px) and (max-width: 1207px){#modal4{width:45%}} @media only screen and (max-width: 992px){#modal4{width:80%}} #titleModal4{ margin-top: 1rem; margin-bottom: 0.5rem; } #modalFooStyle4{ height: 70px; } #inputCadastroDisciplina{ background-color: #f6f6f6; padding: 0px 0px 0px 20px; } #botaoAnularTable{ margin-left: -0.9rem; } #modalButton4Cad{ width: 100px; height: 40px; margin-top: 0.6rem; background-color: #990100; } #modalButton4{ width: 100px; height: 40px; margin-top: 0.6rem; } /*------------------------------------------------------*/ /*-----------------MODAL DE EDITAR DISCIPLINA-----------------*/ #modalStyle5{ border: none; box-shadow: none; height: calc(100% - 70px); margin: 0px 0px; } #modal5{ border-radius: 10px; width: 30%; } @media only screen and (min-width: 993px) and (max-width: 1207px){#modal5{width:45%}} @media only screen and (max-width: 992px){#modal5{width:80%}} #titleModal5{ margin-top: 1rem; margin-bottom: 0.5rem; } #modalFooStyle5{ height: 70px; } #inputCadastroDisciplina{ background-color: #f6f6f6; padding: 0px 0px 0px 20px; } #modalButton5Cad{ width: 100px; height: 40px; margin-top: 0.6rem; background-color: #990100; } #modalButton5{ width: 100px; height: 40px; margin-top: 0.6rem; } #botaoEditarCurso{ margin-left: -0.9rem; } #formulariosCad{ margin-top: 2rem; } #notifAceito2{ color: green; } #notifNegado2{ color: #990100; } #btnSalvarEdit{ height: 40px; margin-top: 0.6rem; background-color: #990100; } /*------------------------------------------------------*/ /*------------------PAGE DE DISCIPLINAS------------------*/ #btnNovoProfessor{ background-color: #990100; } #btnEditarProfessor{ background-color: #990100; color: #fff; } div.row.professor{ background-color: #f6f6f6; margin: 0px 0px 20px; } #colProfessor{ position: relative; padding: 0px 0px; height: calc(100vh - 18rem); overflow: auto; background-color: #fff; } #linhaProfessor{ margin: 0px 15px 20px; } #conteudoProfessor{ background-color: #fff; border-left-style: solid; border-left-width: 3px; border-left-color: #fff; border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #ccc; } #conteudoProfessor:hover{ background-color: #f2f2f2; border-left-style: solid; border-left-width: 3px; border-left-color: #990100; } #estiloInputProfessor{ background-color: transparent; box-shadow: none; color: #424242; height: 50px; font-size: 1rem; } /*-----------------MODAL DE NOVO PROFESSOR-----------------*/ #modalStyle6{ border: none; box-shadow: none; height: calc(100% - 70px); margin: 0px 0px; } #modal6{ border-radius: 10px; width: 30%; } @media only screen and (min-width: 993px) and (max-width: 1207px){#modal6{width:45%}} @media only screen and (max-width: 992px){#modal6{width:80%}} #titleModal6{ margin-top: 1rem; margin-bottom: 0.5rem; } #modalFooStyle6{ height: 70px; } #inputCadastroProfessor{ background-color: #f6f6f6; padding: 0px 0px 0px 20px; } #modalButton6Cad{ width: 100px; height: 40px; margin-top: 0.6rem; background-color: #990100; } #modalButton6{ width: 100px; height: 40px; margin-top: 0.6rem; } /*------------------------------------------------------*/ /*-----------------MODAL DE EDITAR PROFESSOR-----------------*/ #modalStyle7{ border: none; box-shadow: none; height: calc(100% - 70px); margin: 0px 0px; } #modal7{ border-radius: 10px; width: 30%; } @media only screen and (min-width: 993px) and (max-width: 1207px){#modal7{width:45%}} @media only screen and (max-width: 992px){#modal7{width:80%}} #titleModal7{ margin-top: 1rem; margin-bottom: 0.5rem; } #modalFooStyle7{ height: 70px; } #inputCadastroProfessor{ background-color: #f6f6f6; padding: 0px 0px 0px 20px; } #botaoEditarProfessor{ margin-left: -0.9rem; } #plusButton{ font-weight: bold; margin: 0px 15px; } #modalButton7Cad{ width: 100px; height: 40px; margin-top: 0.6rem; background-color: #990100; } #modalButton7{ width: 100px; height: 40px; margin-top: 0.6rem; } /*------------------------------------------------------*/
assets/css/administrador/estilo.css
div.row.conteudo{ margin: 0px 0px -20px; } #heroFull{ background-color: #f2f2f2; height: 100%; } div.hero-body{ padding: 0px 0px; } ::-webkit-scrollbar-track{ background-color: #fff; } ::-webkit-scrollbar{ width: 5px; background: #fff; } ::-webkit-scrollbar-thumb{ background: #333333; } #heroFullHeight{ background-color: #f6f6f6; min-height: calc(100vh - 4.0rem); } #colunaConteudo{ min-height: calc(100vh - 4.0rem); background-color: #f6f6f6; } div.row.conteudo2{ background-color: #f6f6f6; margin: 0px 0px 0px; } #linhaHeader{ border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #ccc; } #inputPesquisar{ border-radius: 50px; background-color: #fff; } #tableStyle{ border-style: solid; border-width: 1px; border-color: black; padding: 0px 10px 10px 10px; } #tableStyleTop{ border-top-style: solid; border-top-width: 1px; border-top-color: black; } #modalBtn{ margin-top: 0.4rem; } #modalTxt{ margin-top: 0.8rem; } div.row.table{ margin: 0px -12px 10px; } #modalTxt2{ margin-top: 0.4rem; } #tableTitle{ margin-top: 0.6rem; margin-bottom: 0.6rem; } #tableRow{ margin-top: 6px; } #notifAceito2{ color: green; } #notifNegado2{ color: #990100; } /*---------------------MENU DO TOPO---------------------*/ /*Remove o sublinhado do link contido na logo REQUEST*/ a.logoLink:link{ text-decoration:none; } .bgtopo{ background-color: white; z-index: 10; } div.col.nomeAdministrador{ padding: 0px 0px; } #nomeAdministrador{ font-weight: bold; color: #333333; font-size: 20px; } #downButton{ color: #333333; font-size: 20px; transition: 0.2s; margin: 0px 12px; text-align: center; background-color: #fff; border: none; } #downButton:hover{ text-decoration: none; background-color: #fff; } #dropdownAdministradorButton{ margin-top: 1.1rem; } #dropdownAdministradorEstilo{ margin: 0px 0px; min-width: 7rem; margin-left: -50px; } /*---------------------MENU LATERAL DESKTOP---------------------*/ #marginItens{ margin-top: 70px; } aside{ width: 60px; background: #333333; padding: 0px 0px 10px 0px; position: absolute; overflow: hidden; z-index: 99; top: 0; } section.main aside.keep{ width: 170px; transition: 0.2s; position: fixed; } aside{ height: 100%; } aside ul { list-style: none; width: 100%; } aside ul li { padding: 10px 20px; position: relative; } aside ul li a { font-size: 15px; color: #fff; text-decoration: none; white-space: nowrap; display: inline-block; padding: 1px; } aside ul li a:hover{ color: #fff; } aside ul li a span{ display: inline-block; vertical-align: middle; color: #fff; width: 38px; } aside ul li:hover{ background: #292929; box-shadow: inset 0px 0px 77px #333333; border-right-style: solid; border-right-width: 4px; border-right-color: #b90504; } aside ul li a:link{ text-decoration: none; } aside ul li:hover{ font-size: 17px; color: white; } /*---------------------MENU LATERAL MOBILE---------------------*/ #logoRequestMobile{ margin-top: -5px; width: 45px; } #mobile-demo{ background: #333333; } .sidenav-trigger{ color: #333333; } .sidenav-trigger:link{ text-decoration: none; } .sidenav{ background-color: #383b44; } li a{ color: white; } .sidenav li > a{ color: white; } .sidenav li > a:hover{ background-color: #2c2e33; color: white; text-decoration: none; } #opcoesMenuMobile{ color: #fff; } /*------------------DADOS DO ADMINISTRADOR------------------*/ #modalStyleAdm{ border: none; box-shadow: none; height: calc(100% - 70px); margin: 0px 0px; } #modalAdm{ border-radius: 10px; width: 30%; } #btnHabilitar{ width: 100%; height: 40px; margin-top: 0.8rem; background-color: #990100; color: #fff; font-weight: 600; margin-bottom: 1rem; } @media only screen and (min-width: 993px) and (max-width: 1207px){#modalAdm{width:45%}} @media only screen and (max-width: 992px){#modalAdm{width:80%}} #titleAdm{ margin-top: 1rem; margin-bottom: 0.5rem; font-weight: 600; font-size: 1.8rem; } #inputEstiloNm{ background-color: #f6f6f6; padding: 0px 0px 0px 20px; } #inputEstiloEm{ background-color: #f6f6f6; padding: 0px 0px 0px 20px; } #inputPassword{ background-color: #f<PASSWORD>; padding: 0px 0px 0px 20px; } #inputNPassword{ background-color: #f6f6f6; padding: 0px 0px 0px 20px; } #inputNCPassword{ background-color: #f6f6f6; padding: 0px 0px 0px 20px; } #colPass{ padding-right: 5px; } #colEye{ padding: 0px; } #pass-status{ padding: 15px; width: 100%; height: 3rem; background-color: #f6f6f6; } #modalFooAdm{ height: 70px; } #modalSalvar{ width: 100px; height: 40px; margin-top: 0.6rem; background-color: #990100; } #modalCancelar{ width: 100px; height: 40px; margin-top: 0.6rem; } /*------------------PAGE DE HISTORICO DO ADMINISTRADOR------------------*/ #oHistorico{ font-size: 35px; font-weight: bold; color: #333333; } #positionDownload{ margin-top: 1.3rem; } #iconDownload{ font-size: 22px; color: #333333; } #legenda{ margin-top: 1.3rem; margin-bottom: 1.3rem; } #legendaNotifAcc{ font-size: 25px; color: green; } #legendaNotifNeg{ font-size: 25px; color: #990100; } #titleEmail{ font-weight: bold; } #textLegenda{ font-size: 15px; } #titulosEmails{ background-color: #333333; border-radius: 10px; } #checkboxTitulos{ margin-top: 1rem; } #checkboxTitleStyle[type="checkbox"].filled-in:checked+span:not(.lever):after { top: 0; width: 20px; height: 20px; border: 2px solid #333333; background-color: #333333; z-index: 0; } #estiloTitulos{ font-weight: bold; color: #fff; } div.row.emails{ background-color: #f6f6f6; margin: 0px 0px 20px; } #colHistoricoEmails{ position: relative; padding: 0px 0px; height: calc(100vh - 18rem); overflow: auto; background-color: #fff; } div.row.historico{ background-color: #f6f6f6; margin: 0px -12px 0px; } #conteudoHistorico{ background-color: #fff; border-left-style: solid; border-left-width: 3px; border-left-color: #fff; border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #ccc; } #conteudoHistorico:hover{ background-color: #f2f2f2; border-left-style: solid; border-left-width: 3px; border-left-color: #990100; } #checkboxLinha{ margin-top: 1rem; } #checkboxStyle[type="checkbox"].filled-in:checked+span:not(.lever):after { top: 0; width: 20px; height: 20px; border: 2px solid #990100; background-color: #990100; z-index: 0; } #estiloInputEmails{ background-color: transparent; box-shadow: none; color: #424242; height: 50px; font-size: 1rem; } #notifAceito{ font-size: 19px; color: green; margin-top: -1.98rem; position: relative; } #notifNegado{ font-size: 19px; color: #990100; margin-top: -1.98rem; position: relative; } /*------------------PAGE DE FUNCIONÁRIO DO ADMINISTRADOR------------------*/ #oFuncionario{ font-size: 35px; font-weight: bold; color: #333333; } #btnCreate{ color: #fff; font-size: 20px; background-color: #990100; border: none; margin-top: -1rem; border-radius: 10px; text-transform: capitalize; margin-left: 1rem; } #modalStyle{ border: none; box-shadow: none; height: calc(100% - 70px); margin: 0px 0px; } #modal1{ border-radius: 10px; width: 30%; } @media only screen and (min-width: 993px) and (max-width: 1207px){#modal1{width:45%}} @media only screen and (max-width: 992px){#modal1{width:80%}} #titleModal{ margin-top: 1rem; margin-bottom: 0.5rem; } #modalFooStyle{ height: 70px; } #inputCadastroFuncionario{ background-color: #f6f6f6; padding: 0px 0px 0px 20px; } #selectFuncionario{ height: 3rem; background-color: #f6f6f6; border: none; box-shadow: none; font-size: 15px; } #modalButton{ width: 100px; height: 40px; margin-top: 0.6rem; } #acoesText{ margin-left: 1rem; margin-right: 1.2rem; font-size: 22px; } #positionActDes{ margin-top: 1.3rem; } #btnActDes{ color: #fff; background-color: transparent; border: none; margin-top: -0.25rem; border-radius: 10px; text-transform: capitalize; } #iconActDes{ font-size: 30px; color: #333333; } #agreeButton{ background-color: #990100; } #titleEmail2{ font-weight: bold; } #titulosEmails2{ background-color: #333333; border-radius: 10px; } #checkboxTitulos2{ margin-top: 1rem; } #checkboxTitleStyle2[type="checkbox"].filled-in:checked+span:not(.lever):after { top: 0; width: 20px; height: 20px; border: 2px solid #fff; background-color: #333333; z-index: 0; } #estiloTitulos2{ font-weight: bold; color: #fff; } div.row.funcionarios{ background-color: #f6f6f6; margin: 0px 0px 20px; } #colListaFuncionarios{ position: relative; padding: 0px 0px; height: calc(100vh - 18rem); overflow: auto; background-color: #fff; } div.row.lista{ background-color: #f6f6f6; margin: 0px -12px 0px; } #conteudoLista{ background-color: #fff; border-left-style: solid; border-left-width: 3px; border-left-color: #fff; border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #ccc; } #conteudoLista:hover{ background-color: #f2f2f2; border-left-style: solid; border-left-width: 3px; border-left-color: #990100; } #checkboxLinha2{ margin-top: 1rem; } #checkboxStyle2[type="checkbox"].filled-in:checked+span:not(.lever):after { top: 0; width: 20px; height: 20px; border: 2px solid #990100; background-color: #990100; z-index: 0; } #estiloInputFuncionario{ background-color: transparent; box-shadow: none; color: #424242; height: 50px; font-size: 1rem; } /*------------------PAGE DE COMPONENTES DO ADMINISTRADOR------------------*/ #barraComponentes{ margin-bottom: -0.6rem; z-index: -1; margin-top: 1rem; } #opcoesComponentes{ padding: 0px 0px; } #componentesFerramentas{ background-color: #fff; } #componentesOpc1{ background-color: #fff; padding: 10px 22px; color: black; border-radius: 10px 10px 0px 0px; transition: 0.1s; text-decoration: none; } #componentesOpc1:hover{ background-color: #fff; padding: 10px 22px; color: black; border-radius: 10px 10px 0px 0px; transition: 0.1s; text-decoration: none; } #componentesOpc2{ background-color: #f2f2f2; padding: 7px 22px; color: black; border-radius: 10px 10px 0px 0px; transition: 0.1s; text-decoration: none; color: #ccc; } #componentesOpc2:hover{ background-color: #fff; padding: 10px 22px; color: black; border-radius: 10px 10px 0px 0px; transition: 0.1s; text-decoration: none; } #componentesOpc3{ background-color: #f2f2f2; padding: 7px 22px; color: black; border-radius: 10px 10px 0px 0px; transition: 0.1s; text-decoration: none; color: #ccc; } #componentesOpc3:hover{ background-color: #fff; padding: 10px 22px; color: black; border-radius: 10px 10px 0px 0px; transition: 0.1s; text-decoration: none; } #positionOptions{ margin-top: 1.3rem; } #btnNovoCurso{ background-color: #990100; } #btnEditarCurso{ background-color: #990100; color: #fff; } /*-----------------MODAL DE NOVO CURSO-----------------*/ #modalStyle2{ border: none; box-shadow: none; height: calc(100% - 70px); margin: 0px 0px; } #modal2{ border-radius: 10px; width: 30%; } @media only screen and (min-width: 993px) and (max-width: 1207px){#modal2{width:45%}} @media only screen and (max-width: 992px){#modal2{width:80%}} #titleModal2{ margin-top: 1rem; margin-bottom: 0.5rem; } #modalFooStyle2{ height: 70px; } #inputCadastroCurso{ background-color: #f6f6f6; padding: 0px 0px 0px 20px; } #selectModulo{ height: 3rem; background-color: #f6f6f6; border: none; box-shadow: none; font-size: 15px; } #modalButton2Cad{ width: 100px; height: 40px; margin-top: 0.6rem; background-color: #990100; } #modalButton2{ width: 100px; height: 40px; margin-top: 0.6rem; } /*------------------------------------------------------*/ /*-----------------MODAL DE EDITAR CURSO-----------------*/ #modalStyle3{ border: none; box-shadow: none; height: calc(100% - 70px); margin: 0px 0px; } #modal3{ border-radius: 10px; width: 30%; } @media only screen and (min-width: 993px) and (max-width: 1207px){#modal3{width:45%}} @media only screen and (max-width: 992px){#modal3{width:80%}} #titleModal3{ margin-top: 1rem; margin-bottom: 0.5rem; } #modalFooStyle3{ height: 70px; } #inputNmCurso{ background-color: #f6f6f6; padding: 0px 0px 0px 20px; } #editarNmCurso{ margin-top: 0.5rem; } #selectInfoCurso{ background-color: #f6f6f6; padding: 0px 0px 0px 0px; } #selectModulo{ height: 3rem; background-color: #f6f6f6; border: none; box-shadow: none; font-size: 15px; } #modalButton3Cad{ width: 100px; height: 40px; margin-top: 0.6rem; background-color: #990100; } #modalButton3{ width: 100px; height: 40px; margin-top: 0.6rem; } /*------------------------------------------------------*/ #colorTitleComponentes{ background-color: #fff; } #titulosComponentes{ background-color: #333333; border-radius: 10px; margin: 0px 15px; } #estiloTitulos3{ font-weight: bold; color: #fff; } div.row.curso{ background-color: #f6f6f6; margin: 0px 0px 20px; } #colCursos{ position: relative; padding: 0px 0px; height: calc(100vh - 18rem); overflow: auto; background-color: #fff; } #linhaCurso{ margin: 0px 15px 20px; } #conteudoCurso{ background-color: #fff; border-left-style: solid; border-left-width: 3px; border-left-color: #fff; border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #ccc; } #conteudoCurso:hover{ background-color: #f2f2f2; border-left-style: solid; border-left-width: 3px; border-left-color: #990100; } #estiloInputCurso{ background-color: transparent; box-shadow: none; color: #424242; height: 50px; font-size: 1rem; } /*------------------PAGE DE DISCIPLINAS------------------*/ #btnNovaDisciplina{ background-color: #990100; } #btnEditarDisciplina{ background-color: #990100; color: #fff; } div.row.disciplina{ background-color: #f6f6f6; margin: 0px 0px 20px; } #colDisciplina{ position: relative; padding: 0px 0px; height: calc(100vh - 18rem); overflow: auto; background-color: #fff; } #linhaDisciplina{ margin: 0px 15px 20px; } #conteudoDisciplina{ background-color: #fff; border-left-style: solid; border-left-width: 3px; border-left-color: #fff; border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #ccc; } #conteudoDisciplina:hover{ background-color: #f2f2f2; border-left-style: solid; border-left-width: 3px; border-left-color: #990100; } #estiloInputDisciplina{ background-color: transparent; box-shadow: none; color: #424242; height: 50px; font-size: 1rem; } /*-----------------MODAL DE NOVA DISCIPLINA-----------------*/ #modalStyle4{ border: none; box-shadow: none; height: calc(100% - 70px); margin: 0px 0px; } #modal4{ border-radius: 10px; width: 30%; } @media only screen and (min-width: 993px) and (max-width: 1207px){#modal4{width:45%}} @media only screen and (max-width: 992px){#modal4{width:80%}} #titleModal4{ margin-top: 1rem; margin-bottom: 0.5rem; } #modalFooStyle4{ height: 70px; } #inputCadastroDisciplina{ background-color: #f6f6f6; padding: 0px 0px 0px 20px; } #botaoAnularTable{ margin-left: -0.9rem; } #modalButton4Cad{ width: 100px; height: 40px; margin-top: 0.6rem; background-color: #990100; } #modalButton4{ width: 100px; height: 40px; margin-top: 0.6rem; } /*------------------------------------------------------*/ /*-----------------MODAL DE EDITAR DISCIPLINA-----------------*/ #modalStyle5{ border: none; box-shadow: none; height: calc(100% - 70px); margin: 0px 0px; } #modal5{ border-radius: 10px; width: 30%; } @media only screen and (min-width: 993px) and (max-width: 1207px){#modal5{width:45%}} @media only screen and (max-width: 992px){#modal5{width:80%}} #titleModal5{ margin-top: 1rem; margin-bottom: 0.5rem; } #modalFooStyle5{ height: 70px; } #inputCadastroDisciplina{ background-color: #f6f6f6; padding: 0px 0px 0px 20px; } #modalButton5Cad{ width: 100px; height: 40px; margin-top: 0.6rem; background-color: #990100; } #modalButton5{ width: 100px; height: 40px; margin-top: 0.6rem; } #botaoEditarCurso{ margin-left: -0.9rem; } #formulariosCad{ margin-top: 2rem; } #notifAceito2{ color: green; } #notifNegado2{ color: #990100; } #btnSalvarEdit{ height: 40px; margin-top: 0.6rem; background-color: #990100; } /*------------------------------------------------------*/ /*------------------PAGE DE DISCIPLINAS------------------*/ #btnNovoProfessor{ background-color: #990100; } #btnEditarProfessor{ background-color: #990100; color: #fff; } div.row.professor{ background-color: #f6f6f6; margin: 0px 0px 20px; } #colProfessor{ position: relative; padding: 0px 0px; height: calc(100vh - 18rem); overflow: auto; background-color: #fff; } #linhaProfessor{ margin: 0px 15px 20px; } #conteudoProfessor{ background-color: #fff; border-left-style: solid; border-left-width: 3px; border-left-color: #fff; border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #ccc; } #conteudoProfessor:hover{ background-color: #f2f2f2; border-left-style: solid; border-left-width: 3px; border-left-color: #990100; } #estiloInputProfessor{ background-color: transparent; box-shadow: none; color: #424242; height: 50px; font-size: 1rem; } /*-----------------MODAL DE NOVO PROFESSOR-----------------*/ #modalStyle6{ border: none; box-shadow: none; height: calc(100% - 70px); margin: 0px 0px; } #modal6{ border-radius: 10px; width: 30%; } @media only screen and (min-width: 993px) and (max-width: 1207px){#modal6{width:45%}} @media only screen and (max-width: 992px){#modal6{width:80%}} #titleModal6{ margin-top: 1rem; margin-bottom: 0.5rem; } #modalFooStyle6{ height: 70px; } #inputCadastroProfessor{ background-color: #f6f6f6; padding: 0px 0px 0px 20px; } #modalButton6Cad{ width: 100px; height: 40px; margin-top: 0.6rem; background-color: #990100; } #modalButton6{ width: 100px; height: 40px; margin-top: 0.6rem; } /*------------------------------------------------------*/ /*-----------------MODAL DE EDITAR PROFESSOR-----------------*/ #modalStyle7{ border: none; box-shadow: none; height: calc(100% - 70px); margin: 0px 0px; } #modal7{ border-radius: 10px; width: 30%; } @media only screen and (min-width: 993px) and (max-width: 1207px){#modal7{width:45%}} @media only screen and (max-width: 992px){#modal7{width:80%}} #titleModal7{ margin-top: 1rem; margin-bottom: 0.5rem; } #modalFooStyle7{ height: 70px; } #inputCadastroProfessor{ background-color: #f6f6f6; padding: 0px 0px 0px 20px; } #botaoEditarProfessor{ margin-left: -0.9rem; } #plusButton{ font-weight: bold; margin: 0px 15px; } #modalButton7Cad{ width: 100px; height: 40px; margin-top: 0.6rem; background-color: #990100; } #modalButton7{ width: 100px; height: 40px; margin-top: 0.6rem; } /*------------------------------------------------------*/
0.156652
0.052014
@tailwind base; @tailwind components; @tailwind utilities; @layer utilities { .change-pp { position: absolute; margin-top: 6rem; width: 128px; border-radius: 0px 0px 8px 8px; } .btn { background-color: white; } .logo { font-size: 2rem; letter-spacing: -0.06rem; text-transform: uppercase; font-weight: 700; font-family: 'Nanum Pen Script', cursive; font-size: 1.5rem; } .nav { height: 88px; box-shadow: 0 3px 5px -1px rgb(0 0 0 / 10%), 0 6px 10px 0 rgb(0 0 0 / 7%), 0 1px 18px 0 rgb(0 0 0 / 6%); } .jumbotron { border-radius: 0px; } .a-logo { display: inline-flex; } body { margin: 0; font-family: 'Poppins', sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .section { height: 500px; } h1 { letter-spacing: -0.08rem; } h2 { font-size: 2rem; font-weight: 600; letter-spacing: -0.08rem; margin-bottom: 10px; } .second-half { padding: 2rem 0px 0px 2rem; margin-top: auto; margin-bottom: auto; } strong { color: #f54f4f; } code { font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace; } @variants hover { .btn-hov { background-color: #dddddd; } .btn-shadow { box-shadow: 0 1px 4px 0px #000000ad; } .bg-1 { background-image: url('https://images.unsplash.com/photo-1530098403657-0d93d64d087d?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=759&q=80'); height: 100%; } a:hover { border-bottom: 2px solid #f54f4f; text-decoration: none; color: #f54f4f; } .a-logo:hover { border-bottom: 0px solid #fff; } } } .mb-15 { margin-bottom: 4rem; } .exit { text-align: center; width: 30px; height: 30px; color: #f54f4f; font-size: 20px; right: 0; position: absolute; border-radius: 0px 5px 0px 0px; font-weight: 700; } .exit:hover { cursor: pointer; }
client/src/index.css
@tailwind base; @tailwind components; @tailwind utilities; @layer utilities { .change-pp { position: absolute; margin-top: 6rem; width: 128px; border-radius: 0px 0px 8px 8px; } .btn { background-color: white; } .logo { font-size: 2rem; letter-spacing: -0.06rem; text-transform: uppercase; font-weight: 700; font-family: 'Nanum Pen Script', cursive; font-size: 1.5rem; } .nav { height: 88px; box-shadow: 0 3px 5px -1px rgb(0 0 0 / 10%), 0 6px 10px 0 rgb(0 0 0 / 7%), 0 1px 18px 0 rgb(0 0 0 / 6%); } .jumbotron { border-radius: 0px; } .a-logo { display: inline-flex; } body { margin: 0; font-family: 'Poppins', sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .section { height: 500px; } h1 { letter-spacing: -0.08rem; } h2 { font-size: 2rem; font-weight: 600; letter-spacing: -0.08rem; margin-bottom: 10px; } .second-half { padding: 2rem 0px 0px 2rem; margin-top: auto; margin-bottom: auto; } strong { color: #f54f4f; } code { font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace; } @variants hover { .btn-hov { background-color: #dddddd; } .btn-shadow { box-shadow: 0 1px 4px 0px #000000ad; } .bg-1 { background-image: url('https://images.unsplash.com/photo-1530098403657-0d93d64d087d?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=759&q=80'); height: 100%; } a:hover { border-bottom: 2px solid #f54f4f; text-decoration: none; color: #f54f4f; } .a-logo:hover { border-bottom: 0px solid #fff; } } } .mb-15 { margin-bottom: 4rem; } .exit { text-align: center; width: 30px; height: 30px; color: #f54f4f; font-size: 20px; right: 0; position: absolute; border-radius: 0px 5px 0px 0px; font-weight: 700; } .exit:hover { cursor: pointer; }
0.441432
0.134179
.btn-group-vertical>.btn-group:after, .btn-group-vertical>.btn-group:before, .btn-toolbar:after, .btn-toolbar:before, .clearfix:after, .clearfix:before, .container-fluid:after, .container-fluid:before, .container:after, .container:before, .dl-horizontal dd:after, .dl-horizontal dd:before, .form-horizontal .form-group:after, .form-group:before, .modal-footer:after, .modal-footer:before, .modal-header:after, .modal-header:before, .nav:after, .nav:before, .navbar-collapse:after, .navbar-collapse:before, .navbar-header:after, .navbar-header:before, .navbar:after, .navbar:before, .pager:after, .pager:before, .panel-body:after, .panel-body:before, .row:after, .row:before { display: table; content: " "; } .btn-group-vertical>.btn-group:after, .btn-toolbar:after, .clearfix:after, .container-fluid:after, .container:after, .dl-horizontal dd:after, .form-group:after, .modal-footer:after, .modal-header:after, .nav:after, .navbar-collapse:after, .navbar-header:after, .navbar:after, .pager:after, .panel-body:after, .row:after { clear: both !important; } section.inputmask { margin-bottom: 1.875rem; border: solid 1px #eee; box-shadow: 0px 4px 10px #a1a1a2b8; /* min-height: 350px; */ background: #fff; } .border-botom { border-bottom: solid 3px #615f5f; margin-bottom: 12px; } .form-group { margin-bottom: 15px; } label.control-label { font-weight: initial; } .form-group .col-md-12, .form-group.col-sm-12, .form-group .col-xs-12, .form-group .col-md-11, .form-group.col-sm-11, .form-group .col-xs-11, .form-group .col-md-10, .form-group.col-sm-10, .form-group .col-xs-10, .form-group .col-md-9, .form-group.col-sm-9, .form-group .col-xs-9, .form-group .col-md-8, .form-group.col-sm-8, .form-group .col-xs-8, .form-group .col-md-7, .form-group.col-sm-7, .form-group .col-xs-7, .form-group .col-md-6, .form-group.col-sm-6, .form-group .col-xs-6, .form-group .col-md-5, .form-group.col-sm-5, .form-group .col-xs-5, .form-group .col-md-4, .form-group.col-sm-4, .form-group .col-xs-4, .form-group .col-md-3, .form-group .col-sm-3, .form-group.col-xs-3, .form-group .col-md-2, .form-group.col-sm-2, .form-group .col-xs-2 { padding: 0; } .pd-0 { padding: 0; } .title-blog { border-bottom: solid 1px #e5e6e6; color: #0f2a5b; font-style: italic; } .bold{ font-weight: 700 !important; }
public/datatable/bootstrap-custome.css
.btn-group-vertical>.btn-group:after, .btn-group-vertical>.btn-group:before, .btn-toolbar:after, .btn-toolbar:before, .clearfix:after, .clearfix:before, .container-fluid:after, .container-fluid:before, .container:after, .container:before, .dl-horizontal dd:after, .dl-horizontal dd:before, .form-horizontal .form-group:after, .form-group:before, .modal-footer:after, .modal-footer:before, .modal-header:after, .modal-header:before, .nav:after, .nav:before, .navbar-collapse:after, .navbar-collapse:before, .navbar-header:after, .navbar-header:before, .navbar:after, .navbar:before, .pager:after, .pager:before, .panel-body:after, .panel-body:before, .row:after, .row:before { display: table; content: " "; } .btn-group-vertical>.btn-group:after, .btn-toolbar:after, .clearfix:after, .container-fluid:after, .container:after, .dl-horizontal dd:after, .form-group:after, .modal-footer:after, .modal-header:after, .nav:after, .navbar-collapse:after, .navbar-header:after, .navbar:after, .pager:after, .panel-body:after, .row:after { clear: both !important; } section.inputmask { margin-bottom: 1.875rem; border: solid 1px #eee; box-shadow: 0px 4px 10px #a1a1a2b8; /* min-height: 350px; */ background: #fff; } .border-botom { border-bottom: solid 3px #615f5f; margin-bottom: 12px; } .form-group { margin-bottom: 15px; } label.control-label { font-weight: initial; } .form-group .col-md-12, .form-group.col-sm-12, .form-group .col-xs-12, .form-group .col-md-11, .form-group.col-sm-11, .form-group .col-xs-11, .form-group .col-md-10, .form-group.col-sm-10, .form-group .col-xs-10, .form-group .col-md-9, .form-group.col-sm-9, .form-group .col-xs-9, .form-group .col-md-8, .form-group.col-sm-8, .form-group .col-xs-8, .form-group .col-md-7, .form-group.col-sm-7, .form-group .col-xs-7, .form-group .col-md-6, .form-group.col-sm-6, .form-group .col-xs-6, .form-group .col-md-5, .form-group.col-sm-5, .form-group .col-xs-5, .form-group .col-md-4, .form-group.col-sm-4, .form-group .col-xs-4, .form-group .col-md-3, .form-group .col-sm-3, .form-group.col-xs-3, .form-group .col-md-2, .form-group.col-sm-2, .form-group .col-xs-2 { padding: 0; } .pd-0 { padding: 0; } .title-blog { border-bottom: solid 1px #e5e6e6; color: #0f2a5b; font-style: italic; } .bold{ font-weight: 700 !important; }
0.192539
0.035746
*{ margin:0; padding: 0; box-sizing: border-box; } div.interface{ display: flex; flex-direction: column; align-items: center; justify-content: space-around; width: 670px; height: 550px; margin: auto; flex: 1; } .title h2{ font-size: var(--title-font-size); margin-bottom: 50px; } .session{ display: flex; width: 105%; flex: 1; justify-content: center; } .sessionBtn{ width: 30%; height: 4rem; background-color: inherit; font-weight: bold; color: var(--color-text-light); font-size: 1.4rem; cursor: pointer; border: 0.2rem solid var(--border-color); margin: 0px 20px; } .sessionBtn:hover{ color: var(--color-text-hover); border: var(--color-text-hover) solid 0.2rem; } .buttons{ display: flex; width: 100%; justify-content: center; margin: auto auto; align-items: center; justify-content: space-evenly; padding: 0.5rem; margin-top: 1.2rem; border-top: solid 0.2rem var(--border-color); border-bottom: solid 0.2rem var(--border-color); } .btn{ cursor: pointer; font-weight: bolder; font-size: 1.8rem; color: var(--color-text-light); border: none; background-color: inherit; } .btn:hover{ color: var(--color-text-hover) } .clock{ display: flex; flex-direction: column; text-align: center; border: var(--border-color) 0.3rem solid; justify-content: space-between; width: 420px; /*min-width: 300px; min-height: 200px; max-height: 250px;*/ align-items: center; font-weight: bolder; font-size: 5.5rem; padding: 2.5rem 3rem; box-shadow: 6px 6px 4px black; border-radius: 10px; margin: 2rem; } .settings{ display: flex; width: 100%; justify-content: center; flex: 1; } .settingField{ display: flex; flex-direction: column; justify-content: center; align-items: center; font-weight: bold; flex: 1; font-size: 1.3rem; } .settings input{ margin: 1rem; text-align: center; width: 60px; border-radius: 5px; color: var(--color-text-light); background-color: inherit; height: 2rem; font-weight: bold; border: var(--border-color) solid; text-decoration: none; font-size: 1.2rem; padding: 15px 0px; } /*configuração para remover arrows*/ input[type=number] { -moz-appearance: textfield; } input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
public/stylesheets/shared/pomodoro.css
*{ margin:0; padding: 0; box-sizing: border-box; } div.interface{ display: flex; flex-direction: column; align-items: center; justify-content: space-around; width: 670px; height: 550px; margin: auto; flex: 1; } .title h2{ font-size: var(--title-font-size); margin-bottom: 50px; } .session{ display: flex; width: 105%; flex: 1; justify-content: center; } .sessionBtn{ width: 30%; height: 4rem; background-color: inherit; font-weight: bold; color: var(--color-text-light); font-size: 1.4rem; cursor: pointer; border: 0.2rem solid var(--border-color); margin: 0px 20px; } .sessionBtn:hover{ color: var(--color-text-hover); border: var(--color-text-hover) solid 0.2rem; } .buttons{ display: flex; width: 100%; justify-content: center; margin: auto auto; align-items: center; justify-content: space-evenly; padding: 0.5rem; margin-top: 1.2rem; border-top: solid 0.2rem var(--border-color); border-bottom: solid 0.2rem var(--border-color); } .btn{ cursor: pointer; font-weight: bolder; font-size: 1.8rem; color: var(--color-text-light); border: none; background-color: inherit; } .btn:hover{ color: var(--color-text-hover) } .clock{ display: flex; flex-direction: column; text-align: center; border: var(--border-color) 0.3rem solid; justify-content: space-between; width: 420px; /*min-width: 300px; min-height: 200px; max-height: 250px;*/ align-items: center; font-weight: bolder; font-size: 5.5rem; padding: 2.5rem 3rem; box-shadow: 6px 6px 4px black; border-radius: 10px; margin: 2rem; } .settings{ display: flex; width: 100%; justify-content: center; flex: 1; } .settingField{ display: flex; flex-direction: column; justify-content: center; align-items: center; font-weight: bold; flex: 1; font-size: 1.3rem; } .settings input{ margin: 1rem; text-align: center; width: 60px; border-radius: 5px; color: var(--color-text-light); background-color: inherit; height: 2rem; font-weight: bold; border: var(--border-color) solid; text-decoration: none; font-size: 1.2rem; padding: 15px 0px; } /*configuração para remover arrows*/ input[type=number] { -moz-appearance: textfield; } input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
0.298287
0.078148
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification for details on configuring this project to bundle and minify static web assets. */ body { background-color: #fbfdff; } .navbar-nav .dropdown-menu { position: absolute; } /* 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; } /* * Sidebar */ .sidebar { position: fixed; top: 0; bottom: 0; left: 0; z-index: 100; /* Behind the navbar */ padding: 48px 0 0; /* Height of navbar */ box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1); } @media (max-width: 767.98px) { .sidebar { top: 5rem; } } .sidebar-sticky { position: relative; top: 0; height: calc(100vh - 48px); padding-top: .5rem; overflow-x: hidden; overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */ } @supports ((position: -webkit-sticky) or (position: sticky)) { .sidebar-sticky { position: -webkit-sticky; position: sticky; } } .sidebar .nav-link { font-weight: 400; color: #333; font-size: .875rem; line-height: 1.5; } .sidebar .nav-link .feather { margin-right: 4px; color: #999; } .sidebar .nav-link.active { color: #007bff; } .sidebar .nav-link:hover .feather, .sidebar .nav-link.active .feather { color: inherit; } .sidebar-heading { font-size: .75rem; text-transform: uppercase; } /* Input styles */ input[type=checkbox], input[type=radio] { width: 1em; height: 1em; } /* * Visit pages */ .full-button-column { width: 10%; padding: 0px !important; } .full-button-column .btn-group { width: 100%; height: 100%; } .full-button-column .btn-group .dropdown-toggle { border-radius: 0px; width: 100%; height: 100%; padding: .75em; background-color: #dfe2e4; border-color: #dfe2e4; } .full-button-column .btn-group .dropdown-toggle:hover { background-color: #6c757d; border-color: #6c757d; } .status-column { width: 30%; } /* Counters */ .counterreset { counter-reset: section; } .counter::before { counter-increment: section; content: counter(section) "."; font-weight: 700; } .subcounterreset { counter-reset: subsection; } .subcounter::before { counter-increment: subsection; content: counter(section) counter(subsection, lower-alpha) "."; } .subsubcounterreset { counter-reset: subsubsection; } .subsubcounter::before { counter-increment: subsubsection; content: counter(section) counter(subsection, lower-alpha) counter(subsubsection, decimal) "."; } /* Medication form */ .medication-checkbox:nth-child(even) { border-top: 1px solid #dee2e6; background-color: rgba(0,0,0,.05); } .medication-checkbox:nth-child(odd) { border-top: 1px solid #dee2e6; background-color: #fff; } @media(min-width: 768px) { .newspaper-layout { -webkit-column-gap: 20px; -moz-column-gap: 20px; column-gap: 20px; -webkit-column-count: 2; -moz-column-count: 2; column-count: 2; } } /* c2 neuropsychologicalBatterySummaryScores */ .errorHidden { display: none; } .errorField { border: 1px solid red; } /* Load in get the full height with javascript */
src/UDS.Net.Web/wwwroot/css/site.css
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification for details on configuring this project to bundle and minify static web assets. */ body { background-color: #fbfdff; } .navbar-nav .dropdown-menu { position: absolute; } /* 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; } /* * Sidebar */ .sidebar { position: fixed; top: 0; bottom: 0; left: 0; z-index: 100; /* Behind the navbar */ padding: 48px 0 0; /* Height of navbar */ box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1); } @media (max-width: 767.98px) { .sidebar { top: 5rem; } } .sidebar-sticky { position: relative; top: 0; height: calc(100vh - 48px); padding-top: .5rem; overflow-x: hidden; overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */ } @supports ((position: -webkit-sticky) or (position: sticky)) { .sidebar-sticky { position: -webkit-sticky; position: sticky; } } .sidebar .nav-link { font-weight: 400; color: #333; font-size: .875rem; line-height: 1.5; } .sidebar .nav-link .feather { margin-right: 4px; color: #999; } .sidebar .nav-link.active { color: #007bff; } .sidebar .nav-link:hover .feather, .sidebar .nav-link.active .feather { color: inherit; } .sidebar-heading { font-size: .75rem; text-transform: uppercase; } /* Input styles */ input[type=checkbox], input[type=radio] { width: 1em; height: 1em; } /* * Visit pages */ .full-button-column { width: 10%; padding: 0px !important; } .full-button-column .btn-group { width: 100%; height: 100%; } .full-button-column .btn-group .dropdown-toggle { border-radius: 0px; width: 100%; height: 100%; padding: .75em; background-color: #dfe2e4; border-color: #dfe2e4; } .full-button-column .btn-group .dropdown-toggle:hover { background-color: #6c757d; border-color: #6c757d; } .status-column { width: 30%; } /* Counters */ .counterreset { counter-reset: section; } .counter::before { counter-increment: section; content: counter(section) "."; font-weight: 700; } .subcounterreset { counter-reset: subsection; } .subcounter::before { counter-increment: subsection; content: counter(section) counter(subsection, lower-alpha) "."; } .subsubcounterreset { counter-reset: subsubsection; } .subsubcounter::before { counter-increment: subsubsection; content: counter(section) counter(subsection, lower-alpha) counter(subsubsection, decimal) "."; } /* Medication form */ .medication-checkbox:nth-child(even) { border-top: 1px solid #dee2e6; background-color: rgba(0,0,0,.05); } .medication-checkbox:nth-child(odd) { border-top: 1px solid #dee2e6; background-color: #fff; } @media(min-width: 768px) { .newspaper-layout { -webkit-column-gap: 20px; -moz-column-gap: 20px; column-gap: 20px; -webkit-column-count: 2; -moz-column-count: 2; column-count: 2; } } /* c2 neuropsychologicalBatterySummaryScores */ .errorHidden { display: none; } .errorField { border: 1px solid red; } /* Load in get the full height with javascript */
0.548915
0.075927
body { margin: 0; height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(pink, white, pink); overflow: hidden; } .container span { display: inline-block; color: purple; font-weight: bold; #text-transform: uppercase; font-size: 40px; user-select: none; filter: opacity(0); transform: translateX(-100vw) scale(0); animation: sideSlide 4s forwards infinite; animation-delay: calc((var(--n) - 1) * 0.05s); } .container span:nth-child(1) { --n: 1; } .container span:nth-child(2) { --n: 2; } .container span:nth-child(3) { --n: 3; } .container span:nth-child(4) { --n: 4; } .container span:nth-child(5) { --n: 5; } .container span:nth-child(6) { --n: 6; } .container span:nth-child(7) { --n: 7; } .container span:nth-child(8) { --n: 8; } .container span:nth-child(9) { --n: 9; } .container span:nth-child(10) { --n: 10; } .container span:nth-child(11) { --n: 11; } .container span:nth-child(12) { --n: 12; } .container span:nth-child(13) { --n: 13; } .container span:nth-child(14) { --n: 14; } .container span:nth-child(14) { --n: 15; } .container span:nth-child(14) { --n: 16; } .container span:nth-child(14) { --n: 17; } .container span:nth-child(14) { --n: 18; } .container span:nth-child(14) { --n: 19; } .container span:nth-child(14) { --n: 20; } .container span:nth-child(14) { --n: 21; } .container span:nth-child(14) { --n: 22; } .container span:nth-child(14) { --n: 23; } .container span:nth-child(14) { --n: 24; } .container span:nth-child(14) { --n: 24; } .container span:nth-child(14) { --n: 26; } .container span:nth-child(14) { --n: 27; } .container span:nth-child(14) { --n: 28; } .container span:nth-child(14) { --n: 29; } @keyframes sideSlide { 15%, 20% { transform: translateX(0.5em) scale(1); color: purple; } 24% { transform: translateX(0) scale(1.2); color: cyan; } 25%, 75% { transform: translateX(0) scale(1); filter: opacity(1); color: purple; } 90%, 100% { transform: translateX(100vw) scale(0); filter: opacity(0); } }
aprilFool/index.css
body { margin: 0; height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(pink, white, pink); overflow: hidden; } .container span { display: inline-block; color: purple; font-weight: bold; #text-transform: uppercase; font-size: 40px; user-select: none; filter: opacity(0); transform: translateX(-100vw) scale(0); animation: sideSlide 4s forwards infinite; animation-delay: calc((var(--n) - 1) * 0.05s); } .container span:nth-child(1) { --n: 1; } .container span:nth-child(2) { --n: 2; } .container span:nth-child(3) { --n: 3; } .container span:nth-child(4) { --n: 4; } .container span:nth-child(5) { --n: 5; } .container span:nth-child(6) { --n: 6; } .container span:nth-child(7) { --n: 7; } .container span:nth-child(8) { --n: 8; } .container span:nth-child(9) { --n: 9; } .container span:nth-child(10) { --n: 10; } .container span:nth-child(11) { --n: 11; } .container span:nth-child(12) { --n: 12; } .container span:nth-child(13) { --n: 13; } .container span:nth-child(14) { --n: 14; } .container span:nth-child(14) { --n: 15; } .container span:nth-child(14) { --n: 16; } .container span:nth-child(14) { --n: 17; } .container span:nth-child(14) { --n: 18; } .container span:nth-child(14) { --n: 19; } .container span:nth-child(14) { --n: 20; } .container span:nth-child(14) { --n: 21; } .container span:nth-child(14) { --n: 22; } .container span:nth-child(14) { --n: 23; } .container span:nth-child(14) { --n: 24; } .container span:nth-child(14) { --n: 24; } .container span:nth-child(14) { --n: 26; } .container span:nth-child(14) { --n: 27; } .container span:nth-child(14) { --n: 28; } .container span:nth-child(14) { --n: 29; } @keyframes sideSlide { 15%, 20% { transform: translateX(0.5em) scale(1); color: purple; } 24% { transform: translateX(0) scale(1.2); color: cyan; } 25%, 75% { transform: translateX(0) scale(1); filter: opacity(1); color: purple; } 90%, 100% { transform: translateX(100vw) scale(0); filter: opacity(0); } }
0.734024
0.083516
@media (max-width: 600px) { #interface { display: inline-block; height: 714px; width: 97%; } #header { margin: 0; height: 80px; width: 97%; } #headerimg { margin: 0; height: 90px; width: 100%; left: 10px; top: 50px; background-image: url('/media/images/headerpic.png'); background-size: 100% 100%; background-position: center; background-repeat: no-repeat; background-clip: border-box; } #headerimg h1 { position: absolute; font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; padding: 0; margin: 0; top: 30px; left: 25%; } #email { left: 30px; } #googleLink { display: inline-block; border: darkorange 1px solid; height: 80px; width: 93%; left: 5px; position: relative; } #google-btn { position: relative; top: 25px; height: 40px; width: 100px; background-image: url('/media/images/google_logo.png'); background-position: center; background-repeat: no-repeat; background-size: 100% 100%; } #custom-signup { margin-bottom: 40px; } #custom-signup input { margin-top: 5px; } #orlines { text-align: center; top: 30px; position: relative; color: darkorange; } #signin-success { border: darkorange 1px solid; height: 80px; width: 93%; top: 120px; left: 5px; position: relative; color: rgb(23, 212, 23); } #sign-success-image { border: darkorange 1px solid; background-image: url('/media/images/noavatar.png'); background-size: 100% 100%; height: 60px; width: 60px; right: 8px; top: 8px; position: absolute; } #signin-success #sign-success-message { position: absolute; left: 5px; top: 10px; } #signin-success #sign-success-username { position: absolute; left: 150px; top: 10px; } }
public/css/signup.css
@media (max-width: 600px) { #interface { display: inline-block; height: 714px; width: 97%; } #header { margin: 0; height: 80px; width: 97%; } #headerimg { margin: 0; height: 90px; width: 100%; left: 10px; top: 50px; background-image: url('/media/images/headerpic.png'); background-size: 100% 100%; background-position: center; background-repeat: no-repeat; background-clip: border-box; } #headerimg h1 { position: absolute; font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; padding: 0; margin: 0; top: 30px; left: 25%; } #email { left: 30px; } #googleLink { display: inline-block; border: darkorange 1px solid; height: 80px; width: 93%; left: 5px; position: relative; } #google-btn { position: relative; top: 25px; height: 40px; width: 100px; background-image: url('/media/images/google_logo.png'); background-position: center; background-repeat: no-repeat; background-size: 100% 100%; } #custom-signup { margin-bottom: 40px; } #custom-signup input { margin-top: 5px; } #orlines { text-align: center; top: 30px; position: relative; color: darkorange; } #signin-success { border: darkorange 1px solid; height: 80px; width: 93%; top: 120px; left: 5px; position: relative; color: rgb(23, 212, 23); } #sign-success-image { border: darkorange 1px solid; background-image: url('/media/images/noavatar.png'); background-size: 100% 100%; height: 60px; width: 60px; right: 8px; top: 8px; position: absolute; } #signin-success #sign-success-message { position: absolute; left: 5px; top: 10px; } #signin-success #sign-success-username { position: absolute; left: 150px; top: 10px; } }
0.419767
0.051154
@font-face { font-family: 'GenWanMinTW'; src: url("../fonts/GenWanMinTW-Light.ttf") format("truetype"), url("../fonts/GenWanMinTW-Medium.ttf") format("truetype"), url("../fonts/GenWanMinTW-Regular.ttf") format("truetype"), url("../fonts/GenWanMinTW-SemiBold.ttf") format("truetype"), url("../fonts/GenWanMinTW-Light.woff") format("woff"), url("../fonts/GenWanMinTW-Medium.woff") format("woff"), url("../fonts/GenWanMinTW-Regular.woff") format("woff"), url("../fonts/GenWanMinTW-SemiBold.woff") format("woff"); } * { margin: 0; } body { background-color: #FEFDF8; font-family: 'GenWanMinTW'; margin: 0; letter-spacing: .2em; position: relative; } a { text-decoration: none; color: #3A4B40; } .nav_pc { font-size: 16px; } .nav_pc .nav_pc_content { background: -webkit-linear-gradient(top, white 0%, rgba(255, 255, 255, 0) 100%); } .nav_pc .nav_pc_content .logo_pc { right: auto; } .nav_pc .nav_pc_content ul { margin: unset; background-color: #FEFDF8; padding: 3px 5px; } .nav_pc .nav_pc_content ul li { position: relative; display: inline-block; color: #3A4B40; list-style: none; -webkit-transition: .7s; transition: .7s; } .nav_pc .nav_pc_content ul li a:after { content: ''; background-color: #3A4B40; height: 4px; width: 25%; position: absolute; top: 160%; left: 35%; opacity: 0; -webkit-transition: .5s; transition: .5s; } .nav_pc .nav_pc_content ul li a:hover { color: #F2A300; text-decoration: none; } .nav_pc .nav_pc_content ul li a:hover:after { background-color: #F2A300; opacity: 1; width: 35%; left: 30%; top: 130%; } @media screen and (max-width: 1200px) { .nav_pc .nav_pc_content ul li { font-size: 15px; margin: 0.4rem !important; } } @media screen and (max-width: 992px) { .nav_pc { display: none; } } @media screen and (max-width: 768px) { .nav_pc { font-size: 10px; } } .nav { height: 60px; z-index: 1; background: -webkit-linear-gradient(top, white 0%, rgba(255, 255, 255, 0) 100%); /* Toggle functionality */ /* Menu */ } .nav .logo_small { margin: 20px; } .nav #toggle { position: absolute; left: -100%; top: -100%; } .nav #toggle:focus ~ .toggle-container .button-toggle { -webkit-box-shadow: 0 0 0 8px rgba(242, 163, 0, 0.2), inset 0 0 0 20px rgba(242, 163, 0, 0.2); box-shadow: 0 0 0 8px rgba(242, 163, 0, 0.2), inset 0 0 0 20px rgba(242, 163, 0, 0.2); } .nav .nav_menu_btn { display: inline-block; position: absolute; top: 25px; right: 20px; pointer-events: none; -webkit-transition: 0.5s; transition: 0.5s; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; text-align: center; } .nav .nav-item { text-align: left; position: relative; display: inline-block; color: transparent; font-size: 14px; letter-spacing: -6.2px; height: 7px; line-height: 7px; text-transform: uppercase; white-space: nowrap; -webkit-transform: scaleY(-0.2); transform: scaleY(-0.2); -webkit-transition: 0.5s, opacity 1s; transition: 0.5s, opacity 1s; } .nav .nav-item:after { content: ''; background-color: #3A4B40; height: 3px; width: 45%; position: absolute; top: 40px; left: 22%; opacity: 0; -webkit-transition: .7s; transition: .7s; } .nav .nav-item:nth-child(1) { -webkit-transition-delay: 0s; transition-delay: 0s; } .nav .nav-item:nth-child(1):before { -webkit-transition-delay: 0s; transition-delay: 0s; } .nav .nav-item:nth-child(2) { -webkit-transition-delay: 0.05s; transition-delay: 0.05s; } .nav .nav-item:nth-child(2):before { -webkit-transition-delay: 0.05s; transition-delay: 0.05s; } .nav .nav-item:nth-child(3) { -webkit-transition-delay: 0.1s; transition-delay: 0.1s; } .nav .nav-item:nth-child(3):before { -webkit-transition-delay: 0.1s; transition-delay: 0.1s; } .nav .nav-item:nth-child(4) { -webkit-transition-delay: 0.15s; transition-delay: 0.15s; } .nav .nav-item:nth-child(4):before { -webkit-transition-delay: 0.15s; transition-delay: 0.15s; } .nav .nav-item:nth-child(5) { -webkit-transition-delay: 0.2s; transition-delay: 0.2s; } .nav .nav-item:nth-child(5):before { -webkit-transition-delay: 0.2s; transition-delay: 0.2s; } .nav .nav-item:nth-child(6) { -webkit-transition-delay: 0.25s; transition-delay: 0.25s; } .nav .nav-item:nth-child(6):before { -webkit-transition-delay: 0.25s; transition-delay: 0.25s; } .nav .nav-item:nth-child(7) { -webkit-transition-delay: 0.3s; transition-delay: 0.3s; } .nav .nav-item:nth-child(7):before { -webkit-transition-delay: 0.3s; transition-delay: 0.3s; } .nav .nav-item:nth-child(n + 4) { letter-spacing: -8px; margin-top: -7px; opacity: 0; } .nav .nav-item:before { position: absolute; content: ''; top: 50%; left: 0; width: 100%; height: 2px; background-color: #3A4B40; -webkit-transform: translateY(-50%) scaleY(3); transform: translateY(-50%) scaleY(3); -webkit-transition: 0.5s; transition: 0.5s; } .nav .nav-item:nth-child(3):before { -webkit-transform: translateY(-50%) scaleY(2); transform: translateY(-50%) scaleY(2); } @media screen and (min-width: 992px) { .nav { display: none; } } #toggle:checked ~ .toggle-container .button-toggle { -webkit-box-shadow: 0 0 0 px rgba(255, 255, 255, 0.8), inset 0 0 0 20px rgba(242, 163, 0, 0.2); box-shadow: 0 0 0 px rgba(255, 255, 255, 0.8), inset 0 0 0 20px rgba(242, 163, 0, 0.2); } #toggle:checked ~ .toggle-container .button-toggle:hover { -webkit-box-shadow: 0 0 0 px rgba(255, 255, 255, 0.8), inset 0 0 0 20px rgba(242, 163, 0, 0.2), 0 0 0 8px rgba(255, 255, 255, 0.8), inset 0 0 0 20px rgba(242, 163, 0, 0.2); box-shadow: 0 0 0 px rgba(255, 255, 255, 0.8), inset 0 0 0 20px rgba(242, 163, 0, 0.2), 0 0 0 8px rgba(255, 255, 255, 0.8), inset 0 0 0 20px rgba(242, 163, 0, 0.2); } #toggle:checked ~ .toggle-container .button-toggle:before { -webkit-transform: translateY(-50%) rotate(45deg) scale(1); transform: translateY(-50%) rotate(45deg) scale(1); } #toggle:checked ~ .toggle-container .button-toggle:after { -webkit-transform: translateY(-30%) rotate(-45deg) scale(1); transform: translateY(-30%) rotate(-45deg) scale(1); } #toggle:checked:focus ~ .toggle-container .button-toggle { -webkit-box-shadow: 0 0 50px 550px rgba(255, 255, 255, 0.8), inset 0 0 0 20px rgba(242, 163, 0, 0.2), 0 0 0 8px rgba(255, 255, 255, 0.1), inset 0 0 0 20px rgba(242, 163, 0, 0.2); box-shadow: 0 0 50px 550px rgba(255, 255, 255, 0.8), inset 0 0 0 20px rgba(242, 163, 0, 0.2), 0 0 0 8px rgba(255, 255, 255, 0.1), inset 0 0 0 20px rgba(242, 163, 0, 0.2); } #toggle:checked ~ .nav_menu_btn { margin-bottom: 100px; pointer-events: auto; -webkit-transform: translate(50px, 50px); transform: translate(50px, 50px); right: 100px; } #toggle:checked ~ .nav_menu_btn .nav-item { color: #3A4B40; letter-spacing: 0.5rem; height: 40px; line-height: 40px; margin-top: 0; opacity: 1; -webkit-transform: scaleY(1); transform: scaleY(1); -webkit-transition: 0.5s, opacity 0.1s; transition: 0.5s, opacity 0.1s; text-decoration: none; } #toggle:checked ~ .nav_menu_btn .nav-item:nth-child(1) { -webkit-transition-delay: 0.3s; transition-delay: 0.3s; } #toggle:checked ~ .nav_menu_btn .nav-item:nth-child(1):before { -webkit-transition-delay: 0.3s; transition-delay: 0.3s; } #toggle:checked ~ .nav_menu_btn .nav-item:nth-child(2) { -webkit-transition-delay: 0.25s; transition-delay: 0.25s; } #toggle:checked ~ .nav_menu_btn .nav-item:nth-child(2):before { -webkit-transition-delay: 0.25s; transition-delay: 0.25s; } #toggle:checked ~ .nav_menu_btn .nav-item:nth-child(3) { -webkit-transition-delay: 0.2s; transition-delay: 0.2s; } #toggle:checked ~ .nav_menu_btn .nav-item:nth-child(3):before { -webkit-transition-delay: 0.2s; transition-delay: 0.2s; } #toggle:checked ~ .nav_menu_btn .nav-item:nth-child(4) { -webkit-transition-delay: 0.15s; transition-delay: 0.15s; } #toggle:checked ~ .nav_menu_btn .nav-item:nth-child(4):before { -webkit-transition-delay: 0.15s; transition-delay: 0.15s; } #toggle:checked ~ .nav_menu_btn .nav-item:nth-child(5) { -webkit-transition-delay: 0.1s; transition-delay: 0.1s; } #toggle:checked ~ .nav_menu_btn .nav-item:nth-child(5):before { -webkit-transition-delay: 0.1s; transition-delay: 0.1s; } #toggle:checked ~ .nav_menu_btn .nav-item:nth-child(6) { -webkit-transition-delay: 0.05s; transition-delay: 0.05s; } #toggle:checked ~ .nav_menu_btn .nav-item:nth-child(6):before { -webkit-transition-delay: 0.05s; transition-delay: 0.05s; } #toggle:checked ~ .nav_menu_btn .nav-item:nth-child(7) { -webkit-transition-delay: 0s; transition-delay: 0s; } #toggle:checked ~ .nav_menu_btn .nav-item:nth-child(7):before { -webkit-transition-delay: 0s; transition-delay: 0s; } #toggle:checked ~ .nav_menu_btn .nav-item:before { opacity: 0; } #toggle:checked ~ .nav_menu_btn .nav-item:hover { font-weight: 700; color: #F2A300; } #toggle:checked ~ .nav_menu_btn .nav-item:hover::after { top: 36px; opacity: .7; background-color: #F2A300; } /* Toggle button */ .button-toggle { position: absolute; top: 0px; right: 0px; display: inline-block; width: 30px; height: 30px; margin: 20px; background-color: transparent; border: none; cursor: pointer; border-radius: 100%; -webkit-transition: 0.6s; transition: 0.6s; } .button-toggle:hover { -webkit-box-shadow: 0 0 0 8px rgba(242, 163, 0, 0.2), inset 0 0 0 20px rgba(242, 163, 0, 0.2); box-shadow: 0 0 0 8px rgba(242, 163, 0, 0.2), inset 0 0 0 20px rgba(242, 163, 0, 0.2); } .button-toggle:before, .button-toggle:after { position: absolute; content: ''; top: 50%; left: 0; width: 100%; height: 1px; background-color: #3A4B40; border-radius: 5px; -webkit-transition: 0.5s; transition: 0.5s; } .button-toggle:before { -webkit-transform: translateY(-50%) rotate(45deg) scale(0); transform: translateY(-50%) rotate(45deg) scale(0); } .button-toggle:after { -webkit-transform: translateY(-50%) rotate(-45deg) scale(0); transform: translateY(-50%) rotate(-45deg) scale(0); } .nav_pc_content { background: unset !important; } .nav { background: unset !important; } footer { font-size: 10px; color: rgba(0, 0, 0, 0.5); position: absolute; bottom: -70px; width: 100%; } footer .container { line-height: 50px; }
public/css/nav_style.css
@font-face { font-family: 'GenWanMinTW'; src: url("../fonts/GenWanMinTW-Light.ttf") format("truetype"), url("../fonts/GenWanMinTW-Medium.ttf") format("truetype"), url("../fonts/GenWanMinTW-Regular.ttf") format("truetype"), url("../fonts/GenWanMinTW-SemiBold.ttf") format("truetype"), url("../fonts/GenWanMinTW-Light.woff") format("woff"), url("../fonts/GenWanMinTW-Medium.woff") format("woff"), url("../fonts/GenWanMinTW-Regular.woff") format("woff"), url("../fonts/GenWanMinTW-SemiBold.woff") format("woff"); } * { margin: 0; } body { background-color: #FEFDF8; font-family: 'GenWanMinTW'; margin: 0; letter-spacing: .2em; position: relative; } a { text-decoration: none; color: #3A4B40; } .nav_pc { font-size: 16px; } .nav_pc .nav_pc_content { background: -webkit-linear-gradient(top, white 0%, rgba(255, 255, 255, 0) 100%); } .nav_pc .nav_pc_content .logo_pc { right: auto; } .nav_pc .nav_pc_content ul { margin: unset; background-color: #FEFDF8; padding: 3px 5px; } .nav_pc .nav_pc_content ul li { position: relative; display: inline-block; color: #3A4B40; list-style: none; -webkit-transition: .7s; transition: .7s; } .nav_pc .nav_pc_content ul li a:after { content: ''; background-color: #3A4B40; height: 4px; width: 25%; position: absolute; top: 160%; left: 35%; opacity: 0; -webkit-transition: .5s; transition: .5s; } .nav_pc .nav_pc_content ul li a:hover { color: #F2A300; text-decoration: none; } .nav_pc .nav_pc_content ul li a:hover:after { background-color: #F2A300; opacity: 1; width: 35%; left: 30%; top: 130%; } @media screen and (max-width: 1200px) { .nav_pc .nav_pc_content ul li { font-size: 15px; margin: 0.4rem !important; } } @media screen and (max-width: 992px) { .nav_pc { display: none; } } @media screen and (max-width: 768px) { .nav_pc { font-size: 10px; } } .nav { height: 60px; z-index: 1; background: -webkit-linear-gradient(top, white 0%, rgba(255, 255, 255, 0) 100%); /* Toggle functionality */ /* Menu */ } .nav .logo_small { margin: 20px; } .nav #toggle { position: absolute; left: -100%; top: -100%; } .nav #toggle:focus ~ .toggle-container .button-toggle { -webkit-box-shadow: 0 0 0 8px rgba(242, 163, 0, 0.2), inset 0 0 0 20px rgba(242, 163, 0, 0.2); box-shadow: 0 0 0 8px rgba(242, 163, 0, 0.2), inset 0 0 0 20px rgba(242, 163, 0, 0.2); } .nav .nav_menu_btn { display: inline-block; position: absolute; top: 25px; right: 20px; pointer-events: none; -webkit-transition: 0.5s; transition: 0.5s; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; text-align: center; } .nav .nav-item { text-align: left; position: relative; display: inline-block; color: transparent; font-size: 14px; letter-spacing: -6.2px; height: 7px; line-height: 7px; text-transform: uppercase; white-space: nowrap; -webkit-transform: scaleY(-0.2); transform: scaleY(-0.2); -webkit-transition: 0.5s, opacity 1s; transition: 0.5s, opacity 1s; } .nav .nav-item:after { content: ''; background-color: #3A4B40; height: 3px; width: 45%; position: absolute; top: 40px; left: 22%; opacity: 0; -webkit-transition: .7s; transition: .7s; } .nav .nav-item:nth-child(1) { -webkit-transition-delay: 0s; transition-delay: 0s; } .nav .nav-item:nth-child(1):before { -webkit-transition-delay: 0s; transition-delay: 0s; } .nav .nav-item:nth-child(2) { -webkit-transition-delay: 0.05s; transition-delay: 0.05s; } .nav .nav-item:nth-child(2):before { -webkit-transition-delay: 0.05s; transition-delay: 0.05s; } .nav .nav-item:nth-child(3) { -webkit-transition-delay: 0.1s; transition-delay: 0.1s; } .nav .nav-item:nth-child(3):before { -webkit-transition-delay: 0.1s; transition-delay: 0.1s; } .nav .nav-item:nth-child(4) { -webkit-transition-delay: 0.15s; transition-delay: 0.15s; } .nav .nav-item:nth-child(4):before { -webkit-transition-delay: 0.15s; transition-delay: 0.15s; } .nav .nav-item:nth-child(5) { -webkit-transition-delay: 0.2s; transition-delay: 0.2s; } .nav .nav-item:nth-child(5):before { -webkit-transition-delay: 0.2s; transition-delay: 0.2s; } .nav .nav-item:nth-child(6) { -webkit-transition-delay: 0.25s; transition-delay: 0.25s; } .nav .nav-item:nth-child(6):before { -webkit-transition-delay: 0.25s; transition-delay: 0.25s; } .nav .nav-item:nth-child(7) { -webkit-transition-delay: 0.3s; transition-delay: 0.3s; } .nav .nav-item:nth-child(7):before { -webkit-transition-delay: 0.3s; transition-delay: 0.3s; } .nav .nav-item:nth-child(n + 4) { letter-spacing: -8px; margin-top: -7px; opacity: 0; } .nav .nav-item:before { position: absolute; content: ''; top: 50%; left: 0; width: 100%; height: 2px; background-color: #3A4B40; -webkit-transform: translateY(-50%) scaleY(3); transform: translateY(-50%) scaleY(3); -webkit-transition: 0.5s; transition: 0.5s; } .nav .nav-item:nth-child(3):before { -webkit-transform: translateY(-50%) scaleY(2); transform: translateY(-50%) scaleY(2); } @media screen and (min-width: 992px) { .nav { display: none; } } #toggle:checked ~ .toggle-container .button-toggle { -webkit-box-shadow: 0 0 0 px rgba(255, 255, 255, 0.8), inset 0 0 0 20px rgba(242, 163, 0, 0.2); box-shadow: 0 0 0 px rgba(255, 255, 255, 0.8), inset 0 0 0 20px rgba(242, 163, 0, 0.2); } #toggle:checked ~ .toggle-container .button-toggle:hover { -webkit-box-shadow: 0 0 0 px rgba(255, 255, 255, 0.8), inset 0 0 0 20px rgba(242, 163, 0, 0.2), 0 0 0 8px rgba(255, 255, 255, 0.8), inset 0 0 0 20px rgba(242, 163, 0, 0.2); box-shadow: 0 0 0 px rgba(255, 255, 255, 0.8), inset 0 0 0 20px rgba(242, 163, 0, 0.2), 0 0 0 8px rgba(255, 255, 255, 0.8), inset 0 0 0 20px rgba(242, 163, 0, 0.2); } #toggle:checked ~ .toggle-container .button-toggle:before { -webkit-transform: translateY(-50%) rotate(45deg) scale(1); transform: translateY(-50%) rotate(45deg) scale(1); } #toggle:checked ~ .toggle-container .button-toggle:after { -webkit-transform: translateY(-30%) rotate(-45deg) scale(1); transform: translateY(-30%) rotate(-45deg) scale(1); } #toggle:checked:focus ~ .toggle-container .button-toggle { -webkit-box-shadow: 0 0 50px 550px rgba(255, 255, 255, 0.8), inset 0 0 0 20px rgba(242, 163, 0, 0.2), 0 0 0 8px rgba(255, 255, 255, 0.1), inset 0 0 0 20px rgba(242, 163, 0, 0.2); box-shadow: 0 0 50px 550px rgba(255, 255, 255, 0.8), inset 0 0 0 20px rgba(242, 163, 0, 0.2), 0 0 0 8px rgba(255, 255, 255, 0.1), inset 0 0 0 20px rgba(242, 163, 0, 0.2); } #toggle:checked ~ .nav_menu_btn { margin-bottom: 100px; pointer-events: auto; -webkit-transform: translate(50px, 50px); transform: translate(50px, 50px); right: 100px; } #toggle:checked ~ .nav_menu_btn .nav-item { color: #3A4B40; letter-spacing: 0.5rem; height: 40px; line-height: 40px; margin-top: 0; opacity: 1; -webkit-transform: scaleY(1); transform: scaleY(1); -webkit-transition: 0.5s, opacity 0.1s; transition: 0.5s, opacity 0.1s; text-decoration: none; } #toggle:checked ~ .nav_menu_btn .nav-item:nth-child(1) { -webkit-transition-delay: 0.3s; transition-delay: 0.3s; } #toggle:checked ~ .nav_menu_btn .nav-item:nth-child(1):before { -webkit-transition-delay: 0.3s; transition-delay: 0.3s; } #toggle:checked ~ .nav_menu_btn .nav-item:nth-child(2) { -webkit-transition-delay: 0.25s; transition-delay: 0.25s; } #toggle:checked ~ .nav_menu_btn .nav-item:nth-child(2):before { -webkit-transition-delay: 0.25s; transition-delay: 0.25s; } #toggle:checked ~ .nav_menu_btn .nav-item:nth-child(3) { -webkit-transition-delay: 0.2s; transition-delay: 0.2s; } #toggle:checked ~ .nav_menu_btn .nav-item:nth-child(3):before { -webkit-transition-delay: 0.2s; transition-delay: 0.2s; } #toggle:checked ~ .nav_menu_btn .nav-item:nth-child(4) { -webkit-transition-delay: 0.15s; transition-delay: 0.15s; } #toggle:checked ~ .nav_menu_btn .nav-item:nth-child(4):before { -webkit-transition-delay: 0.15s; transition-delay: 0.15s; } #toggle:checked ~ .nav_menu_btn .nav-item:nth-child(5) { -webkit-transition-delay: 0.1s; transition-delay: 0.1s; } #toggle:checked ~ .nav_menu_btn .nav-item:nth-child(5):before { -webkit-transition-delay: 0.1s; transition-delay: 0.1s; } #toggle:checked ~ .nav_menu_btn .nav-item:nth-child(6) { -webkit-transition-delay: 0.05s; transition-delay: 0.05s; } #toggle:checked ~ .nav_menu_btn .nav-item:nth-child(6):before { -webkit-transition-delay: 0.05s; transition-delay: 0.05s; } #toggle:checked ~ .nav_menu_btn .nav-item:nth-child(7) { -webkit-transition-delay: 0s; transition-delay: 0s; } #toggle:checked ~ .nav_menu_btn .nav-item:nth-child(7):before { -webkit-transition-delay: 0s; transition-delay: 0s; } #toggle:checked ~ .nav_menu_btn .nav-item:before { opacity: 0; } #toggle:checked ~ .nav_menu_btn .nav-item:hover { font-weight: 700; color: #F2A300; } #toggle:checked ~ .nav_menu_btn .nav-item:hover::after { top: 36px; opacity: .7; background-color: #F2A300; } /* Toggle button */ .button-toggle { position: absolute; top: 0px; right: 0px; display: inline-block; width: 30px; height: 30px; margin: 20px; background-color: transparent; border: none; cursor: pointer; border-radius: 100%; -webkit-transition: 0.6s; transition: 0.6s; } .button-toggle:hover { -webkit-box-shadow: 0 0 0 8px rgba(242, 163, 0, 0.2), inset 0 0 0 20px rgba(242, 163, 0, 0.2); box-shadow: 0 0 0 8px rgba(242, 163, 0, 0.2), inset 0 0 0 20px rgba(242, 163, 0, 0.2); } .button-toggle:before, .button-toggle:after { position: absolute; content: ''; top: 50%; left: 0; width: 100%; height: 1px; background-color: #3A4B40; border-radius: 5px; -webkit-transition: 0.5s; transition: 0.5s; } .button-toggle:before { -webkit-transform: translateY(-50%) rotate(45deg) scale(0); transform: translateY(-50%) rotate(45deg) scale(0); } .button-toggle:after { -webkit-transform: translateY(-50%) rotate(-45deg) scale(0); transform: translateY(-50%) rotate(-45deg) scale(0); } .nav_pc_content { background: unset !important; } .nav { background: unset !important; } footer { font-size: 10px; color: rgba(0, 0, 0, 0.5); position: absolute; bottom: -70px; width: 100%; } footer .container { line-height: 50px; }
0.452778
0.0584
@font-face { font-family: montserrat; src: url(fonts/Montserrat-Regular.ttf); } @font-face { font-family: WorkSans-ExtraLight; src: url(../fonts/WorkSans-ExtraLight.otf); } /* all */ * { margin: 0; padding: 0; } html { scroll-behavior: smooth; } body { font-family: montserrat; background: #1e2134; overflow-x: hidden; } a { text-decoration: none !important; transition: 0.3s; } h2 { font-size: 2.5em; letter-spacing: 1px; width: 100%; text-align: center; color: rgb(59, 59, 59); } .hero { height: 100vh; display: flex; align-items: center; line-height: 1.5; transform: skewY(-5deg); color: #fff; } .bg-text-container { transform: translateX(-50%); left: 50%; position: absolute; z-index: -999; } @keyframes text-scrolling { 0% { transform: translate3d(-100%, 0, 0); } 100% { transform: translate3d(0%, 0, 0); } } .animate-text { animation: text-scrolling 20s linear infinite; will-change: transform; position: relative; white-space: nowrap; } .animate-text.left { animation-direction: reverse; } .bg-text-container span { font-size: 280px; color: transparent; -webkit-text-stroke: 2px #30442a; text-transform: uppercase; display: inline-block; flex-wrap: wrap; line-height: 0.75; font-weight: 800; } .container { padding: 30px; margin: 0 auto; } .container h1 { font-size: 5em; text-transform: uppercase; letter-spacing: 1px; } .container p { font-size: 1.5em; letter-spacing: 1px; } /* profil */ #profil { display: flex; align-items: center; flex-wrap: wrap; background: rgb(235, 238, 252); transform: skewY(-5deg); padding: 10px 10%; margin: 5% 0; } #profil img { width: 200px; margin: 10px; } #profil .text { width: 60%; font-size: 1.1em; text-align: justify; color: rgb(59, 59, 59); margin: 10px; } #profil a { color: #1e2134; } #profil a:hover { color: #585a66; } /* images */ #travaux { display: flex; justify-content: center; flex-wrap: wrap; background: rgb(235, 238, 252); transform: skewY(-5deg); margin: 5% 0; } #slider { display: flex; overflow: hidden; position: relative; } .imgCool { width: 40vw; height: 100vh; flex-shrink: 0; margin: 15px; overflow: hidden; position: relative; background: rgba(0, 0, 0, 0.205); } .imgCool img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: brightness(60%); } .imgCool img:hover { transform: scale(1.02); filter: brightness(100%); transition: 0.3s; } .imgCool:hover > .captionCool a { background: white; color: black; text-shadow: initial; } .captionCool { position: absolute; left: 8%; bottom: 5%; background: none; } .captionCool a { display: flex; align-items: center; justify-content: center; font-family: WorkSans-ExtraLight, sans-serif; text-transform: capitalize; white-space: nowrap; font-size: 1.5em; letter-spacing: 8px; color: white; width: 331px; height: 60px; min-height: 21px; border: 2px solid white; border-radius: 100px; padding: 10px 35px; } .captionCool a:hover { background: white; transition: 0.4s; color: black; text-shadow: initial; } .carousel-control-next-icon, .carousel-control-prev-icon { width: 30px; height: 30px; } .carousel-control-next, .carousel-control-prev { width: initial; opacity: initial; } /* bouton retour haut */ #button { display: inline-block; background-color: rgba(0, 0, 0, 0.493); width: 50px; height: 50px; text-align: center; border-radius: 5px; position: fixed; bottom: 30px; right: 30px; transition: background-color .3s, opacity .5s, visibility .5s; opacity: 0; visibility: hidden; z-index: 1000; } #button::after { content: "\f077"; font-family: FontAwesome; font-weight: normal; font-style: normal; font-size: 2em; line-height: 50px; color: #fff; } #button:hover { cursor: pointer; background-color: #333; } #button:active { background-color: #555; } #button.show { opacity: 1; visibility: visible; } /*media queries*/ @media screen and (max-width: 1000px) { .captionCool a { letter-spacing: 0.2em; color: white; width: 250px; height: 50px; } } @media screen and (max-width: 640px) { .imgCool { width: 90vw; height: 20vh; } .captionCool a { font-size: 0.9em; letter-spacing: 0.2em; color: white; width: 150px; height: 21px; } .hero { height: 50vh; } .container h1 { font-size: 2em; } .container p { font-size: 1em; } .bg-text-container span { display: none; } #profil { justify-content: center; } #profil .text { font-size: 1em; width: 100%; } .carousel-control-next, .carousel-control-prev { background: radial-gradient(circle, rgba(0, 0, 0, 0.151) 25%, rgba(0, 0, 0, 0.151) 50%, rgba(0,0,0,0) 75%); } }
css/index.css
@font-face { font-family: montserrat; src: url(fonts/Montserrat-Regular.ttf); } @font-face { font-family: WorkSans-ExtraLight; src: url(../fonts/WorkSans-ExtraLight.otf); } /* all */ * { margin: 0; padding: 0; } html { scroll-behavior: smooth; } body { font-family: montserrat; background: #1e2134; overflow-x: hidden; } a { text-decoration: none !important; transition: 0.3s; } h2 { font-size: 2.5em; letter-spacing: 1px; width: 100%; text-align: center; color: rgb(59, 59, 59); } .hero { height: 100vh; display: flex; align-items: center; line-height: 1.5; transform: skewY(-5deg); color: #fff; } .bg-text-container { transform: translateX(-50%); left: 50%; position: absolute; z-index: -999; } @keyframes text-scrolling { 0% { transform: translate3d(-100%, 0, 0); } 100% { transform: translate3d(0%, 0, 0); } } .animate-text { animation: text-scrolling 20s linear infinite; will-change: transform; position: relative; white-space: nowrap; } .animate-text.left { animation-direction: reverse; } .bg-text-container span { font-size: 280px; color: transparent; -webkit-text-stroke: 2px #30442a; text-transform: uppercase; display: inline-block; flex-wrap: wrap; line-height: 0.75; font-weight: 800; } .container { padding: 30px; margin: 0 auto; } .container h1 { font-size: 5em; text-transform: uppercase; letter-spacing: 1px; } .container p { font-size: 1.5em; letter-spacing: 1px; } /* profil */ #profil { display: flex; align-items: center; flex-wrap: wrap; background: rgb(235, 238, 252); transform: skewY(-5deg); padding: 10px 10%; margin: 5% 0; } #profil img { width: 200px; margin: 10px; } #profil .text { width: 60%; font-size: 1.1em; text-align: justify; color: rgb(59, 59, 59); margin: 10px; } #profil a { color: #1e2134; } #profil a:hover { color: #585a66; } /* images */ #travaux { display: flex; justify-content: center; flex-wrap: wrap; background: rgb(235, 238, 252); transform: skewY(-5deg); margin: 5% 0; } #slider { display: flex; overflow: hidden; position: relative; } .imgCool { width: 40vw; height: 100vh; flex-shrink: 0; margin: 15px; overflow: hidden; position: relative; background: rgba(0, 0, 0, 0.205); } .imgCool img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: brightness(60%); } .imgCool img:hover { transform: scale(1.02); filter: brightness(100%); transition: 0.3s; } .imgCool:hover > .captionCool a { background: white; color: black; text-shadow: initial; } .captionCool { position: absolute; left: 8%; bottom: 5%; background: none; } .captionCool a { display: flex; align-items: center; justify-content: center; font-family: WorkSans-ExtraLight, sans-serif; text-transform: capitalize; white-space: nowrap; font-size: 1.5em; letter-spacing: 8px; color: white; width: 331px; height: 60px; min-height: 21px; border: 2px solid white; border-radius: 100px; padding: 10px 35px; } .captionCool a:hover { background: white; transition: 0.4s; color: black; text-shadow: initial; } .carousel-control-next-icon, .carousel-control-prev-icon { width: 30px; height: 30px; } .carousel-control-next, .carousel-control-prev { width: initial; opacity: initial; } /* bouton retour haut */ #button { display: inline-block; background-color: rgba(0, 0, 0, 0.493); width: 50px; height: 50px; text-align: center; border-radius: 5px; position: fixed; bottom: 30px; right: 30px; transition: background-color .3s, opacity .5s, visibility .5s; opacity: 0; visibility: hidden; z-index: 1000; } #button::after { content: "\f077"; font-family: FontAwesome; font-weight: normal; font-style: normal; font-size: 2em; line-height: 50px; color: #fff; } #button:hover { cursor: pointer; background-color: #333; } #button:active { background-color: #555; } #button.show { opacity: 1; visibility: visible; } /*media queries*/ @media screen and (max-width: 1000px) { .captionCool a { letter-spacing: 0.2em; color: white; width: 250px; height: 50px; } } @media screen and (max-width: 640px) { .imgCool { width: 90vw; height: 20vh; } .captionCool a { font-size: 0.9em; letter-spacing: 0.2em; color: white; width: 150px; height: 21px; } .hero { height: 50vh; } .container h1 { font-size: 2em; } .container p { font-size: 1em; } .bg-text-container span { display: none; } #profil { justify-content: center; } #profil .text { font-size: 1em; width: 100%; } .carousel-control-next, .carousel-control-prev { background: radial-gradient(circle, rgba(0, 0, 0, 0.151) 25%, rgba(0, 0, 0, 0.151) 50%, rgba(0,0,0,0) 75%); } }
0.364778
0.047847
body { -webkit-font-smoothing: antialiased; top: 0; left: 0; color: #fff; } html, body { width: 100%; -webkit-font-smoothing: antialiased; width: 100%; margin: 0px; padding: 0px; overflow-x: hidden; margin-left: auto; margin-right: auto; } h1, h2, h3, h4, h5, h6 { font-family: "SF Pro Display","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif; font-weight: 600 !important; letter-spacing: -0.025em; } p, a { font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; } /* -------------------------- custom brand colors -------------------------- */ /* https://coolors.co/ffffff-efefef-d7dcdd-6c8ead-e1306c */ :root { --brand-grey: #F1F1F1; /* brand-grey */ --brand-dark-grey: #718084; /* Slate Grey */ --brand-blue: #6C8EAD; /* Shadow Blue */ --brand-pink: #E1306C; /* brand-pink */ } .btn-brand-pink { background-color: var(--brand-pink) !important; color: #fff !important; } .btn-brand-pink:hover { background-color: #ce3367 !important; } .text-brand-pink { color: var(--brand-pink) !important; } .bg-brand-pink { background-color: var(--brand-pink) !important; } .btn-brand-grey { background-color: var(--brand-grey) !important; color: #000 !important; } .btn-outline-darkgrey { border-color: var(--brand-dark-grey) !important; color: #000 !important; } .btn-brand-grey:hover { background-color: #d6d6d6 !important; } .bg-brand-grey { background-color: var(--brand-grey) !important; } .text-brand-grey { color: var(--brand-grey) var(--brand-grey) !important; } .btn-gradient { background: linear-gradient(45deg, var(--brand-pink), #dc3545); } /* ------------------------- Boostrap, general / override -------------------------- */ .container { margin-right: auto; margin-left: auto; max-width: 1600px; /* or 950px */ } .section { padding: 3em 0 1.5em 0; } /* ------------------------- navbar -------------------------- */ .navbar { width: 100%; z-index: 100; box-shadow: rgba(0, 0, 0, 0.18) 0px 1px 2px; position: fixed; top: 0px; background: rgb(255, 255, 255); transition: box-shadow 0.3s cubic-bezier(0.35, 0, 0.65, 1) 0s; } .navbar-toggler { border: none !important; } a.navbar-brand p { display: inline; margin: 0; font-size: 27px; } .text-logo { font-family: 'Source Sans Pro', sans-serif !important; font-weight: bold; } .text-logo.align-middle { line-height: 0.7; display: inline-grid; } .text-logo.align-middle small { text-align: right; font-size: 13px; } .navbar .btn { border-radius: 1.3125rem; } .navbar .btn:hover { box-shadow: 0 0 0px 4px var(--brand-grey); } .navbar .btn-user { padding: 3px 10px 3px 5px; border: 1px solid #dadce0; } .navbar .btn-user img.rounded-circle.account-img { height: 31px; width: 31px; border: 1px solid var(--brand-); } .dropdown-menu.show { border-radius: .8em; box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.03); border: 1px solid #dadce0; } .dropdown-toggle::after { vertical-align: 0.155em !important; } @media screen and (max-width: 420px) { a.navbar-brand p, a.navbar-brand small { display: none; } } /* -------------------------- Breadcrumb Navigation -------------------------- */ ol.breadcrumb { background: none; padding: 0 0 0 3px; margin: 0em; } li.breadcrumb-item a{ color: var(--brand-dark-grey); font-weight: bold; } .breadcrumb-item+.breadcrumb-item::before { content: ">" !important; color: var(--brand-dark-grey); } /* ------------------------- footer -------------------------- */ .footer { background-color: #000000; color: #fff; padding: 6em 0 2em 0; } .footer ul { list-style: none; } .footer li a { color: #fff; } .footer a { color: var(--brand-dark-grey); } .footer hr { border-top: 1px solid var(--brand-dark-grey); } /* -------------------------- call-to-action -------------------------- */ .cta img.card-img { object-fit: cover; height: 23em; border-radius: inherit; } .cta .card-img-overlay { line-height: 20px; max-width: 60%; padding: 6em 0em 0em 3em; } /* -------------------------- User Profile -------------------------- */ .account-img { height: 125px; width: 125px; } /* -------------------------- Account-settings -------------------------- */ p.card-text { margin-bottom: .5em; } .section-account-settings .card { line-height: .5em; } .section-account-settings .card-title { margin: 1em auto 0em auto; } .section-account-settings .card-body a { color: black; } @media screen and (max-width: 420px) { .section-account-settings .card { width: 100%; display: -webkit-inline-box; border: none !important; border-radius: 0 !important; border-bottom: 2px solid var(--brand-grey) !important; box-shadow: none !important; margin-bottom: 0 !important; } .section-account-settings .card-title { margin: auto 0; } .section-account-settings .card-body { text-align: left; } } /* -------------------------- Listings -------------------------- */ .article-img { object-fit: cover; height: 65px; width: 65px; margin-right: 16px; } article.media.listing { margin: 5px 0; padding: 15px 0px 0px 15px; } .soft-shadow { box-shadow: 0 2.8px 0.2px rgba(0, 0, 0, 0.005), 0 6.7px 5.3px rgba(0, 0, 0, 0.004), 0 12.5px 10px rgba(0, 0, 0, 0.015), -1px 7px 20px rgba(0, 0, 0, 0.022), 0px 9px 20px rgba(0, 0, 0, 0.026), -1px 6px 20px rgba(0, 0, 0, 0.01) !important; }
favours/static/css/style.css
body { -webkit-font-smoothing: antialiased; top: 0; left: 0; color: #fff; } html, body { width: 100%; -webkit-font-smoothing: antialiased; width: 100%; margin: 0px; padding: 0px; overflow-x: hidden; margin-left: auto; margin-right: auto; } h1, h2, h3, h4, h5, h6 { font-family: "SF Pro Display","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif; font-weight: 600 !important; letter-spacing: -0.025em; } p, a { font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; } /* -------------------------- custom brand colors -------------------------- */ /* https://coolors.co/ffffff-efefef-d7dcdd-6c8ead-e1306c */ :root { --brand-grey: #F1F1F1; /* brand-grey */ --brand-dark-grey: #718084; /* Slate Grey */ --brand-blue: #6C8EAD; /* Shadow Blue */ --brand-pink: #E1306C; /* brand-pink */ } .btn-brand-pink { background-color: var(--brand-pink) !important; color: #fff !important; } .btn-brand-pink:hover { background-color: #ce3367 !important; } .text-brand-pink { color: var(--brand-pink) !important; } .bg-brand-pink { background-color: var(--brand-pink) !important; } .btn-brand-grey { background-color: var(--brand-grey) !important; color: #000 !important; } .btn-outline-darkgrey { border-color: var(--brand-dark-grey) !important; color: #000 !important; } .btn-brand-grey:hover { background-color: #d6d6d6 !important; } .bg-brand-grey { background-color: var(--brand-grey) !important; } .text-brand-grey { color: var(--brand-grey) var(--brand-grey) !important; } .btn-gradient { background: linear-gradient(45deg, var(--brand-pink), #dc3545); } /* ------------------------- Boostrap, general / override -------------------------- */ .container { margin-right: auto; margin-left: auto; max-width: 1600px; /* or 950px */ } .section { padding: 3em 0 1.5em 0; } /* ------------------------- navbar -------------------------- */ .navbar { width: 100%; z-index: 100; box-shadow: rgba(0, 0, 0, 0.18) 0px 1px 2px; position: fixed; top: 0px; background: rgb(255, 255, 255); transition: box-shadow 0.3s cubic-bezier(0.35, 0, 0.65, 1) 0s; } .navbar-toggler { border: none !important; } a.navbar-brand p { display: inline; margin: 0; font-size: 27px; } .text-logo { font-family: 'Source Sans Pro', sans-serif !important; font-weight: bold; } .text-logo.align-middle { line-height: 0.7; display: inline-grid; } .text-logo.align-middle small { text-align: right; font-size: 13px; } .navbar .btn { border-radius: 1.3125rem; } .navbar .btn:hover { box-shadow: 0 0 0px 4px var(--brand-grey); } .navbar .btn-user { padding: 3px 10px 3px 5px; border: 1px solid #dadce0; } .navbar .btn-user img.rounded-circle.account-img { height: 31px; width: 31px; border: 1px solid var(--brand-); } .dropdown-menu.show { border-radius: .8em; box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.03); border: 1px solid #dadce0; } .dropdown-toggle::after { vertical-align: 0.155em !important; } @media screen and (max-width: 420px) { a.navbar-brand p, a.navbar-brand small { display: none; } } /* -------------------------- Breadcrumb Navigation -------------------------- */ ol.breadcrumb { background: none; padding: 0 0 0 3px; margin: 0em; } li.breadcrumb-item a{ color: var(--brand-dark-grey); font-weight: bold; } .breadcrumb-item+.breadcrumb-item::before { content: ">" !important; color: var(--brand-dark-grey); } /* ------------------------- footer -------------------------- */ .footer { background-color: #000000; color: #fff; padding: 6em 0 2em 0; } .footer ul { list-style: none; } .footer li a { color: #fff; } .footer a { color: var(--brand-dark-grey); } .footer hr { border-top: 1px solid var(--brand-dark-grey); } /* -------------------------- call-to-action -------------------------- */ .cta img.card-img { object-fit: cover; height: 23em; border-radius: inherit; } .cta .card-img-overlay { line-height: 20px; max-width: 60%; padding: 6em 0em 0em 3em; } /* -------------------------- User Profile -------------------------- */ .account-img { height: 125px; width: 125px; } /* -------------------------- Account-settings -------------------------- */ p.card-text { margin-bottom: .5em; } .section-account-settings .card { line-height: .5em; } .section-account-settings .card-title { margin: 1em auto 0em auto; } .section-account-settings .card-body a { color: black; } @media screen and (max-width: 420px) { .section-account-settings .card { width: 100%; display: -webkit-inline-box; border: none !important; border-radius: 0 !important; border-bottom: 2px solid var(--brand-grey) !important; box-shadow: none !important; margin-bottom: 0 !important; } .section-account-settings .card-title { margin: auto 0; } .section-account-settings .card-body { text-align: left; } } /* -------------------------- Listings -------------------------- */ .article-img { object-fit: cover; height: 65px; width: 65px; margin-right: 16px; } article.media.listing { margin: 5px 0; padding: 15px 0px 0px 15px; } .soft-shadow { box-shadow: 0 2.8px 0.2px rgba(0, 0, 0, 0.005), 0 6.7px 5.3px rgba(0, 0, 0, 0.004), 0 12.5px 10px rgba(0, 0, 0, 0.015), -1px 7px 20px rgba(0, 0, 0, 0.022), 0px 9px 20px rgba(0, 0, 0, 0.026), -1px 6px 20px rgba(0, 0, 0, 0.01) !important; }
0.460289
0.057388
body, div, ul, ol, li, h1, h2, h3, h4, h5, h6, p, th, td, img { margin: 0; padding: 0; border: 0; } table { border-collapse: collapse; border-spacing: 0; } img { border: none; vertical-align: top; } ul, li { list-style: none; } h1, h2, h3, h4, h5, h6 { font-size: 100%; font-weight: normal; text-align: center; } input, textarea, select { font-family: inherit; font-size: inherit; font-weight: inherit; *font-size: 100%; } .clear { clear: both; height: 0; line-height: 0; font-size: 0; font-size: 0; overflow: hidden; } .clr { zoom: 1; } .clr:after { display: block; clear: both; height: 0; content: "\0020"; } a { text-decoration: none; color: inherit; } a:hover { color: red !important; } body { background: url(img/body.jpg) center top no-repeat #fbfcfd; font: 12px/2 \5b8b\4f53; } a.more { float: right; overflow: hidden; _display: inline; padding: 12px 7px 0 0; } .main { width: 1000px; margin: 0 auto; } .main .title { width: 100%; height: 27px; overflow: hidden; background: #e2e7fb; border-bottom: 1px solid #b0c9f6; } .main .title h3, .main .title span { height: 27px; font-size: 14px; font-weight: bold; float: left; overflow: hidden; _display: inline; color: #fff; letter-spacing: 1px; } .main .title h3.single, .main .title span.single { width: 117px; text-align: left; text-indent: 1em; background: url(img/titleSingle.png) no-repeat; } .main .title h3.active, .main .title span.active { width: 90px; background: url(img/titleTab.png) repeat-x; } .main .title span { cursor: pointer; color: #1385ac; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; } .main .topInfo { height: 32px; width: 100%; overflow: hidden; display: block; line-height: 32px; text-align: right; } .main .logo { height: 231px; width: 100%; overflow: hidden; display: block; text-indent: -9999px; } .main .topNav { height: 32px; width: 100%; overflow: hidden; display: block; line-height: 34px; text-align: center; font-size: 14px; font-weight: bold; } .main .topNav a { color: #fff; padding: 8px 18px; } .main .topNav a:hover { background: #fff; border-radius: 5px 5px 0 0; color: #000; } .main .topNav span { color: #fff; } .main .nbsp { height: 10px; width: 100%; overflow: hidden; display: block; border-top: 1px solid #00bffe; margin-top: 30px; } .main .selectInfo { height: 50px; width: 100%; overflow: hidden; display: block; background: #1391d8; margin-bottom: 10px; } .main .selectInfo .txtSelect { width: 143px; padding: 3px; margin: 13px 0 0 20px; border: 1px solid #d8d8d8; font-size: 14px; } .main .notice { float: left; overflow: hidden; _display: inline; width: 230px; height: 315px; } .main .notice .noticeCon { height: 150px; width: 228px; border: 1px solid #afc7f6; overflow: hidden; margin-bottom: 10px; overflow: hidden; background: #fff; } .main .notice .noticeCon ul { padding-top: 10px; } .main .notice .noticeCon ul li { height: 26px; line-height: 26px; overflow: hidden; padding: 0 10px; } .main .picnews { height: 313px; width: 418px; border: 1px solid #afc7f6; overflow: hidden; margin-bottom: 10px; overflow: hidden; background: #fff; float: left; overflow: hidden; _display: inline; margin-left: 10px; } .main .picnews #myFocus { width: 418px; height: 313px; overflow: hidden; } .main .trends { height: 313px; width: 328px; border: 1px solid #afc7f6; overflow: hidden; margin-bottom: 10px; overflow: hidden; background: #fff; float: left; overflow: hidden; _display: inline; margin-left: 10px; } .main .trends ul { padding: 13px 10px 0; } .main .trends ul li { height: 26px; line-height: 26px; overflow: hidden; padding: 0 10px; border-bottom: 1px dashed #ddd; height: 35px; line-height: 36px; background: url(img/liStyleBg.png) 0 17px no-repeat; } .main .banner { height: 70px; width: 100%; overflow: hidden; display: block; margin-bottom: 10px; } .main .lyShow { height: auto-2; width: 998px; border: 1px solid #afc7f6; overflow: hidden; margin-bottom: 10px; overflow: hidden; background: #fff; } .main .lyShow ul { padding-top: 30px !important; } .main .lyShow ul li { width: 200px; height: 210px; margin-left: 40px; overflow: hidden; float: left; overflow: hidden; _display: inline; } .main .lyShow ul li h4 { height: 36px; line-height: 40px; font-size: 14px; overflow: hidden; } .main .lyShow ul li img { display: block; width: 200px; height: 150px; border-radius: 3px; } .main .bmService { height: auto-2; width: 228px; border: 1px solid #afc7f6; overflow: hidden; margin-bottom: 10px; overflow: hidden; background: #fff; background: #ebf8ff; float: left; overflow: hidden; _display: inline; } .main .bmService ul { margin: 16px 0 0 8px; } .main .bmService ul li { margin: 0 0 15px 8px; float: left; overflow: hidden; _display: inline; width: 93px; height: 28px; line-height: 28px; background: url(img/service.png) no-repeat; text-align: center; font-size: 12px; } .main .bmService ul li a { color: #195f9d; } .main .lySource { height: 345px; width: 758px; border: 1px solid #afc7f6; overflow: hidden; margin-bottom: 10px; overflow: hidden; background: #fff; float: left; overflow: hidden; _display: inline; margin-left: 10px; } .main .lySource span { line-height: 28px; font-size: 12px; padding: 0 5px; } .main .lySource span.active { color: red; width: auto; background: none; } .main .lySource .tabShow { width: 758px; } .main .lySource .tabShow table { height: 100%; width: 100%; overflow: hidden; display: block; display: inline-table; text-align: center; } .main .lySource .tabShow table tr { height: 30px; line-height: 30px; border-bottom: 1px solid #b0c9f6; } .main .lyArea { height: auto-2; width: 998px; border: 1px solid #afc7f6; overflow: hidden; margin-bottom: 10px; overflow: hidden; background: #fff; } .main .lyArea ul { padding-top: 28px; } .main .lyArea ul li { width: 164px; height: 172.2px; margin-left: 32.8px; overflow: hidden; float: left; overflow: hidden; _display: inline; margin-left: 30px; } .main .lyArea ul li h4 { height: 36px; line-height: 40px; font-size: 14px; overflow: hidden; } .main .lyArea ul li img { display: block; width: 164px; height: 123px; border-radius: 3px; } .main .corp { height: auto-2; width: 228px; border: 1px solid #afc7f6; overflow: hidden; margin-bottom: 10px; overflow: hidden; background: #fff; float: left; overflow: hidden; _display: inline; } .main .corp span { display: inline-block; width: 80px; text-align: center; } .main .corp span.active { color: #fff; width: 80px; } .main .corp ul { padding: 15px 5px; } .main .corp ul li { height: 26px; line-height: 26px; overflow: hidden; padding: 0 10px; } .main .corp .searchCorp { height: 22px; overflow: hidden; margin: 0 auto 10px; width: 200px; } .main .corp .searchCorp button { width: 77px; height: 22px; display: block; float: left; overflow: hidden; _display: inline; padding: 0; border: none; } .main .corp .searchCorp input { width: 110px; height: 18px; padding: 1px 5px; font-size: 12px; border: none; border: 1px solid #ddd; border-right: none; display: block; float: left; overflow: hidden; _display: inline; } .main .zpInfo { /*height: 250px;*/ width: 758px; border: 1px solid #afc7f6; overflow: hidden; margin-bottom: 10px; overflow: hidden; background: #fff; float: left; overflow: hidden; _display: inline; margin-left: 10px; } .main .zpInfo ul { padding: 0 10px; } .main .zpInfo ul li { height: 26px; line-height: 26px; overflow: hidden; padding: 0 10px; border-bottom: 1px dashed #ddd; height: 35px; line-height: 36px; } .main .friLink { height: auto-2; width: 998px; border: 1px solid #afc7f6; overflow: hidden; margin-bottom: 10px; overflow: hidden; background: #fff; } .main .friLink .friLinkShow { padding: 10px; } .main .friLink .friLinkShow a { padding: 0 7px 0 4px; line-height: 26px; } .footer { height: 210px; width: 100%; overflow: hidden; display: block; padding-top: 30px; background: #e5e5e5; border-top: 3px solid #0047a9; text-align: center; } .footer a { color: red; font-size: 16px; font-weight: bold; line-height: 40px; } .footer span { line-height: 40px; padding: 0 5px 0 12px; color: red; font-weight: bold; } .footer p { font: 14px/2 "Microsoft YaHei"; } .Show { height: auto-2; width: 998px; border: 1px solid #afc7f6; overflow: hidden; margin-bottom: 10px; overflow: hidden; background: #fff; margin-bottom: 30px; padding: 40px 0 20px; } .Show h2 { font-weight: 800; font-size: 26px; line-height: 30px; color: #000; width: 800px; margin: 0 auto; } .Show h4 { font-size: 12px; height: 40px; line-height: 40px; width: 600px; margin: 0 auto; color: #aaa; } .Show p { font-size: 14px; padding: 10px 50px; text-indent: 2em; } .listSource { height: auto-2; width: 998px; border: 1px solid #afc7f6; overflow: hidden; margin-bottom: 10px; overflow: hidden; background: #fff; } .listSource table { height: 100%; width: 100%; overflow: hidden; display: block; display: inline-table; text-align: center; } .listSource table tr { height: 30px; line-height: 30px; border-bottom: 1px solid #b0c9f6; } .xjxc { width: 990px; height: 644px; margin: 0 auto; background: url(img/xjxc.jpg) no-repeat; padding-top: 666px; } .xjxc .biaodan { width: 500px; margin: 0 auto; text-align: center; } .xjxc .biaodan .txtS { display: block; height: 30px; width: 470px; padding: 3px 10px; font-size: 18px; margin-bottom: 14px; background: #f6ead8; border: none; border-radius: 5px; } .xjxc .biaodan .txtM { display: block; height: 300px; width: 470px; padding: 10px; font-size: 18px; margin-bottom: 14px; background: #f6ead8; border: none; border-radius: 5px; resize: none; } .xjxc .biaodan .txtB { width: 145px; height: 36px; margin: 20px; border: none; background: #f6ead8; font-size: 20px; font-weight: bold; } .lyzs { height: auto-2; width: 998px; border: 1px solid #afc7f6; overflow: hidden; margin-bottom: 10px; overflow: hidden; background: #fff; margin-bottom: 30px; padding: 40px 0 20px; } .lyzs h2, .lyzs h4 { text-align: left; } .lyzs .qyName { width: 240px; float: left; overflow: hidden; _display: inline; margin-left: 30px; } .lyzs .qyName ul li { border-top: 1px dotted #ddd; padding: 10px 10px 15px; line-height: 30px; } .lyzs .qyName ul li h2 { font-weight: bold; font-size: 16px; height: 30px; overflow: hidden; } .lyzs .qyName ul li h4 { font-size: 14px; height: 30px; overflow: hidden; } .lyzs .qyResume, .lyzs .qyMap { width: 668px; float: left; overflow: hidden; _display: inline; margin-left: 30px; } .lyzs .qyResume { padding-bottom: 30px; border-bottom: 1px solid #ddd; } .lyzs .qyResume img { float: left; overflow: hidden; _display: inline; display: block; width: 380px; height: 285px; margin-right: 20px; } .lyzs .qyResume h2 { font-weight: 800; font-size: 26px; line-height: 30px; color: #000; } .lyzs .qyResume span.resume { display: block; font-size: 14px; padding-top: 10px; text-indent: 2em; } .lyzs .qyMap { padding-top: 20px; } .lyzs .qyMap h4 { font-size: 16px; font-weight: bold; line-height: 30px; } .lyzs .qyMap div.mapCon { height: auto; width: 100%; overflow: hidden; display: block; min-height: 400px; background: #fafafa; } .navigate { height: 40px; line-height: 40px; overflow: hidden; } .List { height: 778px; width: 998px; border: 1px solid #afc7f6; overflow: hidden; margin-bottom: 10px; overflow: hidden; background: #fff; } .List ul { padding: 30px 40px; } .List ul li { line-height: 38px; height: 38px; overflow: hidden; padding-left: 7px; background: url(img/list_block.gif) 0 19px no-repeat; font-size: 14px; } .List ul li span { float: right; } .List ul li:hover { background: url(img/list_block.gif) 0 19px no-repeat #fafafa; color: red; } .List ul li:hover a { color: red; } .page { text-align: right; padding: 10px 30px; font-size: 14px; } .page a { padding: 5px; } .page a.active { background: red; color: #fff; } .ZhaoShang { padding-top: 20px; } .ZhaoShang h5 { font-family: 'Microsoft Yahei'; } .ZhaoShang .tabNav { width: 230px; float: left; overflow: hidden; _display: inline; } .ZhaoShang .tabNav h5 { font-size: 26px; line-height: 40px; color: #1391d8; text-align: left; border-bottom: 1px solid #ddd; } .ZhaoShang .tabNav span { height: 48px; width: 100%; overflow: hidden; display: block; background: #f2f2f2; line-height: 50px; border-bottom: 1px solid #ddd; font-size: 14px; text-indent: 1em; margin-top: 10px; cursor: pointer; } .ZhaoShang .tabNav span.active { width: 225px; border-left: 5px solid #ff6600; font-weight: bold; color: #fff; background: #1391d8; } .ZhaoShang .tabShow { width: 740px; float: right; overflow: hidden; _display: inline; } .ZhaoShang .tabShow h5 { height: 40px; width: 100%; overflow: hidden; display: block; border-bottom: 1px solid #ddd; text-align: left; font-size: 22px; color: #666; } .ZhaoShang .tabShow h5 .search { float: right; overflow: hidden; _display: inline; width: 300px; padding: 9px 20px 0 0; font-size: 14px; } .ZhaoShang .tabShow h5 .search button { width: 77px; height: 22px; display: block; float: left; overflow: hidden; _display: inline; padding: 0; border: none; } .ZhaoShang .tabShow h5 .search input { width: 200px; height: 18px; padding: 1px 5px; font-size: 12px; border: none; border: 1px solid #ddd; border-right: none; display: block; float: left; overflow: hidden; _display: inline; } .ZhaoShang .tabShow h5 .navigate { float: right; overflow: hidden; _display: inline; width: 230px; text-align: center; font-size: 12px; height: 40px; line-height: 40px; } .ZhaoShang .tabShow ul { padding-top: 20px; } .ZhaoShang .tabShow ul li { width: 170px; height: 178.5px; margin-left: 34px; overflow: hidden; float: left; overflow: hidden; _display: inline; height: 180px; margin-left: 20px; font-size: 12px; } .ZhaoShang .tabShow ul li h4 { height: 36px; line-height: 40px; font-size: 14px; overflow: hidden; } .ZhaoShang .tabShow ul li img { display: block; width: 170px; height: 127.5px; border-radius: 3px; } .ZhaoShang .tabShow ul li h4 { height: 26px; line-height: 26px; margin-top: 4px; } .ZhaoShang .tabShow ul li h4 a { height: 100%; width: 100%; overflow: hidden; display: block; } .ZhaoShang .tabShow ul li h4 a:hover { height: 100%; width: 100%; overflow: hidden; display: block; background: red; color: #fff !important; } .ZhaoShang .tabShow .page { text-align: right; padding: 10px 30px; font-size: 14px; } .ZhaoShang .tabShow .page a { padding: 5px; } .ZhaoShang .tabShow .page a.active { background: red; color: #fff; } .cateLouyu { width: 1000px; margin: 0 auto; padding-bottom: 30px; } .cateLouyu .title { height: auto; width: 100%; overflow: hidden; display: block; } .cateLouyu .cateLogo { height: 386px; width: 100%; overflow: hidden; display: block; } .cateLouyu .shequNav { height: 42px; width: 100%; overflow: hidden; display: block; border-top: 1px solid #fff; letter-spacing: 1px; line-height: 46px; } .cateLouyu .shequNav a { color: #fff; } .cateLouyu .shequNav a.backToIndex { float: left; overflow: hidden; _display: inline; font-size: 14px; font-weight: bold; padding-left: 1em; } .cateLouyu .shequNav p { text-align: right; padding: 0 20px; color: #fff; font-weight: bold; } .cateLouyu .shequNav p a { font-weight: normal; } .cateLouyu .newsWrap { height: 760px; width: 100%; overflow: hidden; display: block; padding: 20px 0; background: #fff; } .cateLouyu .newsWrap .shequPics { float: left; overflow: hidden; _display: inline; margin-left: 20px; width: 650px; height: 486px; margin-bottom: 20px; background: #fafafa; } .cateLouyu .newsWrap .shequPics #SQmyFocus { height: 100%; width: 100%; overflow: hidden; display: block; } .cateLouyu .newsWrap .shequNews { float: left; overflow: hidden; _display: inline; margin-left: 20px; width: 290px; height: 486px; margin-bottom: 20px; background: #e5effc; } .cateLouyu .newsWrap .shequNews .title { height: 45px; letter-spacing: 1px; color: #fff; font-weight: bold; line-height: 50px; text-indent: 1em; font-size: 14px; } .cateLouyu .newsWrap .shequNews ul { padding: 10px; } .cateLouyu .newsWrap .shequNews ul li { height: 26px; line-height: 26px; background: url(img/list_block.gif) 0 13px no-repeat; padding-left: 7px; overflow: hidden; } .cateLouyu .newsWrap .shequNews .more { float: right; overflow: hidden; _display: inline; padding: 0 10px 0 0; } .cateLouyu .newsWrap .shequInfo { float: left; overflow: hidden; _display: inline; margin-left: 20px; width: 960px; height: 253px; background: #fdfbf2; } .cateLouyu .newsWrap .shequInfo .title { height: 62px; width: 100%; overflow: hidden; display: block; margin-bottom: 22px; } .cateLouyu .newsWrap .shequInfo .infoCon { margin: 0 36px 0 20px; float: left; overflow: hidden; _display: inline; width: 630px; height: 136px; line-height: 28px; } .cateLouyu .newsWrap .shequInfo a img { float: left; overflow: hidden; _display: inline; display: block; margin-bottom: 10px; } .cateLouyu .shequBelongs { height: 240px; width: 100%; overflow: hidden; display: block; background: #fdfbf2; } .cateLouyu .shequBelongs ul li { width: 200px; height: 210px; margin-left: 40px; overflow: hidden; float: left; overflow: hidden; _display: inline; } .cateLouyu .shequBelongs ul li h4 { height: 36px; line-height: 40px; font-size: 14px; overflow: hidden; } .cateLouyu .shequBelongs ul li img { display: block; width: 200px; height: 150px; border-radius: 3px; } .cateLouyu .shequBelongs .picMarquee-left { overflow: hidden; position: relative; } .cateLouyu .shequBelongs .picMarquee-left .prev, .cateLouyu .shequBelongs .picMarquee-left .next { display: block; width: 35px; height: 44px; top: 98px; position: absolute; overflow: hidden; cursor: pointer; } .cateLouyu .shequBelongs .picMarquee-left .prev { background: url(img/next.png) no-repeat; right: 10px; } .cateLouyu .shequBelongs .picMarquee-left .next { background: url(img/prev.png) no-repeat; left: 10px; } .cateLouyu .shequBelongs .picMarquee-left .bd { width: 880px; overflow: hidden; _position: relative; _z-index: -99; margin: 0 auto; height: 150px; padding-top: 45px; } .cateLouyu .shequCity { height: auto; width: 100%; overflow: hidden; display: block; background: #fdfbf2; margin-bottom: 20px; } .cateLouyu .shequCity img { display: block; width: 960px; height: 80px; margin: 20px; } .cateLouyu .shequContact { height: 63px; width: 100%; overflow: hidden; display: block; overflow: inherit; position: relative; background: #fff4aa; } .cateLouyu .shequContact .noth { width: 83px; height: 70px; overflow: hidden; position: absolute; top: 0px; } .cateLouyu .shequContact .info { width: 160px; padding-left: 100px; float: left; overflow: hidden; _display: inline; padding-top: 12px; line-height: 20px; } .cateLouyu .shequContact .info span { font-size: 14px; font-weight: bold; color: #01565b; } .ly_footer { height: 90px; width: 100%; overflow: hidden; display: block; padding: 20px 0; text-align: center; color: #fff; } .ly_footer p { font: 14px/2 "Microsoft YaHei"; }
web/css/main.css
body, div, ul, ol, li, h1, h2, h3, h4, h5, h6, p, th, td, img { margin: 0; padding: 0; border: 0; } table { border-collapse: collapse; border-spacing: 0; } img { border: none; vertical-align: top; } ul, li { list-style: none; } h1, h2, h3, h4, h5, h6 { font-size: 100%; font-weight: normal; text-align: center; } input, textarea, select { font-family: inherit; font-size: inherit; font-weight: inherit; *font-size: 100%; } .clear { clear: both; height: 0; line-height: 0; font-size: 0; font-size: 0; overflow: hidden; } .clr { zoom: 1; } .clr:after { display: block; clear: both; height: 0; content: "\0020"; } a { text-decoration: none; color: inherit; } a:hover { color: red !important; } body { background: url(img/body.jpg) center top no-repeat #fbfcfd; font: 12px/2 \5b8b\4f53; } a.more { float: right; overflow: hidden; _display: inline; padding: 12px 7px 0 0; } .main { width: 1000px; margin: 0 auto; } .main .title { width: 100%; height: 27px; overflow: hidden; background: #e2e7fb; border-bottom: 1px solid #b0c9f6; } .main .title h3, .main .title span { height: 27px; font-size: 14px; font-weight: bold; float: left; overflow: hidden; _display: inline; color: #fff; letter-spacing: 1px; } .main .title h3.single, .main .title span.single { width: 117px; text-align: left; text-indent: 1em; background: url(img/titleSingle.png) no-repeat; } .main .title h3.active, .main .title span.active { width: 90px; background: url(img/titleTab.png) repeat-x; } .main .title span { cursor: pointer; color: #1385ac; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; } .main .topInfo { height: 32px; width: 100%; overflow: hidden; display: block; line-height: 32px; text-align: right; } .main .logo { height: 231px; width: 100%; overflow: hidden; display: block; text-indent: -9999px; } .main .topNav { height: 32px; width: 100%; overflow: hidden; display: block; line-height: 34px; text-align: center; font-size: 14px; font-weight: bold; } .main .topNav a { color: #fff; padding: 8px 18px; } .main .topNav a:hover { background: #fff; border-radius: 5px 5px 0 0; color: #000; } .main .topNav span { color: #fff; } .main .nbsp { height: 10px; width: 100%; overflow: hidden; display: block; border-top: 1px solid #00bffe; margin-top: 30px; } .main .selectInfo { height: 50px; width: 100%; overflow: hidden; display: block; background: #1391d8; margin-bottom: 10px; } .main .selectInfo .txtSelect { width: 143px; padding: 3px; margin: 13px 0 0 20px; border: 1px solid #d8d8d8; font-size: 14px; } .main .notice { float: left; overflow: hidden; _display: inline; width: 230px; height: 315px; } .main .notice .noticeCon { height: 150px; width: 228px; border: 1px solid #afc7f6; overflow: hidden; margin-bottom: 10px; overflow: hidden; background: #fff; } .main .notice .noticeCon ul { padding-top: 10px; } .main .notice .noticeCon ul li { height: 26px; line-height: 26px; overflow: hidden; padding: 0 10px; } .main .picnews { height: 313px; width: 418px; border: 1px solid #afc7f6; overflow: hidden; margin-bottom: 10px; overflow: hidden; background: #fff; float: left; overflow: hidden; _display: inline; margin-left: 10px; } .main .picnews #myFocus { width: 418px; height: 313px; overflow: hidden; } .main .trends { height: 313px; width: 328px; border: 1px solid #afc7f6; overflow: hidden; margin-bottom: 10px; overflow: hidden; background: #fff; float: left; overflow: hidden; _display: inline; margin-left: 10px; } .main .trends ul { padding: 13px 10px 0; } .main .trends ul li { height: 26px; line-height: 26px; overflow: hidden; padding: 0 10px; border-bottom: 1px dashed #ddd; height: 35px; line-height: 36px; background: url(img/liStyleBg.png) 0 17px no-repeat; } .main .banner { height: 70px; width: 100%; overflow: hidden; display: block; margin-bottom: 10px; } .main .lyShow { height: auto-2; width: 998px; border: 1px solid #afc7f6; overflow: hidden; margin-bottom: 10px; overflow: hidden; background: #fff; } .main .lyShow ul { padding-top: 30px !important; } .main .lyShow ul li { width: 200px; height: 210px; margin-left: 40px; overflow: hidden; float: left; overflow: hidden; _display: inline; } .main .lyShow ul li h4 { height: 36px; line-height: 40px; font-size: 14px; overflow: hidden; } .main .lyShow ul li img { display: block; width: 200px; height: 150px; border-radius: 3px; } .main .bmService { height: auto-2; width: 228px; border: 1px solid #afc7f6; overflow: hidden; margin-bottom: 10px; overflow: hidden; background: #fff; background: #ebf8ff; float: left; overflow: hidden; _display: inline; } .main .bmService ul { margin: 16px 0 0 8px; } .main .bmService ul li { margin: 0 0 15px 8px; float: left; overflow: hidden; _display: inline; width: 93px; height: 28px; line-height: 28px; background: url(img/service.png) no-repeat; text-align: center; font-size: 12px; } .main .bmService ul li a { color: #195f9d; } .main .lySource { height: 345px; width: 758px; border: 1px solid #afc7f6; overflow: hidden; margin-bottom: 10px; overflow: hidden; background: #fff; float: left; overflow: hidden; _display: inline; margin-left: 10px; } .main .lySource span { line-height: 28px; font-size: 12px; padding: 0 5px; } .main .lySource span.active { color: red; width: auto; background: none; } .main .lySource .tabShow { width: 758px; } .main .lySource .tabShow table { height: 100%; width: 100%; overflow: hidden; display: block; display: inline-table; text-align: center; } .main .lySource .tabShow table tr { height: 30px; line-height: 30px; border-bottom: 1px solid #b0c9f6; } .main .lyArea { height: auto-2; width: 998px; border: 1px solid #afc7f6; overflow: hidden; margin-bottom: 10px; overflow: hidden; background: #fff; } .main .lyArea ul { padding-top: 28px; } .main .lyArea ul li { width: 164px; height: 172.2px; margin-left: 32.8px; overflow: hidden; float: left; overflow: hidden; _display: inline; margin-left: 30px; } .main .lyArea ul li h4 { height: 36px; line-height: 40px; font-size: 14px; overflow: hidden; } .main .lyArea ul li img { display: block; width: 164px; height: 123px; border-radius: 3px; } .main .corp { height: auto-2; width: 228px; border: 1px solid #afc7f6; overflow: hidden; margin-bottom: 10px; overflow: hidden; background: #fff; float: left; overflow: hidden; _display: inline; } .main .corp span { display: inline-block; width: 80px; text-align: center; } .main .corp span.active { color: #fff; width: 80px; } .main .corp ul { padding: 15px 5px; } .main .corp ul li { height: 26px; line-height: 26px; overflow: hidden; padding: 0 10px; } .main .corp .searchCorp { height: 22px; overflow: hidden; margin: 0 auto 10px; width: 200px; } .main .corp .searchCorp button { width: 77px; height: 22px; display: block; float: left; overflow: hidden; _display: inline; padding: 0; border: none; } .main .corp .searchCorp input { width: 110px; height: 18px; padding: 1px 5px; font-size: 12px; border: none; border: 1px solid #ddd; border-right: none; display: block; float: left; overflow: hidden; _display: inline; } .main .zpInfo { /*height: 250px;*/ width: 758px; border: 1px solid #afc7f6; overflow: hidden; margin-bottom: 10px; overflow: hidden; background: #fff; float: left; overflow: hidden; _display: inline; margin-left: 10px; } .main .zpInfo ul { padding: 0 10px; } .main .zpInfo ul li { height: 26px; line-height: 26px; overflow: hidden; padding: 0 10px; border-bottom: 1px dashed #ddd; height: 35px; line-height: 36px; } .main .friLink { height: auto-2; width: 998px; border: 1px solid #afc7f6; overflow: hidden; margin-bottom: 10px; overflow: hidden; background: #fff; } .main .friLink .friLinkShow { padding: 10px; } .main .friLink .friLinkShow a { padding: 0 7px 0 4px; line-height: 26px; } .footer { height: 210px; width: 100%; overflow: hidden; display: block; padding-top: 30px; background: #e5e5e5; border-top: 3px solid #0047a9; text-align: center; } .footer a { color: red; font-size: 16px; font-weight: bold; line-height: 40px; } .footer span { line-height: 40px; padding: 0 5px 0 12px; color: red; font-weight: bold; } .footer p { font: 14px/2 "Microsoft YaHei"; } .Show { height: auto-2; width: 998px; border: 1px solid #afc7f6; overflow: hidden; margin-bottom: 10px; overflow: hidden; background: #fff; margin-bottom: 30px; padding: 40px 0 20px; } .Show h2 { font-weight: 800; font-size: 26px; line-height: 30px; color: #000; width: 800px; margin: 0 auto; } .Show h4 { font-size: 12px; height: 40px; line-height: 40px; width: 600px; margin: 0 auto; color: #aaa; } .Show p { font-size: 14px; padding: 10px 50px; text-indent: 2em; } .listSource { height: auto-2; width: 998px; border: 1px solid #afc7f6; overflow: hidden; margin-bottom: 10px; overflow: hidden; background: #fff; } .listSource table { height: 100%; width: 100%; overflow: hidden; display: block; display: inline-table; text-align: center; } .listSource table tr { height: 30px; line-height: 30px; border-bottom: 1px solid #b0c9f6; } .xjxc { width: 990px; height: 644px; margin: 0 auto; background: url(img/xjxc.jpg) no-repeat; padding-top: 666px; } .xjxc .biaodan { width: 500px; margin: 0 auto; text-align: center; } .xjxc .biaodan .txtS { display: block; height: 30px; width: 470px; padding: 3px 10px; font-size: 18px; margin-bottom: 14px; background: #f6ead8; border: none; border-radius: 5px; } .xjxc .biaodan .txtM { display: block; height: 300px; width: 470px; padding: 10px; font-size: 18px; margin-bottom: 14px; background: #f6ead8; border: none; border-radius: 5px; resize: none; } .xjxc .biaodan .txtB { width: 145px; height: 36px; margin: 20px; border: none; background: #f6ead8; font-size: 20px; font-weight: bold; } .lyzs { height: auto-2; width: 998px; border: 1px solid #afc7f6; overflow: hidden; margin-bottom: 10px; overflow: hidden; background: #fff; margin-bottom: 30px; padding: 40px 0 20px; } .lyzs h2, .lyzs h4 { text-align: left; } .lyzs .qyName { width: 240px; float: left; overflow: hidden; _display: inline; margin-left: 30px; } .lyzs .qyName ul li { border-top: 1px dotted #ddd; padding: 10px 10px 15px; line-height: 30px; } .lyzs .qyName ul li h2 { font-weight: bold; font-size: 16px; height: 30px; overflow: hidden; } .lyzs .qyName ul li h4 { font-size: 14px; height: 30px; overflow: hidden; } .lyzs .qyResume, .lyzs .qyMap { width: 668px; float: left; overflow: hidden; _display: inline; margin-left: 30px; } .lyzs .qyResume { padding-bottom: 30px; border-bottom: 1px solid #ddd; } .lyzs .qyResume img { float: left; overflow: hidden; _display: inline; display: block; width: 380px; height: 285px; margin-right: 20px; } .lyzs .qyResume h2 { font-weight: 800; font-size: 26px; line-height: 30px; color: #000; } .lyzs .qyResume span.resume { display: block; font-size: 14px; padding-top: 10px; text-indent: 2em; } .lyzs .qyMap { padding-top: 20px; } .lyzs .qyMap h4 { font-size: 16px; font-weight: bold; line-height: 30px; } .lyzs .qyMap div.mapCon { height: auto; width: 100%; overflow: hidden; display: block; min-height: 400px; background: #fafafa; } .navigate { height: 40px; line-height: 40px; overflow: hidden; } .List { height: 778px; width: 998px; border: 1px solid #afc7f6; overflow: hidden; margin-bottom: 10px; overflow: hidden; background: #fff; } .List ul { padding: 30px 40px; } .List ul li { line-height: 38px; height: 38px; overflow: hidden; padding-left: 7px; background: url(img/list_block.gif) 0 19px no-repeat; font-size: 14px; } .List ul li span { float: right; } .List ul li:hover { background: url(img/list_block.gif) 0 19px no-repeat #fafafa; color: red; } .List ul li:hover a { color: red; } .page { text-align: right; padding: 10px 30px; font-size: 14px; } .page a { padding: 5px; } .page a.active { background: red; color: #fff; } .ZhaoShang { padding-top: 20px; } .ZhaoShang h5 { font-family: 'Microsoft Yahei'; } .ZhaoShang .tabNav { width: 230px; float: left; overflow: hidden; _display: inline; } .ZhaoShang .tabNav h5 { font-size: 26px; line-height: 40px; color: #1391d8; text-align: left; border-bottom: 1px solid #ddd; } .ZhaoShang .tabNav span { height: 48px; width: 100%; overflow: hidden; display: block; background: #f2f2f2; line-height: 50px; border-bottom: 1px solid #ddd; font-size: 14px; text-indent: 1em; margin-top: 10px; cursor: pointer; } .ZhaoShang .tabNav span.active { width: 225px; border-left: 5px solid #ff6600; font-weight: bold; color: #fff; background: #1391d8; } .ZhaoShang .tabShow { width: 740px; float: right; overflow: hidden; _display: inline; } .ZhaoShang .tabShow h5 { height: 40px; width: 100%; overflow: hidden; display: block; border-bottom: 1px solid #ddd; text-align: left; font-size: 22px; color: #666; } .ZhaoShang .tabShow h5 .search { float: right; overflow: hidden; _display: inline; width: 300px; padding: 9px 20px 0 0; font-size: 14px; } .ZhaoShang .tabShow h5 .search button { width: 77px; height: 22px; display: block; float: left; overflow: hidden; _display: inline; padding: 0; border: none; } .ZhaoShang .tabShow h5 .search input { width: 200px; height: 18px; padding: 1px 5px; font-size: 12px; border: none; border: 1px solid #ddd; border-right: none; display: block; float: left; overflow: hidden; _display: inline; } .ZhaoShang .tabShow h5 .navigate { float: right; overflow: hidden; _display: inline; width: 230px; text-align: center; font-size: 12px; height: 40px; line-height: 40px; } .ZhaoShang .tabShow ul { padding-top: 20px; } .ZhaoShang .tabShow ul li { width: 170px; height: 178.5px; margin-left: 34px; overflow: hidden; float: left; overflow: hidden; _display: inline; height: 180px; margin-left: 20px; font-size: 12px; } .ZhaoShang .tabShow ul li h4 { height: 36px; line-height: 40px; font-size: 14px; overflow: hidden; } .ZhaoShang .tabShow ul li img { display: block; width: 170px; height: 127.5px; border-radius: 3px; } .ZhaoShang .tabShow ul li h4 { height: 26px; line-height: 26px; margin-top: 4px; } .ZhaoShang .tabShow ul li h4 a { height: 100%; width: 100%; overflow: hidden; display: block; } .ZhaoShang .tabShow ul li h4 a:hover { height: 100%; width: 100%; overflow: hidden; display: block; background: red; color: #fff !important; } .ZhaoShang .tabShow .page { text-align: right; padding: 10px 30px; font-size: 14px; } .ZhaoShang .tabShow .page a { padding: 5px; } .ZhaoShang .tabShow .page a.active { background: red; color: #fff; } .cateLouyu { width: 1000px; margin: 0 auto; padding-bottom: 30px; } .cateLouyu .title { height: auto; width: 100%; overflow: hidden; display: block; } .cateLouyu .cateLogo { height: 386px; width: 100%; overflow: hidden; display: block; } .cateLouyu .shequNav { height: 42px; width: 100%; overflow: hidden; display: block; border-top: 1px solid #fff; letter-spacing: 1px; line-height: 46px; } .cateLouyu .shequNav a { color: #fff; } .cateLouyu .shequNav a.backToIndex { float: left; overflow: hidden; _display: inline; font-size: 14px; font-weight: bold; padding-left: 1em; } .cateLouyu .shequNav p { text-align: right; padding: 0 20px; color: #fff; font-weight: bold; } .cateLouyu .shequNav p a { font-weight: normal; } .cateLouyu .newsWrap { height: 760px; width: 100%; overflow: hidden; display: block; padding: 20px 0; background: #fff; } .cateLouyu .newsWrap .shequPics { float: left; overflow: hidden; _display: inline; margin-left: 20px; width: 650px; height: 486px; margin-bottom: 20px; background: #fafafa; } .cateLouyu .newsWrap .shequPics #SQmyFocus { height: 100%; width: 100%; overflow: hidden; display: block; } .cateLouyu .newsWrap .shequNews { float: left; overflow: hidden; _display: inline; margin-left: 20px; width: 290px; height: 486px; margin-bottom: 20px; background: #e5effc; } .cateLouyu .newsWrap .shequNews .title { height: 45px; letter-spacing: 1px; color: #fff; font-weight: bold; line-height: 50px; text-indent: 1em; font-size: 14px; } .cateLouyu .newsWrap .shequNews ul { padding: 10px; } .cateLouyu .newsWrap .shequNews ul li { height: 26px; line-height: 26px; background: url(img/list_block.gif) 0 13px no-repeat; padding-left: 7px; overflow: hidden; } .cateLouyu .newsWrap .shequNews .more { float: right; overflow: hidden; _display: inline; padding: 0 10px 0 0; } .cateLouyu .newsWrap .shequInfo { float: left; overflow: hidden; _display: inline; margin-left: 20px; width: 960px; height: 253px; background: #fdfbf2; } .cateLouyu .newsWrap .shequInfo .title { height: 62px; width: 100%; overflow: hidden; display: block; margin-bottom: 22px; } .cateLouyu .newsWrap .shequInfo .infoCon { margin: 0 36px 0 20px; float: left; overflow: hidden; _display: inline; width: 630px; height: 136px; line-height: 28px; } .cateLouyu .newsWrap .shequInfo a img { float: left; overflow: hidden; _display: inline; display: block; margin-bottom: 10px; } .cateLouyu .shequBelongs { height: 240px; width: 100%; overflow: hidden; display: block; background: #fdfbf2; } .cateLouyu .shequBelongs ul li { width: 200px; height: 210px; margin-left: 40px; overflow: hidden; float: left; overflow: hidden; _display: inline; } .cateLouyu .shequBelongs ul li h4 { height: 36px; line-height: 40px; font-size: 14px; overflow: hidden; } .cateLouyu .shequBelongs ul li img { display: block; width: 200px; height: 150px; border-radius: 3px; } .cateLouyu .shequBelongs .picMarquee-left { overflow: hidden; position: relative; } .cateLouyu .shequBelongs .picMarquee-left .prev, .cateLouyu .shequBelongs .picMarquee-left .next { display: block; width: 35px; height: 44px; top: 98px; position: absolute; overflow: hidden; cursor: pointer; } .cateLouyu .shequBelongs .picMarquee-left .prev { background: url(img/next.png) no-repeat; right: 10px; } .cateLouyu .shequBelongs .picMarquee-left .next { background: url(img/prev.png) no-repeat; left: 10px; } .cateLouyu .shequBelongs .picMarquee-left .bd { width: 880px; overflow: hidden; _position: relative; _z-index: -99; margin: 0 auto; height: 150px; padding-top: 45px; } .cateLouyu .shequCity { height: auto; width: 100%; overflow: hidden; display: block; background: #fdfbf2; margin-bottom: 20px; } .cateLouyu .shequCity img { display: block; width: 960px; height: 80px; margin: 20px; } .cateLouyu .shequContact { height: 63px; width: 100%; overflow: hidden; display: block; overflow: inherit; position: relative; background: #fff4aa; } .cateLouyu .shequContact .noth { width: 83px; height: 70px; overflow: hidden; position: absolute; top: 0px; } .cateLouyu .shequContact .info { width: 160px; padding-left: 100px; float: left; overflow: hidden; _display: inline; padding-top: 12px; line-height: 20px; } .cateLouyu .shequContact .info span { font-size: 14px; font-weight: bold; color: #01565b; } .ly_footer { height: 90px; width: 100%; overflow: hidden; display: block; padding: 20px 0; text-align: center; color: #fff; } .ly_footer p { font: 14px/2 "Microsoft YaHei"; }
0.319865
0.052741
body { color: #444; font-family: "Arial",sans-serif,helvetica; font-size: 13px; } :focus { outline: 0 !important; text-decoration: none; } a, [popover], [tooltip] { cursor: pointer; } [popover]:hover { text-decoration: underline; } a, a:hover, a:visited, a:focus { outline: none; color: #2b6789; } .vertical-top { vertical-align: top !important; } .vertical-bottom { vertical-align: bottom !important; } .vertical-middle { vertical-align: middle !important; } .vertical-baseline { vertical-align: baseline !important; } .vertical-text-top { vertical-align: text-top !important; } .vertical-sub { vertical-align: sub !important; } .vertical-super { vertical-align: super !important; } .auto-height { height: auto !important; } /*------------------------Ortak kullanilan siniflar------------------------*/ .ls-1 { letter-spacing: -1px; } .ls-2 { letter-spacing: -2px; } .float-left { float: left; } .float-right { float: right; } .float-none { float: none !important; } .clear { clear: both; height:0;} .clear-left { clear: left !important; } .clear-right { clear: right !important; } .text-left { text-align: left !important; } .text-right { text-align: right !important; padding-right: 4px; } .text-center { text-align: center; } .strikethrough { text-decoration: line-through; } .underline { text-decoration: underline; } .dis-block { display: block; } .in-block { display: inline-block; float: none !important; } .overflow-auto { overflow: auto !important; } .overflow-hidden { overflow: hidden !important; } .overflow-scroll { overflow: scroll !important; } .overflow-x-hidden { overflow-x: hidden !important; } .overflow-y-hidden { overflow-y: hidden !important; } .overflow-x-auto { overflow-x: auto !important; } .overflow-y-auto { overflow-y: auto !important; } .overflow-x-scroll { overflow-x: scroll !important; } .overflow-y-scroll { overflow-y: scroll !important; } .cursor-pointer { cursor: pointer; } .no-padding { padding: 0 !important; } .pos-rel { position: relative; } /*-------------------------Font Families---------------------------*/ .undefinedChr { font-family: 'Arial', Helvetica, sans-serif !important; } .undefinedChr.italic { font-style: italic !important; } .undefinedChr.light { font-weight: 300 !important; } .undefinedChr.bold { font-weight: 700 !important; } .undefinedChr.extraBold { font-weight: 800 !important; } /*-------------------------Horizontal list-------------------------*/ .horizontal { margin: 0; padding: 0; } .horizontal li { list-style-type: none; float: left; display: block; } /*-------------------------Vertical list-------------------------*/ .vertical { margin: 0; padding: 0; vertical-align: middle; } .vertical li { list-style-type: none; } .fontBold { font-weight: bold; } .lineHeightNormal { line-height: normal; } .fs9 { font-size: 9px !important; } .fs10 { font-size: 10px !important; } .fs11 { font-size: 11px !important; } .fs12 { font-size: 12px !important; } .fs13 { font-size: 13px !important; } .fs14 { font-size: 14px !important; } .fs15 { font-size: 15px !important; } .fs16 { font-size: 16px !important; } .fs17 { font-size: 17px !important; } .fs18 { font-size: 18px !important; } .fs19 { font-size: 19px !important; } .fs20 { font-size: 20px !important; } .fs21 { font-size: 21px !important; } .fs22 { font-size: 22px !important; } .fs23 { font-size: 23px !important; } .fs24 { font-size: 24px !important; } .fs25 { font-size: 25px !important; } .fs26 { font-size: 26px !important; } .fs27 { font-size: 27px !important; } .fs28 { font-size: 28px !important; } .fs29 { font-size: 29px !important; } .fs30 { font-size: 30px !important; } .fs31 { font-size: 31px !important; } .fs32 { font-size: 32px !important; } .fs33 { font-size: 33px !important; } .fs34 { font-size: 34px !important; } .fs35 { font-size: 35px !important; } .fs36 { font-size: 36px !important; } .fs40 { font-size: 40px !important; } /* 0 to 100 margins, paddings and percentages with important values*/ .margin0Auto { margin-left: auto !important; margin-right: auto !important; } .mar-0 { margin: 0 !important; } .mar-1 { margin: 1px !important; } .mar-2 { margin: 2px !important; } .mar-3 { margin: 3px !important; } .mar-4 { margin: 4px !important; } .mar-5 { margin: 5px !important; } .mar-6 { margin: 6px !important; } .mar-7 { margin: 7px !important; } .mar-8 { margin: 8px !important; } .mar-9 { margin: 9px !important; } .mar-10 { margin: 10px !important; } .mar-11 { margin: 11px !important; } .mar-12 { margin: 12px !important; } .mar-13 { margin: 13px !important; } .mar-14 { margin: 14px !important; } .mar-15 { margin: 15px !important; } .mar-16 { margin: 16px !important; } .mar-17 { margin: 17px !important; } .mar-18 { margin: 18px !important; } .mar-19 { margin: 19px !important; } .mar-20 { margin: 20px !important; } .mar-21 { margin: 21px !important; } .mar-22 { margin: 22px !important; } .mar-23 { margin: 23px !important; } .mar-24 { margin: 24px !important; } .mar-25 { margin: 25px !important; } .mar-26 { margin: 26px !important; } .mar-27 { margin: 27px !important; } .mar-28 { margin: 28px !important; } .mar-29 { margin: 29px !important; } .mar-30 { margin: 30px !important; } .mar-31 { margin: 31px !important; } .mar-32 { margin: 32px !important; } .mar-33 { margin: 33px !important; } .mar-34 { margin: 34px !important; } .mar-35 { margin: 35px !important; } .mar-36 { margin: 36px !important; } .mar-37 { margin: 37px !important; } .mar-38 { margin: 38px !important; } .mar-39 { margin: 39px !important; } .mar-40 { margin: 40px !important; } .mar-41 { margin: 41px !important; } .mar-42 { margin: 42px !important; } .mar-43 { margin: 43px !important; } .mar-44 { margin: 44px !important; } .mar-45 { margin: 45px !important; } .mar-46 { margin: 46px !important; } .mar-47 { margin: 47px !important; } .mar-48 { margin: 48px !important; } .mar-49 { margin: 49px !important; } .mar-50 { margin: 50px !important; } .mar-51 { margin: 51px !important; } .mar-52 { margin: 52px !important; } .mar-53 { margin: 53px !important; } .mar-54 { margin: 54px !important; } .mar-55 { margin: 55px !important; } .mar-56 { margin: 56px !important; } .mar-57 { margin: 57px !important; } .mar-58 { margin: 58px !important; } .mar-59 { margin: 59px !important; } .mar-60 { margin: 60px !important; } .mar-61 { margin: 61px !important; } .mar-62 { margin: 62px !important; } .mar-63 { margin: 63px !important; } .mar-64 { margin: 64px !important; } .mar-65 { margin: 65px !important; } .mar-66 { margin: 66px !important; } .mar-67 { margin: 67px !important; } .mar-68 { margin: 68px !important; } .mar-69 { margin: 69px !important; } .mar-70 { margin: 70px !important; } .mar-71 { margin: 71px !important; } .mar-72 { margin: 72px !important; } .mar-73 { margin: 73px !important; } .mar-74 { margin: 74px !important; } .mar-75 { margin: 75px !important; } .mar-76 { margin: 76px !important; } .mar-77 { margin: 77px !important; } .mar-78 { margin: 78px !important; } .mar-79 { margin: 79px !important; } .mar-80 { margin: 80px !important; } .mar-81 { margin: 81px !important; } .mar-82 { margin: 82px !important; } .mar-83 { margin: 83px !important; } .mar-84 { margin: 84px !important; } .mar-85 { margin: 85px !important; } .mar-86 { margin: 86px !important; } .mar-87 { margin: 87px !important; } .mar-88 { margin: 88px !important; } .mar-89 { margin: 89px !important; } .mar-90 { margin: 90px !important; } .mar-91 { margin: 91px !important; } .mar-92 { margin: 92px !important; } .mar-93 { margin: 93px !important; } .mar-94 { margin: 94px !important; } .mar-95 { margin: 95px !important; } .mar-96 { margin: 96px !important; } .mar-97 { margin: 97px !important; } .mar-98 { margin: 98px !important; } .mar-99 { margin: 99px !important; } .mar-100 { margin: 100px !important; } .mar-t-0 { margin-top: 0 !important; } .mar-t-1 { margin-top: 1px !important; } .mar-t-2 { margin-top: 2px !important; } .mar-t-3 { margin-top: 3px !important; } .mar-t-4 { margin-top: 4px !important; } .mar-t-5 { margin-top: 5px !important; } .mar-t-6 { margin-top: 6px !important; } .mar-t-7 { margin-top: 7px !important; } .mar-t-8 { margin-top: 8px !important; } .mar-t-9 { margin-top: 9px !important; } .mar-t-10 { margin-top: 10px !important; } .mar-t-11 { margin-top: 11px !important; } .mar-t-12 { margin-top: 12px !important; } .mar-t-13 { margin-top: 13px !important; } .mar-t-14 { margin-top: 14px !important; } .mar-t-15 { margin-top: 15px !important; } .mar-t-16 { margin-top: 16px !important; } .mar-t-17 { margin-top: 17px !important; } .mar-t-18 { margin-top: 18px !important; } .mar-t-19 { margin-top: 19px !important; } .mar-t-20 { margin-top: 20px !important; } .mar-t-21 { margin-top: 21px !important; } .mar-t-22 { margin-top: 22px !important; } .mar-t-23 { margin-top: 23px !important; } .mar-t-24 { margin-top: 24px !important; } .mar-t-25 { margin-top: 25px !important; } .mar-t-26 { margin-top: 26px !important; } .mar-t-27 { margin-top: 27px !important; } .mar-t-28 { margin-top: 28px !important; } .mar-t-29 { margin-top: 29px !important; } .mar-t-30 { margin-top: 30px !important; } .mar-t-31 { margin-top: 31px !important; } .mar-t-32 { margin-top: 32px !important; } .mar-t-33 { margin-top: 33px !important; } .mar-t-34 { margin-top: 34px !important; } .mar-t-35 { margin-top: 35px !important; } .mar-t-36 { margin-top: 36px !important; } .mar-t-37 { margin-top: 37px !important; } .mar-t-38 { margin-top: 38px !important; } .mar-t-39 { margin-top: 39px !important; } .mar-t-40 { margin-top: 40px !important; } .mar-t-41 { margin-top: 41px !important; } .mar-t-42 { margin-top: 42px !important; } .mar-t-43 { margin-top: 43px !important; } .mar-t-44 { margin-top: 44px !important; } .mar-t-45 { margin-top: 45px !important; } .mar-t-46 { margin-top: 46px !important; } .mar-t-47 { margin-top: 47px !important; } .mar-t-48 { margin-top: 48px !important; } .mar-t-49 { margin-top: 49px !important; } .mar-t-50 { margin-top: 50px !important; } .mar-t-51 { margin-top: 51px !important; } .mar-t-52 { margin-top: 52px !important; } .mar-t-53 { margin-top: 53px !important; } .mar-t-54 { margin-top: 54px !important; } .mar-t-55 { margin-top: 55px !important; } .mar-t-56 { margin-top: 56px !important; } .mar-t-57 { margin-top: 57px !important; } .mar-t-58 { margin-top: 58px !important; } .mar-t-59 { margin-top: 59px !important; } .mar-t-60 { margin-top: 60px !important; } .mar-t-61 { margin-top: 61px !important; } .mar-t-62 { margin-top: 62px !important; } .mar-t-63 { margin-top: 63px !important; } .mar-t-64 { margin-top: 64px !important; } .mar-t-65 { margin-top: 65px !important; } .mar-t-66 { margin-top: 66px !important; } .mar-t-67 { margin-top: 67px !important; } .mar-t-68 { margin-top: 68px !important; } .mar-t-69 { margin-top: 69px !important; } .mar-t-70 { margin-top: 70px !important; } .mar-t-71 { margin-top: 71px !important; } .mar-t-72 { margin-top: 72px !important; } .mar-t-73 { margin-top: 73px !important; } .mar-t-74 { margin-top: 74px !important; } .mar-t-75 { margin-top: 75px !important; } .mar-t-76 { margin-top: 76px !important; } .mar-t-77 { margin-top: 77px !important; } .mar-t-78 { margin-top: 78px !important; } .mar-t-79 { margin-top: 79px !important; } .mar-t-80 { margin-top: 80px !important; } .mar-t-81 { margin-top: 81px !important; } .mar-t-82 { margin-top: 82px !important; } .mar-t-83 { margin-top: 83px !important; } .mar-t-84 { margin-top: 84px !important; } .mar-t-85 { margin-top: 85px !important; } .mar-t-86 { margin-top: 86px !important; } .mar-t-87 { margin-top: 87px !important; } .mar-t-88 { margin-top: 88px !important; } .mar-t-89 { margin-top: 89px !important; } .mar-t-90 { margin-top: 90px !important; } .mar-t-91 { margin-top: 91px !important; } .mar-t-92 { margin-top: 92px !important; } .mar-t-93 { margin-top: 93px !important; } .mar-t-94 { margin-top: 94px !important; } .mar-t-95 { margin-top: 95px !important; } .mar-t-96 { margin-top: 96px !important; } .mar-t-97 { margin-top: 97px !important; } .mar-t-98 { margin-top: 98px !important; } .mar-t-99 { margin-top: 99px !important; } .mar-t-100 { margin-top: 100px !important; } .mar-r-0 { margin-right: 0 !important; } .mar-r-1 { margin-right: 1px !important; } .mar-r-2 { margin-right: 2px !important; } .mar-r-3 { margin-right: 3px !important; } .mar-r-4 { margin-right: 4px !important; } .mar-r-5 { margin-right: 5px !important; } .mar-r-6 { margin-right: 6px !important; } .mar-r-7 { margin-right: 7px !important; } .mar-r-8 { margin-right: 8px !important; } .mar-r-9 { margin-right: 9px !important; } .mar-r-10 { margin-right: 10px !important; } .mar-r-11 { margin-right: 11px !important; } .mar-r-12 { margin-right: 12px !important; } .mar-r-13 { margin-right: 13px !important; } .mar-r-14 { margin-right: 14px !important; } .mar-r-15 { margin-right: 15px !important; } .mar-r-16 { margin-right: 16px !important; } .mar-r-17 { margin-right: 17px !important; } .mar-r-18 { margin-right: 18px !important; } .mar-r-19 { margin-right: 19px !important; } .mar-r-20 { margin-right: 20px !important; } .mar-r-21 { margin-right: 21px !important; } .mar-r-22 { margin-right: 22px !important; } .mar-r-23 { margin-right: 23px !important; } .mar-r-24 { margin-right: 24px !important; } .mar-r-25 { margin-right: 25px !important; } .mar-r-26 { margin-right: 26px !important; } .mar-r-27 { margin-right: 27px !important; } .mar-r-28 { margin-right: 28px !important; } .mar-r-29 { margin-right: 29px !important; } .mar-r-30 { margin-right: 30px !important; } .mar-r-31 { margin-right: 31px !important; } .mar-r-32 { margin-right: 32px !important; } .mar-r-33 { margin-right: 33px !important; } .mar-r-34 { margin-right: 34px !important; } .mar-r-35 { margin-right: 35px !important; } .mar-r-36 { margin-right: 36px !important; } .mar-r-37 { margin-right: 37px !important; } .mar-r-38 { margin-right: 38px !important; } .mar-r-39 { margin-right: 39px !important; } .mar-r-40 { margin-right: 40px !important; } .mar-r-41 { margin-right: 41px !important; } .mar-r-42 { margin-right: 42px !important; } .mar-r-43 { margin-right: 43px !important; } .mar-r-44 { margin-right: 44px !important; } .mar-r-45 { margin-right: 45px !important; } .mar-r-46 { margin-right: 46px !important; } .mar-r-47 { margin-right: 47px !important; } .mar-r-48 { margin-right: 48px !important; } .mar-r-49 { margin-right: 49px !important; } .mar-r-50 { margin-right: 50px !important; } .mar-r-51 { margin-right: 51px !important; } .mar-r-52 { margin-right: 52px !important; } .mar-r-53 { margin-right: 53px !important; } .mar-r-54 { margin-right: 54px !important; } .mar-r-55 { margin-right: 55px !important; } .mar-r-56 { margin-right: 56px !important; } .mar-r-57 { margin-right: 57px !important; } .mar-r-58 { margin-right: 58px !important; } .mar-r-59 { margin-right: 59px !important; } .mar-r-60 { margin-right: 60px !important; } .mar-r-61 { margin-right: 61px !important; } .mar-r-62 { margin-right: 62px !important; } .mar-r-63 { margin-right: 63px !important; } .mar-r-64 { margin-right: 64px !important; } .mar-r-65 { margin-right: 65px !important; } .mar-r-66 { margin-right: 66px !important; } .mar-r-67 { margin-right: 67px !important; } .mar-r-68 { margin-right: 68px !important; } .mar-r-69 { margin-right: 69px !important; } .mar-r-70 { margin-right: 70px !important; } .mar-r-71 { margin-right: 71px !important; } .mar-r-72 { margin-right: 72px !important; } .mar-r-73 { margin-right: 73px !important; } .mar-r-74 { margin-right: 74px !important; } .mar-r-75 { margin-right: 75px !important; } .mar-r-76 { margin-right: 76px !important; } .mar-r-77 { margin-right: 77px !important; } .mar-r-78 { margin-right: 78px !important; } .mar-r-79 { margin-right: 79px !important; } .mar-r-80 { margin-right: 80px !important; } .mar-r-81 { margin-right: 81px !important; } .mar-r-82 { margin-right: 82px !important; } .mar-r-83 { margin-right: 83px !important; } .mar-r-84 { margin-right: 84px !important; } .mar-r-85 { margin-right: 85px !important; } .mar-r-86 { margin-right: 86px !important; } .mar-r-87 { margin-right: 87px !important; } .mar-r-88 { margin-right: 88px !important; } .mar-r-89 { margin-right: 89px !important; } .mar-r-90 { margin-right: 90px !important; } .mar-r-91 { margin-right: 91px !important; } .mar-r-92 { margin-right: 92px !important; } .mar-r-93 { margin-right: 93px !important; } .mar-r-94 { margin-right: 94px !important; } .mar-r-95 { margin-right: 95px !important; } .mar-r-96 { margin-right: 96px !important; } .mar-r-97 { margin-right: 97px !important; } .mar-r-98 { margin-right: 98px !important; } .mar-r-99 { margin-right: 99px !important; } .mar-r-100 { margin-right: 100px !important; } .mar-b-0 { margin-bottom: 0 !important; } .mar-b-1 { margin-bottom: 1px !important; } .mar-b-2 { margin-bottom: 2px !important; } .mar-b-3 { margin-bottom: 3px !important; } .mar-b-4 { margin-bottom: 4px !important; } .mar-b-5 { margin-bottom: 5px !important; } .mar-b-6 { margin-bottom: 6px !important; } .mar-b-7 { margin-bottom: 7px !important; } .mar-b-8 { margin-bottom: 8px !important; } .mar-b-9 { margin-bottom: 9px !important; } .mar-b-10 { margin-bottom: 10px !important; } .mar-b-11 { margin-bottom: 11px !important; } .mar-b-12 { margin-bottom: 12px !important; } .mar-b-13 { margin-bottom: 13px !important; } .mar-b-14 { margin-bottom: 14px !important; } .mar-b-15 { margin-bottom: 15px !important; } .mar-b-16 { margin-bottom: 16px !important; } .mar-b-17 { margin-bottom: 17px !important; } .mar-b-18 { margin-bottom: 18px !important; } .mar-b-19 { margin-bottom: 19px !important; } .mar-b-20 { margin-bottom: 20px !important; } .mar-b-21 { margin-bottom: 21px !important; } .mar-b-22 { margin-bottom: 22px !important; } .mar-b-23 { margin-bottom: 23px !important; } .mar-b-24 { margin-bottom: 24px !important; } .mar-b-25 { margin-bottom: 25px !important; } .mar-b-26 { margin-bottom: 26px !important; } .mar-b-27 { margin-bottom: 27px !important; } .mar-b-28 { margin-bottom: 28px !important; } .mar-b-29 { margin-bottom: 29px !important; } .mar-b-30 { margin-bottom: 30px !important; } .mar-b-31 { margin-bottom: 31px !important; } .mar-b-32 { margin-bottom: 32px !important; } .mar-b-33 { margin-bottom: 33px !important; } .mar-b-34 { margin-bottom: 34px !important; } .mar-b-35 { margin-bottom: 35px !important; } .mar-b-36 { margin-bottom: 36px !important; } .mar-b-37 { margin-bottom: 37px !important; } .mar-b-38 { margin-bottom: 38px !important; } .mar-b-39 { margin-bottom: 39px !important; } .mar-b-40 { margin-bottom: 40px !important; } .mar-b-41 { margin-bottom: 41px !important; } .mar-b-42 { margin-bottom: 42px !important; } .mar-b-43 { margin-bottom: 43px !important; } .mar-b-44 { margin-bottom: 44px !important; } .mar-b-45 { margin-bottom: 45px !important; } .mar-b-46 { margin-bottom: 46px !important; } .mar-b-47 { margin-bottom: 47px !important; } .mar-b-48 { margin-bottom: 48px !important; } .mar-b-49 { margin-bottom: 49px !important; } .mar-b-50 { margin-bottom: 50px !important; } .mar-b-51 { margin-bottom: 51px !important; } .mar-b-52 { margin-bottom: 52px !important; } .mar-b-53 { margin-bottom: 53px !important; } .mar-b-54 { margin-bottom: 54px !important; } .mar-b-55 { margin-bottom: 55px !important; } .mar-b-56 { margin-bottom: 56px !important; } .mar-b-57 { margin-bottom: 57px !important; } .mar-b-58 { margin-bottom: 58px !important; } .mar-b-59 { margin-bottom: 59px !important; } .mar-b-60 { margin-bottom: 60px !important; } .mar-b-61 { margin-bottom: 61px !important; } .mar-b-62 { margin-bottom: 62px !important; } .mar-b-63 { margin-bottom: 63px !important; } .mar-b-64 { margin-bottom: 64px !important; } .mar-b-65 { margin-bottom: 65px !important; } .mar-b-66 { margin-bottom: 66px !important; } .mar-b-67 { margin-bottom: 67px !important; } .mar-b-68 { margin-bottom: 68px !important; } .mar-b-69 { margin-bottom: 69px !important; } .mar-b-70 { margin-bottom: 70px !important; } .mar-b-71 { margin-bottom: 71px !important; } .mar-b-72 { margin-bottom: 72px !important; } .mar-b-73 { margin-bottom: 73px !important; } .mar-b-74 { margin-bottom: 74px !important; } .mar-b-75 { margin-bottom: 75px !important; } .mar-b-76 { margin-bottom: 76px !important; } .mar-b-77 { margin-bottom: 77px !important; } .mar-b-78 { margin-bottom: 78px !important; } .mar-b-79 { margin-bottom: 79px !important; } .mar-b-80 { margin-bottom: 80px !important; } .mar-b-81 { margin-bottom: 81px !important; } .mar-b-82 { margin-bottom: 82px !important; } .mar-b-83 { margin-bottom: 83px !important; } .mar-b-84 { margin-bottom: 84px !important; } .mar-b-85 { margin-bottom: 85px !important; } .mar-b-86 { margin-bottom: 86px !important; } .mar-b-87 { margin-bottom: 87px !important; } .mar-b-88 { margin-bottom: 88px !important; } .mar-b-89 { margin-bottom: 89px !important; } .mar-b-90 { margin-bottom: 90px !important; } .mar-b-91 { margin-bottom: 91px !important; } .mar-b-92 { margin-bottom: 92px !important; } .mar-b-93 { margin-bottom: 93px !important; } .mar-b-94 { margin-bottom: 94px !important; } .mar-b-95 { margin-bottom: 95px !important; } .mar-b-96 { margin-bottom: 96px !important; } .mar-b-97 { margin-bottom: 97px !important; } .mar-b-98 { margin-bottom: 98px !important; } .mar-b-99 { margin-bottom: 99px !important; } .mar-b-100 { margin-bottom: 100px !important; } .mar-l-0 { margin-left: 0 !important; } .mar-l-1 { margin-left: 1px !important; } .mar-l-2 { margin-left: 2px !important; } .mar-l-3 { margin-left: 3px !important; } .mar-l-4 { margin-left: 4px !important; } .mar-l-5 { margin-left: 5px !important; } .mar-l-6 { margin-left: 6px !important; } .mar-l-7 { margin-left: 7px !important; } .mar-l-8 { margin-left: 8px !important; } .mar-l-9 { margin-left: 9px !important; } .mar-l-10 { margin-left: 10px !important; } .mar-l-11 { margin-left: 11px !important; } .mar-l-12 { margin-left: 12px !important; } .mar-l-13 { margin-left: 13px !important; } .mar-l-14 { margin-left: 14px !important; } .mar-l-15 { margin-left: 15px !important; } .mar-l-16 { margin-left: 16px !important; } .mar-l-17 { margin-left: 17px !important; } .mar-l-18 { margin-left: 18px !important; } .mar-l-19 { margin-left: 19px !important; } .mar-l-20 { margin-left: 20px !important; } .mar-l-21 { margin-left: 21px !important; } .mar-l-22 { margin-left: 22px !important; } .mar-l-23 { margin-left: 23px !important; } .mar-l-24 { margin-left: 24px !important; } .mar-l-25 { margin-left: 25px !important; } .mar-l-26 { margin-left: 26px !important; } .mar-l-27 { margin-left: 27px !important; } .mar-l-28 { margin-left: 28px !important; } .mar-l-29 { margin-left: 29px !important; } .mar-l-30 { margin-left: 30px !important; } .mar-l-31 { margin-left: 31px !important; } .mar-l-32 { margin-left: 32px !important; } .mar-l-33 { margin-left: 33px !important; } .mar-l-34 { margin-left: 34px !important; } .mar-l-35 { margin-left: 35px !important; } .mar-l-36 { margin-left: 36px !important; } .mar-l-37 { margin-left: 37px !important; } .mar-l-38 { margin-left: 38px !important; } .mar-l-39 { margin-left: 39px !important; } .mar-l-40 { margin-left: 40px !important; } .mar-l-41 { margin-left: 41px !important; } .mar-l-42 { margin-left: 42px !important; } .mar-l-43 { margin-left: 43px !important; } .mar-l-44 { margin-left: 44px !important; } .mar-l-45 { margin-left: 45px !important; } .mar-l-46 { margin-left: 46px !important; } .mar-l-47 { margin-left: 47px !important; } .mar-l-48 { margin-left: 48px !important; } .mar-l-49 { margin-left: 49px !important; } .mar-l-50 { margin-left: 50px !important; } .mar-l-51 { margin-left: 51px !important; } .mar-l-52 { margin-left: 52px !important; } .mar-l-53 { margin-left: 53px !important; } .mar-l-54 { margin-left: 54px !important; } .mar-l-55 { margin-left: 55px !important; } .mar-l-56 { margin-left: 56px !important; } .mar-l-57 { margin-left: 57px !important; } .mar-l-58 { margin-left: 58px !important; } .mar-l-59 { margin-left: 59px !important; } .mar-l-60 { margin-left: 60px !important; } .mar-l-61 { margin-left: 61px !important; } .mar-l-62 { margin-left: 62px !important; } .mar-l-63 { margin-left: 63px !important; } .mar-l-64 { margin-left: 64px !important; } .mar-l-65 { margin-left: 65px !important; } .mar-l-66 { margin-left: 66px !important; } .mar-l-67 { margin-left: 67px !important; } .mar-l-68 { margin-left: 68px !important; } .mar-l-69 { margin-left: 69px !important; } .mar-l-70 { margin-left: 70px !important; } .mar-l-71 { margin-left: 71px !important; } .mar-l-72 { margin-left: 72px !important; } .mar-l-73 { margin-left: 73px !important; } .mar-l-74 { margin-left: 74px !important; } .mar-l-75 { margin-left: 75px !important; } .mar-l-76 { margin-left: 76px !important; } .mar-l-77 { margin-left: 77px !important; } .mar-l-78 { margin-left: 78px !important; } .mar-l-79 { margin-left: 79px !important; } .mar-l-80 { margin-left: 80px !important; } .mar-l-81 { margin-left: 81px !important; } .mar-l-82 { margin-left: 82px !important; } .mar-l-83 { margin-left: 83px !important; } .mar-l-84 { margin-left: 84px !important; } .mar-l-85 { margin-left: 85px !important; } .mar-l-86 { margin-left: 86px !important; } .mar-l-87 { margin-left: 87px !important; } .mar-l-88 { margin-left: 88px !important; } .mar-l-89 { margin-left: 89px !important; } .mar-l-90 { margin-left: 90px !important; } .mar-l-91 { margin-left: 91px !important; } .mar-l-92 { margin-left: 92px !important; } .mar-l-93 { margin-left: 93px !important; } .mar-l-94 { margin-left: 94px !important; } .mar-l-95 { margin-left: 95px !important; } .mar-l-96 { margin-left: 96px !important; } .mar-l-97 { margin-left: 97px !important; } .mar-l-98 { margin-left: 98px !important; } .mar-l-99 { margin-left: 99px !important; } .mar-l-100 { margin-left: 100px !important; } .mar-v-1 { margin: 1px 0 !important; } .mar-v-2 { margin: 2px 0 !important; } .mar-v-3 { margin: 3px 0 !important; } .mar-v-4 { margin: 4px 0 !important; } .mar-v-5 { margin: 5px 0 !important; } .mar-v-6 { margin: 6px 0 !important; } .mar-v-7 { margin: 7px 0 !important; } .mar-v-8 { margin: 8px 0 !important; } .mar-v-9 { margin: 9px 0 !important; } .mar-v-10 { margin: 10px 0 !important; } .mar-v-11 { margin: 11px 0 !important; } .mar-v-12 { margin: 12px 0 !important; } .mar-v-13 { margin: 13px 0 !important; } .mar-v-14 { margin: 14px 0 !important; } .mar-v-15 { margin: 15px 0 !important; } .mar-v-16 { margin: 16px 0 !important; } .mar-v-17 { margin: 17px 0 !important; } .mar-v-18 { margin: 18px 0 !important; } .mar-v-19 { margin: 19px 0 !important; } .mar-v-20 { margin: 20px 0 !important; } .mar-v-21 { margin: 21px 0 !important; } .mar-v-22 { margin: 22px 0 !important; } .mar-v-23 { margin: 23px 0 !important; } .mar-v-24 { margin: 24px 0 !important; } .mar-v-25 { margin: 25px 0 !important; } .mar-v-26 { margin: 26px 0 !important; } .mar-v-27 { margin: 27px 0 !important; } .mar-v-28 { margin: 28px 0 !important; } .mar-v-29 { margin: 29px 0 !important; } .mar-v-30 { margin: 30px 0 !important; } .mar-v-31 { margin: 31px 0 !important; } .mar-v-32 { margin: 32px 0 !important; } .mar-v-33 { margin: 33px 0 !important; } .mar-v-34 { margin: 34px 0 !important; } .mar-v-35 { margin: 35px 0 !important; } .mar-v-36 { margin: 36px 0 !important; } .mar-v-37 { margin: 37px 0 !important; } .mar-v-38 { margin: 38px 0 !important; } .mar-v-39 { margin: 39px 0 !important; } .mar-v-40 { margin: 40px 0 !important; } .mar-v-41 { margin: 41px 0 !important; } .mar-v-42 { margin: 42px 0 !important; } .mar-v-43 { margin: 43px 0 !important; } .mar-v-44 { margin: 44px 0 !important; } .mar-v-45 { margin: 45px 0 !important; } .mar-v-46 { margin: 46px 0 !important; } .mar-v-47 { margin: 47px 0 !important; } .mar-v-48 { margin: 48px 0 !important; } .mar-v-49 { margin: 49px 0 !important; } .mar-v-50 { margin: 50px 0 !important; } .mar-v-51 { margin: 51px 0 !important; } .mar-v-52 { margin: 52px 0 !important; } .mar-v-53 { margin: 53px 0 !important; } .mar-v-54 { margin: 54px 0 !important; } .mar-v-55 { margin: 55px 0 !important; } .mar-v-56 { margin: 56px 0 !important; } .mar-v-57 { margin: 57px 0 !important; } .mar-v-58 { margin: 58px 0 !important; } .mar-v-59 { margin: 59px 0 !important; } .mar-v-60 { margin: 60px 0 !important; } .mar-v-61 { margin: 61px 0 !important; } .mar-v-62 { margin: 62px 0 !important; } .mar-v-63 { margin: 63px 0 !important; } .mar-v-64 { margin: 64px 0 !important; } .mar-v-65 { margin: 65px 0 !important; } .mar-v-66 { margin: 66px 0 !important; } .mar-v-67 { margin: 67px 0 !important; } .mar-v-68 { margin: 68px 0 !important; } .mar-v-69 { margin: 69px 0 !important; } .mar-v-70 { margin: 70px 0 !important; } .mar-v-71 { margin: 71px 0 !important; } .mar-v-72 { margin: 72px 0 !important; } .mar-v-73 { margin: 73px 0 !important; } .mar-v-74 { margin: 74px 0 !important; } .mar-v-75 { margin: 75px 0 !important; } .mar-v-76 { margin: 76px 0 !important; } .mar-v-77 { margin: 77px 0 !important; } .mar-v-78 { margin: 78px 0 !important; } .mar-v-79 { margin: 79px 0 !important; } .mar-v-80 { margin: 80px 0 !important; } .mar-v-81 { margin: 81px 0 !important; } .mar-v-82 { margin: 82px 0 !important; } .mar-v-83 { margin: 83px 0 !important; } .mar-v-84 { margin: 84px 0 !important; } .mar-v-85 { margin: 85px 0 !important; } .mar-v-86 { margin: 86px 0 !important; } .mar-v-87 { margin: 87px 0 !important; } .mar-v-88 { margin: 88px 0 !important; } .mar-v-89 { margin: 89px 0 !important; } .mar-v-90 { margin: 90px 0 !important; } .mar-v-91 { margin: 91px 0 !important; } .mar-v-92 { margin: 92px 0 !important; } .mar-v-93 { margin: 93px 0 !important; } .mar-v-94 { margin: 94px 0 !important; } .mar-v-95 { margin: 95px 0 !important; } .mar-v-96 { margin: 96px 0 !important; } .mar-v-97 { margin: 97px 0 !important; } .mar-v-98 { margin: 98px 0 !important; } .mar-v-99 { margin: 99px 0 !important; } .mar-v-100 { margin: 100px 0 !important; } .mar-h-1 { margin: 0 1px !important; } .mar-h-2 { margin: 0 2px !important; } .mar-h-3 { margin: 0 3px !important; } .mar-h-4 { margin: 0 4px !important; } .mar-h-5 { margin: 0 5px !important; } .mar-h-6 { margin: 0 6px !important; } .mar-h-7 { margin: 0 7px !important; } .mar-h-8 { margin: 0 8px !important; } .mar-h-9 { margin: 0 9px !important; } .mar-h-10 { margin: 0 10px !important; } .mar-h-11 { margin: 0 11px !important; } .mar-h-12 { margin: 0 12px !important; } .mar-h-13 { margin: 0 13px !important; } .mar-h-14 { margin: 0 14px !important; } .mar-h-15 { margin: 0 15px !important; } .mar-h-16 { margin: 0 16px !important; } .mar-h-17 { margin: 0 17px !important; } .mar-h-18 { margin: 0 18px !important; } .mar-h-19 { margin: 0 19px !important; } .mar-h-20 { margin: 0 20px !important; } .mar-h-21 { margin: 0 21px !important; } .mar-h-22 { margin: 0 22px !important; } .mar-h-23 { margin: 0 23px !important; } .mar-h-24 { margin: 0 24px !important; } .mar-h-25 { margin: 0 25px !important; } .mar-h-26 { margin: 0 26px !important; } .mar-h-27 { margin: 0 27px !important; } .mar-h-28 { margin: 0 28px !important; } .mar-h-29 { margin: 0 29px !important; } .mar-h-30 { margin: 0 30px !important; } .mar-h-31 { margin: 0 31px !important; } .mar-h-32 { margin: 0 32px !important; } .mar-h-33 { margin: 0 33px !important; } .mar-h-34 { margin: 0 34px !important; } .mar-h-35 { margin: 0 35px !important; } .mar-h-36 { margin: 0 36px !important; } .mar-h-37 { margin: 0 37px !important; } .mar-h-38 { margin: 0 38px !important; } .mar-h-39 { margin: 0 39px !important; } .mar-h-40 { margin: 0 40px !important; } .mar-h-41 { margin: 0 41px !important; } .mar-h-42 { margin: 0 42px !important; } .mar-h-43 { margin: 0 43px !important; } .mar-h-44 { margin: 0 44px !important; } .mar-h-45 { margin: 0 45px !important; } .mar-h-46 { margin: 0 46px !important; } .mar-h-47 { margin: 0 47px !important; } .mar-h-48 { margin: 0 48px !important; } .mar-h-49 { margin: 0 49px !important; } .mar-h-50 { margin: 0 50px !important; } .mar-h-51 { margin: 0 51px !important; } .mar-h-52 { margin: 0 52px !important; } .mar-h-53 { margin: 0 53px !important; } .mar-h-54 { margin: 0 54px !important; } .mar-h-55 { margin: 0 55px !important; } .mar-h-56 { margin: 0 56px !important; } .mar-h-57 { margin: 0 57px !important; } .mar-h-58 { margin: 0 58px !important; } .mar-h-59 { margin: 0 59px !important; } .mar-h-60 { margin: 0 60px !important; } .mar-h-61 { margin: 0 61px !important; } .mar-h-62 { margin: 0 62px !important; } .mar-h-63 { margin: 0 63px !important; } .mar-h-64 { margin: 0 64px !important; } .mar-h-65 { margin: 0 65px !important; } .mar-h-66 { margin: 0 66px !important; } .mar-h-67 { margin: 0 67px !important; } .mar-h-68 { margin: 0 68px !important; } .mar-h-69 { margin: 0 69px !important; } .mar-h-70 { margin: 0 70px !important; } .mar-h-71 { margin: 0 71px !important; } .mar-h-72 { margin: 0 72px !important; } .mar-h-73 { margin: 0 73px !important; } .mar-h-74 { margin: 0 74px !important; } .mar-h-75 { margin: 0 75px !important; } .mar-h-76 { margin: 0 76px !important; } .mar-h-77 { margin: 0 77px !important; } .mar-h-78 { margin: 0 78px !important; } .mar-h-79 { margin: 0 79px !important; } .mar-h-80 { margin: 0 80px !important; } .mar-h-81 { margin: 0 81px !important; } .mar-h-82 { margin: 0 82px !important; } .mar-h-83 { margin: 0 83px !important; } .mar-h-84 { margin: 0 84px !important; } .mar-h-85 { margin: 0 85px !important; } .mar-h-86 { margin: 0 86px !important; } .mar-h-87 { margin: 0 87px !important; } .mar-h-88 { margin: 0 88px !important; } .mar-h-89 { margin: 0 89px !important; } .mar-h-90 { margin: 0 90px !important; } .mar-h-91 { margin: 0 91px !important; } .mar-h-92 { margin: 0 92px !important; } .mar-h-93 { margin: 0 93px !important; } .mar-h-94 { margin: 0 94px !important; } .mar-h-95 { margin: 0 95px !important; } .mar-h-96 { margin: 0 96px !important; } .mar-h-97 { margin: 0 97px !important; } .mar-h-98 { margin: 0 98px !important; } .mar-h-99 { margin: 0 99px !important; } .mar-h-100 { margin: 0 100px !important; } .mar-t-m-1 { margin-top: -1px !important; } .mar-t-m-2 { margin-top: -2px !important; } .mar-t-m-3 { margin-top: -3px !important; } .mar-t-m-4 { margin-top: -4px !important; } .mar-t-m-5 { margin-top: -5px !important; } .mar-t-m-6 { margin-top: -6px !important; } .mar-t-m-7 { margin-top: -7px !important; } .mar-t-m-8 { margin-top: -8px !important; } .mar-t-m-9 { margin-top: -9px !important; } .mar-t-m-10 { margin-top: -10px !important; } .mar-t-m-11 { margin-top: -11px !important; } .mar-t-m-12 { margin-top: -12px !important; } .mar-t-m-13 { margin-top: -13px !important; } .mar-t-m-14 { margin-top: -14px !important; } .mar-t-m-15 { margin-top: -15px !important; } .mar-t-m-16 { margin-top: -16px !important; } .mar-t-m-17 { margin-top: -17px !important; } .mar-t-m-18 { margin-top: -18px !important; } .mar-t-m-19 { margin-top: -19px !important; } .mar-t-m-20 { margin-top: -20px !important; } .mar-t-m-21 { margin-top: -21px !important; } .mar-t-m-22 { margin-top: -22px !important; } .mar-t-m-23 { margin-top: -23px !important; } .mar-t-m-24 { margin-top: -24px !important; } .mar-t-m-25 { margin-top: -25px !important; } .mar-t-m-26 { margin-top: -26px !important; } .mar-t-m-27 { margin-top: -27px !important; } .mar-t-m-28 { margin-top: -28px !important; } .mar-t-m-29 { margin-top: -29px !important; } .mar-t-m-30 { margin-top: -30px !important; } .mar-t-m-31 { margin-top: -31px !important; } .mar-t-m-32 { margin-top: -32px !important; } .mar-t-m-33 { margin-top: -33px !important; } .mar-t-m-34 { margin-top: -34px !important; } .mar-t-m-35 { margin-top: -35px !important; } .mar-t-m-36 { margin-top: -36px !important; } .mar-t-m-37 { margin-top: -37px !important; } .mar-t-m-38 { margin-top: -38px !important; } .mar-t-m-39 { margin-top: -39px !important; } .mar-t-m-40 { margin-top: -40px !important; } .mar-t-m-41 { margin-top: -41px !important; } .mar-t-m-42 { margin-top: -42px !important; } .mar-t-m-43 { margin-top: -43px !important; } .mar-t-m-44 { margin-top: -44px !important; } .mar-t-m-45 { margin-top: -45px !important; } .mar-t-m-46 { margin-top: -46px !important; } .mar-t-m-47 { margin-top: -47px !important; } .mar-t-m-48 { margin-top: -48px !important; } .mar-t-m-49 { margin-top: -49px !important; } .mar-t-m-50 { margin-top: -50px !important; } .mar-t-m-51 { margin-top: -51px !important; } .mar-t-m-52 { margin-top: -52px !important; } .mar-t-m-53 { margin-top: -53px !important; } .mar-t-m-54 { margin-top: -54px !important; } .mar-t-m-55 { margin-top: -55px !important; } .mar-t-m-56 { margin-top: -56px !important; } .mar-t-m-57 { margin-top: -57px !important; } .mar-t-m-58 { margin-top: -58px !important; } .mar-t-m-59 { margin-top: -59px !important; } .mar-t-m-60 { margin-top: -60px !important; } .mar-t-m-61 { margin-top: -61px !important; } .mar-t-m-62 { margin-top: -62px !important; } .mar-t-m-63 { margin-top: -63px !important; } .mar-t-m-64 { margin-top: -64px !important; } .mar-t-m-65 { margin-top: -65px !important; } .mar-t-m-66 { margin-top: -66px !important; } .mar-t-m-67 { margin-top: -67px !important; } .mar-t-m-68 { margin-top: -68px !important; } .mar-t-m-69 { margin-top: -69px !important; } .mar-t-m-70 { margin-top: -70px !important; } .mar-t-m-71 { margin-top: -71px !important; } .mar-t-m-72 { margin-top: -72px !important; } .mar-t-m-73 { margin-top: -73px !important; } .mar-t-m-74 { margin-top: -74px !important; } .mar-t-m-75 { margin-top: -75px !important; } .mar-t-m-76 { margin-top: -76px !important; } .mar-t-m-77 { margin-top: -77px !important; } .mar-t-m-78 { margin-top: -78px !important; } .mar-t-m-79 { margin-top: -79px !important; } .mar-t-m-80 { margin-top: -80px !important; } .mar-t-m-81 { margin-top: -81px !important; } .mar-t-m-82 { margin-top: -82px !important; } .mar-t-m-83 { margin-top: -83px !important; } .mar-t-m-84 { margin-top: -84px !important; } .mar-t-m-85 { margin-top: -85px !important; } .mar-t-m-86 { margin-top: -86px !important; } .mar-t-m-87 { margin-top: -87px !important; } .mar-t-m-88 { margin-top: -88px !important; } .mar-t-m-89 { margin-top: -89px !important; } .mar-t-m-90 { margin-top: -90px !important; } .mar-t-m-91 { margin-top: -91px !important; } .mar-t-m-92 { margin-top: -92px !important; } .mar-t-m-93 { margin-top: -93px !important; } .mar-t-m-94 { margin-top: -94px !important; } .mar-t-m-95 { margin-top: -95px !important; } .mar-t-m-96 { margin-top: -96px !important; } .mar-t-m-97 { margin-top: -97px !important; } .mar-t-m-98 { margin-top: -98px !important; } .mar-t-m-99 { margin-top: -99px !important; } .mar-t-m-100 { margin-top: -100px !important; } .mar-r-m-1 { margin-right: -1px !important; } .mar-r-m-2 { margin-right: -2px !important; } .mar-r-m-3 { margin-right: -3px !important; } .mar-r-m-4 { margin-right: -4px !important; } .mar-r-m-5 { margin-right: -5px !important; } .mar-r-m-6 { margin-right: -6px !important; } .mar-r-m-7 { margin-right: -7px !important; } .mar-r-m-8 { margin-right: -8px !important; } .mar-r-m-9 { margin-right: -9px !important; } .mar-r-m-10 { margin-right: -10px !important; } .mar-r-m-11 { margin-right: -11px !important; } .mar-r-m-12 { margin-right: -12px !important; } .mar-r-m-13 { margin-right: -13px !important; } .mar-r-m-14 { margin-right: -14px !important; } .mar-r-m-15 { margin-right: -15px !important; } .mar-r-m-16 { margin-right: -16px !important; } .mar-r-m-17 { margin-right: -17px !important; } .mar-r-m-18 { margin-right: -18px !important; } .mar-r-m-19 { margin-right: -19px !important; } .mar-r-m-20 { margin-right: -20px !important; } .mar-r-m-21 { margin-right: -21px !important; } .mar-r-m-22 { margin-right: -22px !important; } .mar-r-m-23 { margin-right: -23px !important; } .mar-r-m-24 { margin-right: -24px !important; } .mar-r-m-25 { margin-right: -25px !important; } .mar-r-m-26 { margin-right: -26px !important; } .mar-r-m-27 { margin-right: -27px !important; } .mar-r-m-28 { margin-right: -28px !important; } .mar-r-m-29 { margin-right: -29px !important; } .mar-r-m-30 { margin-right: -30px !important; } .mar-r-m-31 { margin-right: -31px !important; } .mar-r-m-32 { margin-right: -32px !important; } .mar-r-m-33 { margin-right: -33px !important; } .mar-r-m-34 { margin-right: -34px !important; } .mar-r-m-35 { margin-right: -35px !important; } .mar-r-m-36 { margin-right: -36px !important; } .mar-r-m-37 { margin-right: -37px !important; } .mar-r-m-38 { margin-right: -38px !important; } .mar-r-m-39 { margin-right: -39px !important; } .mar-r-m-40 { margin-right: -40px !important; } .mar-r-m-41 { margin-right: -41px !important; } .mar-r-m-42 { margin-right: -42px !important; } .mar-r-m-43 { margin-right: -43px !important; } .mar-r-m-44 { margin-right: -44px !important; } .mar-r-m-45 { margin-right: -45px !important; } .mar-r-m-46 { margin-right: -46px !important; } .mar-r-m-47 { margin-right: -47px !important; } .mar-r-m-48 { margin-right: -48px !important; } .mar-r-m-49 { margin-right: -49px !important; } .mar-r-m-50 { margin-right: -50px !important; } .mar-r-m-51 { margin-right: -51px !important; } .mar-r-m-52 { margin-right: -52px !important; } .mar-r-m-53 { margin-right: -53px !important; } .mar-r-m-54 { margin-right: -54px !important; } .mar-r-m-55 { margin-right: -55px !important; } .mar-r-m-56 { margin-right: -56px !important; } .mar-r-m-57 { margin-right: -57px !important; } .mar-r-m-58 { margin-right: -58px !important; } .mar-r-m-59 { margin-right: -59px !important; } .mar-r-m-60 { margin-right: -60px !important; } .mar-r-m-61 { margin-right: -61px !important; } .mar-r-m-62 { margin-right: -62px !important; } .mar-r-m-63 { margin-right: -63px !important; } .mar-r-m-64 { margin-right: -64px !important; } .mar-r-m-65 { margin-right: -65px !important; } .mar-r-m-66 { margin-right: -66px !important; } .mar-r-m-67 { margin-right: -67px !important; } .mar-r-m-68 { margin-right: -68px !important; } .mar-r-m-69 { margin-right: -69px !important; } .mar-r-m-70 { margin-right: -70px !important; } .mar-r-m-71 { margin-right: -71px !important; } .mar-r-m-72 { margin-right: -72px !important; } .mar-r-m-73 { margin-right: -73px !important; } .mar-r-m-74 { margin-right: -74px !important; } .mar-r-m-75 { margin-right: -75px !important; } .mar-r-m-76 { margin-right: -76px !important; } .mar-r-m-77 { margin-right: -77px !important; } .mar-r-m-78 { margin-right: -78px !important; } .mar-r-m-79 { margin-right: -79px !important; } .mar-r-m-80 { margin-right: -80px !important; } .mar-r-m-81 { margin-right: -81px !important; } .mar-r-m-82 { margin-right: -82px !important; } .mar-r-m-83 { margin-right: -83px !important; } .mar-r-m-84 { margin-right: -84px !important; } .mar-r-m-85 { margin-right: -85px !important; } .mar-r-m-86 { margin-right: -86px !important; } .mar-r-m-87 { margin-right: -87px !important; } .mar-r-m-88 { margin-right: -88px !important; } .mar-r-m-89 { margin-right: -89px !important; } .mar-r-m-90 { margin-right: -90px !important; } .mar-r-m-91 { margin-right: -91px !important; } .mar-r-m-92 { margin-right: -92px !important; } .mar-r-m-93 { margin-right: -93px !important; } .mar-r-m-94 { margin-right: -94px !important; } .mar-r-m-95 { margin-right: -95px !important; } .mar-r-m-96 { margin-right: -96px !important; } .mar-r-m-97 { margin-right: -97px !important; } .mar-r-m-98 { margin-right: -98px !important; } .mar-r-m-99 { margin-right: -99px !important; } .mar-r-m-100 { margin-right: -100px !important; } .mar-b-m-1 { margin-bottom: -1px !important; } .mar-b-m-2 { margin-bottom: -2px !important; } .mar-b-m-3 { margin-bottom: -3px !important; } .mar-b-m-4 { margin-bottom: -4px !important; } .mar-b-m-5 { margin-bottom: -5px !important; } .mar-b-m-6 { margin-bottom: -6px !important; } .mar-b-m-7 { margin-bottom: -7px !important; } .mar-b-m-8 { margin-bottom: -8px !important; } .mar-b-m-9 { margin-bottom: -9px !important; } .mar-b-m-10 { margin-bottom: -10px !important; } .mar-b-m-11 { margin-bottom: -11px !important; } .mar-b-m-12 { margin-bottom: -12px !important; } .mar-b-m-13 { margin-bottom: -13px !important; } .mar-b-m-14 { margin-bottom: -14px !important; } .mar-b-m-15 { margin-bottom: -15px !important; } .mar-b-m-16 { margin-bottom: -16px !important; } .mar-b-m-17 { margin-bottom: -17px !important; } .mar-b-m-18 { margin-bottom: -18px !important; } .mar-b-m-19 { margin-bottom: -19px !important; } .mar-b-m-20 { margin-bottom: -20px !important; } .mar-b-m-21 { margin-bottom: -21px !important; } .mar-b-m-22 { margin-bottom: -22px !important; } .mar-b-m-23 { margin-bottom: -23px !important; } .mar-b-m-24 { margin-bottom: -24px !important; } .mar-b-m-25 { margin-bottom: -25px !important; } .mar-b-m-26 { margin-bottom: -26px !important; } .mar-b-m-27 { margin-bottom: -27px !important; } .mar-b-m-28 { margin-bottom: -28px !important; } .mar-b-m-29 { margin-bottom: -29px !important; } .mar-b-m-30 { margin-bottom: -30px !important; } .mar-b-m-31 { margin-bottom: -31px !important; } .mar-b-m-32 { margin-bottom: -32px !important; } .mar-b-m-33 { margin-bottom: -33px !important; } .mar-b-m-34 { margin-bottom: -34px !important; } .mar-b-m-35 { margin-bottom: -35px !important; } .mar-b-m-36 { margin-bottom: -36px !important; } .mar-b-m-37 { margin-bottom: -37px !important; } .mar-b-m-38 { margin-bottom: -38px !important; } .mar-b-m-39 { margin-bottom: -39px !important; } .mar-b-m-40 { margin-bottom: -40px !important; } .mar-b-m-41 { margin-bottom: -41px !important; } .mar-b-m-42 { margin-bottom: -42px !important; } .mar-b-m-43 { margin-bottom: -43px !important; } .mar-b-m-44 { margin-bottom: -44px !important; } .mar-b-m-45 { margin-bottom: -45px !important; } .mar-b-m-46 { margin-bottom: -46px !important; } .mar-b-m-47 { margin-bottom: -47px !important; } .mar-b-m-48 { margin-bottom: -48px !important; } .mar-b-m-49 { margin-bottom: -49px !important; } .mar-b-m-50 { margin-bottom: -50px !important; } .mar-b-m-51 { margin-bottom: -51px !important; } .mar-b-m-52 { margin-bottom: -52px !important; } .mar-b-m-53 { margin-bottom: -53px !important; } .mar-b-m-54 { margin-bottom: -54px !important; } .mar-b-m-55 { margin-bottom: -55px !important; } .mar-b-m-56 { margin-bottom: -56px !important; } .mar-b-m-57 { margin-bottom: -57px !important; } .mar-b-m-58 { margin-bottom: -58px !important; } .mar-b-m-59 { margin-bottom: -59px !important; } .mar-b-m-60 { margin-bottom: -60px !important; } .mar-b-m-61 { margin-bottom: -61px !important; } .mar-b-m-62 { margin-bottom: -62px !important; } .mar-b-m-63 { margin-bottom: -63px !important; } .mar-b-m-64 { margin-bottom: -64px !important; } .mar-b-m-65 { margin-bottom: -65px !important; } .mar-b-m-66 { margin-bottom: -66px !important; } .mar-b-m-67 { margin-bottom: -67px !important; } .mar-b-m-68 { margin-bottom: -68px !important; } .mar-b-m-69 { margin-bottom: -69px !important; } .mar-b-m-70 { margin-bottom: -70px !important; } .mar-b-m-71 { margin-bottom: -71px !important; } .mar-b-m-72 { margin-bottom: -72px !important; } .mar-b-m-73 { margin-bottom: -73px !important; } .mar-b-m-74 { margin-bottom: -74px !important; } .mar-b-m-75 { margin-bottom: -75px !important; } .mar-b-m-76 { margin-bottom: -76px !important; } .mar-b-m-77 { margin-bottom: -77px !important; } .mar-b-m-78 { margin-bottom: -78px !important; } .mar-b-m-79 { margin-bottom: -79px !important; } .mar-b-m-80 { margin-bottom: -80px !important; } .mar-b-m-81 { margin-bottom: -81px !important; } .mar-b-m-82 { margin-bottom: -82px !important; } .mar-b-m-83 { margin-bottom: -83px !important; } .mar-b-m-84 { margin-bottom: -84px !important; } .mar-b-m-85 { margin-bottom: -85px !important; } .mar-b-m-86 { margin-bottom: -86px !important; } .mar-b-m-87 { margin-bottom: -87px !important; } .mar-b-m-88 { margin-bottom: -88px !important; } .mar-b-m-89 { margin-bottom: -89px !important; } .mar-b-m-90 { margin-bottom: -90px !important; } .mar-b-m-91 { margin-bottom: -91px !important; } .mar-b-m-92 { margin-bottom: -92px !important; } .mar-b-m-93 { margin-bottom: -93px !important; } .mar-b-m-94 { margin-bottom: -94px !important; } .mar-b-m-95 { margin-bottom: -95px !important; } .mar-b-m-96 { margin-bottom: -96px !important; } .mar-b-m-97 { margin-bottom: -97px !important; } .mar-b-m-98 { margin-bottom: -98px !important; } .mar-b-m-99 { margin-bottom: -99px !important; } .mar-b-m-100 { margin-bottom: -100px !important; } .mar-l-m-1 { margin-left: -1px !important; } .mar-l-m-2 { margin-left: -2px !important; } .mar-l-m-3 { margin-left: -3px !important; } .mar-l-m-4 { margin-left: -4px !important; } .mar-l-m-5 { margin-left: -5px !important; } .mar-l-m-6 { margin-left: -6px !important; } .mar-l-m-7 { margin-left: -7px !important; } .mar-l-m-8 { margin-left: -8px !important; } .mar-l-m-9 { margin-left: -9px !important; } .mar-l-m-10 { margin-left: -10px !important; } .mar-l-m-11 { margin-left: -11px !important; } .mar-l-m-12 { margin-left: -12px !important; } .mar-l-m-13 { margin-left: -13px !important; } .mar-l-m-14 { margin-left: -14px !important; } .mar-l-m-15 { margin-left: -15px !important; } .mar-l-m-16 { margin-left: -16px !important; } .mar-l-m-17 { margin-left: -17px !important; } .mar-l-m-18 { margin-left: -18px !important; } .mar-l-m-19 { margin-left: -19px !important; } .mar-l-m-20 { margin-left: -20px !important; } .mar-l-m-21 { margin-left: -21px !important; } .mar-l-m-22 { margin-left: -22px !important; } .mar-l-m-23 { margin-left: -23px !important; } .mar-l-m-24 { margin-left: -24px !important; } .mar-l-m-25 { margin-left: -25px !important; } .mar-l-m-26 { margin-left: -26px !important; } .mar-l-m-27 { margin-left: -27px !important; } .mar-l-m-28 { margin-left: -28px !important; } .mar-l-m-29 { margin-left: -29px !important; } .mar-l-m-30 { margin-left: -30px !important; } .mar-l-m-31 { margin-left: -31px !important; } .mar-l-m-32 { margin-left: -32px !important; } .mar-l-m-33 { margin-left: -33px !important; } .mar-l-m-34 { margin-left: -34px !important; } .mar-l-m-35 { margin-left: -35px !important; } .mar-l-m-36 { margin-left: -36px !important; } .mar-l-m-37 { margin-left: -37px !important; } .mar-l-m-38 { margin-left: -38px !important; } .mar-l-m-39 { margin-left: -39px !important; } .mar-l-m-40 { margin-left: -40px !important; } .mar-l-m-41 { margin-left: -41px !important; } .mar-l-m-42 { margin-left: -42px !important; } .mar-l-m-43 { margin-left: -43px !important; } .mar-l-m-44 { margin-left: -44px !important; } .mar-l-m-45 { margin-left: -45px !important; } .mar-l-m-46 { margin-left: -46px !important; } .mar-l-m-47 { margin-left: -47px !important; } .mar-l-m-48 { margin-left: -48px !important; } .mar-l-m-49 { margin-left: -49px !important; } .mar-l-m-50 { margin-left: -50px !important; } .mar-l-m-51 { margin-left: -51px !important; } .mar-l-m-52 { margin-left: -52px !important; } .mar-l-m-53 { margin-left: -53px !important; } .mar-l-m-54 { margin-left: -54px !important; } .mar-l-m-55 { margin-left: -55px !important; } .mar-l-m-56 { margin-left: -56px !important; } .mar-l-m-57 { margin-left: -57px !important; } .mar-l-m-58 { margin-left: -58px !important; } .mar-l-m-59 { margin-left: -59px !important; } .mar-l-m-60 { margin-left: -60px !important; } .mar-l-m-61 { margin-left: -61px !important; } .mar-l-m-62 { margin-left: -62px !important; } .mar-l-m-63 { margin-left: -63px !important; } .mar-l-m-64 { margin-left: -64px !important; } .mar-l-m-65 { margin-left: -65px !important; } .mar-l-m-66 { margin-left: -66px !important; } .mar-l-m-67 { margin-left: -67px !important; } .mar-l-m-68 { margin-left: -68px !important; } .mar-l-m-69 { margin-left: -69px !important; } .mar-l-m-70 { margin-left: -70px !important; } .mar-l-m-71 { margin-left: -71px !important; } .mar-l-m-72 { margin-left: -72px !important; } .mar-l-m-73 { margin-left: -73px !important; } .mar-l-m-74 { margin-left: -74px !important; } .mar-l-m-75 { margin-left: -75px !important; } .mar-l-m-76 { margin-left: -76px !important; } .mar-l-m-77 { margin-left: -77px !important; } .mar-l-m-78 { margin-left: -78px !important; } .mar-l-m-79 { margin-left: -79px !important; } .mar-l-m-80 { margin-left: -80px !important; } .mar-l-m-81 { margin-left: -81px !important; } .mar-l-m-82 { margin-left: -82px !important; } .mar-l-m-83 { margin-left: -83px !important; } .mar-l-m-84 { margin-left: -84px !important; } .mar-l-m-85 { margin-left: -85px !important; } .mar-l-m-86 { margin-left: -86px !important; } .mar-l-m-87 { margin-left: -87px !important; } .mar-l-m-88 { margin-left: -88px !important; } .mar-l-m-89 { margin-left: -89px !important; } .mar-l-m-90 { margin-left: -90px !important; } .mar-l-m-91 { margin-left: -91px !important; } .mar-l-m-92 { margin-left: -92px !important; } .mar-l-m-93 { margin-left: -93px !important; } .mar-l-m-94 { margin-left: -94px !important; } .mar-l-m-95 { margin-left: -95px !important; } .mar-l-m-96 { margin-left: -96px !important; } .mar-l-m-97 { margin-left: -97px !important; } .mar-l-m-98 { margin-left: -98px !important; } .mar-l-m-99 { margin-left: -99px !important; } .mar-l-m-100 { margin-left: -100px !important; } .pad-1 { padding: 1px !important; } .pad-2 { padding: 2px !important; } .pad-3 { padding: 3px !important; } .pad-4 { padding: 4px !important; } .pad-5 { padding: 5px !important; } .pad-6 { padding: 6px !important; } .pad-7 { padding: 7px !important; } .pad-8 { padding: 8px !important; } .pad-9 { padding: 9px !important; } .pad-10 { padding: 10px !important; } .pad-11 { padding: 11px !important; } .pad-12 { padding: 12px !important; } .pad-13 { padding: 13px !important; } .pad-14 { padding: 14px !important; } .pad-15 { padding: 15px !important; } .pad-16 { padding: 16px !important; } .pad-17 { padding: 17px !important; } .pad-18 { padding: 18px !important; } .pad-19 { padding: 19px !important; } .pad-20 { padding: 20px !important; } .pad-21 { padding: 21px !important; } .pad-22 { padding: 22px !important; } .pad-23 { padding: 23px !important; } .pad-24 { padding: 24px !important; } .pad-25 { padding: 25px !important; } .pad-26 { padding: 26px !important; } .pad-27 { padding: 27px !important; } .pad-28 { padding: 28px !important; } .pad-29 { padding: 29px !important; } .pad-30 { padding: 30px !important; } .pad-31 { padding: 31px !important; } .pad-32 { padding: 32px !important; } .pad-33 { padding: 33px !important; } .pad-34 { padding: 34px !important; } .pad-35 { padding: 35px !important; } .pad-36 { padding: 36px !important; } .pad-37 { padding: 37px !important; } .pad-38 { padding: 38px !important; } .pad-39 { padding: 39px !important; } .pad-40 { padding: 40px !important; } .pad-41 { padding: 41px !important; } .pad-42 { padding: 42px !important; } .pad-43 { padding: 43px !important; } .pad-44 { padding: 44px !important; } .pad-45 { padding: 45px !important; } .pad-46 { padding: 46px !important; } .pad-47 { padding: 47px !important; } .pad-48 { padding: 48px !important; } .pad-49 { padding: 49px !important; } .pad-50 { padding: 50px !important; } .pad-51 { padding: 51px !important; } .pad-52 { padding: 52px !important; } .pad-53 { padding: 53px !important; } .pad-54 { padding: 54px !important; } .pad-55 { padding: 55px !important; } .pad-56 { padding: 56px !important; } .pad-57 { padding: 57px !important; } .pad-58 { padding: 58px !important; } .pad-59 { padding: 59px !important; } .pad-60 { padding: 60px !important; } .pad-61 { padding: 61px !important; } .pad-62 { padding: 62px !important; } .pad-63 { padding: 63px !important; } .pad-64 { padding: 64px !important; } .pad-65 { padding: 65px !important; } .pad-66 { padding: 66px !important; } .pad-67 { padding: 67px !important; } .pad-68 { padding: 68px !important; } .pad-69 { padding: 69px !important; } .pad-70 { padding: 70px !important; } .pad-71 { padding: 71px !important; } .pad-72 { padding: 72px !important; } .pad-73 { padding: 73px !important; } .pad-74 { padding: 74px !important; } .pad-75 { padding: 75px !important; } .pad-76 { padding: 76px !important; } .pad-77 { padding: 77px !important; } .pad-78 { padding: 78px !important; } .pad-79 { padding: 79px !important; } .pad-80 { padding: 80px !important; } .pad-81 { padding: 81px !important; } .pad-82 { padding: 82px !important; } .pad-83 { padding: 83px !important; } .pad-84 { padding: 84px !important; } .pad-85 { padding: 85px !important; } .pad-86 { padding: 86px !important; } .pad-87 { padding: 87px !important; } .pad-88 { padding: 88px !important; } .pad-89 { padding: 89px !important; } .pad-90 { padding: 90px !important; } .pad-91 { padding: 91px !important; } .pad-92 { padding: 92px !important; } .pad-93 { padding: 93px !important; } .pad-94 { padding: 94px !important; } .pad-95 { padding: 95px !important; } .pad-96 { padding: 96px !important; } .pad-97 { padding: 97px !important; } .pad-98 { padding: 98px !important; } .pad-99 { padding: 99px !important; } .pad-100 { padding: 100px !important; } .pad-t-1 { padding-top: 1px !important; } .pad-t-2 { padding-top: 2px !important; } .pad-t-3 { padding-top: 3px !important; } .pad-t-4 { padding-top: 4px !important; } .pad-t-5 { padding-top: 5px !important; } .pad-t-6 { padding-top: 6px !important; } .pad-t-7 { padding-top: 7px !important; } .pad-t-8 { padding-top: 8px !important; } .pad-t-9 { padding-top: 9px !important; } .pad-t-10 { padding-top: 10px !important; } .pad-t-11 { padding-top: 11px !important; } .pad-t-12 { padding-top: 12px !important; } .pad-t-13 { padding-top: 13px !important; } .pad-t-14 { padding-top: 14px !important; } .pad-t-15 { padding-top: 15px !important; } .pad-t-16 { padding-top: 16px !important; } .pad-t-17 { padding-top: 17px !important; } .pad-t-18 { padding-top: 18px !important; } .pad-t-19 { padding-top: 19px !important; } .pad-t-20 { padding-top: 20px !important; } .pad-t-21 { padding-top: 21px !important; } .pad-t-22 { padding-top: 22px !important; } .pad-t-23 { padding-top: 23px !important; } .pad-t-24 { padding-top: 24px !important; } .pad-t-25 { padding-top: 25px !important; } .pad-t-26 { padding-top: 26px !important; } .pad-t-27 { padding-top: 27px !important; } .pad-t-28 { padding-top: 28px !important; } .pad-t-29 { padding-top: 29px !important; } .pad-t-30 { padding-top: 30px !important; } .pad-t-31 { padding-top: 31px !important; } .pad-t-32 { padding-top: 32px !important; } .pad-t-33 { padding-top: 33px !important; } .pad-t-34 { padding-top: 34px !important; } .pad-t-35 { padding-top: 35px !important; } .pad-t-36 { padding-top: 36px !important; } .pad-t-37 { padding-top: 37px !important; } .pad-t-38 { padding-top: 38px !important; } .pad-t-39 { padding-top: 39px !important; } .pad-t-40 { padding-top: 40px !important; } .pad-t-41 { padding-top: 41px !important; } .pad-t-42 { padding-top: 42px !important; } .pad-t-43 { padding-top: 43px !important; } .pad-t-44 { padding-top: 44px !important; } .pad-t-45 { padding-top: 45px !important; } .pad-t-46 { padding-top: 46px !important; } .pad-t-47 { padding-top: 47px !important; } .pad-t-48 { padding-top: 48px !important; } .pad-t-49 { padding-top: 49px !important; } .pad-t-50 { padding-top: 50px !important; } .pad-t-51 { padding-top: 51px !important; } .pad-t-52 { padding-top: 52px !important; } .pad-t-53 { padding-top: 53px !important; } .pad-t-54 { padding-top: 54px !important; } .pad-t-55 { padding-top: 55px !important; } .pad-t-56 { padding-top: 56px !important; } .pad-t-57 { padding-top: 57px !important; } .pad-t-58 { padding-top: 58px !important; } .pad-t-59 { padding-top: 59px !important; } .pad-t-60 { padding-top: 60px !important; } .pad-t-61 { padding-top: 61px !important; } .pad-t-62 { padding-top: 62px !important; } .pad-t-63 { padding-top: 63px !important; } .pad-t-64 { padding-top: 64px !important; } .pad-t-65 { padding-top: 65px !important; } .pad-t-66 { padding-top: 66px !important; } .pad-t-67 { padding-top: 67px !important; } .pad-t-68 { padding-top: 68px !important; } .pad-t-69 { padding-top: 69px !important; } .pad-t-70 { padding-top: 70px !important; } .pad-t-71 { padding-top: 71px !important; } .pad-t-72 { padding-top: 72px !important; } .pad-t-73 { padding-top: 73px !important; } .pad-t-74 { padding-top: 74px !important; } .pad-t-75 { padding-top: 75px !important; } .pad-t-76 { padding-top: 76px !important; } .pad-t-77 { padding-top: 77px !important; } .pad-t-78 { padding-top: 78px !important; } .pad-t-79 { padding-top: 79px !important; } .pad-t-80 { padding-top: 80px !important; } .pad-t-81 { padding-top: 81px !important; } .pad-t-82 { padding-top: 82px !important; } .pad-t-83 { padding-top: 83px !important; } .pad-t-84 { padding-top: 84px !important; } .pad-t-85 { padding-top: 85px !important; } .pad-t-86 { padding-top: 86px !important; } .pad-t-87 { padding-top: 87px !important; } .pad-t-88 { padding-top: 88px !important; } .pad-t-89 { padding-top: 89px !important; } .pad-t-90 { padding-top: 90px !important; } .pad-t-91 { padding-top: 91px !important; } .pad-t-92 { padding-top: 92px !important; } .pad-t-93 { padding-top: 93px !important; } .pad-t-94 { padding-top: 94px !important; } .pad-t-95 { padding-top: 95px !important; } .pad-t-96 { padding-top: 96px !important; } .pad-t-97 { padding-top: 97px !important; } .pad-t-98 { padding-top: 98px !important; } .pad-t-99 { padding-top: 99px !important; } .pad-t-100 { padding-top: 100px !important; } .pad-r-1 { padding-right: 1px !important; } .pad-r-2 { padding-right: 2px !important; } .pad-r-3 { padding-right: 3px !important; } .pad-r-4 { padding-right: 4px !important; } .pad-r-5 { padding-right: 5px !important; } .pad-r-6 { padding-right: 6px !important; } .pad-r-7 { padding-right: 7px !important; } .pad-r-8 { padding-right: 8px !important; } .pad-r-9 { padding-right: 9px !important; } .pad-r-10 { padding-right: 10px !important; } .pad-r-11 { padding-right: 11px !important; } .pad-r-12 { padding-right: 12px !important; } .pad-r-13 { padding-right: 13px !important; } .pad-r-14 { padding-right: 14px !important; } .pad-r-15 { padding-right: 15px !important; } .pad-r-16 { padding-right: 16px !important; } .pad-r-17 { padding-right: 17px !important; } .pad-r-18 { padding-right: 18px !important; } .pad-r-19 { padding-right: 19px !important; } .pad-r-20 { padding-right: 20px !important; } .pad-r-21 { padding-right: 21px !important; } .pad-r-22 { padding-right: 22px !important; } .pad-r-23 { padding-right: 23px !important; } .pad-r-24 { padding-right: 24px !important; } .pad-r-25 { padding-right: 25px !important; } .pad-r-26 { padding-right: 26px !important; } .pad-r-27 { padding-right: 27px !important; } .pad-r-28 { padding-right: 28px !important; } .pad-r-29 { padding-right: 29px !important; } .pad-r-30 { padding-right: 30px !important; } .pad-r-31 { padding-right: 31px !important; } .pad-r-32 { padding-right: 32px !important; } .pad-r-33 { padding-right: 33px !important; } .pad-r-34 { padding-right: 34px !important; } .pad-r-35 { padding-right: 35px !important; } .pad-r-36 { padding-right: 36px !important; } .pad-r-37 { padding-right: 37px !important; } .pad-r-38 { padding-right: 38px !important; } .pad-r-39 { padding-right: 39px !important; } .pad-r-40 { padding-right: 40px !important; } .pad-r-41 { padding-right: 41px !important; } .pad-r-42 { padding-right: 42px !important; } .pad-r-43 { padding-right: 43px !important; } .pad-r-44 { padding-right: 44px !important; } .pad-r-45 { padding-right: 45px !important; } .pad-r-46 { padding-right: 46px !important; } .pad-r-47 { padding-right: 47px !important; } .pad-r-48 { padding-right: 48px !important; } .pad-r-49 { padding-right: 49px !important; } .pad-r-50 { padding-right: 50px !important; } .pad-r-51 { padding-right: 51px !important; } .pad-r-52 { padding-right: 52px !important; } .pad-r-53 { padding-right: 53px !important; } .pad-r-54 { padding-right: 54px !important; } .pad-r-55 { padding-right: 55px !important; } .pad-r-56 { padding-right: 56px !important; } .pad-r-57 { padding-right: 57px !important; } .pad-r-58 { padding-right: 58px !important; } .pad-r-59 { padding-right: 59px !important; } .pad-r-60 { padding-right: 60px !important; } .pad-r-61 { padding-right: 61px !important; } .pad-r-62 { padding-right: 62px !important; } .pad-r-63 { padding-right: 63px !important; } .pad-r-64 { padding-right: 64px !important; } .pad-r-65 { padding-right: 65px !important; } .pad-r-66 { padding-right: 66px !important; } .pad-r-67 { padding-right: 67px !important; } .pad-r-68 { padding-right: 68px !important; } .pad-r-69 { padding-right: 69px !important; } .pad-r-70 { padding-right: 70px !important; } .pad-r-71 { padding-right: 71px !important; } .pad-r-72 { padding-right: 72px !important; } .pad-r-73 { padding-right: 73px !important; } .pad-r-74 { padding-right: 74px !important; } .pad-r-75 { padding-right: 75px !important; } .pad-r-76 { padding-right: 76px !important; } .pad-r-77 { padding-right: 77px !important; } .pad-r-78 { padding-right: 78px !important; } .pad-r-79 { padding-right: 79px !important; } .pad-r-80 { padding-right: 80px !important; } .pad-r-81 { padding-right: 81px !important; } .pad-r-82 { padding-right: 82px !important; } .pad-r-83 { padding-right: 83px !important; } .pad-r-84 { padding-right: 84px !important; } .pad-r-85 { padding-right: 85px !important; } .pad-r-86 { padding-right: 86px !important; } .pad-r-87 { padding-right: 87px !important; } .pad-r-88 { padding-right: 88px !important; } .pad-r-89 { padding-right: 89px !important; } .pad-r-90 { padding-right: 90px !important; } .pad-r-91 { padding-right: 91px !important; } .pad-r-92 { padding-right: 92px !important; } .pad-r-93 { padding-right: 93px !important; } .pad-r-94 { padding-right: 94px !important; } .pad-r-95 { padding-right: 95px !important; } .pad-r-96 { padding-right: 96px !important; } .pad-r-97 { padding-right: 97px !important; } .pad-r-98 { padding-right: 98px !important; } .pad-r-99 { padding-right: 99px !important; } .pad-r-100 { padding-right: 100px !important; } .pad-b-1 { padding-bottom: 1px !important; } .pad-b-2 { padding-bottom: 2px !important; } .pad-b-3 { padding-bottom: 3px !important; } .pad-b-4 { padding-bottom: 4px !important; } .pad-b-5 { padding-bottom: 5px !important; } .pad-b-6 { padding-bottom: 6px !important; } .pad-b-7 { padding-bottom: 7px !important; } .pad-b-8 { padding-bottom: 8px !important; } .pad-b-9 { padding-bottom: 9px !important; } .pad-b-10 { padding-bottom: 10px !important; } .pad-b-11 { padding-bottom: 11px !important; } .pad-b-12 { padding-bottom: 12px !important; } .pad-b-13 { padding-bottom: 13px !important; } .pad-b-14 { padding-bottom: 14px !important; } .pad-b-15 { padding-bottom: 15px !important; } .pad-b-16 { padding-bottom: 16px !important; } .pad-b-17 { padding-bottom: 17px !important; } .pad-b-18 { padding-bottom: 18px !important; } .pad-b-19 { padding-bottom: 19px !important; } .pad-b-20 { padding-bottom: 20px !important; } .pad-b-21 { padding-bottom: 21px !important; } .pad-b-22 { padding-bottom: 22px !important; } .pad-b-23 { padding-bottom: 23px !important; } .pad-b-24 { padding-bottom: 24px !important; } .pad-b-25 { padding-bottom: 25px !important; } .pad-b-26 { padding-bottom: 26px !important; } .pad-b-27 { padding-bottom: 27px !important; } .pad-b-28 { padding-bottom: 28px !important; } .pad-b-29 { padding-bottom: 29px !important; } .pad-b-30 { padding-bottom: 30px !important; } .pad-b-31 { padding-bottom: 31px !important; } .pad-b-32 { padding-bottom: 32px !important; } .pad-b-33 { padding-bottom: 33px !important; } .pad-b-34 { padding-bottom: 34px !important; } .pad-b-35 { padding-bottom: 35px !important; } .pad-b-36 { padding-bottom: 36px !important; } .pad-b-37 { padding-bottom: 37px !important; } .pad-b-38 { padding-bottom: 38px !important; } .pad-b-39 { padding-bottom: 39px !important; } .pad-b-40 { padding-bottom: 40px !important; } .pad-b-41 { padding-bottom: 41px !important; } .pad-b-42 { padding-bottom: 42px !important; } .pad-b-43 { padding-bottom: 43px !important; } .pad-b-44 { padding-bottom: 44px !important; } .pad-b-45 { padding-bottom: 45px !important; } .pad-b-46 { padding-bottom: 46px !important; } .pad-b-47 { padding-bottom: 47px !important; } .pad-b-48 { padding-bottom: 48px !important; } .pad-b-49 { padding-bottom: 49px !important; } .pad-b-50 { padding-bottom: 50px !important; } .pad-b-51 { padding-bottom: 51px !important; } .pad-b-52 { padding-bottom: 52px !important; } .pad-b-53 { padding-bottom: 53px !important; } .pad-b-54 { padding-bottom: 54px !important; } .pad-b-55 { padding-bottom: 55px !important; } .pad-b-56 { padding-bottom: 56px !important; } .pad-b-57 { padding-bottom: 57px !important; } .pad-b-58 { padding-bottom: 58px !important; } .pad-b-59 { padding-bottom: 59px !important; } .pad-b-60 { padding-bottom: 60px !important; } .pad-b-61 { padding-bottom: 61px !important; } .pad-b-62 { padding-bottom: 62px !important; } .pad-b-63 { padding-bottom: 63px !important; } .pad-b-64 { padding-bottom: 64px !important; } .pad-b-65 { padding-bottom: 65px !important; } .pad-b-66 { padding-bottom: 66px !important; } .pad-b-67 { padding-bottom: 67px !important; } .pad-b-68 { padding-bottom: 68px !important; } .pad-b-69 { padding-bottom: 69px !important; } .pad-b-70 { padding-bottom: 70px !important; } .pad-b-71 { padding-bottom: 71px !important; } .pad-b-72 { padding-bottom: 72px !important; } .pad-b-73 { padding-bottom: 73px !important; } .pad-b-74 { padding-bottom: 74px !important; } .pad-b-75 { padding-bottom: 75px !important; } .pad-b-76 { padding-bottom: 76px !important; } .pad-b-77 { padding-bottom: 77px !important; } .pad-b-78 { padding-bottom: 78px !important; } .pad-b-79 { padding-bottom: 79px !important; } .pad-b-80 { padding-bottom: 80px !important; } .pad-b-81 { padding-bottom: 81px !important; } .pad-b-82 { padding-bottom: 82px !important; } .pad-b-83 { padding-bottom: 83px !important; } .pad-b-84 { padding-bottom: 84px !important; } .pad-b-85 { padding-bottom: 85px !important; } .pad-b-86 { padding-bottom: 86px !important; } .pad-b-87 { padding-bottom: 87px !important; } .pad-b-88 { padding-bottom: 88px !important; } .pad-b-89 { padding-bottom: 89px !important; } .pad-b-90 { padding-bottom: 90px !important; } .pad-b-91 { padding-bottom: 91px !important; } .pad-b-92 { padding-bottom: 92px !important; } .pad-b-93 { padding-bottom: 93px !important; } .pad-b-94 { padding-bottom: 94px !important; } .pad-b-95 { padding-bottom: 95px !important; } .pad-b-96 { padding-bottom: 96px !important; } .pad-b-97 { padding-bottom: 97px !important; } .pad-b-98 { padding-bottom: 98px !important; } .pad-b-99 { padding-bottom: 99px !important; } .pad-b-100 { padding-bottom: 100px !important; } .pad-l-1 { padding-left: 1px !important; } .pad-l-2 { padding-left: 2px !important; } .pad-l-3 { padding-left: 3px !important; } .pad-l-4 { padding-left: 4px !important; } .pad-l-5 { padding-left: 5px !important; } .pad-l-6 { padding-left: 6px !important; } .pad-l-7 { padding-left: 7px !important; } .pad-l-8 { padding-left: 8px !important; } .pad-l-9 { padding-left: 9px !important; } .pad-l-10 { padding-left: 10px !important; } .pad-l-11 { padding-left: 11px !important; } .pad-l-12 { padding-left: 12px !important; } .pad-l-13 { padding-left: 13px !important; } .pad-l-14 { padding-left: 14px !important; } .pad-l-15 { padding-left: 15px !important; } .pad-l-16 { padding-left: 16px !important; } .pad-l-17 { padding-left: 17px !important; } .pad-l-18 { padding-left: 18px !important; } .pad-l-19 { padding-left: 19px !important; } .pad-l-20 { padding-left: 20px !important; } .pad-l-21 { padding-left: 21px !important; } .pad-l-22 { padding-left: 22px !important; } .pad-l-23 { padding-left: 23px !important; } .pad-l-24 { padding-left: 24px !important; } .pad-l-25 { padding-left: 25px !important; } .pad-l-26 { padding-left: 26px !important; } .pad-l-27 { padding-left: 27px !important; } .pad-l-28 { padding-left: 28px !important; } .pad-l-29 { padding-left: 29px !important; } .pad-l-30 { padding-left: 30px !important; } .pad-l-31 { padding-left: 31px !important; } .pad-l-32 { padding-left: 32px !important; } .pad-l-33 { padding-left: 33px !important; } .pad-l-34 { padding-left: 34px !important; } .pad-l-35 { padding-left: 35px !important; } .pad-l-36 { padding-left: 36px !important; } .pad-l-37 { padding-left: 37px !important; } .pad-l-38 { padding-left: 38px !important; } .pad-l-39 { padding-left: 39px !important; } .pad-l-40 { padding-left: 40px !important; } .pad-l-41 { padding-left: 41px !important; } .pad-l-42 { padding-left: 42px !important; } .pad-l-43 { padding-left: 43px !important; } .pad-l-44 { padding-left: 44px !important; } .pad-l-45 { padding-left: 45px !important; } .pad-l-46 { padding-left: 46px !important; } .pad-l-47 { padding-left: 47px !important; } .pad-l-48 { padding-left: 48px !important; } .pad-l-49 { padding-left: 49px !important; } .pad-l-50 { padding-left: 50px !important; } .pad-l-51 { padding-left: 51px !important; } .pad-l-52 { padding-left: 52px !important; } .pad-l-53 { padding-left: 53px !important; } .pad-l-54 { padding-left: 54px !important; } .pad-l-55 { padding-left: 55px !important; } .pad-l-56 { padding-left: 56px !important; } .pad-l-57 { padding-left: 57px !important; } .pad-l-58 { padding-left: 58px !important; } .pad-l-59 { padding-left: 59px !important; } .pad-l-60 { padding-left: 60px !important; } .pad-l-61 { padding-left: 61px !important; } .pad-l-62 { padding-left: 62px !important; } .pad-l-63 { padding-left: 63px !important; } .pad-l-64 { padding-left: 64px !important; } .pad-l-65 { padding-left: 65px !important; } .pad-l-66 { padding-left: 66px !important; } .pad-l-67 { padding-left: 67px !important; } .pad-l-68 { padding-left: 68px !important; } .pad-l-69 { padding-left: 69px !important; } .pad-l-70 { padding-left: 70px !important; } .pad-l-71 { padding-left: 71px !important; } .pad-l-72 { padding-left: 72px !important; } .pad-l-73 { padding-left: 73px !important; } .pad-l-74 { padding-left: 74px !important; } .pad-l-75 { padding-left: 75px !important; } .pad-l-76 { padding-left: 76px !important; } .pad-l-77 { padding-left: 77px !important; } .pad-l-78 { padding-left: 78px !important; } .pad-l-79 { padding-left: 79px !important; } .pad-l-80 { padding-left: 80px !important; } .pad-l-81 { padding-left: 81px !important; } .pad-l-82 { padding-left: 82px !important; } .pad-l-83 { padding-left: 83px !important; } .pad-l-84 { padding-left: 84px !important; } .pad-l-85 { padding-left: 85px !important; } .pad-l-86 { padding-left: 86px !important; } .pad-l-87 { padding-left: 87px !important; } .pad-l-88 { padding-left: 88px !important; } .pad-l-89 { padding-left: 89px !important; } .pad-l-90 { padding-left: 90px !important; } .pad-l-91 { padding-left: 91px !important; } .pad-l-92 { padding-left: 92px !important; } .pad-l-93 { padding-left: 93px !important; } .pad-l-94 { padding-left: 94px !important; } .pad-l-95 { padding-left: 95px !important; } .pad-l-96 { padding-left: 96px !important; } .pad-l-97 { padding-left: 97px !important; } .pad-l-98 { padding-left: 98px !important; } .pad-l-99 { padding-left: 99px !important; } .pad-l-100 { padding-left: 100px !important; } .pad-v-1 { padding-top: 1px !important; padding-bottom: 1px; } .pad-v-2 { padding-top: 2px !important; padding-bottom: 2px; } .pad-v-3 { padding-top: 3px !important; padding-bottom: 3px; } .pad-v-4 { padding-top: 4px !important; padding-bottom: 4px; } .pad-v-5 { padding-top: 5px !important; padding-bottom: 5px; } .pad-v-6 { padding-top: 6px !important; padding-bottom: 6px; } .pad-v-7 { padding-top: 7px !important; padding-bottom: 7px; } .pad-v-8 { padding-top: 8px !important; padding-bottom: 8px; } .pad-v-9 { padding-top: 9px !important; padding-bottom: 9px; } .pad-v-10 { padding-top: 10px !important; padding-bottom: 10px; } .pad-v-11 { padding-top: 11px !important; padding-bottom: 11px; } .pad-v-12 { padding-top: 12px !important; padding-bottom: 12px; } .pad-v-13 { padding-top: 13px !important; padding-bottom: 13px; } .pad-v-14 { padding-top: 14px !important; padding-bottom: 14px; } .pad-v-15 { padding-top: 15px !important; padding-bottom: 15px; } .pad-v-16 { padding-top: 16px !important; padding-bottom: 16px; } .pad-v-17 { padding-top: 17px !important; padding-bottom: 17px; } .pad-v-18 { padding-top: 18px !important; padding-bottom: 18px; } .pad-v-19 { padding-top: 19px !important; padding-bottom: 19px; } .pad-v-20 { padding-top: 20px !important; padding-bottom: 20px; } .pad-v-21 { padding-top: 21px !important; padding-bottom: 21px; } .pad-v-22 { padding-top: 22px !important; padding-bottom: 22px; } .pad-v-23 { padding-top: 23px !important; padding-bottom: 23px; } .pad-v-24 { padding-top: 24px !important; padding-bottom: 24px; } .pad-v-25 { padding-top: 25px !important; padding-bottom: 25px; } .pad-v-26 { padding-top: 26px !important; padding-bottom: 26px; } .pad-v-27 { padding-top: 27px !important; padding-bottom: 27px; } .pad-v-28 { padding-top: 28px !important; padding-bottom: 28px; } .pad-v-29 { padding-top: 29px !important; padding-bottom: 29px; } .pad-v-30 { padding-top: 30px !important; padding-bottom: 30px; } .pad-v-31 { padding-top: 31px !important; padding-bottom: 31px; } .pad-v-32 { padding-top: 32px !important; padding-bottom: 32px; } .pad-v-33 { padding-top: 33px !important; padding-bottom: 33px; } .pad-v-34 { padding-top: 34px !important; padding-bottom: 34px; } .pad-v-35 { padding-top: 35px !important; padding-bottom: 35px; } .pad-v-36 { padding-top: 36px !important; padding-bottom: 36px; } .pad-v-37 { padding-top: 37px !important; padding-bottom: 37px; } .pad-v-38 { padding-top: 38px !important; padding-bottom: 38px; } .pad-v-39 { padding-top: 39px !important; padding-bottom: 39px; } .pad-v-40 { padding-top: 40px !important; padding-bottom: 40px; } .pad-v-41 { padding-top: 41px !important; padding-bottom: 41px; } .pad-v-42 { padding-top: 42px !important; padding-bottom: 42px; } .pad-v-43 { padding-top: 43px !important; padding-bottom: 43px; } .pad-v-44 { padding-top: 44px !important; padding-bottom: 44px; } .pad-v-45 { padding-top: 45px !important; padding-bottom: 45px; } .pad-v-46 { padding-top: 46px !important; padding-bottom: 46px; } .pad-v-47 { padding-top: 47px !important; padding-bottom: 47px; } .pad-v-48 { padding-top: 48px !important; padding-bottom: 48px; } .pad-v-49 { padding-top: 49px !important; padding-bottom: 49px; } .pad-v-50 { padding-top: 50px !important; padding-bottom: 50px; } .pad-v-51 { padding-top: 51px !important; padding-bottom: 51px; } .pad-v-52 { padding-top: 52px !important; padding-bottom: 52px; } .pad-v-53 { padding-top: 53px !important; padding-bottom: 53px; } .pad-v-54 { padding-top: 54px !important; padding-bottom: 54px; } .pad-v-55 { padding-top: 55px !important; padding-bottom: 55px; } .pad-v-56 { padding-top: 56px !important; padding-bottom: 56px; } .pad-v-57 { padding-top: 57px !important; padding-bottom: 57px; } .pad-v-58 { padding-top: 58px !important; padding-bottom: 58px; } .pad-v-59 { padding-top: 59px !important; padding-bottom: 59px; } .pad-v-60 { padding-top: 60px !important; padding-bottom: 60px; } .pad-v-61 { padding-top: 61px !important; padding-bottom: 61px; } .pad-v-62 { padding-top: 62px !important; padding-bottom: 62px; } .pad-v-63 { padding-top: 63px !important; padding-bottom: 63px; } .pad-v-64 { padding-top: 64px !important; padding-bottom: 64px; } .pad-v-65 { padding-top: 65px !important; padding-bottom: 65px; } .pad-v-66 { padding-top: 66px !important; padding-bottom: 66px; } .pad-v-67 { padding-top: 67px !important; padding-bottom: 67px; } .pad-v-68 { padding-top: 68px !important; padding-bottom: 68px; } .pad-v-69 { padding-top: 69px !important; padding-bottom: 69px; } .pad-v-70 { padding-top: 70px !important; padding-bottom: 70px; } .pad-v-71 { padding-top: 71px !important; padding-bottom: 71px; } .pad-v-72 { padding-top: 72px !important; padding-bottom: 72px; } .pad-v-73 { padding-top: 73px !important; padding-bottom: 73px; } .pad-v-74 { padding-top: 74px !important; padding-bottom: 74px; } .pad-v-75 { padding-top: 75px !important; padding-bottom: 75px; } .pad-v-76 { padding-top: 76px !important; padding-bottom: 76px; } .pad-v-77 { padding-top: 77px !important; padding-bottom: 77px; } .pad-v-78 { padding-top: 78px !important; padding-bottom: 78px; } .pad-v-79 { padding-top: 79px !important; padding-bottom: 79px; } .pad-v-80 { padding-top: 80px !important; padding-bottom: 80px; } .pad-v-81 { padding-top: 81px !important; padding-bottom: 81px; } .pad-v-82 { padding-top: 82px !important; padding-bottom: 82px; } .pad-v-83 { padding-top: 83px !important; padding-bottom: 83px; } .pad-v-84 { padding-top: 84px !important; padding-bottom: 84px; } .pad-v-85 { padding-top: 85px !important; padding-bottom: 85px; } .pad-v-86 { padding-top: 86px !important; padding-bottom: 86px; } .pad-v-87 { padding-top: 87px !important; padding-bottom: 87px; } .pad-v-88 { padding-top: 88px !important; padding-bottom: 88px; } .pad-v-89 { padding-top: 89px !important; padding-bottom: 89px; } .pad-v-90 { padding-top: 90px !important; padding-bottom: 90px; } .pad-v-91 { padding-top: 91px !important; padding-bottom: 91px; } .pad-v-92 { padding-top: 92px !important; padding-bottom: 92px; } .pad-v-93 { padding-top: 93px !important; padding-bottom: 93px; } .pad-v-94 { padding-top: 94px !important; padding-bottom: 94px; } .pad-v-95 { padding-top: 95px !important; padding-bottom: 95px; } .pad-v-96 { padding-top: 96px !important; padding-bottom: 96px; } .pad-v-97 { padding-top: 97px !important; padding-bottom: 97px; } .pad-v-98 { padding-top: 98px !important; padding-bottom: 98px; } .pad-v-99 { padding-top: 99px !important; padding-bottom: 99px; } .pad-v-100 { padding-top: 100px !important; padding-bottom: 100px; } .pad-h-1 { padding-left: 1px !important; padding-right: 1px !important; } .pad-h-2 { padding-left: 2px !important; padding-right: 2px !important; } .pad-h-3 { padding-left: 3px !important; padding-right: 3px !important; } .pad-h-4 { padding-left: 4px !important; padding-right: 4px !important; } .pad-h-5 { padding-left: 5px !important; padding-right: 5px !important; } .pad-h-6 { padding-left: 6px !important; padding-right: 6px !important; } .pad-h-7 { padding-left: 7px !important; padding-right: 7px !important; } .pad-h-8 { padding-left: 8px !important; padding-right: 8px !important; } .pad-h-9 { padding-left: 9px !important; padding-right: 9px !important; } .pad-h-10 { padding-left: 10px !important; padding-right: 10px !important; } .pad-h-11 { padding-left: 11px !important; padding-right: 11px !important; } .pad-h-12 { padding-left: 12px !important; padding-right: 12px !important; } .pad-h-13 { padding-left: 13px !important; padding-right: 13px !important; } .pad-h-14 { padding-left: 14px !important; padding-right: 14px !important; } .pad-h-15 { padding-left: 15px !important; padding-right: 15px !important; } .pad-h-16 { padding-left: 16px !important; padding-right: 16px !important; } .pad-h-17 { padding-left: 17px !important; padding-right: 17px !important; } .pad-h-18 { padding-left: 18px !important; padding-right: 18px !important; } .pad-h-19 { padding-left: 19px !important; padding-right: 19px !important; } .pad-h-20 { padding-left: 20px !important; padding-right: 20px !important; } .pad-h-21 { padding-left: 21px !important; padding-right: 21px !important; } .pad-h-22 { padding-left: 22px !important; padding-right: 22px !important; } .pad-h-23 { padding-left: 23px !important; padding-right: 23px !important; } .pad-h-24 { padding-left: 24px !important; padding-right: 24px !important; } .pad-h-25 { padding-left: 25px !important; padding-right: 25px !important; } .pad-h-26 { padding-left: 26px !important; padding-right: 26px !important; } .pad-h-27 { padding-left: 27px !important; padding-right: 27px !important; } .pad-h-28 { padding-left: 28px !important; padding-right: 28px !important; } .pad-h-29 { padding-left: 29px !important; padding-right: 29px !important; } .pad-h-30 { padding-left: 30px !important; padding-right: 30px !important; } .pad-h-31 { padding-left: 31px !important; padding-right: 31px !important; } .pad-h-32 { padding-left: 32px !important; padding-right: 32px !important; } .pad-h-33 { padding-left: 33px !important; padding-right: 33px !important; } .pad-h-34 { padding-left: 34px !important; padding-right: 34px !important; } .pad-h-35 { padding-left: 35px !important; padding-right: 35px !important; } .pad-h-36 { padding-left: 36px !important; padding-right: 36px !important; } .pad-h-37 { padding-left: 37px !important; padding-right: 37px !important; } .pad-h-38 { padding-left: 38px !important; padding-right: 38px !important; } .pad-h-39 { padding-left: 39px !important; padding-right: 39px !important; } .pad-h-40 { padding-left: 40px !important; padding-right: 40px !important; } .pad-h-41 { padding-left: 41px !important; padding-right: 41px !important; } .pad-h-42 { padding-left: 42px !important; padding-right: 42px !important; } .pad-h-43 { padding-left: 43px !important; padding-right: 43px !important; } .pad-h-44 { padding-left: 44px !important; padding-right: 44px !important; } .pad-h-45 { padding-left: 45px !important; padding-right: 45px !important; } .pad-h-46 { padding-left: 46px !important; padding-right: 46px !important; } .pad-h-47 { padding-left: 47px !important; padding-right: 47px !important; } .pad-h-48 { padding-left: 48px !important; padding-right: 48px !important; } .pad-h-49 { padding-left: 49px !important; padding-right: 49px !important; } .pad-h-50 { padding-left: 50px !important; padding-right: 50px !important; } .pad-h-51 { padding-left: 51px !important; padding-right: 51px !important; } .pad-h-52 { padding-left: 52px !important; padding-right: 52px !important; } .pad-h-53 { padding-left: 53px !important; padding-right: 53px !important; } .pad-h-54 { padding-left: 54px !important; padding-right: 54px !important; } .pad-h-55 { padding-left: 55px !important; padding-right: 55px !important; } .pad-h-56 { padding-left: 56px !important; padding-right: 56px !important; } .pad-h-57 { padding-left: 57px !important; padding-right: 57px !important; } .pad-h-58 { padding-left: 58px !important; padding-right: 58px !important; } .pad-h-59 { padding-left: 59px !important; padding-right: 59px !important; } .pad-h-60 { padding-left: 60px !important; padding-right: 60px !important; } .pad-h-61 { padding-left: 61px !important; padding-right: 61px !important; } .pad-h-62 { padding-left: 62px !important; padding-right: 62px !important; } .pad-h-63 { padding-left: 63px !important; padding-right: 63px !important; } .pad-h-64 { padding-left: 64px !important; padding-right: 64px !important; } .pad-h-65 { padding-left: 65px !important; padding-right: 65px !important; } .pad-h-66 { padding-left: 66px !important; padding-right: 66px !important; } .pad-h-67 { padding-left: 67px !important; padding-right: 67px !important; } .pad-h-68 { padding-left: 68px !important; padding-right: 68px !important; } .pad-h-69 { padding-left: 69px !important; padding-right: 69px !important; } .pad-h-70 { padding-left: 70px !important; padding-right: 70px !important; } .pad-h-71 { padding-left: 71px !important; padding-right: 71px !important; } .pad-h-72 { padding-left: 72px !important; padding-right: 72px !important; } .pad-h-73 { padding-left: 73px !important; padding-right: 73px !important; } .pad-h-74 { padding-left: 74px !important; padding-right: 74px !important; } .pad-h-75 { padding-left: 75px !important; padding-right: 75px !important; } .pad-h-76 { padding-left: 76px !important; padding-right: 76px !important; } .pad-h-77 { padding-left: 77px !important; padding-right: 77px !important; } .pad-h-78 { padding-left: 78px !important; padding-right: 78px !important; } .pad-h-79 { padding-left: 79px !important; padding-right: 79px !important; } .pad-h-80 { padding-left: 80px !important; padding-right: 80px !important; } .pad-h-81 { padding-left: 81px !important; padding-right: 81px !important; } .pad-h-82 { padding-left: 82px !important; padding-right: 82px !important; } .pad-h-83 { padding-left: 83px !important; padding-right: 83px !important; } .pad-h-84 { padding-left: 84px !important; padding-right: 84px !important; } .pad-h-85 { padding-left: 85px !important; padding-right: 85px !important; } .pad-h-86 { padding-left: 86px !important; padding-right: 86px !important; } .pad-h-87 { padding-left: 87px !important; padding-right: 87px !important; } .pad-h-88 { padding-left: 88px !important; padding-right: 88px !important; } .pad-h-89 { padding-left: 89px !important; padding-right: 89px !important; } .pad-h-90 { padding-left: 90px !important; padding-right: 90px !important; } .pad-h-91 { padding-left: 91px !important; padding-right: 91px !important; } .pad-h-92 { padding-left: 92px !important; padding-right: 92px !important; } .pad-h-93 { padding-left: 93px !important; padding-right: 93px !important; } .pad-h-94 { padding-left: 94px !important; padding-right: 94px !important; } .pad-h-95 { padding-left: 95px !important; padding-right: 95px !important; } .pad-h-96 { padding-left: 96px !important; padding-right: 96px !important; } .pad-h-97 { padding-left: 97px !important; padding-right: 97px !important; } .pad-h-98 { padding-left: 98px !important; padding-right: 98px !important; } .pad-h-99 { padding-left: 99px !important; padding-right: 99px !important; } .pad-h-100 { padding-left: 100px !important; padding-right: 100px !important; } .percent1 { width: 1% !important; } .percent2 { width: 2% !important; } .percent3 { width: 3% !important; } .percent4 { width: 4% !important; } .percent5 { width: 5% !important; } .percent6 { width: 6% !important; } .percent7 { width: 7% !important; } .percent8 { width: 8% !important; } .percent9 { width: 9% !important; } .percent10 { width: 10% !important; } .percent11 { width: 11% !important; } .percent12 { width: 12% !important; } .percent13 { width: 13% !important; } .percent14 { width: 14% !important; } .percent15 { width: 15% !important; } .percent16 { width: 16% !important; } .percent17 { width: 17% !important; } .percent18 { width: 18% !important; } .percent19 { width: 19% !important; } .percent20 { width: 20% !important; } .percent21 { width: 21% !important; } .percent22 { width: 22% !important; } .percent23 { width: 23% !important; } .percent24 { width: 24% !important; } .percent25 { width: 25% !important; } .percent26 { width: 26% !important; } .percent27 { width: 27% !important; } .percent28 { width: 28% !important; } .percent29 { width: 29% !important; } .percent30 { width: 30% !important; } .percent31 { width: 31% !important; } .percent32 { width: 32% !important; } .percent33 { width: 33% !important; } .percent34 { width: 34% !important; } .percent35 { width: 35% !important; } .percent36 { width: 36% !important; } .percent37 { width: 37% !important; } .percent38 { width: 38% !important; } .percent39 { width: 39% !important; } .percent40 { width: 40% !important; } .percent41 { width: 41% !important; } .percent42 { width: 42% !important; } .percent43 { width: 43% !important; } .percent44 { width: 44% !important; } .percent45 { width: 45% !important; } .percent46 { width: 46% !important; } .percent47 { width: 47% !important; } .percent48 { width: 48% !important; } .percent49 { width: 49% !important; } .percent50 { width: 50% !important; } .percent51 { width: 51% !important; } .percent52 { width: 52% !important; } .percent53 { width: 53% !important; } .percent54 { width: 54% !important; } .percent55 { width: 55% !important; } .percent56 { width: 56% !important; } .percent57 { width: 57% !important; } .percent58 { width: 58% !important; } .percent59 { width: 59% !important; } .percent60 { width: 60% !important; } .percent61 { width: 61% !important; } .percent62 { width: 62% !important; } .percent63 { width: 63% !important; } .percent64 { width: 64% !important; } .percent65 { width: 65% !important; } .percent66 { width: 66% !important; } .percent67 { width: 67% !important; } .percent68 { width: 68% !important; } .percent69 { width: 69% !important; } .percent70 { width: 70% !important; } .percent71 { width: 71% !important; } .percent72 { width: 72% !important; } .percent73 { width: 73% !important; } .percent74 { width: 74% !important; } .percent75 { width: 75% !important; } .percent76 { width: 76% !important; } .percent77 { width: 77% !important; } .percent78 { width: 78% !important; } .percent79 { width: 79% !important; } .percent80 { width: 80% !important; } .percent81 { width: 81% !important; } .percent82 { width: 82% !important; } .percent83 { width: 83% !important; } .percent84 { width: 84% !important; } .percent85 { width: 85% !important; } .percent86 { width: 86% !important; } .percent87 { width: 87% !important; } .percent88 { width: 88% !important; } .percent89 { width: 89% !important; } .percent90 { width: 90% !important; } .percent91 { width: 91% !important; } .percent92 { width: 92% !important; } .percent93 { width: 93% !important; } .percent94 { width: 94% !important; } .percent95 { width: 95% !important; } .percent96 { width: 96% !important; } .percent97 { width: 97% !important; } .percent98 { width: 98% !important; } .percent99 { width: 99% !important; } .percent100 { width: 100% !important; } .mar-none-imp { margin: 0 !important; } .pad-none-imp { padding: 0 !important; }
public/css/default.css
body { color: #444; font-family: "Arial",sans-serif,helvetica; font-size: 13px; } :focus { outline: 0 !important; text-decoration: none; } a, [popover], [tooltip] { cursor: pointer; } [popover]:hover { text-decoration: underline; } a, a:hover, a:visited, a:focus { outline: none; color: #2b6789; } .vertical-top { vertical-align: top !important; } .vertical-bottom { vertical-align: bottom !important; } .vertical-middle { vertical-align: middle !important; } .vertical-baseline { vertical-align: baseline !important; } .vertical-text-top { vertical-align: text-top !important; } .vertical-sub { vertical-align: sub !important; } .vertical-super { vertical-align: super !important; } .auto-height { height: auto !important; } /*------------------------Ortak kullanilan siniflar------------------------*/ .ls-1 { letter-spacing: -1px; } .ls-2 { letter-spacing: -2px; } .float-left { float: left; } .float-right { float: right; } .float-none { float: none !important; } .clear { clear: both; height:0;} .clear-left { clear: left !important; } .clear-right { clear: right !important; } .text-left { text-align: left !important; } .text-right { text-align: right !important; padding-right: 4px; } .text-center { text-align: center; } .strikethrough { text-decoration: line-through; } .underline { text-decoration: underline; } .dis-block { display: block; } .in-block { display: inline-block; float: none !important; } .overflow-auto { overflow: auto !important; } .overflow-hidden { overflow: hidden !important; } .overflow-scroll { overflow: scroll !important; } .overflow-x-hidden { overflow-x: hidden !important; } .overflow-y-hidden { overflow-y: hidden !important; } .overflow-x-auto { overflow-x: auto !important; } .overflow-y-auto { overflow-y: auto !important; } .overflow-x-scroll { overflow-x: scroll !important; } .overflow-y-scroll { overflow-y: scroll !important; } .cursor-pointer { cursor: pointer; } .no-padding { padding: 0 !important; } .pos-rel { position: relative; } /*-------------------------Font Families---------------------------*/ .undefinedChr { font-family: 'Arial', Helvetica, sans-serif !important; } .undefinedChr.italic { font-style: italic !important; } .undefinedChr.light { font-weight: 300 !important; } .undefinedChr.bold { font-weight: 700 !important; } .undefinedChr.extraBold { font-weight: 800 !important; } /*-------------------------Horizontal list-------------------------*/ .horizontal { margin: 0; padding: 0; } .horizontal li { list-style-type: none; float: left; display: block; } /*-------------------------Vertical list-------------------------*/ .vertical { margin: 0; padding: 0; vertical-align: middle; } .vertical li { list-style-type: none; } .fontBold { font-weight: bold; } .lineHeightNormal { line-height: normal; } .fs9 { font-size: 9px !important; } .fs10 { font-size: 10px !important; } .fs11 { font-size: 11px !important; } .fs12 { font-size: 12px !important; } .fs13 { font-size: 13px !important; } .fs14 { font-size: 14px !important; } .fs15 { font-size: 15px !important; } .fs16 { font-size: 16px !important; } .fs17 { font-size: 17px !important; } .fs18 { font-size: 18px !important; } .fs19 { font-size: 19px !important; } .fs20 { font-size: 20px !important; } .fs21 { font-size: 21px !important; } .fs22 { font-size: 22px !important; } .fs23 { font-size: 23px !important; } .fs24 { font-size: 24px !important; } .fs25 { font-size: 25px !important; } .fs26 { font-size: 26px !important; } .fs27 { font-size: 27px !important; } .fs28 { font-size: 28px !important; } .fs29 { font-size: 29px !important; } .fs30 { font-size: 30px !important; } .fs31 { font-size: 31px !important; } .fs32 { font-size: 32px !important; } .fs33 { font-size: 33px !important; } .fs34 { font-size: 34px !important; } .fs35 { font-size: 35px !important; } .fs36 { font-size: 36px !important; } .fs40 { font-size: 40px !important; } /* 0 to 100 margins, paddings and percentages with important values*/ .margin0Auto { margin-left: auto !important; margin-right: auto !important; } .mar-0 { margin: 0 !important; } .mar-1 { margin: 1px !important; } .mar-2 { margin: 2px !important; } .mar-3 { margin: 3px !important; } .mar-4 { margin: 4px !important; } .mar-5 { margin: 5px !important; } .mar-6 { margin: 6px !important; } .mar-7 { margin: 7px !important; } .mar-8 { margin: 8px !important; } .mar-9 { margin: 9px !important; } .mar-10 { margin: 10px !important; } .mar-11 { margin: 11px !important; } .mar-12 { margin: 12px !important; } .mar-13 { margin: 13px !important; } .mar-14 { margin: 14px !important; } .mar-15 { margin: 15px !important; } .mar-16 { margin: 16px !important; } .mar-17 { margin: 17px !important; } .mar-18 { margin: 18px !important; } .mar-19 { margin: 19px !important; } .mar-20 { margin: 20px !important; } .mar-21 { margin: 21px !important; } .mar-22 { margin: 22px !important; } .mar-23 { margin: 23px !important; } .mar-24 { margin: 24px !important; } .mar-25 { margin: 25px !important; } .mar-26 { margin: 26px !important; } .mar-27 { margin: 27px !important; } .mar-28 { margin: 28px !important; } .mar-29 { margin: 29px !important; } .mar-30 { margin: 30px !important; } .mar-31 { margin: 31px !important; } .mar-32 { margin: 32px !important; } .mar-33 { margin: 33px !important; } .mar-34 { margin: 34px !important; } .mar-35 { margin: 35px !important; } .mar-36 { margin: 36px !important; } .mar-37 { margin: 37px !important; } .mar-38 { margin: 38px !important; } .mar-39 { margin: 39px !important; } .mar-40 { margin: 40px !important; } .mar-41 { margin: 41px !important; } .mar-42 { margin: 42px !important; } .mar-43 { margin: 43px !important; } .mar-44 { margin: 44px !important; } .mar-45 { margin: 45px !important; } .mar-46 { margin: 46px !important; } .mar-47 { margin: 47px !important; } .mar-48 { margin: 48px !important; } .mar-49 { margin: 49px !important; } .mar-50 { margin: 50px !important; } .mar-51 { margin: 51px !important; } .mar-52 { margin: 52px !important; } .mar-53 { margin: 53px !important; } .mar-54 { margin: 54px !important; } .mar-55 { margin: 55px !important; } .mar-56 { margin: 56px !important; } .mar-57 { margin: 57px !important; } .mar-58 { margin: 58px !important; } .mar-59 { margin: 59px !important; } .mar-60 { margin: 60px !important; } .mar-61 { margin: 61px !important; } .mar-62 { margin: 62px !important; } .mar-63 { margin: 63px !important; } .mar-64 { margin: 64px !important; } .mar-65 { margin: 65px !important; } .mar-66 { margin: 66px !important; } .mar-67 { margin: 67px !important; } .mar-68 { margin: 68px !important; } .mar-69 { margin: 69px !important; } .mar-70 { margin: 70px !important; } .mar-71 { margin: 71px !important; } .mar-72 { margin: 72px !important; } .mar-73 { margin: 73px !important; } .mar-74 { margin: 74px !important; } .mar-75 { margin: 75px !important; } .mar-76 { margin: 76px !important; } .mar-77 { margin: 77px !important; } .mar-78 { margin: 78px !important; } .mar-79 { margin: 79px !important; } .mar-80 { margin: 80px !important; } .mar-81 { margin: 81px !important; } .mar-82 { margin: 82px !important; } .mar-83 { margin: 83px !important; } .mar-84 { margin: 84px !important; } .mar-85 { margin: 85px !important; } .mar-86 { margin: 86px !important; } .mar-87 { margin: 87px !important; } .mar-88 { margin: 88px !important; } .mar-89 { margin: 89px !important; } .mar-90 { margin: 90px !important; } .mar-91 { margin: 91px !important; } .mar-92 { margin: 92px !important; } .mar-93 { margin: 93px !important; } .mar-94 { margin: 94px !important; } .mar-95 { margin: 95px !important; } .mar-96 { margin: 96px !important; } .mar-97 { margin: 97px !important; } .mar-98 { margin: 98px !important; } .mar-99 { margin: 99px !important; } .mar-100 { margin: 100px !important; } .mar-t-0 { margin-top: 0 !important; } .mar-t-1 { margin-top: 1px !important; } .mar-t-2 { margin-top: 2px !important; } .mar-t-3 { margin-top: 3px !important; } .mar-t-4 { margin-top: 4px !important; } .mar-t-5 { margin-top: 5px !important; } .mar-t-6 { margin-top: 6px !important; } .mar-t-7 { margin-top: 7px !important; } .mar-t-8 { margin-top: 8px !important; } .mar-t-9 { margin-top: 9px !important; } .mar-t-10 { margin-top: 10px !important; } .mar-t-11 { margin-top: 11px !important; } .mar-t-12 { margin-top: 12px !important; } .mar-t-13 { margin-top: 13px !important; } .mar-t-14 { margin-top: 14px !important; } .mar-t-15 { margin-top: 15px !important; } .mar-t-16 { margin-top: 16px !important; } .mar-t-17 { margin-top: 17px !important; } .mar-t-18 { margin-top: 18px !important; } .mar-t-19 { margin-top: 19px !important; } .mar-t-20 { margin-top: 20px !important; } .mar-t-21 { margin-top: 21px !important; } .mar-t-22 { margin-top: 22px !important; } .mar-t-23 { margin-top: 23px !important; } .mar-t-24 { margin-top: 24px !important; } .mar-t-25 { margin-top: 25px !important; } .mar-t-26 { margin-top: 26px !important; } .mar-t-27 { margin-top: 27px !important; } .mar-t-28 { margin-top: 28px !important; } .mar-t-29 { margin-top: 29px !important; } .mar-t-30 { margin-top: 30px !important; } .mar-t-31 { margin-top: 31px !important; } .mar-t-32 { margin-top: 32px !important; } .mar-t-33 { margin-top: 33px !important; } .mar-t-34 { margin-top: 34px !important; } .mar-t-35 { margin-top: 35px !important; } .mar-t-36 { margin-top: 36px !important; } .mar-t-37 { margin-top: 37px !important; } .mar-t-38 { margin-top: 38px !important; } .mar-t-39 { margin-top: 39px !important; } .mar-t-40 { margin-top: 40px !important; } .mar-t-41 { margin-top: 41px !important; } .mar-t-42 { margin-top: 42px !important; } .mar-t-43 { margin-top: 43px !important; } .mar-t-44 { margin-top: 44px !important; } .mar-t-45 { margin-top: 45px !important; } .mar-t-46 { margin-top: 46px !important; } .mar-t-47 { margin-top: 47px !important; } .mar-t-48 { margin-top: 48px !important; } .mar-t-49 { margin-top: 49px !important; } .mar-t-50 { margin-top: 50px !important; } .mar-t-51 { margin-top: 51px !important; } .mar-t-52 { margin-top: 52px !important; } .mar-t-53 { margin-top: 53px !important; } .mar-t-54 { margin-top: 54px !important; } .mar-t-55 { margin-top: 55px !important; } .mar-t-56 { margin-top: 56px !important; } .mar-t-57 { margin-top: 57px !important; } .mar-t-58 { margin-top: 58px !important; } .mar-t-59 { margin-top: 59px !important; } .mar-t-60 { margin-top: 60px !important; } .mar-t-61 { margin-top: 61px !important; } .mar-t-62 { margin-top: 62px !important; } .mar-t-63 { margin-top: 63px !important; } .mar-t-64 { margin-top: 64px !important; } .mar-t-65 { margin-top: 65px !important; } .mar-t-66 { margin-top: 66px !important; } .mar-t-67 { margin-top: 67px !important; } .mar-t-68 { margin-top: 68px !important; } .mar-t-69 { margin-top: 69px !important; } .mar-t-70 { margin-top: 70px !important; } .mar-t-71 { margin-top: 71px !important; } .mar-t-72 { margin-top: 72px !important; } .mar-t-73 { margin-top: 73px !important; } .mar-t-74 { margin-top: 74px !important; } .mar-t-75 { margin-top: 75px !important; } .mar-t-76 { margin-top: 76px !important; } .mar-t-77 { margin-top: 77px !important; } .mar-t-78 { margin-top: 78px !important; } .mar-t-79 { margin-top: 79px !important; } .mar-t-80 { margin-top: 80px !important; } .mar-t-81 { margin-top: 81px !important; } .mar-t-82 { margin-top: 82px !important; } .mar-t-83 { margin-top: 83px !important; } .mar-t-84 { margin-top: 84px !important; } .mar-t-85 { margin-top: 85px !important; } .mar-t-86 { margin-top: 86px !important; } .mar-t-87 { margin-top: 87px !important; } .mar-t-88 { margin-top: 88px !important; } .mar-t-89 { margin-top: 89px !important; } .mar-t-90 { margin-top: 90px !important; } .mar-t-91 { margin-top: 91px !important; } .mar-t-92 { margin-top: 92px !important; } .mar-t-93 { margin-top: 93px !important; } .mar-t-94 { margin-top: 94px !important; } .mar-t-95 { margin-top: 95px !important; } .mar-t-96 { margin-top: 96px !important; } .mar-t-97 { margin-top: 97px !important; } .mar-t-98 { margin-top: 98px !important; } .mar-t-99 { margin-top: 99px !important; } .mar-t-100 { margin-top: 100px !important; } .mar-r-0 { margin-right: 0 !important; } .mar-r-1 { margin-right: 1px !important; } .mar-r-2 { margin-right: 2px !important; } .mar-r-3 { margin-right: 3px !important; } .mar-r-4 { margin-right: 4px !important; } .mar-r-5 { margin-right: 5px !important; } .mar-r-6 { margin-right: 6px !important; } .mar-r-7 { margin-right: 7px !important; } .mar-r-8 { margin-right: 8px !important; } .mar-r-9 { margin-right: 9px !important; } .mar-r-10 { margin-right: 10px !important; } .mar-r-11 { margin-right: 11px !important; } .mar-r-12 { margin-right: 12px !important; } .mar-r-13 { margin-right: 13px !important; } .mar-r-14 { margin-right: 14px !important; } .mar-r-15 { margin-right: 15px !important; } .mar-r-16 { margin-right: 16px !important; } .mar-r-17 { margin-right: 17px !important; } .mar-r-18 { margin-right: 18px !important; } .mar-r-19 { margin-right: 19px !important; } .mar-r-20 { margin-right: 20px !important; } .mar-r-21 { margin-right: 21px !important; } .mar-r-22 { margin-right: 22px !important; } .mar-r-23 { margin-right: 23px !important; } .mar-r-24 { margin-right: 24px !important; } .mar-r-25 { margin-right: 25px !important; } .mar-r-26 { margin-right: 26px !important; } .mar-r-27 { margin-right: 27px !important; } .mar-r-28 { margin-right: 28px !important; } .mar-r-29 { margin-right: 29px !important; } .mar-r-30 { margin-right: 30px !important; } .mar-r-31 { margin-right: 31px !important; } .mar-r-32 { margin-right: 32px !important; } .mar-r-33 { margin-right: 33px !important; } .mar-r-34 { margin-right: 34px !important; } .mar-r-35 { margin-right: 35px !important; } .mar-r-36 { margin-right: 36px !important; } .mar-r-37 { margin-right: 37px !important; } .mar-r-38 { margin-right: 38px !important; } .mar-r-39 { margin-right: 39px !important; } .mar-r-40 { margin-right: 40px !important; } .mar-r-41 { margin-right: 41px !important; } .mar-r-42 { margin-right: 42px !important; } .mar-r-43 { margin-right: 43px !important; } .mar-r-44 { margin-right: 44px !important; } .mar-r-45 { margin-right: 45px !important; } .mar-r-46 { margin-right: 46px !important; } .mar-r-47 { margin-right: 47px !important; } .mar-r-48 { margin-right: 48px !important; } .mar-r-49 { margin-right: 49px !important; } .mar-r-50 { margin-right: 50px !important; } .mar-r-51 { margin-right: 51px !important; } .mar-r-52 { margin-right: 52px !important; } .mar-r-53 { margin-right: 53px !important; } .mar-r-54 { margin-right: 54px !important; } .mar-r-55 { margin-right: 55px !important; } .mar-r-56 { margin-right: 56px !important; } .mar-r-57 { margin-right: 57px !important; } .mar-r-58 { margin-right: 58px !important; } .mar-r-59 { margin-right: 59px !important; } .mar-r-60 { margin-right: 60px !important; } .mar-r-61 { margin-right: 61px !important; } .mar-r-62 { margin-right: 62px !important; } .mar-r-63 { margin-right: 63px !important; } .mar-r-64 { margin-right: 64px !important; } .mar-r-65 { margin-right: 65px !important; } .mar-r-66 { margin-right: 66px !important; } .mar-r-67 { margin-right: 67px !important; } .mar-r-68 { margin-right: 68px !important; } .mar-r-69 { margin-right: 69px !important; } .mar-r-70 { margin-right: 70px !important; } .mar-r-71 { margin-right: 71px !important; } .mar-r-72 { margin-right: 72px !important; } .mar-r-73 { margin-right: 73px !important; } .mar-r-74 { margin-right: 74px !important; } .mar-r-75 { margin-right: 75px !important; } .mar-r-76 { margin-right: 76px !important; } .mar-r-77 { margin-right: 77px !important; } .mar-r-78 { margin-right: 78px !important; } .mar-r-79 { margin-right: 79px !important; } .mar-r-80 { margin-right: 80px !important; } .mar-r-81 { margin-right: 81px !important; } .mar-r-82 { margin-right: 82px !important; } .mar-r-83 { margin-right: 83px !important; } .mar-r-84 { margin-right: 84px !important; } .mar-r-85 { margin-right: 85px !important; } .mar-r-86 { margin-right: 86px !important; } .mar-r-87 { margin-right: 87px !important; } .mar-r-88 { margin-right: 88px !important; } .mar-r-89 { margin-right: 89px !important; } .mar-r-90 { margin-right: 90px !important; } .mar-r-91 { margin-right: 91px !important; } .mar-r-92 { margin-right: 92px !important; } .mar-r-93 { margin-right: 93px !important; } .mar-r-94 { margin-right: 94px !important; } .mar-r-95 { margin-right: 95px !important; } .mar-r-96 { margin-right: 96px !important; } .mar-r-97 { margin-right: 97px !important; } .mar-r-98 { margin-right: 98px !important; } .mar-r-99 { margin-right: 99px !important; } .mar-r-100 { margin-right: 100px !important; } .mar-b-0 { margin-bottom: 0 !important; } .mar-b-1 { margin-bottom: 1px !important; } .mar-b-2 { margin-bottom: 2px !important; } .mar-b-3 { margin-bottom: 3px !important; } .mar-b-4 { margin-bottom: 4px !important; } .mar-b-5 { margin-bottom: 5px !important; } .mar-b-6 { margin-bottom: 6px !important; } .mar-b-7 { margin-bottom: 7px !important; } .mar-b-8 { margin-bottom: 8px !important; } .mar-b-9 { margin-bottom: 9px !important; } .mar-b-10 { margin-bottom: 10px !important; } .mar-b-11 { margin-bottom: 11px !important; } .mar-b-12 { margin-bottom: 12px !important; } .mar-b-13 { margin-bottom: 13px !important; } .mar-b-14 { margin-bottom: 14px !important; } .mar-b-15 { margin-bottom: 15px !important; } .mar-b-16 { margin-bottom: 16px !important; } .mar-b-17 { margin-bottom: 17px !important; } .mar-b-18 { margin-bottom: 18px !important; } .mar-b-19 { margin-bottom: 19px !important; } .mar-b-20 { margin-bottom: 20px !important; } .mar-b-21 { margin-bottom: 21px !important; } .mar-b-22 { margin-bottom: 22px !important; } .mar-b-23 { margin-bottom: 23px !important; } .mar-b-24 { margin-bottom: 24px !important; } .mar-b-25 { margin-bottom: 25px !important; } .mar-b-26 { margin-bottom: 26px !important; } .mar-b-27 { margin-bottom: 27px !important; } .mar-b-28 { margin-bottom: 28px !important; } .mar-b-29 { margin-bottom: 29px !important; } .mar-b-30 { margin-bottom: 30px !important; } .mar-b-31 { margin-bottom: 31px !important; } .mar-b-32 { margin-bottom: 32px !important; } .mar-b-33 { margin-bottom: 33px !important; } .mar-b-34 { margin-bottom: 34px !important; } .mar-b-35 { margin-bottom: 35px !important; } .mar-b-36 { margin-bottom: 36px !important; } .mar-b-37 { margin-bottom: 37px !important; } .mar-b-38 { margin-bottom: 38px !important; } .mar-b-39 { margin-bottom: 39px !important; } .mar-b-40 { margin-bottom: 40px !important; } .mar-b-41 { margin-bottom: 41px !important; } .mar-b-42 { margin-bottom: 42px !important; } .mar-b-43 { margin-bottom: 43px !important; } .mar-b-44 { margin-bottom: 44px !important; } .mar-b-45 { margin-bottom: 45px !important; } .mar-b-46 { margin-bottom: 46px !important; } .mar-b-47 { margin-bottom: 47px !important; } .mar-b-48 { margin-bottom: 48px !important; } .mar-b-49 { margin-bottom: 49px !important; } .mar-b-50 { margin-bottom: 50px !important; } .mar-b-51 { margin-bottom: 51px !important; } .mar-b-52 { margin-bottom: 52px !important; } .mar-b-53 { margin-bottom: 53px !important; } .mar-b-54 { margin-bottom: 54px !important; } .mar-b-55 { margin-bottom: 55px !important; } .mar-b-56 { margin-bottom: 56px !important; } .mar-b-57 { margin-bottom: 57px !important; } .mar-b-58 { margin-bottom: 58px !important; } .mar-b-59 { margin-bottom: 59px !important; } .mar-b-60 { margin-bottom: 60px !important; } .mar-b-61 { margin-bottom: 61px !important; } .mar-b-62 { margin-bottom: 62px !important; } .mar-b-63 { margin-bottom: 63px !important; } .mar-b-64 { margin-bottom: 64px !important; } .mar-b-65 { margin-bottom: 65px !important; } .mar-b-66 { margin-bottom: 66px !important; } .mar-b-67 { margin-bottom: 67px !important; } .mar-b-68 { margin-bottom: 68px !important; } .mar-b-69 { margin-bottom: 69px !important; } .mar-b-70 { margin-bottom: 70px !important; } .mar-b-71 { margin-bottom: 71px !important; } .mar-b-72 { margin-bottom: 72px !important; } .mar-b-73 { margin-bottom: 73px !important; } .mar-b-74 { margin-bottom: 74px !important; } .mar-b-75 { margin-bottom: 75px !important; } .mar-b-76 { margin-bottom: 76px !important; } .mar-b-77 { margin-bottom: 77px !important; } .mar-b-78 { margin-bottom: 78px !important; } .mar-b-79 { margin-bottom: 79px !important; } .mar-b-80 { margin-bottom: 80px !important; } .mar-b-81 { margin-bottom: 81px !important; } .mar-b-82 { margin-bottom: 82px !important; } .mar-b-83 { margin-bottom: 83px !important; } .mar-b-84 { margin-bottom: 84px !important; } .mar-b-85 { margin-bottom: 85px !important; } .mar-b-86 { margin-bottom: 86px !important; } .mar-b-87 { margin-bottom: 87px !important; } .mar-b-88 { margin-bottom: 88px !important; } .mar-b-89 { margin-bottom: 89px !important; } .mar-b-90 { margin-bottom: 90px !important; } .mar-b-91 { margin-bottom: 91px !important; } .mar-b-92 { margin-bottom: 92px !important; } .mar-b-93 { margin-bottom: 93px !important; } .mar-b-94 { margin-bottom: 94px !important; } .mar-b-95 { margin-bottom: 95px !important; } .mar-b-96 { margin-bottom: 96px !important; } .mar-b-97 { margin-bottom: 97px !important; } .mar-b-98 { margin-bottom: 98px !important; } .mar-b-99 { margin-bottom: 99px !important; } .mar-b-100 { margin-bottom: 100px !important; } .mar-l-0 { margin-left: 0 !important; } .mar-l-1 { margin-left: 1px !important; } .mar-l-2 { margin-left: 2px !important; } .mar-l-3 { margin-left: 3px !important; } .mar-l-4 { margin-left: 4px !important; } .mar-l-5 { margin-left: 5px !important; } .mar-l-6 { margin-left: 6px !important; } .mar-l-7 { margin-left: 7px !important; } .mar-l-8 { margin-left: 8px !important; } .mar-l-9 { margin-left: 9px !important; } .mar-l-10 { margin-left: 10px !important; } .mar-l-11 { margin-left: 11px !important; } .mar-l-12 { margin-left: 12px !important; } .mar-l-13 { margin-left: 13px !important; } .mar-l-14 { margin-left: 14px !important; } .mar-l-15 { margin-left: 15px !important; } .mar-l-16 { margin-left: 16px !important; } .mar-l-17 { margin-left: 17px !important; } .mar-l-18 { margin-left: 18px !important; } .mar-l-19 { margin-left: 19px !important; } .mar-l-20 { margin-left: 20px !important; } .mar-l-21 { margin-left: 21px !important; } .mar-l-22 { margin-left: 22px !important; } .mar-l-23 { margin-left: 23px !important; } .mar-l-24 { margin-left: 24px !important; } .mar-l-25 { margin-left: 25px !important; } .mar-l-26 { margin-left: 26px !important; } .mar-l-27 { margin-left: 27px !important; } .mar-l-28 { margin-left: 28px !important; } .mar-l-29 { margin-left: 29px !important; } .mar-l-30 { margin-left: 30px !important; } .mar-l-31 { margin-left: 31px !important; } .mar-l-32 { margin-left: 32px !important; } .mar-l-33 { margin-left: 33px !important; } .mar-l-34 { margin-left: 34px !important; } .mar-l-35 { margin-left: 35px !important; } .mar-l-36 { margin-left: 36px !important; } .mar-l-37 { margin-left: 37px !important; } .mar-l-38 { margin-left: 38px !important; } .mar-l-39 { margin-left: 39px !important; } .mar-l-40 { margin-left: 40px !important; } .mar-l-41 { margin-left: 41px !important; } .mar-l-42 { margin-left: 42px !important; } .mar-l-43 { margin-left: 43px !important; } .mar-l-44 { margin-left: 44px !important; } .mar-l-45 { margin-left: 45px !important; } .mar-l-46 { margin-left: 46px !important; } .mar-l-47 { margin-left: 47px !important; } .mar-l-48 { margin-left: 48px !important; } .mar-l-49 { margin-left: 49px !important; } .mar-l-50 { margin-left: 50px !important; } .mar-l-51 { margin-left: 51px !important; } .mar-l-52 { margin-left: 52px !important; } .mar-l-53 { margin-left: 53px !important; } .mar-l-54 { margin-left: 54px !important; } .mar-l-55 { margin-left: 55px !important; } .mar-l-56 { margin-left: 56px !important; } .mar-l-57 { margin-left: 57px !important; } .mar-l-58 { margin-left: 58px !important; } .mar-l-59 { margin-left: 59px !important; } .mar-l-60 { margin-left: 60px !important; } .mar-l-61 { margin-left: 61px !important; } .mar-l-62 { margin-left: 62px !important; } .mar-l-63 { margin-left: 63px !important; } .mar-l-64 { margin-left: 64px !important; } .mar-l-65 { margin-left: 65px !important; } .mar-l-66 { margin-left: 66px !important; } .mar-l-67 { margin-left: 67px !important; } .mar-l-68 { margin-left: 68px !important; } .mar-l-69 { margin-left: 69px !important; } .mar-l-70 { margin-left: 70px !important; } .mar-l-71 { margin-left: 71px !important; } .mar-l-72 { margin-left: 72px !important; } .mar-l-73 { margin-left: 73px !important; } .mar-l-74 { margin-left: 74px !important; } .mar-l-75 { margin-left: 75px !important; } .mar-l-76 { margin-left: 76px !important; } .mar-l-77 { margin-left: 77px !important; } .mar-l-78 { margin-left: 78px !important; } .mar-l-79 { margin-left: 79px !important; } .mar-l-80 { margin-left: 80px !important; } .mar-l-81 { margin-left: 81px !important; } .mar-l-82 { margin-left: 82px !important; } .mar-l-83 { margin-left: 83px !important; } .mar-l-84 { margin-left: 84px !important; } .mar-l-85 { margin-left: 85px !important; } .mar-l-86 { margin-left: 86px !important; } .mar-l-87 { margin-left: 87px !important; } .mar-l-88 { margin-left: 88px !important; } .mar-l-89 { margin-left: 89px !important; } .mar-l-90 { margin-left: 90px !important; } .mar-l-91 { margin-left: 91px !important; } .mar-l-92 { margin-left: 92px !important; } .mar-l-93 { margin-left: 93px !important; } .mar-l-94 { margin-left: 94px !important; } .mar-l-95 { margin-left: 95px !important; } .mar-l-96 { margin-left: 96px !important; } .mar-l-97 { margin-left: 97px !important; } .mar-l-98 { margin-left: 98px !important; } .mar-l-99 { margin-left: 99px !important; } .mar-l-100 { margin-left: 100px !important; } .mar-v-1 { margin: 1px 0 !important; } .mar-v-2 { margin: 2px 0 !important; } .mar-v-3 { margin: 3px 0 !important; } .mar-v-4 { margin: 4px 0 !important; } .mar-v-5 { margin: 5px 0 !important; } .mar-v-6 { margin: 6px 0 !important; } .mar-v-7 { margin: 7px 0 !important; } .mar-v-8 { margin: 8px 0 !important; } .mar-v-9 { margin: 9px 0 !important; } .mar-v-10 { margin: 10px 0 !important; } .mar-v-11 { margin: 11px 0 !important; } .mar-v-12 { margin: 12px 0 !important; } .mar-v-13 { margin: 13px 0 !important; } .mar-v-14 { margin: 14px 0 !important; } .mar-v-15 { margin: 15px 0 !important; } .mar-v-16 { margin: 16px 0 !important; } .mar-v-17 { margin: 17px 0 !important; } .mar-v-18 { margin: 18px 0 !important; } .mar-v-19 { margin: 19px 0 !important; } .mar-v-20 { margin: 20px 0 !important; } .mar-v-21 { margin: 21px 0 !important; } .mar-v-22 { margin: 22px 0 !important; } .mar-v-23 { margin: 23px 0 !important; } .mar-v-24 { margin: 24px 0 !important; } .mar-v-25 { margin: 25px 0 !important; } .mar-v-26 { margin: 26px 0 !important; } .mar-v-27 { margin: 27px 0 !important; } .mar-v-28 { margin: 28px 0 !important; } .mar-v-29 { margin: 29px 0 !important; } .mar-v-30 { margin: 30px 0 !important; } .mar-v-31 { margin: 31px 0 !important; } .mar-v-32 { margin: 32px 0 !important; } .mar-v-33 { margin: 33px 0 !important; } .mar-v-34 { margin: 34px 0 !important; } .mar-v-35 { margin: 35px 0 !important; } .mar-v-36 { margin: 36px 0 !important; } .mar-v-37 { margin: 37px 0 !important; } .mar-v-38 { margin: 38px 0 !important; } .mar-v-39 { margin: 39px 0 !important; } .mar-v-40 { margin: 40px 0 !important; } .mar-v-41 { margin: 41px 0 !important; } .mar-v-42 { margin: 42px 0 !important; } .mar-v-43 { margin: 43px 0 !important; } .mar-v-44 { margin: 44px 0 !important; } .mar-v-45 { margin: 45px 0 !important; } .mar-v-46 { margin: 46px 0 !important; } .mar-v-47 { margin: 47px 0 !important; } .mar-v-48 { margin: 48px 0 !important; } .mar-v-49 { margin: 49px 0 !important; } .mar-v-50 { margin: 50px 0 !important; } .mar-v-51 { margin: 51px 0 !important; } .mar-v-52 { margin: 52px 0 !important; } .mar-v-53 { margin: 53px 0 !important; } .mar-v-54 { margin: 54px 0 !important; } .mar-v-55 { margin: 55px 0 !important; } .mar-v-56 { margin: 56px 0 !important; } .mar-v-57 { margin: 57px 0 !important; } .mar-v-58 { margin: 58px 0 !important; } .mar-v-59 { margin: 59px 0 !important; } .mar-v-60 { margin: 60px 0 !important; } .mar-v-61 { margin: 61px 0 !important; } .mar-v-62 { margin: 62px 0 !important; } .mar-v-63 { margin: 63px 0 !important; } .mar-v-64 { margin: 64px 0 !important; } .mar-v-65 { margin: 65px 0 !important; } .mar-v-66 { margin: 66px 0 !important; } .mar-v-67 { margin: 67px 0 !important; } .mar-v-68 { margin: 68px 0 !important; } .mar-v-69 { margin: 69px 0 !important; } .mar-v-70 { margin: 70px 0 !important; } .mar-v-71 { margin: 71px 0 !important; } .mar-v-72 { margin: 72px 0 !important; } .mar-v-73 { margin: 73px 0 !important; } .mar-v-74 { margin: 74px 0 !important; } .mar-v-75 { margin: 75px 0 !important; } .mar-v-76 { margin: 76px 0 !important; } .mar-v-77 { margin: 77px 0 !important; } .mar-v-78 { margin: 78px 0 !important; } .mar-v-79 { margin: 79px 0 !important; } .mar-v-80 { margin: 80px 0 !important; } .mar-v-81 { margin: 81px 0 !important; } .mar-v-82 { margin: 82px 0 !important; } .mar-v-83 { margin: 83px 0 !important; } .mar-v-84 { margin: 84px 0 !important; } .mar-v-85 { margin: 85px 0 !important; } .mar-v-86 { margin: 86px 0 !important; } .mar-v-87 { margin: 87px 0 !important; } .mar-v-88 { margin: 88px 0 !important; } .mar-v-89 { margin: 89px 0 !important; } .mar-v-90 { margin: 90px 0 !important; } .mar-v-91 { margin: 91px 0 !important; } .mar-v-92 { margin: 92px 0 !important; } .mar-v-93 { margin: 93px 0 !important; } .mar-v-94 { margin: 94px 0 !important; } .mar-v-95 { margin: 95px 0 !important; } .mar-v-96 { margin: 96px 0 !important; } .mar-v-97 { margin: 97px 0 !important; } .mar-v-98 { margin: 98px 0 !important; } .mar-v-99 { margin: 99px 0 !important; } .mar-v-100 { margin: 100px 0 !important; } .mar-h-1 { margin: 0 1px !important; } .mar-h-2 { margin: 0 2px !important; } .mar-h-3 { margin: 0 3px !important; } .mar-h-4 { margin: 0 4px !important; } .mar-h-5 { margin: 0 5px !important; } .mar-h-6 { margin: 0 6px !important; } .mar-h-7 { margin: 0 7px !important; } .mar-h-8 { margin: 0 8px !important; } .mar-h-9 { margin: 0 9px !important; } .mar-h-10 { margin: 0 10px !important; } .mar-h-11 { margin: 0 11px !important; } .mar-h-12 { margin: 0 12px !important; } .mar-h-13 { margin: 0 13px !important; } .mar-h-14 { margin: 0 14px !important; } .mar-h-15 { margin: 0 15px !important; } .mar-h-16 { margin: 0 16px !important; } .mar-h-17 { margin: 0 17px !important; } .mar-h-18 { margin: 0 18px !important; } .mar-h-19 { margin: 0 19px !important; } .mar-h-20 { margin: 0 20px !important; } .mar-h-21 { margin: 0 21px !important; } .mar-h-22 { margin: 0 22px !important; } .mar-h-23 { margin: 0 23px !important; } .mar-h-24 { margin: 0 24px !important; } .mar-h-25 { margin: 0 25px !important; } .mar-h-26 { margin: 0 26px !important; } .mar-h-27 { margin: 0 27px !important; } .mar-h-28 { margin: 0 28px !important; } .mar-h-29 { margin: 0 29px !important; } .mar-h-30 { margin: 0 30px !important; } .mar-h-31 { margin: 0 31px !important; } .mar-h-32 { margin: 0 32px !important; } .mar-h-33 { margin: 0 33px !important; } .mar-h-34 { margin: 0 34px !important; } .mar-h-35 { margin: 0 35px !important; } .mar-h-36 { margin: 0 36px !important; } .mar-h-37 { margin: 0 37px !important; } .mar-h-38 { margin: 0 38px !important; } .mar-h-39 { margin: 0 39px !important; } .mar-h-40 { margin: 0 40px !important; } .mar-h-41 { margin: 0 41px !important; } .mar-h-42 { margin: 0 42px !important; } .mar-h-43 { margin: 0 43px !important; } .mar-h-44 { margin: 0 44px !important; } .mar-h-45 { margin: 0 45px !important; } .mar-h-46 { margin: 0 46px !important; } .mar-h-47 { margin: 0 47px !important; } .mar-h-48 { margin: 0 48px !important; } .mar-h-49 { margin: 0 49px !important; } .mar-h-50 { margin: 0 50px !important; } .mar-h-51 { margin: 0 51px !important; } .mar-h-52 { margin: 0 52px !important; } .mar-h-53 { margin: 0 53px !important; } .mar-h-54 { margin: 0 54px !important; } .mar-h-55 { margin: 0 55px !important; } .mar-h-56 { margin: 0 56px !important; } .mar-h-57 { margin: 0 57px !important; } .mar-h-58 { margin: 0 58px !important; } .mar-h-59 { margin: 0 59px !important; } .mar-h-60 { margin: 0 60px !important; } .mar-h-61 { margin: 0 61px !important; } .mar-h-62 { margin: 0 62px !important; } .mar-h-63 { margin: 0 63px !important; } .mar-h-64 { margin: 0 64px !important; } .mar-h-65 { margin: 0 65px !important; } .mar-h-66 { margin: 0 66px !important; } .mar-h-67 { margin: 0 67px !important; } .mar-h-68 { margin: 0 68px !important; } .mar-h-69 { margin: 0 69px !important; } .mar-h-70 { margin: 0 70px !important; } .mar-h-71 { margin: 0 71px !important; } .mar-h-72 { margin: 0 72px !important; } .mar-h-73 { margin: 0 73px !important; } .mar-h-74 { margin: 0 74px !important; } .mar-h-75 { margin: 0 75px !important; } .mar-h-76 { margin: 0 76px !important; } .mar-h-77 { margin: 0 77px !important; } .mar-h-78 { margin: 0 78px !important; } .mar-h-79 { margin: 0 79px !important; } .mar-h-80 { margin: 0 80px !important; } .mar-h-81 { margin: 0 81px !important; } .mar-h-82 { margin: 0 82px !important; } .mar-h-83 { margin: 0 83px !important; } .mar-h-84 { margin: 0 84px !important; } .mar-h-85 { margin: 0 85px !important; } .mar-h-86 { margin: 0 86px !important; } .mar-h-87 { margin: 0 87px !important; } .mar-h-88 { margin: 0 88px !important; } .mar-h-89 { margin: 0 89px !important; } .mar-h-90 { margin: 0 90px !important; } .mar-h-91 { margin: 0 91px !important; } .mar-h-92 { margin: 0 92px !important; } .mar-h-93 { margin: 0 93px !important; } .mar-h-94 { margin: 0 94px !important; } .mar-h-95 { margin: 0 95px !important; } .mar-h-96 { margin: 0 96px !important; } .mar-h-97 { margin: 0 97px !important; } .mar-h-98 { margin: 0 98px !important; } .mar-h-99 { margin: 0 99px !important; } .mar-h-100 { margin: 0 100px !important; } .mar-t-m-1 { margin-top: -1px !important; } .mar-t-m-2 { margin-top: -2px !important; } .mar-t-m-3 { margin-top: -3px !important; } .mar-t-m-4 { margin-top: -4px !important; } .mar-t-m-5 { margin-top: -5px !important; } .mar-t-m-6 { margin-top: -6px !important; } .mar-t-m-7 { margin-top: -7px !important; } .mar-t-m-8 { margin-top: -8px !important; } .mar-t-m-9 { margin-top: -9px !important; } .mar-t-m-10 { margin-top: -10px !important; } .mar-t-m-11 { margin-top: -11px !important; } .mar-t-m-12 { margin-top: -12px !important; } .mar-t-m-13 { margin-top: -13px !important; } .mar-t-m-14 { margin-top: -14px !important; } .mar-t-m-15 { margin-top: -15px !important; } .mar-t-m-16 { margin-top: -16px !important; } .mar-t-m-17 { margin-top: -17px !important; } .mar-t-m-18 { margin-top: -18px !important; } .mar-t-m-19 { margin-top: -19px !important; } .mar-t-m-20 { margin-top: -20px !important; } .mar-t-m-21 { margin-top: -21px !important; } .mar-t-m-22 { margin-top: -22px !important; } .mar-t-m-23 { margin-top: -23px !important; } .mar-t-m-24 { margin-top: -24px !important; } .mar-t-m-25 { margin-top: -25px !important; } .mar-t-m-26 { margin-top: -26px !important; } .mar-t-m-27 { margin-top: -27px !important; } .mar-t-m-28 { margin-top: -28px !important; } .mar-t-m-29 { margin-top: -29px !important; } .mar-t-m-30 { margin-top: -30px !important; } .mar-t-m-31 { margin-top: -31px !important; } .mar-t-m-32 { margin-top: -32px !important; } .mar-t-m-33 { margin-top: -33px !important; } .mar-t-m-34 { margin-top: -34px !important; } .mar-t-m-35 { margin-top: -35px !important; } .mar-t-m-36 { margin-top: -36px !important; } .mar-t-m-37 { margin-top: -37px !important; } .mar-t-m-38 { margin-top: -38px !important; } .mar-t-m-39 { margin-top: -39px !important; } .mar-t-m-40 { margin-top: -40px !important; } .mar-t-m-41 { margin-top: -41px !important; } .mar-t-m-42 { margin-top: -42px !important; } .mar-t-m-43 { margin-top: -43px !important; } .mar-t-m-44 { margin-top: -44px !important; } .mar-t-m-45 { margin-top: -45px !important; } .mar-t-m-46 { margin-top: -46px !important; } .mar-t-m-47 { margin-top: -47px !important; } .mar-t-m-48 { margin-top: -48px !important; } .mar-t-m-49 { margin-top: -49px !important; } .mar-t-m-50 { margin-top: -50px !important; } .mar-t-m-51 { margin-top: -51px !important; } .mar-t-m-52 { margin-top: -52px !important; } .mar-t-m-53 { margin-top: -53px !important; } .mar-t-m-54 { margin-top: -54px !important; } .mar-t-m-55 { margin-top: -55px !important; } .mar-t-m-56 { margin-top: -56px !important; } .mar-t-m-57 { margin-top: -57px !important; } .mar-t-m-58 { margin-top: -58px !important; } .mar-t-m-59 { margin-top: -59px !important; } .mar-t-m-60 { margin-top: -60px !important; } .mar-t-m-61 { margin-top: -61px !important; } .mar-t-m-62 { margin-top: -62px !important; } .mar-t-m-63 { margin-top: -63px !important; } .mar-t-m-64 { margin-top: -64px !important; } .mar-t-m-65 { margin-top: -65px !important; } .mar-t-m-66 { margin-top: -66px !important; } .mar-t-m-67 { margin-top: -67px !important; } .mar-t-m-68 { margin-top: -68px !important; } .mar-t-m-69 { margin-top: -69px !important; } .mar-t-m-70 { margin-top: -70px !important; } .mar-t-m-71 { margin-top: -71px !important; } .mar-t-m-72 { margin-top: -72px !important; } .mar-t-m-73 { margin-top: -73px !important; } .mar-t-m-74 { margin-top: -74px !important; } .mar-t-m-75 { margin-top: -75px !important; } .mar-t-m-76 { margin-top: -76px !important; } .mar-t-m-77 { margin-top: -77px !important; } .mar-t-m-78 { margin-top: -78px !important; } .mar-t-m-79 { margin-top: -79px !important; } .mar-t-m-80 { margin-top: -80px !important; } .mar-t-m-81 { margin-top: -81px !important; } .mar-t-m-82 { margin-top: -82px !important; } .mar-t-m-83 { margin-top: -83px !important; } .mar-t-m-84 { margin-top: -84px !important; } .mar-t-m-85 { margin-top: -85px !important; } .mar-t-m-86 { margin-top: -86px !important; } .mar-t-m-87 { margin-top: -87px !important; } .mar-t-m-88 { margin-top: -88px !important; } .mar-t-m-89 { margin-top: -89px !important; } .mar-t-m-90 { margin-top: -90px !important; } .mar-t-m-91 { margin-top: -91px !important; } .mar-t-m-92 { margin-top: -92px !important; } .mar-t-m-93 { margin-top: -93px !important; } .mar-t-m-94 { margin-top: -94px !important; } .mar-t-m-95 { margin-top: -95px !important; } .mar-t-m-96 { margin-top: -96px !important; } .mar-t-m-97 { margin-top: -97px !important; } .mar-t-m-98 { margin-top: -98px !important; } .mar-t-m-99 { margin-top: -99px !important; } .mar-t-m-100 { margin-top: -100px !important; } .mar-r-m-1 { margin-right: -1px !important; } .mar-r-m-2 { margin-right: -2px !important; } .mar-r-m-3 { margin-right: -3px !important; } .mar-r-m-4 { margin-right: -4px !important; } .mar-r-m-5 { margin-right: -5px !important; } .mar-r-m-6 { margin-right: -6px !important; } .mar-r-m-7 { margin-right: -7px !important; } .mar-r-m-8 { margin-right: -8px !important; } .mar-r-m-9 { margin-right: -9px !important; } .mar-r-m-10 { margin-right: -10px !important; } .mar-r-m-11 { margin-right: -11px !important; } .mar-r-m-12 { margin-right: -12px !important; } .mar-r-m-13 { margin-right: -13px !important; } .mar-r-m-14 { margin-right: -14px !important; } .mar-r-m-15 { margin-right: -15px !important; } .mar-r-m-16 { margin-right: -16px !important; } .mar-r-m-17 { margin-right: -17px !important; } .mar-r-m-18 { margin-right: -18px !important; } .mar-r-m-19 { margin-right: -19px !important; } .mar-r-m-20 { margin-right: -20px !important; } .mar-r-m-21 { margin-right: -21px !important; } .mar-r-m-22 { margin-right: -22px !important; } .mar-r-m-23 { margin-right: -23px !important; } .mar-r-m-24 { margin-right: -24px !important; } .mar-r-m-25 { margin-right: -25px !important; } .mar-r-m-26 { margin-right: -26px !important; } .mar-r-m-27 { margin-right: -27px !important; } .mar-r-m-28 { margin-right: -28px !important; } .mar-r-m-29 { margin-right: -29px !important; } .mar-r-m-30 { margin-right: -30px !important; } .mar-r-m-31 { margin-right: -31px !important; } .mar-r-m-32 { margin-right: -32px !important; } .mar-r-m-33 { margin-right: -33px !important; } .mar-r-m-34 { margin-right: -34px !important; } .mar-r-m-35 { margin-right: -35px !important; } .mar-r-m-36 { margin-right: -36px !important; } .mar-r-m-37 { margin-right: -37px !important; } .mar-r-m-38 { margin-right: -38px !important; } .mar-r-m-39 { margin-right: -39px !important; } .mar-r-m-40 { margin-right: -40px !important; } .mar-r-m-41 { margin-right: -41px !important; } .mar-r-m-42 { margin-right: -42px !important; } .mar-r-m-43 { margin-right: -43px !important; } .mar-r-m-44 { margin-right: -44px !important; } .mar-r-m-45 { margin-right: -45px !important; } .mar-r-m-46 { margin-right: -46px !important; } .mar-r-m-47 { margin-right: -47px !important; } .mar-r-m-48 { margin-right: -48px !important; } .mar-r-m-49 { margin-right: -49px !important; } .mar-r-m-50 { margin-right: -50px !important; } .mar-r-m-51 { margin-right: -51px !important; } .mar-r-m-52 { margin-right: -52px !important; } .mar-r-m-53 { margin-right: -53px !important; } .mar-r-m-54 { margin-right: -54px !important; } .mar-r-m-55 { margin-right: -55px !important; } .mar-r-m-56 { margin-right: -56px !important; } .mar-r-m-57 { margin-right: -57px !important; } .mar-r-m-58 { margin-right: -58px !important; } .mar-r-m-59 { margin-right: -59px !important; } .mar-r-m-60 { margin-right: -60px !important; } .mar-r-m-61 { margin-right: -61px !important; } .mar-r-m-62 { margin-right: -62px !important; } .mar-r-m-63 { margin-right: -63px !important; } .mar-r-m-64 { margin-right: -64px !important; } .mar-r-m-65 { margin-right: -65px !important; } .mar-r-m-66 { margin-right: -66px !important; } .mar-r-m-67 { margin-right: -67px !important; } .mar-r-m-68 { margin-right: -68px !important; } .mar-r-m-69 { margin-right: -69px !important; } .mar-r-m-70 { margin-right: -70px !important; } .mar-r-m-71 { margin-right: -71px !important; } .mar-r-m-72 { margin-right: -72px !important; } .mar-r-m-73 { margin-right: -73px !important; } .mar-r-m-74 { margin-right: -74px !important; } .mar-r-m-75 { margin-right: -75px !important; } .mar-r-m-76 { margin-right: -76px !important; } .mar-r-m-77 { margin-right: -77px !important; } .mar-r-m-78 { margin-right: -78px !important; } .mar-r-m-79 { margin-right: -79px !important; } .mar-r-m-80 { margin-right: -80px !important; } .mar-r-m-81 { margin-right: -81px !important; } .mar-r-m-82 { margin-right: -82px !important; } .mar-r-m-83 { margin-right: -83px !important; } .mar-r-m-84 { margin-right: -84px !important; } .mar-r-m-85 { margin-right: -85px !important; } .mar-r-m-86 { margin-right: -86px !important; } .mar-r-m-87 { margin-right: -87px !important; } .mar-r-m-88 { margin-right: -88px !important; } .mar-r-m-89 { margin-right: -89px !important; } .mar-r-m-90 { margin-right: -90px !important; } .mar-r-m-91 { margin-right: -91px !important; } .mar-r-m-92 { margin-right: -92px !important; } .mar-r-m-93 { margin-right: -93px !important; } .mar-r-m-94 { margin-right: -94px !important; } .mar-r-m-95 { margin-right: -95px !important; } .mar-r-m-96 { margin-right: -96px !important; } .mar-r-m-97 { margin-right: -97px !important; } .mar-r-m-98 { margin-right: -98px !important; } .mar-r-m-99 { margin-right: -99px !important; } .mar-r-m-100 { margin-right: -100px !important; } .mar-b-m-1 { margin-bottom: -1px !important; } .mar-b-m-2 { margin-bottom: -2px !important; } .mar-b-m-3 { margin-bottom: -3px !important; } .mar-b-m-4 { margin-bottom: -4px !important; } .mar-b-m-5 { margin-bottom: -5px !important; } .mar-b-m-6 { margin-bottom: -6px !important; } .mar-b-m-7 { margin-bottom: -7px !important; } .mar-b-m-8 { margin-bottom: -8px !important; } .mar-b-m-9 { margin-bottom: -9px !important; } .mar-b-m-10 { margin-bottom: -10px !important; } .mar-b-m-11 { margin-bottom: -11px !important; } .mar-b-m-12 { margin-bottom: -12px !important; } .mar-b-m-13 { margin-bottom: -13px !important; } .mar-b-m-14 { margin-bottom: -14px !important; } .mar-b-m-15 { margin-bottom: -15px !important; } .mar-b-m-16 { margin-bottom: -16px !important; } .mar-b-m-17 { margin-bottom: -17px !important; } .mar-b-m-18 { margin-bottom: -18px !important; } .mar-b-m-19 { margin-bottom: -19px !important; } .mar-b-m-20 { margin-bottom: -20px !important; } .mar-b-m-21 { margin-bottom: -21px !important; } .mar-b-m-22 { margin-bottom: -22px !important; } .mar-b-m-23 { margin-bottom: -23px !important; } .mar-b-m-24 { margin-bottom: -24px !important; } .mar-b-m-25 { margin-bottom: -25px !important; } .mar-b-m-26 { margin-bottom: -26px !important; } .mar-b-m-27 { margin-bottom: -27px !important; } .mar-b-m-28 { margin-bottom: -28px !important; } .mar-b-m-29 { margin-bottom: -29px !important; } .mar-b-m-30 { margin-bottom: -30px !important; } .mar-b-m-31 { margin-bottom: -31px !important; } .mar-b-m-32 { margin-bottom: -32px !important; } .mar-b-m-33 { margin-bottom: -33px !important; } .mar-b-m-34 { margin-bottom: -34px !important; } .mar-b-m-35 { margin-bottom: -35px !important; } .mar-b-m-36 { margin-bottom: -36px !important; } .mar-b-m-37 { margin-bottom: -37px !important; } .mar-b-m-38 { margin-bottom: -38px !important; } .mar-b-m-39 { margin-bottom: -39px !important; } .mar-b-m-40 { margin-bottom: -40px !important; } .mar-b-m-41 { margin-bottom: -41px !important; } .mar-b-m-42 { margin-bottom: -42px !important; } .mar-b-m-43 { margin-bottom: -43px !important; } .mar-b-m-44 { margin-bottom: -44px !important; } .mar-b-m-45 { margin-bottom: -45px !important; } .mar-b-m-46 { margin-bottom: -46px !important; } .mar-b-m-47 { margin-bottom: -47px !important; } .mar-b-m-48 { margin-bottom: -48px !important; } .mar-b-m-49 { margin-bottom: -49px !important; } .mar-b-m-50 { margin-bottom: -50px !important; } .mar-b-m-51 { margin-bottom: -51px !important; } .mar-b-m-52 { margin-bottom: -52px !important; } .mar-b-m-53 { margin-bottom: -53px !important; } .mar-b-m-54 { margin-bottom: -54px !important; } .mar-b-m-55 { margin-bottom: -55px !important; } .mar-b-m-56 { margin-bottom: -56px !important; } .mar-b-m-57 { margin-bottom: -57px !important; } .mar-b-m-58 { margin-bottom: -58px !important; } .mar-b-m-59 { margin-bottom: -59px !important; } .mar-b-m-60 { margin-bottom: -60px !important; } .mar-b-m-61 { margin-bottom: -61px !important; } .mar-b-m-62 { margin-bottom: -62px !important; } .mar-b-m-63 { margin-bottom: -63px !important; } .mar-b-m-64 { margin-bottom: -64px !important; } .mar-b-m-65 { margin-bottom: -65px !important; } .mar-b-m-66 { margin-bottom: -66px !important; } .mar-b-m-67 { margin-bottom: -67px !important; } .mar-b-m-68 { margin-bottom: -68px !important; } .mar-b-m-69 { margin-bottom: -69px !important; } .mar-b-m-70 { margin-bottom: -70px !important; } .mar-b-m-71 { margin-bottom: -71px !important; } .mar-b-m-72 { margin-bottom: -72px !important; } .mar-b-m-73 { margin-bottom: -73px !important; } .mar-b-m-74 { margin-bottom: -74px !important; } .mar-b-m-75 { margin-bottom: -75px !important; } .mar-b-m-76 { margin-bottom: -76px !important; } .mar-b-m-77 { margin-bottom: -77px !important; } .mar-b-m-78 { margin-bottom: -78px !important; } .mar-b-m-79 { margin-bottom: -79px !important; } .mar-b-m-80 { margin-bottom: -80px !important; } .mar-b-m-81 { margin-bottom: -81px !important; } .mar-b-m-82 { margin-bottom: -82px !important; } .mar-b-m-83 { margin-bottom: -83px !important; } .mar-b-m-84 { margin-bottom: -84px !important; } .mar-b-m-85 { margin-bottom: -85px !important; } .mar-b-m-86 { margin-bottom: -86px !important; } .mar-b-m-87 { margin-bottom: -87px !important; } .mar-b-m-88 { margin-bottom: -88px !important; } .mar-b-m-89 { margin-bottom: -89px !important; } .mar-b-m-90 { margin-bottom: -90px !important; } .mar-b-m-91 { margin-bottom: -91px !important; } .mar-b-m-92 { margin-bottom: -92px !important; } .mar-b-m-93 { margin-bottom: -93px !important; } .mar-b-m-94 { margin-bottom: -94px !important; } .mar-b-m-95 { margin-bottom: -95px !important; } .mar-b-m-96 { margin-bottom: -96px !important; } .mar-b-m-97 { margin-bottom: -97px !important; } .mar-b-m-98 { margin-bottom: -98px !important; } .mar-b-m-99 { margin-bottom: -99px !important; } .mar-b-m-100 { margin-bottom: -100px !important; } .mar-l-m-1 { margin-left: -1px !important; } .mar-l-m-2 { margin-left: -2px !important; } .mar-l-m-3 { margin-left: -3px !important; } .mar-l-m-4 { margin-left: -4px !important; } .mar-l-m-5 { margin-left: -5px !important; } .mar-l-m-6 { margin-left: -6px !important; } .mar-l-m-7 { margin-left: -7px !important; } .mar-l-m-8 { margin-left: -8px !important; } .mar-l-m-9 { margin-left: -9px !important; } .mar-l-m-10 { margin-left: -10px !important; } .mar-l-m-11 { margin-left: -11px !important; } .mar-l-m-12 { margin-left: -12px !important; } .mar-l-m-13 { margin-left: -13px !important; } .mar-l-m-14 { margin-left: -14px !important; } .mar-l-m-15 { margin-left: -15px !important; } .mar-l-m-16 { margin-left: -16px !important; } .mar-l-m-17 { margin-left: -17px !important; } .mar-l-m-18 { margin-left: -18px !important; } .mar-l-m-19 { margin-left: -19px !important; } .mar-l-m-20 { margin-left: -20px !important; } .mar-l-m-21 { margin-left: -21px !important; } .mar-l-m-22 { margin-left: -22px !important; } .mar-l-m-23 { margin-left: -23px !important; } .mar-l-m-24 { margin-left: -24px !important; } .mar-l-m-25 { margin-left: -25px !important; } .mar-l-m-26 { margin-left: -26px !important; } .mar-l-m-27 { margin-left: -27px !important; } .mar-l-m-28 { margin-left: -28px !important; } .mar-l-m-29 { margin-left: -29px !important; } .mar-l-m-30 { margin-left: -30px !important; } .mar-l-m-31 { margin-left: -31px !important; } .mar-l-m-32 { margin-left: -32px !important; } .mar-l-m-33 { margin-left: -33px !important; } .mar-l-m-34 { margin-left: -34px !important; } .mar-l-m-35 { margin-left: -35px !important; } .mar-l-m-36 { margin-left: -36px !important; } .mar-l-m-37 { margin-left: -37px !important; } .mar-l-m-38 { margin-left: -38px !important; } .mar-l-m-39 { margin-left: -39px !important; } .mar-l-m-40 { margin-left: -40px !important; } .mar-l-m-41 { margin-left: -41px !important; } .mar-l-m-42 { margin-left: -42px !important; } .mar-l-m-43 { margin-left: -43px !important; } .mar-l-m-44 { margin-left: -44px !important; } .mar-l-m-45 { margin-left: -45px !important; } .mar-l-m-46 { margin-left: -46px !important; } .mar-l-m-47 { margin-left: -47px !important; } .mar-l-m-48 { margin-left: -48px !important; } .mar-l-m-49 { margin-left: -49px !important; } .mar-l-m-50 { margin-left: -50px !important; } .mar-l-m-51 { margin-left: -51px !important; } .mar-l-m-52 { margin-left: -52px !important; } .mar-l-m-53 { margin-left: -53px !important; } .mar-l-m-54 { margin-left: -54px !important; } .mar-l-m-55 { margin-left: -55px !important; } .mar-l-m-56 { margin-left: -56px !important; } .mar-l-m-57 { margin-left: -57px !important; } .mar-l-m-58 { margin-left: -58px !important; } .mar-l-m-59 { margin-left: -59px !important; } .mar-l-m-60 { margin-left: -60px !important; } .mar-l-m-61 { margin-left: -61px !important; } .mar-l-m-62 { margin-left: -62px !important; } .mar-l-m-63 { margin-left: -63px !important; } .mar-l-m-64 { margin-left: -64px !important; } .mar-l-m-65 { margin-left: -65px !important; } .mar-l-m-66 { margin-left: -66px !important; } .mar-l-m-67 { margin-left: -67px !important; } .mar-l-m-68 { margin-left: -68px !important; } .mar-l-m-69 { margin-left: -69px !important; } .mar-l-m-70 { margin-left: -70px !important; } .mar-l-m-71 { margin-left: -71px !important; } .mar-l-m-72 { margin-left: -72px !important; } .mar-l-m-73 { margin-left: -73px !important; } .mar-l-m-74 { margin-left: -74px !important; } .mar-l-m-75 { margin-left: -75px !important; } .mar-l-m-76 { margin-left: -76px !important; } .mar-l-m-77 { margin-left: -77px !important; } .mar-l-m-78 { margin-left: -78px !important; } .mar-l-m-79 { margin-left: -79px !important; } .mar-l-m-80 { margin-left: -80px !important; } .mar-l-m-81 { margin-left: -81px !important; } .mar-l-m-82 { margin-left: -82px !important; } .mar-l-m-83 { margin-left: -83px !important; } .mar-l-m-84 { margin-left: -84px !important; } .mar-l-m-85 { margin-left: -85px !important; } .mar-l-m-86 { margin-left: -86px !important; } .mar-l-m-87 { margin-left: -87px !important; } .mar-l-m-88 { margin-left: -88px !important; } .mar-l-m-89 { margin-left: -89px !important; } .mar-l-m-90 { margin-left: -90px !important; } .mar-l-m-91 { margin-left: -91px !important; } .mar-l-m-92 { margin-left: -92px !important; } .mar-l-m-93 { margin-left: -93px !important; } .mar-l-m-94 { margin-left: -94px !important; } .mar-l-m-95 { margin-left: -95px !important; } .mar-l-m-96 { margin-left: -96px !important; } .mar-l-m-97 { margin-left: -97px !important; } .mar-l-m-98 { margin-left: -98px !important; } .mar-l-m-99 { margin-left: -99px !important; } .mar-l-m-100 { margin-left: -100px !important; } .pad-1 { padding: 1px !important; } .pad-2 { padding: 2px !important; } .pad-3 { padding: 3px !important; } .pad-4 { padding: 4px !important; } .pad-5 { padding: 5px !important; } .pad-6 { padding: 6px !important; } .pad-7 { padding: 7px !important; } .pad-8 { padding: 8px !important; } .pad-9 { padding: 9px !important; } .pad-10 { padding: 10px !important; } .pad-11 { padding: 11px !important; } .pad-12 { padding: 12px !important; } .pad-13 { padding: 13px !important; } .pad-14 { padding: 14px !important; } .pad-15 { padding: 15px !important; } .pad-16 { padding: 16px !important; } .pad-17 { padding: 17px !important; } .pad-18 { padding: 18px !important; } .pad-19 { padding: 19px !important; } .pad-20 { padding: 20px !important; } .pad-21 { padding: 21px !important; } .pad-22 { padding: 22px !important; } .pad-23 { padding: 23px !important; } .pad-24 { padding: 24px !important; } .pad-25 { padding: 25px !important; } .pad-26 { padding: 26px !important; } .pad-27 { padding: 27px !important; } .pad-28 { padding: 28px !important; } .pad-29 { padding: 29px !important; } .pad-30 { padding: 30px !important; } .pad-31 { padding: 31px !important; } .pad-32 { padding: 32px !important; } .pad-33 { padding: 33px !important; } .pad-34 { padding: 34px !important; } .pad-35 { padding: 35px !important; } .pad-36 { padding: 36px !important; } .pad-37 { padding: 37px !important; } .pad-38 { padding: 38px !important; } .pad-39 { padding: 39px !important; } .pad-40 { padding: 40px !important; } .pad-41 { padding: 41px !important; } .pad-42 { padding: 42px !important; } .pad-43 { padding: 43px !important; } .pad-44 { padding: 44px !important; } .pad-45 { padding: 45px !important; } .pad-46 { padding: 46px !important; } .pad-47 { padding: 47px !important; } .pad-48 { padding: 48px !important; } .pad-49 { padding: 49px !important; } .pad-50 { padding: 50px !important; } .pad-51 { padding: 51px !important; } .pad-52 { padding: 52px !important; } .pad-53 { padding: 53px !important; } .pad-54 { padding: 54px !important; } .pad-55 { padding: 55px !important; } .pad-56 { padding: 56px !important; } .pad-57 { padding: 57px !important; } .pad-58 { padding: 58px !important; } .pad-59 { padding: 59px !important; } .pad-60 { padding: 60px !important; } .pad-61 { padding: 61px !important; } .pad-62 { padding: 62px !important; } .pad-63 { padding: 63px !important; } .pad-64 { padding: 64px !important; } .pad-65 { padding: 65px !important; } .pad-66 { padding: 66px !important; } .pad-67 { padding: 67px !important; } .pad-68 { padding: 68px !important; } .pad-69 { padding: 69px !important; } .pad-70 { padding: 70px !important; } .pad-71 { padding: 71px !important; } .pad-72 { padding: 72px !important; } .pad-73 { padding: 73px !important; } .pad-74 { padding: 74px !important; } .pad-75 { padding: 75px !important; } .pad-76 { padding: 76px !important; } .pad-77 { padding: 77px !important; } .pad-78 { padding: 78px !important; } .pad-79 { padding: 79px !important; } .pad-80 { padding: 80px !important; } .pad-81 { padding: 81px !important; } .pad-82 { padding: 82px !important; } .pad-83 { padding: 83px !important; } .pad-84 { padding: 84px !important; } .pad-85 { padding: 85px !important; } .pad-86 { padding: 86px !important; } .pad-87 { padding: 87px !important; } .pad-88 { padding: 88px !important; } .pad-89 { padding: 89px !important; } .pad-90 { padding: 90px !important; } .pad-91 { padding: 91px !important; } .pad-92 { padding: 92px !important; } .pad-93 { padding: 93px !important; } .pad-94 { padding: 94px !important; } .pad-95 { padding: 95px !important; } .pad-96 { padding: 96px !important; } .pad-97 { padding: 97px !important; } .pad-98 { padding: 98px !important; } .pad-99 { padding: 99px !important; } .pad-100 { padding: 100px !important; } .pad-t-1 { padding-top: 1px !important; } .pad-t-2 { padding-top: 2px !important; } .pad-t-3 { padding-top: 3px !important; } .pad-t-4 { padding-top: 4px !important; } .pad-t-5 { padding-top: 5px !important; } .pad-t-6 { padding-top: 6px !important; } .pad-t-7 { padding-top: 7px !important; } .pad-t-8 { padding-top: 8px !important; } .pad-t-9 { padding-top: 9px !important; } .pad-t-10 { padding-top: 10px !important; } .pad-t-11 { padding-top: 11px !important; } .pad-t-12 { padding-top: 12px !important; } .pad-t-13 { padding-top: 13px !important; } .pad-t-14 { padding-top: 14px !important; } .pad-t-15 { padding-top: 15px !important; } .pad-t-16 { padding-top: 16px !important; } .pad-t-17 { padding-top: 17px !important; } .pad-t-18 { padding-top: 18px !important; } .pad-t-19 { padding-top: 19px !important; } .pad-t-20 { padding-top: 20px !important; } .pad-t-21 { padding-top: 21px !important; } .pad-t-22 { padding-top: 22px !important; } .pad-t-23 { padding-top: 23px !important; } .pad-t-24 { padding-top: 24px !important; } .pad-t-25 { padding-top: 25px !important; } .pad-t-26 { padding-top: 26px !important; } .pad-t-27 { padding-top: 27px !important; } .pad-t-28 { padding-top: 28px !important; } .pad-t-29 { padding-top: 29px !important; } .pad-t-30 { padding-top: 30px !important; } .pad-t-31 { padding-top: 31px !important; } .pad-t-32 { padding-top: 32px !important; } .pad-t-33 { padding-top: 33px !important; } .pad-t-34 { padding-top: 34px !important; } .pad-t-35 { padding-top: 35px !important; } .pad-t-36 { padding-top: 36px !important; } .pad-t-37 { padding-top: 37px !important; } .pad-t-38 { padding-top: 38px !important; } .pad-t-39 { padding-top: 39px !important; } .pad-t-40 { padding-top: 40px !important; } .pad-t-41 { padding-top: 41px !important; } .pad-t-42 { padding-top: 42px !important; } .pad-t-43 { padding-top: 43px !important; } .pad-t-44 { padding-top: 44px !important; } .pad-t-45 { padding-top: 45px !important; } .pad-t-46 { padding-top: 46px !important; } .pad-t-47 { padding-top: 47px !important; } .pad-t-48 { padding-top: 48px !important; } .pad-t-49 { padding-top: 49px !important; } .pad-t-50 { padding-top: 50px !important; } .pad-t-51 { padding-top: 51px !important; } .pad-t-52 { padding-top: 52px !important; } .pad-t-53 { padding-top: 53px !important; } .pad-t-54 { padding-top: 54px !important; } .pad-t-55 { padding-top: 55px !important; } .pad-t-56 { padding-top: 56px !important; } .pad-t-57 { padding-top: 57px !important; } .pad-t-58 { padding-top: 58px !important; } .pad-t-59 { padding-top: 59px !important; } .pad-t-60 { padding-top: 60px !important; } .pad-t-61 { padding-top: 61px !important; } .pad-t-62 { padding-top: 62px !important; } .pad-t-63 { padding-top: 63px !important; } .pad-t-64 { padding-top: 64px !important; } .pad-t-65 { padding-top: 65px !important; } .pad-t-66 { padding-top: 66px !important; } .pad-t-67 { padding-top: 67px !important; } .pad-t-68 { padding-top: 68px !important; } .pad-t-69 { padding-top: 69px !important; } .pad-t-70 { padding-top: 70px !important; } .pad-t-71 { padding-top: 71px !important; } .pad-t-72 { padding-top: 72px !important; } .pad-t-73 { padding-top: 73px !important; } .pad-t-74 { padding-top: 74px !important; } .pad-t-75 { padding-top: 75px !important; } .pad-t-76 { padding-top: 76px !important; } .pad-t-77 { padding-top: 77px !important; } .pad-t-78 { padding-top: 78px !important; } .pad-t-79 { padding-top: 79px !important; } .pad-t-80 { padding-top: 80px !important; } .pad-t-81 { padding-top: 81px !important; } .pad-t-82 { padding-top: 82px !important; } .pad-t-83 { padding-top: 83px !important; } .pad-t-84 { padding-top: 84px !important; } .pad-t-85 { padding-top: 85px !important; } .pad-t-86 { padding-top: 86px !important; } .pad-t-87 { padding-top: 87px !important; } .pad-t-88 { padding-top: 88px !important; } .pad-t-89 { padding-top: 89px !important; } .pad-t-90 { padding-top: 90px !important; } .pad-t-91 { padding-top: 91px !important; } .pad-t-92 { padding-top: 92px !important; } .pad-t-93 { padding-top: 93px !important; } .pad-t-94 { padding-top: 94px !important; } .pad-t-95 { padding-top: 95px !important; } .pad-t-96 { padding-top: 96px !important; } .pad-t-97 { padding-top: 97px !important; } .pad-t-98 { padding-top: 98px !important; } .pad-t-99 { padding-top: 99px !important; } .pad-t-100 { padding-top: 100px !important; } .pad-r-1 { padding-right: 1px !important; } .pad-r-2 { padding-right: 2px !important; } .pad-r-3 { padding-right: 3px !important; } .pad-r-4 { padding-right: 4px !important; } .pad-r-5 { padding-right: 5px !important; } .pad-r-6 { padding-right: 6px !important; } .pad-r-7 { padding-right: 7px !important; } .pad-r-8 { padding-right: 8px !important; } .pad-r-9 { padding-right: 9px !important; } .pad-r-10 { padding-right: 10px !important; } .pad-r-11 { padding-right: 11px !important; } .pad-r-12 { padding-right: 12px !important; } .pad-r-13 { padding-right: 13px !important; } .pad-r-14 { padding-right: 14px !important; } .pad-r-15 { padding-right: 15px !important; } .pad-r-16 { padding-right: 16px !important; } .pad-r-17 { padding-right: 17px !important; } .pad-r-18 { padding-right: 18px !important; } .pad-r-19 { padding-right: 19px !important; } .pad-r-20 { padding-right: 20px !important; } .pad-r-21 { padding-right: 21px !important; } .pad-r-22 { padding-right: 22px !important; } .pad-r-23 { padding-right: 23px !important; } .pad-r-24 { padding-right: 24px !important; } .pad-r-25 { padding-right: 25px !important; } .pad-r-26 { padding-right: 26px !important; } .pad-r-27 { padding-right: 27px !important; } .pad-r-28 { padding-right: 28px !important; } .pad-r-29 { padding-right: 29px !important; } .pad-r-30 { padding-right: 30px !important; } .pad-r-31 { padding-right: 31px !important; } .pad-r-32 { padding-right: 32px !important; } .pad-r-33 { padding-right: 33px !important; } .pad-r-34 { padding-right: 34px !important; } .pad-r-35 { padding-right: 35px !important; } .pad-r-36 { padding-right: 36px !important; } .pad-r-37 { padding-right: 37px !important; } .pad-r-38 { padding-right: 38px !important; } .pad-r-39 { padding-right: 39px !important; } .pad-r-40 { padding-right: 40px !important; } .pad-r-41 { padding-right: 41px !important; } .pad-r-42 { padding-right: 42px !important; } .pad-r-43 { padding-right: 43px !important; } .pad-r-44 { padding-right: 44px !important; } .pad-r-45 { padding-right: 45px !important; } .pad-r-46 { padding-right: 46px !important; } .pad-r-47 { padding-right: 47px !important; } .pad-r-48 { padding-right: 48px !important; } .pad-r-49 { padding-right: 49px !important; } .pad-r-50 { padding-right: 50px !important; } .pad-r-51 { padding-right: 51px !important; } .pad-r-52 { padding-right: 52px !important; } .pad-r-53 { padding-right: 53px !important; } .pad-r-54 { padding-right: 54px !important; } .pad-r-55 { padding-right: 55px !important; } .pad-r-56 { padding-right: 56px !important; } .pad-r-57 { padding-right: 57px !important; } .pad-r-58 { padding-right: 58px !important; } .pad-r-59 { padding-right: 59px !important; } .pad-r-60 { padding-right: 60px !important; } .pad-r-61 { padding-right: 61px !important; } .pad-r-62 { padding-right: 62px !important; } .pad-r-63 { padding-right: 63px !important; } .pad-r-64 { padding-right: 64px !important; } .pad-r-65 { padding-right: 65px !important; } .pad-r-66 { padding-right: 66px !important; } .pad-r-67 { padding-right: 67px !important; } .pad-r-68 { padding-right: 68px !important; } .pad-r-69 { padding-right: 69px !important; } .pad-r-70 { padding-right: 70px !important; } .pad-r-71 { padding-right: 71px !important; } .pad-r-72 { padding-right: 72px !important; } .pad-r-73 { padding-right: 73px !important; } .pad-r-74 { padding-right: 74px !important; } .pad-r-75 { padding-right: 75px !important; } .pad-r-76 { padding-right: 76px !important; } .pad-r-77 { padding-right: 77px !important; } .pad-r-78 { padding-right: 78px !important; } .pad-r-79 { padding-right: 79px !important; } .pad-r-80 { padding-right: 80px !important; } .pad-r-81 { padding-right: 81px !important; } .pad-r-82 { padding-right: 82px !important; } .pad-r-83 { padding-right: 83px !important; } .pad-r-84 { padding-right: 84px !important; } .pad-r-85 { padding-right: 85px !important; } .pad-r-86 { padding-right: 86px !important; } .pad-r-87 { padding-right: 87px !important; } .pad-r-88 { padding-right: 88px !important; } .pad-r-89 { padding-right: 89px !important; } .pad-r-90 { padding-right: 90px !important; } .pad-r-91 { padding-right: 91px !important; } .pad-r-92 { padding-right: 92px !important; } .pad-r-93 { padding-right: 93px !important; } .pad-r-94 { padding-right: 94px !important; } .pad-r-95 { padding-right: 95px !important; } .pad-r-96 { padding-right: 96px !important; } .pad-r-97 { padding-right: 97px !important; } .pad-r-98 { padding-right: 98px !important; } .pad-r-99 { padding-right: 99px !important; } .pad-r-100 { padding-right: 100px !important; } .pad-b-1 { padding-bottom: 1px !important; } .pad-b-2 { padding-bottom: 2px !important; } .pad-b-3 { padding-bottom: 3px !important; } .pad-b-4 { padding-bottom: 4px !important; } .pad-b-5 { padding-bottom: 5px !important; } .pad-b-6 { padding-bottom: 6px !important; } .pad-b-7 { padding-bottom: 7px !important; } .pad-b-8 { padding-bottom: 8px !important; } .pad-b-9 { padding-bottom: 9px !important; } .pad-b-10 { padding-bottom: 10px !important; } .pad-b-11 { padding-bottom: 11px !important; } .pad-b-12 { padding-bottom: 12px !important; } .pad-b-13 { padding-bottom: 13px !important; } .pad-b-14 { padding-bottom: 14px !important; } .pad-b-15 { padding-bottom: 15px !important; } .pad-b-16 { padding-bottom: 16px !important; } .pad-b-17 { padding-bottom: 17px !important; } .pad-b-18 { padding-bottom: 18px !important; } .pad-b-19 { padding-bottom: 19px !important; } .pad-b-20 { padding-bottom: 20px !important; } .pad-b-21 { padding-bottom: 21px !important; } .pad-b-22 { padding-bottom: 22px !important; } .pad-b-23 { padding-bottom: 23px !important; } .pad-b-24 { padding-bottom: 24px !important; } .pad-b-25 { padding-bottom: 25px !important; } .pad-b-26 { padding-bottom: 26px !important; } .pad-b-27 { padding-bottom: 27px !important; } .pad-b-28 { padding-bottom: 28px !important; } .pad-b-29 { padding-bottom: 29px !important; } .pad-b-30 { padding-bottom: 30px !important; } .pad-b-31 { padding-bottom: 31px !important; } .pad-b-32 { padding-bottom: 32px !important; } .pad-b-33 { padding-bottom: 33px !important; } .pad-b-34 { padding-bottom: 34px !important; } .pad-b-35 { padding-bottom: 35px !important; } .pad-b-36 { padding-bottom: 36px !important; } .pad-b-37 { padding-bottom: 37px !important; } .pad-b-38 { padding-bottom: 38px !important; } .pad-b-39 { padding-bottom: 39px !important; } .pad-b-40 { padding-bottom: 40px !important; } .pad-b-41 { padding-bottom: 41px !important; } .pad-b-42 { padding-bottom: 42px !important; } .pad-b-43 { padding-bottom: 43px !important; } .pad-b-44 { padding-bottom: 44px !important; } .pad-b-45 { padding-bottom: 45px !important; } .pad-b-46 { padding-bottom: 46px !important; } .pad-b-47 { padding-bottom: 47px !important; } .pad-b-48 { padding-bottom: 48px !important; } .pad-b-49 { padding-bottom: 49px !important; } .pad-b-50 { padding-bottom: 50px !important; } .pad-b-51 { padding-bottom: 51px !important; } .pad-b-52 { padding-bottom: 52px !important; } .pad-b-53 { padding-bottom: 53px !important; } .pad-b-54 { padding-bottom: 54px !important; } .pad-b-55 { padding-bottom: 55px !important; } .pad-b-56 { padding-bottom: 56px !important; } .pad-b-57 { padding-bottom: 57px !important; } .pad-b-58 { padding-bottom: 58px !important; } .pad-b-59 { padding-bottom: 59px !important; } .pad-b-60 { padding-bottom: 60px !important; } .pad-b-61 { padding-bottom: 61px !important; } .pad-b-62 { padding-bottom: 62px !important; } .pad-b-63 { padding-bottom: 63px !important; } .pad-b-64 { padding-bottom: 64px !important; } .pad-b-65 { padding-bottom: 65px !important; } .pad-b-66 { padding-bottom: 66px !important; } .pad-b-67 { padding-bottom: 67px !important; } .pad-b-68 { padding-bottom: 68px !important; } .pad-b-69 { padding-bottom: 69px !important; } .pad-b-70 { padding-bottom: 70px !important; } .pad-b-71 { padding-bottom: 71px !important; } .pad-b-72 { padding-bottom: 72px !important; } .pad-b-73 { padding-bottom: 73px !important; } .pad-b-74 { padding-bottom: 74px !important; } .pad-b-75 { padding-bottom: 75px !important; } .pad-b-76 { padding-bottom: 76px !important; } .pad-b-77 { padding-bottom: 77px !important; } .pad-b-78 { padding-bottom: 78px !important; } .pad-b-79 { padding-bottom: 79px !important; } .pad-b-80 { padding-bottom: 80px !important; } .pad-b-81 { padding-bottom: 81px !important; } .pad-b-82 { padding-bottom: 82px !important; } .pad-b-83 { padding-bottom: 83px !important; } .pad-b-84 { padding-bottom: 84px !important; } .pad-b-85 { padding-bottom: 85px !important; } .pad-b-86 { padding-bottom: 86px !important; } .pad-b-87 { padding-bottom: 87px !important; } .pad-b-88 { padding-bottom: 88px !important; } .pad-b-89 { padding-bottom: 89px !important; } .pad-b-90 { padding-bottom: 90px !important; } .pad-b-91 { padding-bottom: 91px !important; } .pad-b-92 { padding-bottom: 92px !important; } .pad-b-93 { padding-bottom: 93px !important; } .pad-b-94 { padding-bottom: 94px !important; } .pad-b-95 { padding-bottom: 95px !important; } .pad-b-96 { padding-bottom: 96px !important; } .pad-b-97 { padding-bottom: 97px !important; } .pad-b-98 { padding-bottom: 98px !important; } .pad-b-99 { padding-bottom: 99px !important; } .pad-b-100 { padding-bottom: 100px !important; } .pad-l-1 { padding-left: 1px !important; } .pad-l-2 { padding-left: 2px !important; } .pad-l-3 { padding-left: 3px !important; } .pad-l-4 { padding-left: 4px !important; } .pad-l-5 { padding-left: 5px !important; } .pad-l-6 { padding-left: 6px !important; } .pad-l-7 { padding-left: 7px !important; } .pad-l-8 { padding-left: 8px !important; } .pad-l-9 { padding-left: 9px !important; } .pad-l-10 { padding-left: 10px !important; } .pad-l-11 { padding-left: 11px !important; } .pad-l-12 { padding-left: 12px !important; } .pad-l-13 { padding-left: 13px !important; } .pad-l-14 { padding-left: 14px !important; } .pad-l-15 { padding-left: 15px !important; } .pad-l-16 { padding-left: 16px !important; } .pad-l-17 { padding-left: 17px !important; } .pad-l-18 { padding-left: 18px !important; } .pad-l-19 { padding-left: 19px !important; } .pad-l-20 { padding-left: 20px !important; } .pad-l-21 { padding-left: 21px !important; } .pad-l-22 { padding-left: 22px !important; } .pad-l-23 { padding-left: 23px !important; } .pad-l-24 { padding-left: 24px !important; } .pad-l-25 { padding-left: 25px !important; } .pad-l-26 { padding-left: 26px !important; } .pad-l-27 { padding-left: 27px !important; } .pad-l-28 { padding-left: 28px !important; } .pad-l-29 { padding-left: 29px !important; } .pad-l-30 { padding-left: 30px !important; } .pad-l-31 { padding-left: 31px !important; } .pad-l-32 { padding-left: 32px !important; } .pad-l-33 { padding-left: 33px !important; } .pad-l-34 { padding-left: 34px !important; } .pad-l-35 { padding-left: 35px !important; } .pad-l-36 { padding-left: 36px !important; } .pad-l-37 { padding-left: 37px !important; } .pad-l-38 { padding-left: 38px !important; } .pad-l-39 { padding-left: 39px !important; } .pad-l-40 { padding-left: 40px !important; } .pad-l-41 { padding-left: 41px !important; } .pad-l-42 { padding-left: 42px !important; } .pad-l-43 { padding-left: 43px !important; } .pad-l-44 { padding-left: 44px !important; } .pad-l-45 { padding-left: 45px !important; } .pad-l-46 { padding-left: 46px !important; } .pad-l-47 { padding-left: 47px !important; } .pad-l-48 { padding-left: 48px !important; } .pad-l-49 { padding-left: 49px !important; } .pad-l-50 { padding-left: 50px !important; } .pad-l-51 { padding-left: 51px !important; } .pad-l-52 { padding-left: 52px !important; } .pad-l-53 { padding-left: 53px !important; } .pad-l-54 { padding-left: 54px !important; } .pad-l-55 { padding-left: 55px !important; } .pad-l-56 { padding-left: 56px !important; } .pad-l-57 { padding-left: 57px !important; } .pad-l-58 { padding-left: 58px !important; } .pad-l-59 { padding-left: 59px !important; } .pad-l-60 { padding-left: 60px !important; } .pad-l-61 { padding-left: 61px !important; } .pad-l-62 { padding-left: 62px !important; } .pad-l-63 { padding-left: 63px !important; } .pad-l-64 { padding-left: 64px !important; } .pad-l-65 { padding-left: 65px !important; } .pad-l-66 { padding-left: 66px !important; } .pad-l-67 { padding-left: 67px !important; } .pad-l-68 { padding-left: 68px !important; } .pad-l-69 { padding-left: 69px !important; } .pad-l-70 { padding-left: 70px !important; } .pad-l-71 { padding-left: 71px !important; } .pad-l-72 { padding-left: 72px !important; } .pad-l-73 { padding-left: 73px !important; } .pad-l-74 { padding-left: 74px !important; } .pad-l-75 { padding-left: 75px !important; } .pad-l-76 { padding-left: 76px !important; } .pad-l-77 { padding-left: 77px !important; } .pad-l-78 { padding-left: 78px !important; } .pad-l-79 { padding-left: 79px !important; } .pad-l-80 { padding-left: 80px !important; } .pad-l-81 { padding-left: 81px !important; } .pad-l-82 { padding-left: 82px !important; } .pad-l-83 { padding-left: 83px !important; } .pad-l-84 { padding-left: 84px !important; } .pad-l-85 { padding-left: 85px !important; } .pad-l-86 { padding-left: 86px !important; } .pad-l-87 { padding-left: 87px !important; } .pad-l-88 { padding-left: 88px !important; } .pad-l-89 { padding-left: 89px !important; } .pad-l-90 { padding-left: 90px !important; } .pad-l-91 { padding-left: 91px !important; } .pad-l-92 { padding-left: 92px !important; } .pad-l-93 { padding-left: 93px !important; } .pad-l-94 { padding-left: 94px !important; } .pad-l-95 { padding-left: 95px !important; } .pad-l-96 { padding-left: 96px !important; } .pad-l-97 { padding-left: 97px !important; } .pad-l-98 { padding-left: 98px !important; } .pad-l-99 { padding-left: 99px !important; } .pad-l-100 { padding-left: 100px !important; } .pad-v-1 { padding-top: 1px !important; padding-bottom: 1px; } .pad-v-2 { padding-top: 2px !important; padding-bottom: 2px; } .pad-v-3 { padding-top: 3px !important; padding-bottom: 3px; } .pad-v-4 { padding-top: 4px !important; padding-bottom: 4px; } .pad-v-5 { padding-top: 5px !important; padding-bottom: 5px; } .pad-v-6 { padding-top: 6px !important; padding-bottom: 6px; } .pad-v-7 { padding-top: 7px !important; padding-bottom: 7px; } .pad-v-8 { padding-top: 8px !important; padding-bottom: 8px; } .pad-v-9 { padding-top: 9px !important; padding-bottom: 9px; } .pad-v-10 { padding-top: 10px !important; padding-bottom: 10px; } .pad-v-11 { padding-top: 11px !important; padding-bottom: 11px; } .pad-v-12 { padding-top: 12px !important; padding-bottom: 12px; } .pad-v-13 { padding-top: 13px !important; padding-bottom: 13px; } .pad-v-14 { padding-top: 14px !important; padding-bottom: 14px; } .pad-v-15 { padding-top: 15px !important; padding-bottom: 15px; } .pad-v-16 { padding-top: 16px !important; padding-bottom: 16px; } .pad-v-17 { padding-top: 17px !important; padding-bottom: 17px; } .pad-v-18 { padding-top: 18px !important; padding-bottom: 18px; } .pad-v-19 { padding-top: 19px !important; padding-bottom: 19px; } .pad-v-20 { padding-top: 20px !important; padding-bottom: 20px; } .pad-v-21 { padding-top: 21px !important; padding-bottom: 21px; } .pad-v-22 { padding-top: 22px !important; padding-bottom: 22px; } .pad-v-23 { padding-top: 23px !important; padding-bottom: 23px; } .pad-v-24 { padding-top: 24px !important; padding-bottom: 24px; } .pad-v-25 { padding-top: 25px !important; padding-bottom: 25px; } .pad-v-26 { padding-top: 26px !important; padding-bottom: 26px; } .pad-v-27 { padding-top: 27px !important; padding-bottom: 27px; } .pad-v-28 { padding-top: 28px !important; padding-bottom: 28px; } .pad-v-29 { padding-top: 29px !important; padding-bottom: 29px; } .pad-v-30 { padding-top: 30px !important; padding-bottom: 30px; } .pad-v-31 { padding-top: 31px !important; padding-bottom: 31px; } .pad-v-32 { padding-top: 32px !important; padding-bottom: 32px; } .pad-v-33 { padding-top: 33px !important; padding-bottom: 33px; } .pad-v-34 { padding-top: 34px !important; padding-bottom: 34px; } .pad-v-35 { padding-top: 35px !important; padding-bottom: 35px; } .pad-v-36 { padding-top: 36px !important; padding-bottom: 36px; } .pad-v-37 { padding-top: 37px !important; padding-bottom: 37px; } .pad-v-38 { padding-top: 38px !important; padding-bottom: 38px; } .pad-v-39 { padding-top: 39px !important; padding-bottom: 39px; } .pad-v-40 { padding-top: 40px !important; padding-bottom: 40px; } .pad-v-41 { padding-top: 41px !important; padding-bottom: 41px; } .pad-v-42 { padding-top: 42px !important; padding-bottom: 42px; } .pad-v-43 { padding-top: 43px !important; padding-bottom: 43px; } .pad-v-44 { padding-top: 44px !important; padding-bottom: 44px; } .pad-v-45 { padding-top: 45px !important; padding-bottom: 45px; } .pad-v-46 { padding-top: 46px !important; padding-bottom: 46px; } .pad-v-47 { padding-top: 47px !important; padding-bottom: 47px; } .pad-v-48 { padding-top: 48px !important; padding-bottom: 48px; } .pad-v-49 { padding-top: 49px !important; padding-bottom: 49px; } .pad-v-50 { padding-top: 50px !important; padding-bottom: 50px; } .pad-v-51 { padding-top: 51px !important; padding-bottom: 51px; } .pad-v-52 { padding-top: 52px !important; padding-bottom: 52px; } .pad-v-53 { padding-top: 53px !important; padding-bottom: 53px; } .pad-v-54 { padding-top: 54px !important; padding-bottom: 54px; } .pad-v-55 { padding-top: 55px !important; padding-bottom: 55px; } .pad-v-56 { padding-top: 56px !important; padding-bottom: 56px; } .pad-v-57 { padding-top: 57px !important; padding-bottom: 57px; } .pad-v-58 { padding-top: 58px !important; padding-bottom: 58px; } .pad-v-59 { padding-top: 59px !important; padding-bottom: 59px; } .pad-v-60 { padding-top: 60px !important; padding-bottom: 60px; } .pad-v-61 { padding-top: 61px !important; padding-bottom: 61px; } .pad-v-62 { padding-top: 62px !important; padding-bottom: 62px; } .pad-v-63 { padding-top: 63px !important; padding-bottom: 63px; } .pad-v-64 { padding-top: 64px !important; padding-bottom: 64px; } .pad-v-65 { padding-top: 65px !important; padding-bottom: 65px; } .pad-v-66 { padding-top: 66px !important; padding-bottom: 66px; } .pad-v-67 { padding-top: 67px !important; padding-bottom: 67px; } .pad-v-68 { padding-top: 68px !important; padding-bottom: 68px; } .pad-v-69 { padding-top: 69px !important; padding-bottom: 69px; } .pad-v-70 { padding-top: 70px !important; padding-bottom: 70px; } .pad-v-71 { padding-top: 71px !important; padding-bottom: 71px; } .pad-v-72 { padding-top: 72px !important; padding-bottom: 72px; } .pad-v-73 { padding-top: 73px !important; padding-bottom: 73px; } .pad-v-74 { padding-top: 74px !important; padding-bottom: 74px; } .pad-v-75 { padding-top: 75px !important; padding-bottom: 75px; } .pad-v-76 { padding-top: 76px !important; padding-bottom: 76px; } .pad-v-77 { padding-top: 77px !important; padding-bottom: 77px; } .pad-v-78 { padding-top: 78px !important; padding-bottom: 78px; } .pad-v-79 { padding-top: 79px !important; padding-bottom: 79px; } .pad-v-80 { padding-top: 80px !important; padding-bottom: 80px; } .pad-v-81 { padding-top: 81px !important; padding-bottom: 81px; } .pad-v-82 { padding-top: 82px !important; padding-bottom: 82px; } .pad-v-83 { padding-top: 83px !important; padding-bottom: 83px; } .pad-v-84 { padding-top: 84px !important; padding-bottom: 84px; } .pad-v-85 { padding-top: 85px !important; padding-bottom: 85px; } .pad-v-86 { padding-top: 86px !important; padding-bottom: 86px; } .pad-v-87 { padding-top: 87px !important; padding-bottom: 87px; } .pad-v-88 { padding-top: 88px !important; padding-bottom: 88px; } .pad-v-89 { padding-top: 89px !important; padding-bottom: 89px; } .pad-v-90 { padding-top: 90px !important; padding-bottom: 90px; } .pad-v-91 { padding-top: 91px !important; padding-bottom: 91px; } .pad-v-92 { padding-top: 92px !important; padding-bottom: 92px; } .pad-v-93 { padding-top: 93px !important; padding-bottom: 93px; } .pad-v-94 { padding-top: 94px !important; padding-bottom: 94px; } .pad-v-95 { padding-top: 95px !important; padding-bottom: 95px; } .pad-v-96 { padding-top: 96px !important; padding-bottom: 96px; } .pad-v-97 { padding-top: 97px !important; padding-bottom: 97px; } .pad-v-98 { padding-top: 98px !important; padding-bottom: 98px; } .pad-v-99 { padding-top: 99px !important; padding-bottom: 99px; } .pad-v-100 { padding-top: 100px !important; padding-bottom: 100px; } .pad-h-1 { padding-left: 1px !important; padding-right: 1px !important; } .pad-h-2 { padding-left: 2px !important; padding-right: 2px !important; } .pad-h-3 { padding-left: 3px !important; padding-right: 3px !important; } .pad-h-4 { padding-left: 4px !important; padding-right: 4px !important; } .pad-h-5 { padding-left: 5px !important; padding-right: 5px !important; } .pad-h-6 { padding-left: 6px !important; padding-right: 6px !important; } .pad-h-7 { padding-left: 7px !important; padding-right: 7px !important; } .pad-h-8 { padding-left: 8px !important; padding-right: 8px !important; } .pad-h-9 { padding-left: 9px !important; padding-right: 9px !important; } .pad-h-10 { padding-left: 10px !important; padding-right: 10px !important; } .pad-h-11 { padding-left: 11px !important; padding-right: 11px !important; } .pad-h-12 { padding-left: 12px !important; padding-right: 12px !important; } .pad-h-13 { padding-left: 13px !important; padding-right: 13px !important; } .pad-h-14 { padding-left: 14px !important; padding-right: 14px !important; } .pad-h-15 { padding-left: 15px !important; padding-right: 15px !important; } .pad-h-16 { padding-left: 16px !important; padding-right: 16px !important; } .pad-h-17 { padding-left: 17px !important; padding-right: 17px !important; } .pad-h-18 { padding-left: 18px !important; padding-right: 18px !important; } .pad-h-19 { padding-left: 19px !important; padding-right: 19px !important; } .pad-h-20 { padding-left: 20px !important; padding-right: 20px !important; } .pad-h-21 { padding-left: 21px !important; padding-right: 21px !important; } .pad-h-22 { padding-left: 22px !important; padding-right: 22px !important; } .pad-h-23 { padding-left: 23px !important; padding-right: 23px !important; } .pad-h-24 { padding-left: 24px !important; padding-right: 24px !important; } .pad-h-25 { padding-left: 25px !important; padding-right: 25px !important; } .pad-h-26 { padding-left: 26px !important; padding-right: 26px !important; } .pad-h-27 { padding-left: 27px !important; padding-right: 27px !important; } .pad-h-28 { padding-left: 28px !important; padding-right: 28px !important; } .pad-h-29 { padding-left: 29px !important; padding-right: 29px !important; } .pad-h-30 { padding-left: 30px !important; padding-right: 30px !important; } .pad-h-31 { padding-left: 31px !important; padding-right: 31px !important; } .pad-h-32 { padding-left: 32px !important; padding-right: 32px !important; } .pad-h-33 { padding-left: 33px !important; padding-right: 33px !important; } .pad-h-34 { padding-left: 34px !important; padding-right: 34px !important; } .pad-h-35 { padding-left: 35px !important; padding-right: 35px !important; } .pad-h-36 { padding-left: 36px !important; padding-right: 36px !important; } .pad-h-37 { padding-left: 37px !important; padding-right: 37px !important; } .pad-h-38 { padding-left: 38px !important; padding-right: 38px !important; } .pad-h-39 { padding-left: 39px !important; padding-right: 39px !important; } .pad-h-40 { padding-left: 40px !important; padding-right: 40px !important; } .pad-h-41 { padding-left: 41px !important; padding-right: 41px !important; } .pad-h-42 { padding-left: 42px !important; padding-right: 42px !important; } .pad-h-43 { padding-left: 43px !important; padding-right: 43px !important; } .pad-h-44 { padding-left: 44px !important; padding-right: 44px !important; } .pad-h-45 { padding-left: 45px !important; padding-right: 45px !important; } .pad-h-46 { padding-left: 46px !important; padding-right: 46px !important; } .pad-h-47 { padding-left: 47px !important; padding-right: 47px !important; } .pad-h-48 { padding-left: 48px !important; padding-right: 48px !important; } .pad-h-49 { padding-left: 49px !important; padding-right: 49px !important; } .pad-h-50 { padding-left: 50px !important; padding-right: 50px !important; } .pad-h-51 { padding-left: 51px !important; padding-right: 51px !important; } .pad-h-52 { padding-left: 52px !important; padding-right: 52px !important; } .pad-h-53 { padding-left: 53px !important; padding-right: 53px !important; } .pad-h-54 { padding-left: 54px !important; padding-right: 54px !important; } .pad-h-55 { padding-left: 55px !important; padding-right: 55px !important; } .pad-h-56 { padding-left: 56px !important; padding-right: 56px !important; } .pad-h-57 { padding-left: 57px !important; padding-right: 57px !important; } .pad-h-58 { padding-left: 58px !important; padding-right: 58px !important; } .pad-h-59 { padding-left: 59px !important; padding-right: 59px !important; } .pad-h-60 { padding-left: 60px !important; padding-right: 60px !important; } .pad-h-61 { padding-left: 61px !important; padding-right: 61px !important; } .pad-h-62 { padding-left: 62px !important; padding-right: 62px !important; } .pad-h-63 { padding-left: 63px !important; padding-right: 63px !important; } .pad-h-64 { padding-left: 64px !important; padding-right: 64px !important; } .pad-h-65 { padding-left: 65px !important; padding-right: 65px !important; } .pad-h-66 { padding-left: 66px !important; padding-right: 66px !important; } .pad-h-67 { padding-left: 67px !important; padding-right: 67px !important; } .pad-h-68 { padding-left: 68px !important; padding-right: 68px !important; } .pad-h-69 { padding-left: 69px !important; padding-right: 69px !important; } .pad-h-70 { padding-left: 70px !important; padding-right: 70px !important; } .pad-h-71 { padding-left: 71px !important; padding-right: 71px !important; } .pad-h-72 { padding-left: 72px !important; padding-right: 72px !important; } .pad-h-73 { padding-left: 73px !important; padding-right: 73px !important; } .pad-h-74 { padding-left: 74px !important; padding-right: 74px !important; } .pad-h-75 { padding-left: 75px !important; padding-right: 75px !important; } .pad-h-76 { padding-left: 76px !important; padding-right: 76px !important; } .pad-h-77 { padding-left: 77px !important; padding-right: 77px !important; } .pad-h-78 { padding-left: 78px !important; padding-right: 78px !important; } .pad-h-79 { padding-left: 79px !important; padding-right: 79px !important; } .pad-h-80 { padding-left: 80px !important; padding-right: 80px !important; } .pad-h-81 { padding-left: 81px !important; padding-right: 81px !important; } .pad-h-82 { padding-left: 82px !important; padding-right: 82px !important; } .pad-h-83 { padding-left: 83px !important; padding-right: 83px !important; } .pad-h-84 { padding-left: 84px !important; padding-right: 84px !important; } .pad-h-85 { padding-left: 85px !important; padding-right: 85px !important; } .pad-h-86 { padding-left: 86px !important; padding-right: 86px !important; } .pad-h-87 { padding-left: 87px !important; padding-right: 87px !important; } .pad-h-88 { padding-left: 88px !important; padding-right: 88px !important; } .pad-h-89 { padding-left: 89px !important; padding-right: 89px !important; } .pad-h-90 { padding-left: 90px !important; padding-right: 90px !important; } .pad-h-91 { padding-left: 91px !important; padding-right: 91px !important; } .pad-h-92 { padding-left: 92px !important; padding-right: 92px !important; } .pad-h-93 { padding-left: 93px !important; padding-right: 93px !important; } .pad-h-94 { padding-left: 94px !important; padding-right: 94px !important; } .pad-h-95 { padding-left: 95px !important; padding-right: 95px !important; } .pad-h-96 { padding-left: 96px !important; padding-right: 96px !important; } .pad-h-97 { padding-left: 97px !important; padding-right: 97px !important; } .pad-h-98 { padding-left: 98px !important; padding-right: 98px !important; } .pad-h-99 { padding-left: 99px !important; padding-right: 99px !important; } .pad-h-100 { padding-left: 100px !important; padding-right: 100px !important; } .percent1 { width: 1% !important; } .percent2 { width: 2% !important; } .percent3 { width: 3% !important; } .percent4 { width: 4% !important; } .percent5 { width: 5% !important; } .percent6 { width: 6% !important; } .percent7 { width: 7% !important; } .percent8 { width: 8% !important; } .percent9 { width: 9% !important; } .percent10 { width: 10% !important; } .percent11 { width: 11% !important; } .percent12 { width: 12% !important; } .percent13 { width: 13% !important; } .percent14 { width: 14% !important; } .percent15 { width: 15% !important; } .percent16 { width: 16% !important; } .percent17 { width: 17% !important; } .percent18 { width: 18% !important; } .percent19 { width: 19% !important; } .percent20 { width: 20% !important; } .percent21 { width: 21% !important; } .percent22 { width: 22% !important; } .percent23 { width: 23% !important; } .percent24 { width: 24% !important; } .percent25 { width: 25% !important; } .percent26 { width: 26% !important; } .percent27 { width: 27% !important; } .percent28 { width: 28% !important; } .percent29 { width: 29% !important; } .percent30 { width: 30% !important; } .percent31 { width: 31% !important; } .percent32 { width: 32% !important; } .percent33 { width: 33% !important; } .percent34 { width: 34% !important; } .percent35 { width: 35% !important; } .percent36 { width: 36% !important; } .percent37 { width: 37% !important; } .percent38 { width: 38% !important; } .percent39 { width: 39% !important; } .percent40 { width: 40% !important; } .percent41 { width: 41% !important; } .percent42 { width: 42% !important; } .percent43 { width: 43% !important; } .percent44 { width: 44% !important; } .percent45 { width: 45% !important; } .percent46 { width: 46% !important; } .percent47 { width: 47% !important; } .percent48 { width: 48% !important; } .percent49 { width: 49% !important; } .percent50 { width: 50% !important; } .percent51 { width: 51% !important; } .percent52 { width: 52% !important; } .percent53 { width: 53% !important; } .percent54 { width: 54% !important; } .percent55 { width: 55% !important; } .percent56 { width: 56% !important; } .percent57 { width: 57% !important; } .percent58 { width: 58% !important; } .percent59 { width: 59% !important; } .percent60 { width: 60% !important; } .percent61 { width: 61% !important; } .percent62 { width: 62% !important; } .percent63 { width: 63% !important; } .percent64 { width: 64% !important; } .percent65 { width: 65% !important; } .percent66 { width: 66% !important; } .percent67 { width: 67% !important; } .percent68 { width: 68% !important; } .percent69 { width: 69% !important; } .percent70 { width: 70% !important; } .percent71 { width: 71% !important; } .percent72 { width: 72% !important; } .percent73 { width: 73% !important; } .percent74 { width: 74% !important; } .percent75 { width: 75% !important; } .percent76 { width: 76% !important; } .percent77 { width: 77% !important; } .percent78 { width: 78% !important; } .percent79 { width: 79% !important; } .percent80 { width: 80% !important; } .percent81 { width: 81% !important; } .percent82 { width: 82% !important; } .percent83 { width: 83% !important; } .percent84 { width: 84% !important; } .percent85 { width: 85% !important; } .percent86 { width: 86% !important; } .percent87 { width: 87% !important; } .percent88 { width: 88% !important; } .percent89 { width: 89% !important; } .percent90 { width: 90% !important; } .percent91 { width: 91% !important; } .percent92 { width: 92% !important; } .percent93 { width: 93% !important; } .percent94 { width: 94% !important; } .percent95 { width: 95% !important; } .percent96 { width: 96% !important; } .percent97 { width: 97% !important; } .percent98 { width: 98% !important; } .percent99 { width: 99% !important; } .percent100 { width: 100% !important; } .mar-none-imp { margin: 0 !important; } .pad-none-imp { padding: 0 !important; }
0.390243
0.140218
[d="M21.025 5V4C21.025 2.88 20.05 2 19 2C17.95 2 17 2.88 17 4V5C16.4477 5 16 5.44772 16 6V9C16 9.55228 16.4477 10 17 10H19H21C21.5523 10 22 9.55228 22 9V5.975C22 5.43652 21.5635 5 21.025 5ZM20 5H18V4C18 3.42857 18.4667 3 19 3C19.5333 3 20 3.42857 20 4V5Z"], [d="M19.8914 3.80204L22.2438 8.55654C22.5726 9.22119 22.0891 9.99999 21.3475 10L16.6179 10C15.8745 10 15.391 9.21769 15.7235 8.55279L18.1007 3.79829C18.4701 3.05951 19.5251 3.06172 19.8914 3.80204ZM18.4998 5H19.4999V7.5H18.4999L18.4998 5ZM18.4998 8.49887C18.4998 8.77589 18.7238 9 18.9998 9C19.2759 9 19.4999 8.77589 19.4999 8.49887C19.4999 8.22224 19.2759 7.99773 18.9998 7.99773C18.7238 7.99773 18.4998 8.22224 18.4998 8.49887Z"] { transform: translate(1px, -2px) } /* Home Tab icon */ [d="M10 20V14H14V20H19V12H22L12 3L2 12H5V20H10Z"] { d: path(var(--home)); transform: scale(0.9) translate(2px, 0px); } /* Text Channel */ [d="M5.88657 21C5.57547 21 5.3399 20.7189 5.39427 20.4126L6.00001 17H2.59511C2.28449 17 2.04905 16.7198 2.10259 16.4138L2.27759 15.4138C2.31946 15.1746 2.52722 15 2.77011 15H6.35001L7.41001 9H4.00511C3.69449 9 3.45905 8.71977 3.51259 8.41381L3.68759 7.41381C3.72946 7.17456 3.93722 7 4.18011 7H7.76001L8.39677 3.41262C8.43914 3.17391 8.64664 3 8.88907 3H9.87344C10.1845 3 10.4201 3.28107 10.3657 3.58738L9.76001 7H15.76L16.3968 3.41262C16.4391 3.17391 16.6466 3 16.8891 3H17.8734C18.1845 3 18.4201 3.28107 18.3657 3.58738L17.76 7H21.1649C21.4755 7 21.711 7.28023 21.6574 7.58619L21.4824 8.58619C21.4406 8.82544 21.2328 9 20.9899 9H17.41L16.35 15H19.7549C20.0655 15 20.301 15.2802 20.2474 15.5862L20.0724 16.5862C20.0306 16.8254 19.8228 17 19.5799 17H16L15.3632 20.5874C15.3209 20.8261 15.1134 21 14.8709 21H13.8866C13.5755 21 13.3399 20.7189 13.3943 20.4126L14 17H8.00001L7.36325 20.5874C7.32088 20.8261 7.11337 21 6.87094 21H5.88657ZM9.41045 9L8.35045 15H14.3504L15.4104 9H9.41045Z"] { d: path(var(--text)); transform: scale(0.95) translate(1px, 2px); } /* Private/Locked Text Channel */ [d="M14 8C14 7.44772 13.5523 7 13 7H9.76001L10.3657 3.58738C10.4201 3.28107 10.1845 3 9.87344 3H8.88907C8.64664 3 8.43914 3.17391 8.39677 3.41262L7.76001 7H4.18011C3.93722 7 3.72946 7.17456 3.68759 7.41381L3.51259 8.41381C3.45905 8.71977 3.69449 9 4.00511 9H7.41001L6.35001 15H2.77011C2.52722 15 2.31946 15.1746 2.27759 15.4138L2.10259 16.4138C2.04905 16.7198 2.28449 17 2.59511 17H6.00001L5.39427 20.4126C5.3399 20.7189 5.57547 21 5.88657 21H6.87094C7.11337 21 7.32088 20.8261 7.36325 20.5874L8.00001 17H14L13.3943 20.4126C13.3399 20.7189 13.5755 21 13.8866 21H14.8709C15.1134 21 15.3209 20.8261 15.3632 20.5874L16 17H19.5799C19.8228 17 20.0306 16.8254 20.0724 16.5862L20.2474 15.5862C20.301 15.2802 20.0655 15 19.7549 15H16.35L16.6758 13.1558C16.7823 12.5529 16.3186 12 15.7063 12C15.2286 12 14.8199 12.3429 14.7368 12.8133L14.3504 15H8.35045L9.41045 9H13C13.5523 9 14 8.55228 14 8Z"] { d: path(var(--text-private)); transform: scale(0.95) translate(1px, 2px); } /* Voice Channel */ [d="M11.383 3.07904C11.009 2.92504 10.579 3.01004 10.293 3.29604L6 8.00204H3C2.45 8.00204 2 8.45304 2 9.00204V15.002C2 15.552 2.45 16.002 3 16.002H6L10.293 20.71C10.579 20.996 11.009 21.082 11.383 20.927C11.757 20.772 12 20.407 12 20.002V4.00204C12 3.59904 11.757 3.23204 11.383 3.07904ZM14 5.00195V7.00195C16.757 7.00195 19 9.24595 19 12.002C19 14.759 16.757 17.002 14 17.002V19.002C17.86 19.002 21 15.863 21 12.002C21 8.14295 17.86 5.00195 14 5.00195ZM14 9.00195C15.654 9.00195 17 10.349 17 12.002C17 13.657 15.654 15.002 14 15.002V13.002C14.551 13.002 15 12.553 15 12.002C15 11.451 14.551 11.002 14 11.002V9.00195Z"] { d: path(var(--voice)); } /* Locked/Private Voice Channel */ [d="M15 12C15 12.0007 15 12.0013 15 12.002C15 12.553 14.551 13.002 14 13.002V15.002C15.654 15.002 17 13.657 17 12.002C17 12.0013 17 12.0007 17 12H15ZM19 12C19 12.0007 19 12.0013 19 12.002C19 14.759 16.757 17.002 14 17.002V19.002C17.86 19.002 21 15.863 21 12.002C21 12.0013 21 12.0007 21 12H19ZM10.293 3.29604C10.579 3.01004 11.009 2.92504 11.383 3.07904C11.757 3.23204 12 3.59904 12 4.00204V20.002C12 20.407 11.757 20.772 11.383 20.927C11.009 21.082 10.579 20.996 10.293 20.71L6 16.002H3C2.45 16.002 2 15.552 2 15.002V9.00204C2 8.45304 2.45 8.00204 3 8.00204H6L10.293 3.29604Z"] { d: path(var(--voice-private)); transform: translate(1px, 0px) } /* Rules Channel Icon */ [d="M33 34.5833V7.49998H35V36.6666H9C6.791 36.6666 5 34.801 5 32.5V7.49998C5 5.19894 6.791 3.33331 9 3.33331H31V30.4166H9C7.8955 30.4166 7 31.3485 7 32.5C7 33.6515 7.8955 34.5833 9 34.5833H33ZM23.9718 9.99998L15.8889 17.9915L12.7086 14.8441L10 17.5058L15.8885 23.3333L26.6667 12.6669L23.9718 9.99998Z"] { d: path(var(--rules)); transform: scale(1.6); } /* Events Channel Icon */ [d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7v-5z"] { d: path(var(--events)); } /* Stage Icon */ [d="M14 13C14 14.1 13.1 15 12 15C10.9 15 10 14.1 10 13C10 11.9 10.9 11 12 11C13.1 11 14 11.9 14 13ZM8.5 20V19.5C8.5 17.8 9.94 16.5 12 16.5C14.06 16.5 15.5 17.8 15.5 19.5V20H8.5ZM7 13C7 10.24 9.24 8 12 8C14.76 8 17 10.24 17 13C17 13.91 16.74 14.75 16.31 15.49L17.62 16.25C18.17 15.29 18.5 14.19 18.5 13C18.5 9.42 15.58 6.5 12 6.5C8.42 6.5 5.5 9.42 5.5 13C5.5 14.18 5.82 15.29 6.38 16.25L7.69 15.49C7.26 14.75 7 13.91 7 13ZM2.5 13C2.5 7.75 6.75 3.5 12 3.5C17.25 3.5 21.5 7.75 21.5 13C21.5 14.73 21.03 16.35 20.22 17.75L21.51 18.5C22.45 16.88 23 15 23 13C23 6.93 18.07 2 12 2C5.93 2 1 6.93 1 13C1 15 1.55 16.88 2.48 18.49L3.77 17.74C2.97 16.35 2.5 14.73 2.5 13Z"] { d: path(var(--stage)); } /* Removing some things from Locked stage icon */ [d="M14 13C14 14.1 13.1 15 12 15C10.9 15 10 14.1 10 13C10 11.9 10.9 11 12 11C13.1 11 14 11.9 14 13Z"], [d="M7 13C7 10.24 9.24 8 12 8C14.76 8 17 10.24 17 13C17 13.91 16.74 14.75 16.31 15.49L17.62 16.25C18.17 15.29 18.5 14.19 18.5 13C18.5 9.42 15.58 6.5 12 6.5C8.42 6.5 5.5 9.42 5.5 13C5.5 14.18 5.82 15.29 6.38 16.25L7.69 15.49C7.26 14.75 7 13.91 7 13Z"], [d="M15 2.41495C14.0462 2.14467 13.0398 2 12 2C5.93 2 1 6.93 1 13C1 15 1.55 16.88 2.48 18.49L3.77 17.74C2.97 16.35 2.5 14.73 2.5 13C2.5 7.75 6.75 3.5 12 3.5C13.0485 3.5 14.0571 3.66952 15 3.98267V2.41495Z"], [d="M21.0173 10C21.3305 10.9429 21.5 11.9515 21.5 13C21.5 14.73 21.03 16.35 20.22 17.75L21.51 18.5C22.45 16.88 23 15 23 13C23 11.9602 22.8553 10.9538 22.585 10H21.0173Z"] { display: none; } /* Locked stage icon */ [d="M8.5 19.5V20H15.5V19.5C15.5 17.8 14.06 16.5 12 16.5C9.94 16.5 8.5 17.8 8.5 19.5Z"] { d: path(var(--stage-private)); } /* Private threads icon */ [d="M15.44 6.99992C15.5725 6.99992 15.68 7.10737 15.68 7.23992V8.75992C15.68 8.89247 15.5725 8.99992 15.44 8.99992H9.41045L8.35045 14.9999H10.56V16.9999H8.00001L7.36325 20.5873C7.32088 20.826 7.11337 20.9999 6.87094 20.9999H5.88657C5.57547 20.9999 5.3399 20.7189 5.39427 20.4125L6.00001 16.9999H2.59511C2.28449 16.9999 2.04905 16.7197 2.10259 16.4137L2.27759 15.4137C2.31946 15.1745 2.52722 14.9999 2.77011 14.9999H6.35001L7.41001 8.99992H4.00511C3.69449 8.99992 3.45905 8.71969 3.51259 8.41373L3.68759 7.41373C3.72946 7.17448 3.93722 6.99992 4.18011 6.99992H7.76001L8.39677 3.41254C8.43914 3.17384 8.64664 2.99992 8.88907 2.99992H9.87344C10.1845 2.99992 10.4201 3.28099 10.3657 3.58731L9.76001 6.99992H15.44Z"] { d: path(var(--threads-private)); transform: translate(0px, 3px) } /* Removes a small icon at the bottom of private threads icon */ [d="M13.44 12.9599C12.9098 12.9599 12.48 13.3897 12.48 13.9199V20.2212C12.48 20.7514 12.9098 21.1812 13.44 21.1812H14.4C14.5326 21.1812 14.64 21.2886 14.64 21.4212V23.4597C14.64 23.6677 14.8866 23.7772 15.0409 23.6377L17.4859 21.4289C17.6623 21.2694 17.8917 21.1812 18.1294 21.1812H22.56C23.0902 21.1812 23.52 20.7514 23.52 20.2212V13.9199C23.52 13.3897 23.0902 12.9599 22.56 12.9599H13.44Z"] { display: none; } /* Small gear icon - next to channel name */ [d="M14 7V9C14 9 12.5867 9 12.5733 9.00667C12.42 9.58667 12.1733 10.1267 11.84 10.6067L12.74 11.5067L11.4933 12.7533L10.5933 11.8533C10.1133 12.1867 9.57334 12.44 8.99334 12.5867V14H6.99334V12.58C6.41334 12.4333 5.87334 12.18 5.39334 11.8467L4.49333 12.7467L3.24667 11.5L4.14667 10.6C3.81333 10.1267 3.56 9.58 3.41333 9H2V7H3.41333C3.56 6.42 3.81333 5.88 4.14667 5.4L3.24667 4.5L4.5 3.24667L5.4 4.14667C5.87334 3.81333 6.42 3.56 7 3.41333V2H9V3.41333C9.58 3.56667 10.12 3.81333 10.6 4.14667L11.5067 3.25333L12.7533 4.5L11.8533 5.4C12.1867 5.87334 12.44 6.42 12.5867 7H14ZM8 10C9.10457 10 10 9.10457 10 8C10 6.89543 9.10457 6 8 6C6.89543 6 6 6.89543 6 8C6 9.10457 6.89543 10 8 10Z"] { d: path(var(--gear)); transform: scale(0.6) translate(2px, 1px) } /* Hiding some bits from Small invite icon - Next to channel name */ [d="M6.5 8.00667C7.88 8.00667 9 6.88667 9 5.50667C9 4.12667 7.88 3.00667 6.5 3.00667C5.12 3.00667 4 4.12667 4 5.50667C4 6.88667 5.12 8.00667 6.5 8.00667Z"] { display: none; } /* Invite icon next to channel name */ [d="M6.5 8.34C3.26 8.34 1 9.98666 1 12.34V13.0067H12V12.34C12 9.98 9.74 8.34 6.5 8.34Z"] { d: path(var(--invite-people)); transform: scale(0.6) translate(0.5px, 1px); } /* Announcements */ [d="M19.1 4V5.12659L4.85 8.26447V18.1176C4.85 18.5496 5.1464 18.9252 5.5701 19.0315L9.3701 19.9727C9.4461 19.9906 9.524 20 9.6 20C9.89545 20 10.1776 19.8635 10.36 19.6235L12.7065 16.5242L19.1 17.9304V19.0588H21V4H19.1ZM9.2181 17.9944L6.75 17.3826V15.2113L10.6706 16.0753L9.2181 17.9944Z"] { d: path(var(--megaphone)); transform: scale(0.9) translate(0px, 3px); } [d="M3.9 8.26H2V15.2941H3.9V8.26Z"] { display: none !important; } /* Announcements (Locked) */ [d="M4.85 8.26429L15.84 5.84426V10.5599C15.84 11.6202 16.6996 12.4799 17.76 12.4799H21V19.0586H19.1V17.9302L12.7065 16.524L10.36 19.6233C10.1776 19.8633 9.89545 19.9998 9.6 19.9998C9.524 19.9998 9.4461 19.9904 9.3701 19.9725L5.5701 19.0313C5.1464 18.925 4.85 18.5495 4.85 18.1175V8.26429ZM9.2181 17.9942L6.75 17.3824V15.2111L10.6706 16.0751L9.2181 17.9942Z"] { d: path(var(--megaphone-private)); transform: scale(0.9) translate(0px, 3px); } [d="M3.9 8.25981H2V15.2939H3.9V8.25981Z"] { display: none; } [d="M22.545 4.87988V5.87988H23.28C23.4126 5.87988 23.52 5.98733 23.52 6.11988V10.6399C23.52 10.7724 23.4126 10.8799 23.28 10.8799H17.76C17.6275 10.8799 17.52 10.7724 17.52 10.6399V6.11988C17.52 5.98733 17.6275 5.87988 17.76 5.87988H18.52V4.87988C18.52 3.75988 19.47 2.87988 20.52 2.87988C21.57 2.87988 22.545 3.75988 22.545 4.87988ZM19.52 5.87988H21.52V4.87988C21.52 4.30845 21.0534 3.87988 20.52 3.87988C19.9867 3.87988 19.52 4.30845 19.52 4.87988V5.87988Z"] { transform: translate(-1.5px, -1.5px); } /* Big Lock Icon in Channels */ [d="M17 11V7C17 4.243 14.756 2 12 2C9.242 2 7 4.243 7 7V11C5.897 11 5 11.896 5 13V20C5 21.103 5.897 22 7 22H17C18.103 22 19 21.103 19 20V13C19 11.896 18.103 11 17 11ZM12 18C11.172 18 10.5 17.328 10.5 16.5C10.5 15.672 11.172 15 12 15C12.828 15 13.5 15.672 13.5 16.5C13.5 17.328 12.828 18 12 18ZM15 11H9V7C9 5.346 10.346 4 12 4C13.654 4 15 5.346 15 7V11Z"] { d: path(var(--locked)); transform: scale(0.9) translate(2px, 0px); }
src/channel-icons.css
[d="M21.025 5V4C21.025 2.88 20.05 2 19 2C17.95 2 17 2.88 17 4V5C16.4477 5 16 5.44772 16 6V9C16 9.55228 16.4477 10 17 10H19H21C21.5523 10 22 9.55228 22 9V5.975C22 5.43652 21.5635 5 21.025 5ZM20 5H18V4C18 3.42857 18.4667 3 19 3C19.5333 3 20 3.42857 20 4V5Z"], [d="M19.8914 3.80204L22.2438 8.55654C22.5726 9.22119 22.0891 9.99999 21.3475 10L16.6179 10C15.8745 10 15.391 9.21769 15.7235 8.55279L18.1007 3.79829C18.4701 3.05951 19.5251 3.06172 19.8914 3.80204ZM18.4998 5H19.4999V7.5H18.4999L18.4998 5ZM18.4998 8.49887C18.4998 8.77589 18.7238 9 18.9998 9C19.2759 9 19.4999 8.77589 19.4999 8.49887C19.4999 8.22224 19.2759 7.99773 18.9998 7.99773C18.7238 7.99773 18.4998 8.22224 18.4998 8.49887Z"] { transform: translate(1px, -2px) } /* Home Tab icon */ [d="M10 20V14H14V20H19V12H22L12 3L2 12H5V20H10Z"] { d: path(var(--home)); transform: scale(0.9) translate(2px, 0px); } /* Text Channel */ [d="M5.88657 21C5.57547 21 5.3399 20.7189 5.39427 20.4126L6.00001 17H2.59511C2.28449 17 2.04905 16.7198 2.10259 16.4138L2.27759 15.4138C2.31946 15.1746 2.52722 15 2.77011 15H6.35001L7.41001 9H4.00511C3.69449 9 3.45905 8.71977 3.51259 8.41381L3.68759 7.41381C3.72946 7.17456 3.93722 7 4.18011 7H7.76001L8.39677 3.41262C8.43914 3.17391 8.64664 3 8.88907 3H9.87344C10.1845 3 10.4201 3.28107 10.3657 3.58738L9.76001 7H15.76L16.3968 3.41262C16.4391 3.17391 16.6466 3 16.8891 3H17.8734C18.1845 3 18.4201 3.28107 18.3657 3.58738L17.76 7H21.1649C21.4755 7 21.711 7.28023 21.6574 7.58619L21.4824 8.58619C21.4406 8.82544 21.2328 9 20.9899 9H17.41L16.35 15H19.7549C20.0655 15 20.301 15.2802 20.2474 15.5862L20.0724 16.5862C20.0306 16.8254 19.8228 17 19.5799 17H16L15.3632 20.5874C15.3209 20.8261 15.1134 21 14.8709 21H13.8866C13.5755 21 13.3399 20.7189 13.3943 20.4126L14 17H8.00001L7.36325 20.5874C7.32088 20.8261 7.11337 21 6.87094 21H5.88657ZM9.41045 9L8.35045 15H14.3504L15.4104 9H9.41045Z"] { d: path(var(--text)); transform: scale(0.95) translate(1px, 2px); } /* Private/Locked Text Channel */ [d="M14 8C14 7.44772 13.5523 7 13 7H9.76001L10.3657 3.58738C10.4201 3.28107 10.1845 3 9.87344 3H8.88907C8.64664 3 8.43914 3.17391 8.39677 3.41262L7.76001 7H4.18011C3.93722 7 3.72946 7.17456 3.68759 7.41381L3.51259 8.41381C3.45905 8.71977 3.69449 9 4.00511 9H7.41001L6.35001 15H2.77011C2.52722 15 2.31946 15.1746 2.27759 15.4138L2.10259 16.4138C2.04905 16.7198 2.28449 17 2.59511 17H6.00001L5.39427 20.4126C5.3399 20.7189 5.57547 21 5.88657 21H6.87094C7.11337 21 7.32088 20.8261 7.36325 20.5874L8.00001 17H14L13.3943 20.4126C13.3399 20.7189 13.5755 21 13.8866 21H14.8709C15.1134 21 15.3209 20.8261 15.3632 20.5874L16 17H19.5799C19.8228 17 20.0306 16.8254 20.0724 16.5862L20.2474 15.5862C20.301 15.2802 20.0655 15 19.7549 15H16.35L16.6758 13.1558C16.7823 12.5529 16.3186 12 15.7063 12C15.2286 12 14.8199 12.3429 14.7368 12.8133L14.3504 15H8.35045L9.41045 9H13C13.5523 9 14 8.55228 14 8Z"] { d: path(var(--text-private)); transform: scale(0.95) translate(1px, 2px); } /* Voice Channel */ [d="M11.383 3.07904C11.009 2.92504 10.579 3.01004 10.293 3.29604L6 8.00204H3C2.45 8.00204 2 8.45304 2 9.00204V15.002C2 15.552 2.45 16.002 3 16.002H6L10.293 20.71C10.579 20.996 11.009 21.082 11.383 20.927C11.757 20.772 12 20.407 12 20.002V4.00204C12 3.59904 11.757 3.23204 11.383 3.07904ZM14 5.00195V7.00195C16.757 7.00195 19 9.24595 19 12.002C19 14.759 16.757 17.002 14 17.002V19.002C17.86 19.002 21 15.863 21 12.002C21 8.14295 17.86 5.00195 14 5.00195ZM14 9.00195C15.654 9.00195 17 10.349 17 12.002C17 13.657 15.654 15.002 14 15.002V13.002C14.551 13.002 15 12.553 15 12.002C15 11.451 14.551 11.002 14 11.002V9.00195Z"] { d: path(var(--voice)); } /* Locked/Private Voice Channel */ [d="M15 12C15 12.0007 15 12.0013 15 12.002C15 12.553 14.551 13.002 14 13.002V15.002C15.654 15.002 17 13.657 17 12.002C17 12.0013 17 12.0007 17 12H15ZM19 12C19 12.0007 19 12.0013 19 12.002C19 14.759 16.757 17.002 14 17.002V19.002C17.86 19.002 21 15.863 21 12.002C21 12.0013 21 12.0007 21 12H19ZM10.293 3.29604C10.579 3.01004 11.009 2.92504 11.383 3.07904C11.757 3.23204 12 3.59904 12 4.00204V20.002C12 20.407 11.757 20.772 11.383 20.927C11.009 21.082 10.579 20.996 10.293 20.71L6 16.002H3C2.45 16.002 2 15.552 2 15.002V9.00204C2 8.45304 2.45 8.00204 3 8.00204H6L10.293 3.29604Z"] { d: path(var(--voice-private)); transform: translate(1px, 0px) } /* Rules Channel Icon */ [d="M33 34.5833V7.49998H35V36.6666H9C6.791 36.6666 5 34.801 5 32.5V7.49998C5 5.19894 6.791 3.33331 9 3.33331H31V30.4166H9C7.8955 30.4166 7 31.3485 7 32.5C7 33.6515 7.8955 34.5833 9 34.5833H33ZM23.9718 9.99998L15.8889 17.9915L12.7086 14.8441L10 17.5058L15.8885 23.3333L26.6667 12.6669L23.9718 9.99998Z"] { d: path(var(--rules)); transform: scale(1.6); } /* Events Channel Icon */ [d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7v-5z"] { d: path(var(--events)); } /* Stage Icon */ [d="M14 13C14 14.1 13.1 15 12 15C10.9 15 10 14.1 10 13C10 11.9 10.9 11 12 11C13.1 11 14 11.9 14 13ZM8.5 20V19.5C8.5 17.8 9.94 16.5 12 16.5C14.06 16.5 15.5 17.8 15.5 19.5V20H8.5ZM7 13C7 10.24 9.24 8 12 8C14.76 8 17 10.24 17 13C17 13.91 16.74 14.75 16.31 15.49L17.62 16.25C18.17 15.29 18.5 14.19 18.5 13C18.5 9.42 15.58 6.5 12 6.5C8.42 6.5 5.5 9.42 5.5 13C5.5 14.18 5.82 15.29 6.38 16.25L7.69 15.49C7.26 14.75 7 13.91 7 13ZM2.5 13C2.5 7.75 6.75 3.5 12 3.5C17.25 3.5 21.5 7.75 21.5 13C21.5 14.73 21.03 16.35 20.22 17.75L21.51 18.5C22.45 16.88 23 15 23 13C23 6.93 18.07 2 12 2C5.93 2 1 6.93 1 13C1 15 1.55 16.88 2.48 18.49L3.77 17.74C2.97 16.35 2.5 14.73 2.5 13Z"] { d: path(var(--stage)); } /* Removing some things from Locked stage icon */ [d="M14 13C14 14.1 13.1 15 12 15C10.9 15 10 14.1 10 13C10 11.9 10.9 11 12 11C13.1 11 14 11.9 14 13Z"], [d="M7 13C7 10.24 9.24 8 12 8C14.76 8 17 10.24 17 13C17 13.91 16.74 14.75 16.31 15.49L17.62 16.25C18.17 15.29 18.5 14.19 18.5 13C18.5 9.42 15.58 6.5 12 6.5C8.42 6.5 5.5 9.42 5.5 13C5.5 14.18 5.82 15.29 6.38 16.25L7.69 15.49C7.26 14.75 7 13.91 7 13Z"], [d="M15 2.41495C14.0462 2.14467 13.0398 2 12 2C5.93 2 1 6.93 1 13C1 15 1.55 16.88 2.48 18.49L3.77 17.74C2.97 16.35 2.5 14.73 2.5 13C2.5 7.75 6.75 3.5 12 3.5C13.0485 3.5 14.0571 3.66952 15 3.98267V2.41495Z"], [d="M21.0173 10C21.3305 10.9429 21.5 11.9515 21.5 13C21.5 14.73 21.03 16.35 20.22 17.75L21.51 18.5C22.45 16.88 23 15 23 13C23 11.9602 22.8553 10.9538 22.585 10H21.0173Z"] { display: none; } /* Locked stage icon */ [d="M8.5 19.5V20H15.5V19.5C15.5 17.8 14.06 16.5 12 16.5C9.94 16.5 8.5 17.8 8.5 19.5Z"] { d: path(var(--stage-private)); } /* Private threads icon */ [d="M15.44 6.99992C15.5725 6.99992 15.68 7.10737 15.68 7.23992V8.75992C15.68 8.89247 15.5725 8.99992 15.44 8.99992H9.41045L8.35045 14.9999H10.56V16.9999H8.00001L7.36325 20.5873C7.32088 20.826 7.11337 20.9999 6.87094 20.9999H5.88657C5.57547 20.9999 5.3399 20.7189 5.39427 20.4125L6.00001 16.9999H2.59511C2.28449 16.9999 2.04905 16.7197 2.10259 16.4137L2.27759 15.4137C2.31946 15.1745 2.52722 14.9999 2.77011 14.9999H6.35001L7.41001 8.99992H4.00511C3.69449 8.99992 3.45905 8.71969 3.51259 8.41373L3.68759 7.41373C3.72946 7.17448 3.93722 6.99992 4.18011 6.99992H7.76001L8.39677 3.41254C8.43914 3.17384 8.64664 2.99992 8.88907 2.99992H9.87344C10.1845 2.99992 10.4201 3.28099 10.3657 3.58731L9.76001 6.99992H15.44Z"] { d: path(var(--threads-private)); transform: translate(0px, 3px) } /* Removes a small icon at the bottom of private threads icon */ [d="M13.44 12.9599C12.9098 12.9599 12.48 13.3897 12.48 13.9199V20.2212C12.48 20.7514 12.9098 21.1812 13.44 21.1812H14.4C14.5326 21.1812 14.64 21.2886 14.64 21.4212V23.4597C14.64 23.6677 14.8866 23.7772 15.0409 23.6377L17.4859 21.4289C17.6623 21.2694 17.8917 21.1812 18.1294 21.1812H22.56C23.0902 21.1812 23.52 20.7514 23.52 20.2212V13.9199C23.52 13.3897 23.0902 12.9599 22.56 12.9599H13.44Z"] { display: none; } /* Small gear icon - next to channel name */ [d="M14 7V9C14 9 12.5867 9 12.5733 9.00667C12.42 9.58667 12.1733 10.1267 11.84 10.6067L12.74 11.5067L11.4933 12.7533L10.5933 11.8533C10.1133 12.1867 9.57334 12.44 8.99334 12.5867V14H6.99334V12.58C6.41334 12.4333 5.87334 12.18 5.39334 11.8467L4.49333 12.7467L3.24667 11.5L4.14667 10.6C3.81333 10.1267 3.56 9.58 3.41333 9H2V7H3.41333C3.56 6.42 3.81333 5.88 4.14667 5.4L3.24667 4.5L4.5 3.24667L5.4 4.14667C5.87334 3.81333 6.42 3.56 7 3.41333V2H9V3.41333C9.58 3.56667 10.12 3.81333 10.6 4.14667L11.5067 3.25333L12.7533 4.5L11.8533 5.4C12.1867 5.87334 12.44 6.42 12.5867 7H14ZM8 10C9.10457 10 10 9.10457 10 8C10 6.89543 9.10457 6 8 6C6.89543 6 6 6.89543 6 8C6 9.10457 6.89543 10 8 10Z"] { d: path(var(--gear)); transform: scale(0.6) translate(2px, 1px) } /* Hiding some bits from Small invite icon - Next to channel name */ [d="M6.5 8.00667C7.88 8.00667 9 6.88667 9 5.50667C9 4.12667 7.88 3.00667 6.5 3.00667C5.12 3.00667 4 4.12667 4 5.50667C4 6.88667 5.12 8.00667 6.5 8.00667Z"] { display: none; } /* Invite icon next to channel name */ [d="M6.5 8.34C3.26 8.34 1 9.98666 1 12.34V13.0067H12V12.34C12 9.98 9.74 8.34 6.5 8.34Z"] { d: path(var(--invite-people)); transform: scale(0.6) translate(0.5px, 1px); } /* Announcements */ [d="M19.1 4V5.12659L4.85 8.26447V18.1176C4.85 18.5496 5.1464 18.9252 5.5701 19.0315L9.3701 19.9727C9.4461 19.9906 9.524 20 9.6 20C9.89545 20 10.1776 19.8635 10.36 19.6235L12.7065 16.5242L19.1 17.9304V19.0588H21V4H19.1ZM9.2181 17.9944L6.75 17.3826V15.2113L10.6706 16.0753L9.2181 17.9944Z"] { d: path(var(--megaphone)); transform: scale(0.9) translate(0px, 3px); } [d="M3.9 8.26H2V15.2941H3.9V8.26Z"] { display: none !important; } /* Announcements (Locked) */ [d="M4.85 8.26429L15.84 5.84426V10.5599C15.84 11.6202 16.6996 12.4799 17.76 12.4799H21V19.0586H19.1V17.9302L12.7065 16.524L10.36 19.6233C10.1776 19.8633 9.89545 19.9998 9.6 19.9998C9.524 19.9998 9.4461 19.9904 9.3701 19.9725L5.5701 19.0313C5.1464 18.925 4.85 18.5495 4.85 18.1175V8.26429ZM9.2181 17.9942L6.75 17.3824V15.2111L10.6706 16.0751L9.2181 17.9942Z"] { d: path(var(--megaphone-private)); transform: scale(0.9) translate(0px, 3px); } [d="M3.9 8.25981H2V15.2939H3.9V8.25981Z"] { display: none; } [d="M22.545 4.87988V5.87988H23.28C23.4126 5.87988 23.52 5.98733 23.52 6.11988V10.6399C23.52 10.7724 23.4126 10.8799 23.28 10.8799H17.76C17.6275 10.8799 17.52 10.7724 17.52 10.6399V6.11988C17.52 5.98733 17.6275 5.87988 17.76 5.87988H18.52V4.87988C18.52 3.75988 19.47 2.87988 20.52 2.87988C21.57 2.87988 22.545 3.75988 22.545 4.87988ZM19.52 5.87988H21.52V4.87988C21.52 4.30845 21.0534 3.87988 20.52 3.87988C19.9867 3.87988 19.52 4.30845 19.52 4.87988V5.87988Z"] { transform: translate(-1.5px, -1.5px); } /* Big Lock Icon in Channels */ [d="M17 11V7C17 4.243 14.756 2 12 2C9.242 2 7 4.243 7 7V11C5.897 11 5 11.896 5 13V20C5 21.103 5.897 22 7 22H17C18.103 22 19 21.103 19 20V13C19 11.896 18.103 11 17 11ZM12 18C11.172 18 10.5 17.328 10.5 16.5C10.5 15.672 11.172 15 12 15C12.828 15 13.5 15.672 13.5 16.5C13.5 17.328 12.828 18 12 18ZM15 11H9V7C9 5.346 10.346 4 12 4C13.654 4 15 5.346 15 7V11Z"] { d: path(var(--locked)); transform: scale(0.9) translate(2px, 0px); }
0.154695
0.345436
html{background-color: #F5F9FC;} .naver{width: 100%; height: 120px; background-color: #ffffff;min-width: 1300px;} .jinrong{width: 1100px;margin:0px auto;height: 120px;background: #fff;} .nav_left{width: 30%;height: 120px;float: left;} .nav_left .logo{width: 80px; height: 80px; float: left;margin-top: 20px;background: url(/skin/sjzx/img/index_logo.png);} .logo_text{width: 200px;height: 68px;float: left;margin-top: 27px;margin-left: 5px; border-left: 1px solid #eaeaea; padding-left: 5px; border-left: 1px solid #eaeaea;} .logo_text_s1{font-size: 24px;margin-top: 4px;color: #333333;} .logo_text_s2{color: #444444;margin-top: 14px;} .nav_liucheng{width: 380px;height: 48px;float: right; margin-top: 40px;} .liucheng_a{width: 24%;height: 48px; float: left; margin-left: 2px;} .liucheng_img{width: 55%; height: 48px;font-size: 12px; text-align: center; } .liucheng_img img{float: left;margin-left: 9px;} .jiantou{width: 41px;height: 20px; position: absolute; top:74px; margin-left: 50px;} .pages li{list-style-type:none;width:10px;height:10px;border-radius:10px;background-color:white} .pages li:hover{box-shadow:0 0 5px 2px white} .pages li.active{background-color:orange;box-shadow:0 0 5px 2px orange} .pages{position:absolute;z-index:999} .pages.horizontal{left:50%;transform:translateX(-50%);bottom:5px} .pages.horizontal li{display:inline-block;margin-right:10px} .pages.horizontal li:last-child{margin-right:0} .pages.vertical{right:5px;top:50%;transform:translateY(-50%)} .pages.vertical li{margin-bottom:10px} .pages.vertical li:last-child{margin-bottom:0} .navtop{width: 100%; height: 180px;background-color: #ffffff;min-width: 1300px;} .ferwertpoer{width: 1100px; height: 180px;margin: 0 auto; } .ferwertpoer .info{ float: left;margin-top: 48px;} .ferwertpoer .info1{ float: left;margin-left: 100px; margin-top: 48px;} .ferwertpoer .info img{float: left; cursor: pointer; transition: all 0.6s; } .ferwertpoer .info img:hover{ transform: scale(1.1); } .bdertuower{ width: 1100px; height: 668px; margin:0 auto;margin-top: 20px;} .footerher{width: 100%; height:200px; background-color: #ffffff; margin-top: 20px; font-size: 12px; } .footerher .footer_left{width: 45%;height: 200px; float: left; margin-left: 25px;} .footerher .footer_left .right{width: 100%; height: 100px; margin-top: 47px; line-height: 24px;} .footerher .footer_left .right b{font-size: 20px; color: #69C3F0;} .footerher .footer_left .left{width: 100%; height: 100px; margin-top: 47px; float: right; line-height: 24px;} .footerher .footer_left .left b{font-size: 20px; color: #69C3F0; float: right;} .footerher .footer_left .left span{float: right;} .hergort img{float: right;}
Public/New_style/skin/sjzx/css/industry.css
html{background-color: #F5F9FC;} .naver{width: 100%; height: 120px; background-color: #ffffff;min-width: 1300px;} .jinrong{width: 1100px;margin:0px auto;height: 120px;background: #fff;} .nav_left{width: 30%;height: 120px;float: left;} .nav_left .logo{width: 80px; height: 80px; float: left;margin-top: 20px;background: url(/skin/sjzx/img/index_logo.png);} .logo_text{width: 200px;height: 68px;float: left;margin-top: 27px;margin-left: 5px; border-left: 1px solid #eaeaea; padding-left: 5px; border-left: 1px solid #eaeaea;} .logo_text_s1{font-size: 24px;margin-top: 4px;color: #333333;} .logo_text_s2{color: #444444;margin-top: 14px;} .nav_liucheng{width: 380px;height: 48px;float: right; margin-top: 40px;} .liucheng_a{width: 24%;height: 48px; float: left; margin-left: 2px;} .liucheng_img{width: 55%; height: 48px;font-size: 12px; text-align: center; } .liucheng_img img{float: left;margin-left: 9px;} .jiantou{width: 41px;height: 20px; position: absolute; top:74px; margin-left: 50px;} .pages li{list-style-type:none;width:10px;height:10px;border-radius:10px;background-color:white} .pages li:hover{box-shadow:0 0 5px 2px white} .pages li.active{background-color:orange;box-shadow:0 0 5px 2px orange} .pages{position:absolute;z-index:999} .pages.horizontal{left:50%;transform:translateX(-50%);bottom:5px} .pages.horizontal li{display:inline-block;margin-right:10px} .pages.horizontal li:last-child{margin-right:0} .pages.vertical{right:5px;top:50%;transform:translateY(-50%)} .pages.vertical li{margin-bottom:10px} .pages.vertical li:last-child{margin-bottom:0} .navtop{width: 100%; height: 180px;background-color: #ffffff;min-width: 1300px;} .ferwertpoer{width: 1100px; height: 180px;margin: 0 auto; } .ferwertpoer .info{ float: left;margin-top: 48px;} .ferwertpoer .info1{ float: left;margin-left: 100px; margin-top: 48px;} .ferwertpoer .info img{float: left; cursor: pointer; transition: all 0.6s; } .ferwertpoer .info img:hover{ transform: scale(1.1); } .bdertuower{ width: 1100px; height: 668px; margin:0 auto;margin-top: 20px;} .footerher{width: 100%; height:200px; background-color: #ffffff; margin-top: 20px; font-size: 12px; } .footerher .footer_left{width: 45%;height: 200px; float: left; margin-left: 25px;} .footerher .footer_left .right{width: 100%; height: 100px; margin-top: 47px; line-height: 24px;} .footerher .footer_left .right b{font-size: 20px; color: #69C3F0;} .footerher .footer_left .left{width: 100%; height: 100px; margin-top: 47px; float: right; line-height: 24px;} .footerher .footer_left .left b{font-size: 20px; color: #69C3F0; float: right;} .footerher .footer_left .left span{float: right;} .hergort img{float: right;}
0.39712
0.108756
@import url(@import url(https://fonts.googleapis.com/css?family=Lato:400,300); @import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css); .stage { padding:40px; text-align:center;} p { margin: 0 0 15px 0; } .content { display:none; } .sidebar-box { float: left; width: 350px; margin: 30px 30px 30px 40px; } .sidebar-box { max-height: 1000px; position: relative; padding: 20px; overflow: hidden; } .read-more { line-height:1em; letter-spacing:0.06em; font-family: 'Lato', sans-serif; font-weight:normal; font-size:16px; text-decoration:none; color:#fff; background:#231f20; display:inline-block; padding:15px 12px 15px 15px; transition:background 200ms; border-radius:4px; } .read-more:hover { background:#cea052; } .read-more:after{ font-family: 'FontAwesome', sans-serif; font-weight:300; content: "\f105"; margin-left:20px; color:#cea052; font-size:18px; vertical-align:middle; transition:color 200ms; } .read-more:hover:after { color:#231f20; } .gray { background-color: #444; background-color: rgb(89,89,89); } .red { background-color: red; } .red .read-more { /* transparent doesn't work in this context, must use RGBa for both */ background-image: -moz-linear-gradient(top, rgba(255,0,0,0), rgba(255,0,0,100)); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, rgba(255,0,0,0)),color-stop(1, rgba(255,0,0,100))); } .p1{ text-align: center; position: fixed; bottom: 520px; left: 500px; } .p2{ text-align: center; position: fixed; bottom: 520px; left: 820px; } .special{ font-size: 30px; font-weight: bold; display: inline-block; margin: 0 auto; color: #dcfbb4; background-color: green; border: 0.4em solid #d4f7da; border-radius: 50%; transition: all 0.3s; box-sizing: border-box; width: 4em; height: 4em; line-height: 3em; cursor: pointer; box-shadow: 0 0 0 rgba(0,0,0,0.1), inset 0 0 0 rgba(0,0,0,0.1); text-align: center; } button{ cursor: pointer; } button:active { transform: translateY(4px); } * { margin: 0; padding: 0; } body { background-color: black } #demo-top-bar { background: #222; position: relative; zoom: 1; width: 100% !important; z-index: 6000; padding: 20px 0 20px; } #demo-bar-inside { width: 1300px; margin: 0 auto; position: relative; overflow: hidden; } #demo-bar-buttons { padding-top: 10px; position: absolute; top: 10px; right: 10px; text-align: right; font-size: 12px; color: white; text-decoration: none; font: 14px "Lucida Grande", Sans-Serif !important; } #demo-bar-buttons a:hover, #demo-bar-buttons a:focus { text-decoration: underline; } #demo-bar-badge { display: inline-block; width: 302px; padding: 0 !important; margin: 0 !important; background-color: transparent !important; color: white } #demo-bar-badge a { display: block; width: 100%; height: 38px; border-radius: 0; bottom: auto; margin: 0; background: url(/images/examples-logo.png) no-repeat; background-size: 100%; overflow: hidden; text-indent: -9999px; } #demo-bar-badge:before, #demo-bar-badge:after { display: none !important; }
css/style.css
@import url(@import url(https://fonts.googleapis.com/css?family=Lato:400,300); @import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css); .stage { padding:40px; text-align:center;} p { margin: 0 0 15px 0; } .content { display:none; } .sidebar-box { float: left; width: 350px; margin: 30px 30px 30px 40px; } .sidebar-box { max-height: 1000px; position: relative; padding: 20px; overflow: hidden; } .read-more { line-height:1em; letter-spacing:0.06em; font-family: 'Lato', sans-serif; font-weight:normal; font-size:16px; text-decoration:none; color:#fff; background:#231f20; display:inline-block; padding:15px 12px 15px 15px; transition:background 200ms; border-radius:4px; } .read-more:hover { background:#cea052; } .read-more:after{ font-family: 'FontAwesome', sans-serif; font-weight:300; content: "\f105"; margin-left:20px; color:#cea052; font-size:18px; vertical-align:middle; transition:color 200ms; } .read-more:hover:after { color:#231f20; } .gray { background-color: #444; background-color: rgb(89,89,89); } .red { background-color: red; } .red .read-more { /* transparent doesn't work in this context, must use RGBa for both */ background-image: -moz-linear-gradient(top, rgba(255,0,0,0), rgba(255,0,0,100)); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, rgba(255,0,0,0)),color-stop(1, rgba(255,0,0,100))); } .p1{ text-align: center; position: fixed; bottom: 520px; left: 500px; } .p2{ text-align: center; position: fixed; bottom: 520px; left: 820px; } .special{ font-size: 30px; font-weight: bold; display: inline-block; margin: 0 auto; color: #dcfbb4; background-color: green; border: 0.4em solid #d4f7da; border-radius: 50%; transition: all 0.3s; box-sizing: border-box; width: 4em; height: 4em; line-height: 3em; cursor: pointer; box-shadow: 0 0 0 rgba(0,0,0,0.1), inset 0 0 0 rgba(0,0,0,0.1); text-align: center; } button{ cursor: pointer; } button:active { transform: translateY(4px); } * { margin: 0; padding: 0; } body { background-color: black } #demo-top-bar { background: #222; position: relative; zoom: 1; width: 100% !important; z-index: 6000; padding: 20px 0 20px; } #demo-bar-inside { width: 1300px; margin: 0 auto; position: relative; overflow: hidden; } #demo-bar-buttons { padding-top: 10px; position: absolute; top: 10px; right: 10px; text-align: right; font-size: 12px; color: white; text-decoration: none; font: 14px "Lucida Grande", Sans-Serif !important; } #demo-bar-buttons a:hover, #demo-bar-buttons a:focus { text-decoration: underline; } #demo-bar-badge { display: inline-block; width: 302px; padding: 0 !important; margin: 0 !important; background-color: transparent !important; color: white } #demo-bar-badge a { display: block; width: 100%; height: 38px; border-radius: 0; bottom: auto; margin: 0; background: url(/images/examples-logo.png) no-repeat; background-size: 100%; overflow: hidden; text-indent: -9999px; } #demo-bar-badge:before, #demo-bar-badge:after { display: none !important; }
0.311951
0.109515
.login-box .logo-wrapper, .home-loader-box .logo-wrapper { width: 156px; } .login-box .logo-text-wrapper, .home-loader-box .logo-text-wrapper { width: 55px; } .btn { background: #ff7e39; background-image: -webkit-linear-gradient(top, #ff7e39, #ff6422); background-image: -moz-linear-gradient(top, #ff7e39, #ff6422); background-image: -ms-linear-gradient(top, #ff7e39, #ff6422); background-image: -o-linear-gradient(top, #ff7e39, #ff6422); background-image: linear-gradient(to bottom, #ff7e39, #ff6422); -webkit-border-radius: 3; -moz-border-radius: 3; border-radius: 3px; font-family: Arial; color: #ffffff; font-size: 11px; padding: 7px 10px 7px 10px; text-decoration: none; border: 0; } .btn:hover, .btn:focus { background: #ff6310; background-image: -webkit-linear-gradient(top, #ff6310, #f84a00); background-image: -moz-linear-gradient(top, #ff6310, #f84a00); background-image: -ms-linear-gradient(top, #ff6310, #f84a00); background-image: -o-linear-gradient(top, #ff6310, #f84a00); background-image: linear-gradient(to bottom, #ff6310, #f84a00); color: #ffffff !important; } .bootstrap-select .btn { background: #fff; background-image: none; background-image: none; background-image: none; background-image: none; background-image: none; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0px; font-family: Arial; color: #777; font-size: 11px; padding: 5px 8px; text-decoration: none; border: 1px solid #DFDFDF; } .bootstrap-select .btn:hover, .bootstrap-select .btn:focus { background: #fff; background-image: none; background-image: none; background-image: none; background-image: none; background-image: none; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0px; font-family: Arial; color: #777; font-size: 11px; padding: 5px 8px; text-decoration: none; border: 1px solid #DFDFDF; } .bootstrap-select .btn-default:hover, .bootstrap-select .btn-default:focus, .bootstrap-select .btn-default:active, .bootstrap-select .btn-default.active, .bootstrap-select .open .dropdown-toggle.btn-default { background: #fff; background-image: none; background-image: none; background-image: none; background-image: none; background-image: none; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0px; font-family: Arial; color: #777 !important; font-size: 11px; padding: 5px 8px; text-decoration: none; border: 1px solid #DFDFDF; -webkit-box-shadow: none; box-shadow: none; -webkit-transition: none; transition: none; } .login-box .btn { background: #F08EBD; background-image: -webkit-linear-gradient(top, #ff7e39, #ff6422); background-image: -moz-linear-gradient(top, #ff7e39, #ff6422); background-image: -ms-linear-gradient(top, #ff7e39, #ff6422); background-image: -o-linear-gradient(top, #ff7e39, #ff6422); background-image: linear-gradient(to bottom, #ff7e39, #ff6422); -webkit-border-radius: 3; -moz-border-radius: 3; border-radius: 3px; font-family: Arial; color: #ffffff; font-size: 11px; padding: 7px 10px 7px 10px; text-decoration: none; border: 0; } .login-box .btn:hover, .btn:focus { background: #F08EBD; background-image: -webkit-linear-gradient(top, #ff6310, #f84a00); background-image: -moz-linear-gradient(top, #ff6310, #f84a00); background-image: -ms-linear-gradient(top, #ff6310, #f84a00); background-image: -o-linear-gradient(top, #ff6310, #f84a00); background-image: linear-gradient(to bottom, #ff6310, #f84a00); color: #FFFFFF; } .table>thead>tr>th:hover { border-bottom: 3px solid #f84a00; } select:focus, input:focus, select:active, input:active, button:active, button:active { outline-color: #ff6422 !important; border-color: #ff6422 !important; } ul.nav-tabs>li.active>a, ul.sub-nav-tabs>li.active>a, .switch-button-label.on, a:hover, ul.sub-nav-tabs>li>a:hover, ul.nav-tabs>li>a:hover { color: #ff6422 !important; } .pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus { background-color: #ff6310; border-color: #ff6310; color: #fff !important; } .pagination a, .pagination span, .pagination a:hover, .pagination span:hover, .pagination a:focus, .pagination span:focus { color: #ff6310; } #product-status-infobox { background-color: #EFEFEF; } .product-status-tick { color: #1cab16; } #view-attribute-group-details span.form-control { background-color: #ddd!important; border: 0; font-size: 13px; padding-top: 9px; padding-left: 10px; }
admin-panel/src/main/webapp/scripts/css/app-h24.css
.login-box .logo-wrapper, .home-loader-box .logo-wrapper { width: 156px; } .login-box .logo-text-wrapper, .home-loader-box .logo-text-wrapper { width: 55px; } .btn { background: #ff7e39; background-image: -webkit-linear-gradient(top, #ff7e39, #ff6422); background-image: -moz-linear-gradient(top, #ff7e39, #ff6422); background-image: -ms-linear-gradient(top, #ff7e39, #ff6422); background-image: -o-linear-gradient(top, #ff7e39, #ff6422); background-image: linear-gradient(to bottom, #ff7e39, #ff6422); -webkit-border-radius: 3; -moz-border-radius: 3; border-radius: 3px; font-family: Arial; color: #ffffff; font-size: 11px; padding: 7px 10px 7px 10px; text-decoration: none; border: 0; } .btn:hover, .btn:focus { background: #ff6310; background-image: -webkit-linear-gradient(top, #ff6310, #f84a00); background-image: -moz-linear-gradient(top, #ff6310, #f84a00); background-image: -ms-linear-gradient(top, #ff6310, #f84a00); background-image: -o-linear-gradient(top, #ff6310, #f84a00); background-image: linear-gradient(to bottom, #ff6310, #f84a00); color: #ffffff !important; } .bootstrap-select .btn { background: #fff; background-image: none; background-image: none; background-image: none; background-image: none; background-image: none; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0px; font-family: Arial; color: #777; font-size: 11px; padding: 5px 8px; text-decoration: none; border: 1px solid #DFDFDF; } .bootstrap-select .btn:hover, .bootstrap-select .btn:focus { background: #fff; background-image: none; background-image: none; background-image: none; background-image: none; background-image: none; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0px; font-family: Arial; color: #777; font-size: 11px; padding: 5px 8px; text-decoration: none; border: 1px solid #DFDFDF; } .bootstrap-select .btn-default:hover, .bootstrap-select .btn-default:focus, .bootstrap-select .btn-default:active, .bootstrap-select .btn-default.active, .bootstrap-select .open .dropdown-toggle.btn-default { background: #fff; background-image: none; background-image: none; background-image: none; background-image: none; background-image: none; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0px; font-family: Arial; color: #777 !important; font-size: 11px; padding: 5px 8px; text-decoration: none; border: 1px solid #DFDFDF; -webkit-box-shadow: none; box-shadow: none; -webkit-transition: none; transition: none; } .login-box .btn { background: #F08EBD; background-image: -webkit-linear-gradient(top, #ff7e39, #ff6422); background-image: -moz-linear-gradient(top, #ff7e39, #ff6422); background-image: -ms-linear-gradient(top, #ff7e39, #ff6422); background-image: -o-linear-gradient(top, #ff7e39, #ff6422); background-image: linear-gradient(to bottom, #ff7e39, #ff6422); -webkit-border-radius: 3; -moz-border-radius: 3; border-radius: 3px; font-family: Arial; color: #ffffff; font-size: 11px; padding: 7px 10px 7px 10px; text-decoration: none; border: 0; } .login-box .btn:hover, .btn:focus { background: #F08EBD; background-image: -webkit-linear-gradient(top, #ff6310, #f84a00); background-image: -moz-linear-gradient(top, #ff6310, #f84a00); background-image: -ms-linear-gradient(top, #ff6310, #f84a00); background-image: -o-linear-gradient(top, #ff6310, #f84a00); background-image: linear-gradient(to bottom, #ff6310, #f84a00); color: #FFFFFF; } .table>thead>tr>th:hover { border-bottom: 3px solid #f84a00; } select:focus, input:focus, select:active, input:active, button:active, button:active { outline-color: #ff6422 !important; border-color: #ff6422 !important; } ul.nav-tabs>li.active>a, ul.sub-nav-tabs>li.active>a, .switch-button-label.on, a:hover, ul.sub-nav-tabs>li>a:hover, ul.nav-tabs>li>a:hover { color: #ff6422 !important; } .pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus { background-color: #ff6310; border-color: #ff6310; color: #fff !important; } .pagination a, .pagination span, .pagination a:hover, .pagination span:hover, .pagination a:focus, .pagination span:focus { color: #ff6310; } #product-status-infobox { background-color: #EFEFEF; } .product-status-tick { color: #1cab16; } #view-attribute-group-details span.form-control { background-color: #ddd!important; border: 0; font-size: 13px; padding-top: 9px; padding-left: 10px; }
0.308607
0.078008
display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; } form { display: flex; flex-direction: column; margin: 0.5rem 0rem; justify-content: center; align-items: center; } form textarea { resize: none; box-shadow: 2px 2px 2px #8fa0a6; } input { box-shadow: 2px 2px 2px #8fa0a6; } #MusicTag { width: 25%; height: 40%; padding: 1.5rem, 0rem; margin: 1.5rem, 0rem; background-color: rgb(65, 65, 65); } #GamesTag { width: 25%; height: 40%; padding: 1.5rem, 0rem; margin: 1.5rem, 0rem; background-color: rgb(65, 65, 65); } #ShowsTag { width: 25%; height: 40%; background-color: rgb(65, 65, 65); padding: 1.5rem, 0rem; margin: 1.5rem, 0rem; } #musicDiv { width: 15%; height: 15%; background-color: #333; margin: 1.5rem 0rem; padding: 1.5rem; } #showsDiv { width: 15%; height: 15%; background-color: #333; margin: 1.5rem 0rem; padding: 1.5rem; } #gamesDiv { width: 15%; height: 15%; background-color: #333; margin: 1.5rem 0rem; padding: 1.5rem; } a { color: white; text-decoration: none; } /* Remove Buttons */ div button { width: 1.75rem; padding: 0.25rem 0.25rem; height: 1.15rem; } .chat-styling { display: flex; background-color: #333; color: white; text-shadow: 0.8px 0.8px 0.8px #8fa0a6; box-shadow: 4.4px 4.4px 4.4px #8fa0a6; margin: 1.5rem; padding: 1rem; width: 25%; border-radius: 15px; } .chat-styling button { margin-left: 2rem; margin-right: 0; } button { box-shadow: 2px 2px 2px #8fa0a6; } form { background-color: #333; margin-bottom: 0; position: absolute; bottom: 2.2rem; width: 100%; height: 14rem; padding-bottom: 1.5rem; padding-top: 1.2rem; } #messagesMusic { overflow-y: scroll; display: flex; flex-direction: column; align-items: center; } #messagesGames { overflow-y: scroll; display: flex; flex-direction: column; align-items: center; } #messagesShows { overflow-y: scroll; display: flex; flex-direction: column; align-items: center; }
src/css/forumSecondaryStyle.css
display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; } form { display: flex; flex-direction: column; margin: 0.5rem 0rem; justify-content: center; align-items: center; } form textarea { resize: none; box-shadow: 2px 2px 2px #8fa0a6; } input { box-shadow: 2px 2px 2px #8fa0a6; } #MusicTag { width: 25%; height: 40%; padding: 1.5rem, 0rem; margin: 1.5rem, 0rem; background-color: rgb(65, 65, 65); } #GamesTag { width: 25%; height: 40%; padding: 1.5rem, 0rem; margin: 1.5rem, 0rem; background-color: rgb(65, 65, 65); } #ShowsTag { width: 25%; height: 40%; background-color: rgb(65, 65, 65); padding: 1.5rem, 0rem; margin: 1.5rem, 0rem; } #musicDiv { width: 15%; height: 15%; background-color: #333; margin: 1.5rem 0rem; padding: 1.5rem; } #showsDiv { width: 15%; height: 15%; background-color: #333; margin: 1.5rem 0rem; padding: 1.5rem; } #gamesDiv { width: 15%; height: 15%; background-color: #333; margin: 1.5rem 0rem; padding: 1.5rem; } a { color: white; text-decoration: none; } /* Remove Buttons */ div button { width: 1.75rem; padding: 0.25rem 0.25rem; height: 1.15rem; } .chat-styling { display: flex; background-color: #333; color: white; text-shadow: 0.8px 0.8px 0.8px #8fa0a6; box-shadow: 4.4px 4.4px 4.4px #8fa0a6; margin: 1.5rem; padding: 1rem; width: 25%; border-radius: 15px; } .chat-styling button { margin-left: 2rem; margin-right: 0; } button { box-shadow: 2px 2px 2px #8fa0a6; } form { background-color: #333; margin-bottom: 0; position: absolute; bottom: 2.2rem; width: 100%; height: 14rem; padding-bottom: 1.5rem; padding-top: 1.2rem; } #messagesMusic { overflow-y: scroll; display: flex; flex-direction: column; align-items: center; } #messagesGames { overflow-y: scroll; display: flex; flex-direction: column; align-items: center; } #messagesShows { overflow-y: scroll; display: flex; flex-direction: column; align-items: center; }
0.458349
0.072472
h1, h2, h3 { margin: 0; } nav ul li{ text-align: left; } .page-header { text-align:center; margin: 0; padding: 30px 0; } .navbar-inverse .navbar-nav>li>a { color: #D9BB6E; } .navbar { border-radius: 0; border: none; margin-top: -1px; } .navbar-inverse { background-color: #132657; margin-bottom: 0; } .navbar-brand:hover, li:hover, .regbtn:hover { background-color: #720E31; } .regbtn:hover { color: #D9BB6E; } #navbar-brand { font-size: 18px; vertical-align: middle; } .regbtn { background-color: #D9BB6E; color: #132657; } .btn-nav{ padding-left: 15px; } .btn-nav:hover { background-color: #132657; } .navbar-toggler { display: block; background-color: transparent; border: none; margin-top: 3px; cursor: pointer; outline:none; transition-duration: 0.3s; transition-property: transform; } button[aria-expanded="true"] { -webkit-transform: rotate(90deg); -moz-transform: rotate(90deg); -o-transform: rotate(90deg); -ms-transform: rotate(90deg); transform: rotate(90deg); } .collapsed { -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -o-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg); } .bar { width: 35px; height: 5px; background-color: #D9BB6E; margin: 6px 0; transition: 0.4s; } @media (min-width: 868px){ .navbar-nav{ float:none; margin: 0 auto; display: table; table-layout: fixed; } nav ul { padding:0; display: flex; justify-content: space-around; } nav ul li { list-style-type:none; width:100%; text-align: center; } nav ul li a { text-decoration:none; width: 100%; height: 100%; } .container-fluid{ padding: 0; } .btn-nav{ padding:0; } } @media(min-width: 768px){ .navbar-nav{ float:none; margin: 0 auto; display: table; table-layout: fixed; } .navbar-toggler { display: none; } .page-header h1:before { background-image: url("../assets/gold-leaf.png"); background-size: 100px 100px; width: 100px; height: 100px; display: inline-block; content: ""; margin-top: -5px; margin-left: -75px; position: absolute; transform: scaleX(-1); } .page-header h1:after { background-image: url("../assets/gold-leaf.png"); background-size: 100px 100px; width: 100px; height: 100px; display: inline-block; content: ""; margin-top: -5px; margin-left: -25px; position: absolute; } } .btn-disabled { cursor: default; border: 1px solid #999999; background-color: #cccccc; color: #666666; } .btn-disabled:hover { background-color: #cccccc; } .disabledd { background-color: transparent !important; } @media (max-width: 767px){ #Registry[tooltip]::before { left: 14%; } #Registry[tooltip]::after { left: 14%; } }
src/app/app.component.css
h1, h2, h3 { margin: 0; } nav ul li{ text-align: left; } .page-header { text-align:center; margin: 0; padding: 30px 0; } .navbar-inverse .navbar-nav>li>a { color: #D9BB6E; } .navbar { border-radius: 0; border: none; margin-top: -1px; } .navbar-inverse { background-color: #132657; margin-bottom: 0; } .navbar-brand:hover, li:hover, .regbtn:hover { background-color: #720E31; } .regbtn:hover { color: #D9BB6E; } #navbar-brand { font-size: 18px; vertical-align: middle; } .regbtn { background-color: #D9BB6E; color: #132657; } .btn-nav{ padding-left: 15px; } .btn-nav:hover { background-color: #132657; } .navbar-toggler { display: block; background-color: transparent; border: none; margin-top: 3px; cursor: pointer; outline:none; transition-duration: 0.3s; transition-property: transform; } button[aria-expanded="true"] { -webkit-transform: rotate(90deg); -moz-transform: rotate(90deg); -o-transform: rotate(90deg); -ms-transform: rotate(90deg); transform: rotate(90deg); } .collapsed { -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -o-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg); } .bar { width: 35px; height: 5px; background-color: #D9BB6E; margin: 6px 0; transition: 0.4s; } @media (min-width: 868px){ .navbar-nav{ float:none; margin: 0 auto; display: table; table-layout: fixed; } nav ul { padding:0; display: flex; justify-content: space-around; } nav ul li { list-style-type:none; width:100%; text-align: center; } nav ul li a { text-decoration:none; width: 100%; height: 100%; } .container-fluid{ padding: 0; } .btn-nav{ padding:0; } } @media(min-width: 768px){ .navbar-nav{ float:none; margin: 0 auto; display: table; table-layout: fixed; } .navbar-toggler { display: none; } .page-header h1:before { background-image: url("../assets/gold-leaf.png"); background-size: 100px 100px; width: 100px; height: 100px; display: inline-block; content: ""; margin-top: -5px; margin-left: -75px; position: absolute; transform: scaleX(-1); } .page-header h1:after { background-image: url("../assets/gold-leaf.png"); background-size: 100px 100px; width: 100px; height: 100px; display: inline-block; content: ""; margin-top: -5px; margin-left: -25px; position: absolute; } } .btn-disabled { cursor: default; border: 1px solid #999999; background-color: #cccccc; color: #666666; } .btn-disabled:hover { background-color: #cccccc; } .disabledd { background-color: transparent !important; } @media (max-width: 767px){ #Registry[tooltip]::before { left: 14%; } #Registry[tooltip]::after { left: 14%; } }
0.396886
0.081447
body{ font-family: 'Poppins', sans-serif!important; margin: 0; padding: 0; } /*CARD EMPRESA SMALL*/ .card-empresa-xs{ width: 840px; height: 186px; border-radius: 15px; background-color: #eeeeee; border: 2px solid #FF4700; display: grid; grid-template-columns: 200px 400px 240px; grid-template-rows: 186px; margin:20px; } /*IMG PERFIL EMPRESA*/ .img-empresa{ width: 110px; height: 110px; border-radius: 180px; border: 2px solid #FF4700; background-color: rgba(0, 0, 0, 0.5); background-image: url(https://i0.pngocean.com/files/1024/771/582/5bbf34f41a803.jpg); background-size: 110px 110px; justify-self: center; align-self: center; } .card-central{ justify-self: start; } .card-central h5{ font-size: 20px; align-self: start; margin-top: 40px; margin-bottom: 40px; } .card-central p{ align-self: center; color: #888; } .card-central .language-tag{ width: 50px; height: 20px; background-color:#FF4700; border-radius: 25px; text-align: center; font-size: 14px; line-height: 21px; align-self: end; text-decoration:none; } .card-info{ align-items: center; text-align: center; } .card-info h5{ margin-top: 30px; margin-bottom: 30px; align-items: center; text-align: center; } .card-info a{ text-decoration: none; font-size: 32px; font-size: 2rem; color: #888; align-items: center; text-align: center; } /*BUSCADOR + BUTTOM*/ .search{ width: 500px!important; margin-left: 20px; } .search input{ background-color: #eeeeee; } /*ETIQUETAS LENGUAJE*/ .language-tag{ width: 50px; height: 20px; background-color:#FF4700; border-radius: 25px; text-align: center; font-size: 14px; line-height: 21px; text-decoration: none; } .language-tag a{ color: white; text-decoration: none; } /*PUNTUACION CON ESTRELLAS*/ .puntuacion-Estrella { font-size: 0; display: inline-block; } .puntuacion-Estrella a { text-decoration: none; display: inline-block; font-size: 32px; font-size: 2rem; color: #888; } .puntuacion-Estrella a { color:orangered; } .puntuacion-Estrella > a:hover ~ a { color: #888; } /*PAGUINACION*/ ul.pagination { display: inline-block; padding: 0; margin: 0; } ul.pagination li {display: inline;} ul.pagination li a { color: black; float: left; padding: 8px 16px; text-decoration: none; border-radius: 5px; } ul.pagination li a.active { background-color: orangered; color: white; border-radius: 5px; } ul.pagination li a:hover:not(.active) {background-color: #ddd;} /* Checkbox */ .check { display: block; position: relative; padding-left: 35px; margin-bottom: 12px; cursor: pointer; font-size: 22px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .check input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; } .checkmark { position: absolute; top: 0; left: 0; height: 25px; width: 25px; background-color: rgba(0, 0, 0, 0.5); } .check:hover input ~ .checkmark { background-color: rgba(0, 0, 0, 0.5); } .check input:checked ~ .checkmark { background-color: #FF4700; } .checkmark:after { content: ""; position: absolute; display: none; } .check input:checked ~ .checkmark:after { display: block; } .check .checkmark:after { left: 9px; top: 5px; width: 5px; height: 10px; border: solid white; border-width: 0 3px 3px 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } /*CARD-EMPRESA XXL*/ .card-empresa-xxl{ height: 650px; width: 1200px; border-radius: 25px; border: 6px solid #FF4700; background-color: #eeeeee; display: grid; grid-template-columns: 1fr 2fr 1fr; grid-template-rows: 1fr 2fr; } /* .card-empresa-xxl */
public/css/empresa.css
body{ font-family: 'Poppins', sans-serif!important; margin: 0; padding: 0; } /*CARD EMPRESA SMALL*/ .card-empresa-xs{ width: 840px; height: 186px; border-radius: 15px; background-color: #eeeeee; border: 2px solid #FF4700; display: grid; grid-template-columns: 200px 400px 240px; grid-template-rows: 186px; margin:20px; } /*IMG PERFIL EMPRESA*/ .img-empresa{ width: 110px; height: 110px; border-radius: 180px; border: 2px solid #FF4700; background-color: rgba(0, 0, 0, 0.5); background-image: url(https://i0.pngocean.com/files/1024/771/582/5bbf34f41a803.jpg); background-size: 110px 110px; justify-self: center; align-self: center; } .card-central{ justify-self: start; } .card-central h5{ font-size: 20px; align-self: start; margin-top: 40px; margin-bottom: 40px; } .card-central p{ align-self: center; color: #888; } .card-central .language-tag{ width: 50px; height: 20px; background-color:#FF4700; border-radius: 25px; text-align: center; font-size: 14px; line-height: 21px; align-self: end; text-decoration:none; } .card-info{ align-items: center; text-align: center; } .card-info h5{ margin-top: 30px; margin-bottom: 30px; align-items: center; text-align: center; } .card-info a{ text-decoration: none; font-size: 32px; font-size: 2rem; color: #888; align-items: center; text-align: center; } /*BUSCADOR + BUTTOM*/ .search{ width: 500px!important; margin-left: 20px; } .search input{ background-color: #eeeeee; } /*ETIQUETAS LENGUAJE*/ .language-tag{ width: 50px; height: 20px; background-color:#FF4700; border-radius: 25px; text-align: center; font-size: 14px; line-height: 21px; text-decoration: none; } .language-tag a{ color: white; text-decoration: none; } /*PUNTUACION CON ESTRELLAS*/ .puntuacion-Estrella { font-size: 0; display: inline-block; } .puntuacion-Estrella a { text-decoration: none; display: inline-block; font-size: 32px; font-size: 2rem; color: #888; } .puntuacion-Estrella a { color:orangered; } .puntuacion-Estrella > a:hover ~ a { color: #888; } /*PAGUINACION*/ ul.pagination { display: inline-block; padding: 0; margin: 0; } ul.pagination li {display: inline;} ul.pagination li a { color: black; float: left; padding: 8px 16px; text-decoration: none; border-radius: 5px; } ul.pagination li a.active { background-color: orangered; color: white; border-radius: 5px; } ul.pagination li a:hover:not(.active) {background-color: #ddd;} /* Checkbox */ .check { display: block; position: relative; padding-left: 35px; margin-bottom: 12px; cursor: pointer; font-size: 22px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .check input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; } .checkmark { position: absolute; top: 0; left: 0; height: 25px; width: 25px; background-color: rgba(0, 0, 0, 0.5); } .check:hover input ~ .checkmark { background-color: rgba(0, 0, 0, 0.5); } .check input:checked ~ .checkmark { background-color: #FF4700; } .checkmark:after { content: ""; position: absolute; display: none; } .check input:checked ~ .checkmark:after { display: block; } .check .checkmark:after { left: 9px; top: 5px; width: 5px; height: 10px; border: solid white; border-width: 0 3px 3px 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } /*CARD-EMPRESA XXL*/ .card-empresa-xxl{ height: 650px; width: 1200px; border-radius: 25px; border: 6px solid #FF4700; background-color: #eeeeee; display: grid; grid-template-columns: 1fr 2fr 1fr; grid-template-rows: 1fr 2fr; } /* .card-empresa-xxl */
0.352759
0.070432
background: #fefefe; padding-left: 4.6em; padding-right: 1.25em; padding-top: 1.25em; padding-bottom: 1.25em; } #header_wrap .biohex-logo .hexagon { width: 8%; margin: 1px; -webkit-transition: all 1s ease-in-out; -moz-transition: all 1s ease-in-out; -o-transition: all 1s ease-in-out; -ms-transition: all 1s ease-in-out; transition: all 1s ease-in-out; } #header_wrap .biohex-logo .hexagon:hover { -webkit-transform: rotate(180deg); -o-transform: rotate(180deg); -moz-transform: rotate(180deg); -ms-transform: rotate(180deg); transform: rotate(180deg); } #header_wrap .biohex-logo .bio-title { padding: 0px; width: 30%; } #header_wrap .git-edit { border-radius: 6px; position: absolute; right: 0.5em; bottom: 0.5em; background-color: #; } #header_wrap.stuck .hexagon { padding: 0.2em; width: 38px; position: fixed; top: 0.2em; left: 0.2em; z-index: 300; background: #fff; border-radius: 50%; min-width: initial; } .spec-prof-table { -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin: 1em 0 0 0; border: 1px solid #98A0A6; border-spacing: 3px; display: table; font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Tahoma, Arial, sans-serif; line-height: 160%; font-size: 85%; } .spec-prof-table tbody th { text-align: left; vertical-align: top; } .spec-prof-table tr { display: table-row; vertical-align: inherit; border-color: inherit; font-size: 100%; } .spec-prof-table th { padding-left: 5px; background: #C7CBCE; color: #3A4956; font-weight: bold; display: table-cell; text-align: center; border: none; vertical-align: middle; font-size: 100%; } .spec-prof-table td { position: relative; border: 0; padding: 0.625em; min-height: 1.25em; max-height: 2.5em; vertical-align: top; font-size: 100%; display: table-cell; word-break: keep-all; } .spec-prof-table a { color: #660000; text-decoration: none; border-bottom: dotted 1px #660000; } .spec-prof-table a.bioschema { color: #2196f3; text-decoration: none; border-bottom: dotted 1px #2196f3; } .spec-prof-table a.pending { color: #0000CC; text-decoration: none; border-bottom: dotted 1px #0000CC; } .spec-prof-table a.external { color: #454547; text-decoration: none; border-bottom: dotted 1px #454547; } .spec-prof-table .property-column { background: #C7CBCE; font-weight: bold; } .spec-prof-table .expected-type-column { min-width: 15em; word-break: break-all; } .spec-prof-table .description-column { word-wrap: break-word; max-width: 35em; } .spec-prof-table .control-vocabulary-column { max-width: 10em; } .spec-prof-table .example-column { position: relative; min-width: 4em; text-align: center; } .spec-table-wrapper { overflow-x: auto; } .spec-table-wrapper .example-code { text-align: initial; font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif; width: 100%; } .spec-table-wrapper .example-code pre { width: auto; padding: 5px; border-radius: initial; box-shadow: none; background-color: #eff0f1; color: #242729; font-size: 13px; font-family: inherit; word-break: keep-all; white-space: pre; /* Since CSS 2.1 */ white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ white-space: -pre-wrap; /* Opera 4-6 */ white-space: -o-pre-wrap; /* Opera 7 */ word-wrap: break-word; /* Internet Explorer 5.5+ */ } .spec-table-wrapper .example-code pre code { font-family: inherit; background-color: initial; border-radius: initial; } .spec-table-wrapper .modal-large { margin: 2.5rem; max-width: initial; } .spec-table-wrapper .btn-copy { position: absolute; right: 20px; top: 20px; } .spec-table-wrapper .example-button { position: relative; display: inline-block; box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2); border-radius: 6px; border: none; } .spec-table-wrapper .example-button a { color: #55828B; border-bottom: initial; color: #fff; } .spec-table-wrapper .example-button .tooltiptext { visibility: hidden; background-color: black; color: #fff; opacity: 0.8; text-align: center; padding: 5px 0; border-radius: 6px; width: 140px; bottom: 115%; left: 50%; margin-left: -70px; position: absolute; z-index: 1; } .spec-table-wrapper .example-button:hover .tooltiptext { visibility: visible; } .spec-table-wrapper .example-button .tooltiptext::after { content: " "; position: absolute; top: 100%; /* At the bottom of the tooltip */ left: 50%; margin-left: -5px; border-width: 5px; border-style: solid; border-color: black transparent transparent transparent; } @media screen and (min-width: 701px) { .navbar-toggle { display: none; } .mobile_nav { display: none; } #mobile_links { display: none; } #mobile_list { display: none; } .trigger { background-color: #2196f3; width: auto; position: relative; } .trigger .trigger_links { padding-left: 75px; } .trigger.stuck { position: fixed; z-index: 100; top: 0; background-color: #2196f3; width: 100%; } } @media screen and (max-width: 700px) { .inner { padding: 0.25em 0.26em !important; } #header_wrap { height: 50px; position: fixed; z-index: 90; background-color: #87BBA2 !important; } #header_wrap .biohex-logo .hexagon { width: 40px; min-width: initial; } #header_wrap .biohex-logo .bio-title { margin-bottom: 5px; width: 115px; min-width: initial; } #header_wrap .git-edit { right: 7.5em; bottom: 1em; } #header_wrap .git-edit b { display: none; } #main-content-wrapper { padding-top: 50px; } .mobile_nav { background-color: initial; display: inline; } .mobile_nav img { height: 1.725em; width: 1.725em; float: right; } .mobile_nav .navbar-toggle { position: relative; float: right; padding: 9px 10px; display: block; margin-top: 7px; margin-right: 9px; width: 40px; height: 40px; border-radius: 4px; } .mobile_nav .navbar-toggle .icon-bar { display: block; position: relative; background: #fff; width: 24px; height: 2px; border-radius: 1px; margin-bottom: 4px; } .mobile_nav .navbar-toggle .icon-bar:nth-child(2), .mobile_nav .navbar-toggle .icon-bar:nth-child(3), .mobile_nav .navbar-toggle .icon-bar:nth-child(4) { outline: 1px solid transparent; } .mobile_nav .navbar-toggle .icon-bar:nth-child(2) { top: 0px; } .mobile_nav .navbar-toggle .icon-bar:nth-child(3) { opacity: 1; } .mobile_nav .navbar-toggle .icon-bar:nth-child(4) { bottom: 0px; } .trigger { z-index: 500; top: 0; right: 0; position: fixed; display: flex; align-items: center; height: 50px; background-color: #87BBA2; } .trigger a { color: #fff; font-size: 1.2em; } .trigger-mobile { height: auto; } .trigger_links { display: none; } .spec-prof-table th, .spec-prof-table td, .spec-prof-table .expected-type-column, .spec-prof-table .description-column, .spec-prof-table .control-vocabulary-column, .spec-prof-table .property-column { word-break: initial; } .spec-prof-table .description-column { min-width: 28em; } .spec-table-wrapper { overflow-x: scroll; } .live-deploys .live-deploy-table { margin: 0 0 0 0 !important; } } .highlight { /* * GitHub style for Pygments * Courtesy of GitHub.com */ } .highlight .hll { background-color: #f8f8f8; border: 1px solid #ccc; padding: 6px 10px; border-radius: 3px; } .highlight .c { color: #999988; font-style: italic; } .highlight .err { color: #a61717; background-color: #e3d2d2; } .highlight .k { font-weight: bold; } .highlight .o { font-weight: bold; } .highlight .cm { color: #999988; font-style: italic; } .highlight .cp { color: #999999; font-weight: bold; } .highlight .c1 { color: #999988; font-style: italic; } .highlight .cs { color: #999999; font-weight: bold; font-style: italic; } .highlight .gd { color: #000000; background-color: #ffdddd; } .highlight .gd .x { color: #000000; background-color: #ffaaaa; } .highlight .ge { font-style: italic; } .highlight .gr { color: #aa0000; } .highlight .gh { color: #999999; } .highlight .gi { color: #000000; background-color: #ddffdd; } .highlight .gi .x { color: #000000; background-color: #aaffaa; } .highlight .go { color: #888888; } .highlight .gp { color: #555555; } .highlight .gs { font-weight: bold; } .highlight .gu { color: #800080; font-weight: bold; } .highlight .gt { color: #aa0000; } .highlight .kc { font-weight: bold; } .highlight .kd { font-weight: bold; } .highlight .kn { font-weight: bold; } .highlight .kp { font-weight: bold; } .highlight .kr { font-weight: bold; } .highlight .kt { color: #445588; font-weight: bold; } .highlight .m { color: #009999; } .highlight .s { color: #dd1144; } .highlight .n { color: #333333; } .highlight .na { color: teal; } .highlight .nb { color: #0086b3; } .highlight .nc { color: #445588; font-weight: bold; } .highlight .no { color: teal; } .highlight .ni { color: purple; } .highlight .ne { color: #990000; font-weight: bold; } .highlight .nf { color: #990000; font-weight: bold; } .highlight .nn { color: #555555; } .highlight .nt { color: navy; } .highlight .nv { color: teal; } .highlight .ow { font-weight: bold; } .highlight .w { color: #bbbbbb; } .highlight .mf { color: #009999; } .highlight .mh { color: #009999; } .highlight .mi { color: #009999; } .highlight .mo { color: #009999; } .highlight .sb { color: #dd1144; } .highlight .sc { color: #dd1144; } .highlight .sd { color: #dd1144; } .highlight .s2 { color: #dd1144; } .highlight .se { color: #dd1144; } .highlight .sh { color: #dd1144; } .highlight .si { color: #dd1144; } .highlight .sx { color: #dd1144; } .highlight .sr { color: #009926; } .highlight .s1 { color: #dd1144; } .highlight .ss { color: #990073; } .highlight .bp { color: #999999; } .highlight .vc { color: teal; } .highlight .vg { color: teal; } .highlight .vi { color: teal; } .highlight .il { color: #009999; } .highlight .gc { color: #999; background-color: #EAF2F5; } .live-deploys td > a { margin-right: 3px; } .live-deploys .live-deploy-table { text-align: center; margin: 0 10% 0 10%; } .live-deploys .google-sdtt-button { position: relative; display: inline-block; width: 100%; height: 3em; padding: 0.4em 0 0 0; margin: 0.2em; } .live-deploys .google-sdtt-button a { color: #55828B; border-bottom: initial; color: #fff; } .live-deploys .google-sdtt-button .tooltiptext { visibility: hidden; background-color: black; color: #fff; opacity: 0.8; text-align: center; padding: 5px 0; border-radius: 6px; width: 120px; bottom: 100%; left: 50%; margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */ position: absolute; z-index: 1; } .live-deploys .google-sdtt-button:hover .tooltiptext { visibility: visible; } .live-deploys .google-sdtt-button .tooltiptext::after { content: " "; position: absolute; top: 100%; /* At the bottom of the tooltip */ left: 50%; margin-left: -5px; border-width: 5px; border-style: solid; border-color: black transparent transparent transparent; } .live-deploys table { -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin: 1em 0 2em 0; border: 1px solid #98A0A6; display: inline-block; font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Tahoma, Arial, sans-serif; line-height: 160%; font-size: 100%; } .live-deploys table tbody th { text-align: left; vertical-align: top; } .live-deploys table tr { display: table-row; vertical-align: inherit; border-color: inherit; font-size: 100%; border-color: #fff; border-width: 1em; } .live-deploys table th { border-color: #fff; border-width: 0.2em; padding-left: 5px; background: #C7CBCE; color: #3A4956; font-weight: bold; display: table-cell; text-align: center; vertical-align: middle; font-size: 100%; } .live-deploys table td { width: 100%; border: 0; padding: 0.625em; min-height: 1.25em; vertical-align: center; font-size: 100%; display: table-cell; word-break: keep-all; position: relative; } .live-deploys table a { color: #2196f3; text-decoration: none; border-bottom: dotted 1px #2196f3; } .live-deploys table .profile-version { text-align: center; font-weight: bold; } .live-deploys table .deploy-name-column { padding-right: 0.9em; padding-top: 0.625em; padding-left: 0.625em; padding-bottom: 0.625em; } .live-deploys table .structured-data-column { word-break: break-word; width: 10em; min-width: 10em; } .live-deploys table .profile-row { text-align: center; font-weight: bold; background: #C7CBCE; font-size: 100%; } .live-deploys table .profile-row > td { border: 0.2em solid #fff; } .live-deploys table .plus-icon { -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; -ms-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; color: #2196f3; position: absolute; top: 0.6em; right: 1em; } .live-deploys table .repo-count { position: absolute; float: left; font-size: 85%; color: #2196f3; } .live-deploys table p { color: #666; font-size: 85%; font-weight: bold; } .live-deploys table .hidden-row { padding: 0 1em 0 1em; } .live-deploys blockquote { font-size: 14px; } .live-deploys .deployment-story { margin-top: 1em; border-radius: 5px; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); padding: 1em; } #logo-usage .recommendation { margin: 0 0 3em 0; } #logo-usage .recommendation .logo-container { border-radius: 10px; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); padding: 1em; min-width: 8em; min-height: 8em; } #logo-usage .recommendation .logo-container .logo { width: 100%; height: 100%; background-repeat: no-repeat; background-size: contain; background-position: center center; } #logo-usage .recommendation .logo-container.white { background-color: #2196f3; } #logo-usage .colors { margin: 1em 5em; } #logo-usage .colors .recommended-color .color-box { box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); padding: 0.5em; border-radius: 5px; text-align: center; margin: 0 0 1em 0; color: #ffffff; } #logo-usage .colors .recommended-color .description { text-align: center; } /******************************************************************************* Footer *******************************************************************************/ #footer_wrap { /*border-top-left-radius: 0.625em; border-top-right-radius: 0.625em;*/ background-color: #2196f3; text-align: center; margin-top: 1em; } #footer_wrap .acknowledge { position: absolute; } #footer_wrap .license { font-size: 0.7em; } #footer_wrap a:hover { color: #2BB673; } .p_bottom a:hover { color: #F2F2F2; text-decoration: underline; } .footer_buttons { width: auto; height: auto; position: relative; margin-bottom: -15px; } .footer_links { position: relative; display: inline; } .img_bottom { float: right; clear: both; width: 45px; margin-left: 0.625em; margin-top: -0.6em; background-color: #fff; border-radius: 1.875em; } #acknowledgments .funders .funder { margin: 0 0 3em 0; } #acknowledgments .funders .funder .logo-container { min-width: 8em; min-height: 8em; } #acknowledgments .funders .funder .logo-container .logo { width: 100%; height: 100%; background-repeat: no-repeat; background-size: contain; background-position: center center; } #landing .right-column section { margin: 0 0 2em 0; } #landing .right-column section.upcoming-events .event { background-color: #ffffff; margin: 0 0 1em 0; font-size: 0.80em; padding: 1em 0.5em 0.5em 0.5em; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); border-radius: 5px; } #landing .right-column section.upcoming-events .event .title { font-size: 1em; } @media screen and (max-width: 700px) { .right-column section.upcoming-events .event { font-size: 1em !important; } }
assets/css/main.css
background: #fefefe; padding-left: 4.6em; padding-right: 1.25em; padding-top: 1.25em; padding-bottom: 1.25em; } #header_wrap .biohex-logo .hexagon { width: 8%; margin: 1px; -webkit-transition: all 1s ease-in-out; -moz-transition: all 1s ease-in-out; -o-transition: all 1s ease-in-out; -ms-transition: all 1s ease-in-out; transition: all 1s ease-in-out; } #header_wrap .biohex-logo .hexagon:hover { -webkit-transform: rotate(180deg); -o-transform: rotate(180deg); -moz-transform: rotate(180deg); -ms-transform: rotate(180deg); transform: rotate(180deg); } #header_wrap .biohex-logo .bio-title { padding: 0px; width: 30%; } #header_wrap .git-edit { border-radius: 6px; position: absolute; right: 0.5em; bottom: 0.5em; background-color: #; } #header_wrap.stuck .hexagon { padding: 0.2em; width: 38px; position: fixed; top: 0.2em; left: 0.2em; z-index: 300; background: #fff; border-radius: 50%; min-width: initial; } .spec-prof-table { -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin: 1em 0 0 0; border: 1px solid #98A0A6; border-spacing: 3px; display: table; font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Tahoma, Arial, sans-serif; line-height: 160%; font-size: 85%; } .spec-prof-table tbody th { text-align: left; vertical-align: top; } .spec-prof-table tr { display: table-row; vertical-align: inherit; border-color: inherit; font-size: 100%; } .spec-prof-table th { padding-left: 5px; background: #C7CBCE; color: #3A4956; font-weight: bold; display: table-cell; text-align: center; border: none; vertical-align: middle; font-size: 100%; } .spec-prof-table td { position: relative; border: 0; padding: 0.625em; min-height: 1.25em; max-height: 2.5em; vertical-align: top; font-size: 100%; display: table-cell; word-break: keep-all; } .spec-prof-table a { color: #660000; text-decoration: none; border-bottom: dotted 1px #660000; } .spec-prof-table a.bioschema { color: #2196f3; text-decoration: none; border-bottom: dotted 1px #2196f3; } .spec-prof-table a.pending { color: #0000CC; text-decoration: none; border-bottom: dotted 1px #0000CC; } .spec-prof-table a.external { color: #454547; text-decoration: none; border-bottom: dotted 1px #454547; } .spec-prof-table .property-column { background: #C7CBCE; font-weight: bold; } .spec-prof-table .expected-type-column { min-width: 15em; word-break: break-all; } .spec-prof-table .description-column { word-wrap: break-word; max-width: 35em; } .spec-prof-table .control-vocabulary-column { max-width: 10em; } .spec-prof-table .example-column { position: relative; min-width: 4em; text-align: center; } .spec-table-wrapper { overflow-x: auto; } .spec-table-wrapper .example-code { text-align: initial; font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif; width: 100%; } .spec-table-wrapper .example-code pre { width: auto; padding: 5px; border-radius: initial; box-shadow: none; background-color: #eff0f1; color: #242729; font-size: 13px; font-family: inherit; word-break: keep-all; white-space: pre; /* Since CSS 2.1 */ white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ white-space: -pre-wrap; /* Opera 4-6 */ white-space: -o-pre-wrap; /* Opera 7 */ word-wrap: break-word; /* Internet Explorer 5.5+ */ } .spec-table-wrapper .example-code pre code { font-family: inherit; background-color: initial; border-radius: initial; } .spec-table-wrapper .modal-large { margin: 2.5rem; max-width: initial; } .spec-table-wrapper .btn-copy { position: absolute; right: 20px; top: 20px; } .spec-table-wrapper .example-button { position: relative; display: inline-block; box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2); border-radius: 6px; border: none; } .spec-table-wrapper .example-button a { color: #55828B; border-bottom: initial; color: #fff; } .spec-table-wrapper .example-button .tooltiptext { visibility: hidden; background-color: black; color: #fff; opacity: 0.8; text-align: center; padding: 5px 0; border-radius: 6px; width: 140px; bottom: 115%; left: 50%; margin-left: -70px; position: absolute; z-index: 1; } .spec-table-wrapper .example-button:hover .tooltiptext { visibility: visible; } .spec-table-wrapper .example-button .tooltiptext::after { content: " "; position: absolute; top: 100%; /* At the bottom of the tooltip */ left: 50%; margin-left: -5px; border-width: 5px; border-style: solid; border-color: black transparent transparent transparent; } @media screen and (min-width: 701px) { .navbar-toggle { display: none; } .mobile_nav { display: none; } #mobile_links { display: none; } #mobile_list { display: none; } .trigger { background-color: #2196f3; width: auto; position: relative; } .trigger .trigger_links { padding-left: 75px; } .trigger.stuck { position: fixed; z-index: 100; top: 0; background-color: #2196f3; width: 100%; } } @media screen and (max-width: 700px) { .inner { padding: 0.25em 0.26em !important; } #header_wrap { height: 50px; position: fixed; z-index: 90; background-color: #87BBA2 !important; } #header_wrap .biohex-logo .hexagon { width: 40px; min-width: initial; } #header_wrap .biohex-logo .bio-title { margin-bottom: 5px; width: 115px; min-width: initial; } #header_wrap .git-edit { right: 7.5em; bottom: 1em; } #header_wrap .git-edit b { display: none; } #main-content-wrapper { padding-top: 50px; } .mobile_nav { background-color: initial; display: inline; } .mobile_nav img { height: 1.725em; width: 1.725em; float: right; } .mobile_nav .navbar-toggle { position: relative; float: right; padding: 9px 10px; display: block; margin-top: 7px; margin-right: 9px; width: 40px; height: 40px; border-radius: 4px; } .mobile_nav .navbar-toggle .icon-bar { display: block; position: relative; background: #fff; width: 24px; height: 2px; border-radius: 1px; margin-bottom: 4px; } .mobile_nav .navbar-toggle .icon-bar:nth-child(2), .mobile_nav .navbar-toggle .icon-bar:nth-child(3), .mobile_nav .navbar-toggle .icon-bar:nth-child(4) { outline: 1px solid transparent; } .mobile_nav .navbar-toggle .icon-bar:nth-child(2) { top: 0px; } .mobile_nav .navbar-toggle .icon-bar:nth-child(3) { opacity: 1; } .mobile_nav .navbar-toggle .icon-bar:nth-child(4) { bottom: 0px; } .trigger { z-index: 500; top: 0; right: 0; position: fixed; display: flex; align-items: center; height: 50px; background-color: #87BBA2; } .trigger a { color: #fff; font-size: 1.2em; } .trigger-mobile { height: auto; } .trigger_links { display: none; } .spec-prof-table th, .spec-prof-table td, .spec-prof-table .expected-type-column, .spec-prof-table .description-column, .spec-prof-table .control-vocabulary-column, .spec-prof-table .property-column { word-break: initial; } .spec-prof-table .description-column { min-width: 28em; } .spec-table-wrapper { overflow-x: scroll; } .live-deploys .live-deploy-table { margin: 0 0 0 0 !important; } } .highlight { /* * GitHub style for Pygments * Courtesy of GitHub.com */ } .highlight .hll { background-color: #f8f8f8; border: 1px solid #ccc; padding: 6px 10px; border-radius: 3px; } .highlight .c { color: #999988; font-style: italic; } .highlight .err { color: #a61717; background-color: #e3d2d2; } .highlight .k { font-weight: bold; } .highlight .o { font-weight: bold; } .highlight .cm { color: #999988; font-style: italic; } .highlight .cp { color: #999999; font-weight: bold; } .highlight .c1 { color: #999988; font-style: italic; } .highlight .cs { color: #999999; font-weight: bold; font-style: italic; } .highlight .gd { color: #000000; background-color: #ffdddd; } .highlight .gd .x { color: #000000; background-color: #ffaaaa; } .highlight .ge { font-style: italic; } .highlight .gr { color: #aa0000; } .highlight .gh { color: #999999; } .highlight .gi { color: #000000; background-color: #ddffdd; } .highlight .gi .x { color: #000000; background-color: #aaffaa; } .highlight .go { color: #888888; } .highlight .gp { color: #555555; } .highlight .gs { font-weight: bold; } .highlight .gu { color: #800080; font-weight: bold; } .highlight .gt { color: #aa0000; } .highlight .kc { font-weight: bold; } .highlight .kd { font-weight: bold; } .highlight .kn { font-weight: bold; } .highlight .kp { font-weight: bold; } .highlight .kr { font-weight: bold; } .highlight .kt { color: #445588; font-weight: bold; } .highlight .m { color: #009999; } .highlight .s { color: #dd1144; } .highlight .n { color: #333333; } .highlight .na { color: teal; } .highlight .nb { color: #0086b3; } .highlight .nc { color: #445588; font-weight: bold; } .highlight .no { color: teal; } .highlight .ni { color: purple; } .highlight .ne { color: #990000; font-weight: bold; } .highlight .nf { color: #990000; font-weight: bold; } .highlight .nn { color: #555555; } .highlight .nt { color: navy; } .highlight .nv { color: teal; } .highlight .ow { font-weight: bold; } .highlight .w { color: #bbbbbb; } .highlight .mf { color: #009999; } .highlight .mh { color: #009999; } .highlight .mi { color: #009999; } .highlight .mo { color: #009999; } .highlight .sb { color: #dd1144; } .highlight .sc { color: #dd1144; } .highlight .sd { color: #dd1144; } .highlight .s2 { color: #dd1144; } .highlight .se { color: #dd1144; } .highlight .sh { color: #dd1144; } .highlight .si { color: #dd1144; } .highlight .sx { color: #dd1144; } .highlight .sr { color: #009926; } .highlight .s1 { color: #dd1144; } .highlight .ss { color: #990073; } .highlight .bp { color: #999999; } .highlight .vc { color: teal; } .highlight .vg { color: teal; } .highlight .vi { color: teal; } .highlight .il { color: #009999; } .highlight .gc { color: #999; background-color: #EAF2F5; } .live-deploys td > a { margin-right: 3px; } .live-deploys .live-deploy-table { text-align: center; margin: 0 10% 0 10%; } .live-deploys .google-sdtt-button { position: relative; display: inline-block; width: 100%; height: 3em; padding: 0.4em 0 0 0; margin: 0.2em; } .live-deploys .google-sdtt-button a { color: #55828B; border-bottom: initial; color: #fff; } .live-deploys .google-sdtt-button .tooltiptext { visibility: hidden; background-color: black; color: #fff; opacity: 0.8; text-align: center; padding: 5px 0; border-radius: 6px; width: 120px; bottom: 100%; left: 50%; margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */ position: absolute; z-index: 1; } .live-deploys .google-sdtt-button:hover .tooltiptext { visibility: visible; } .live-deploys .google-sdtt-button .tooltiptext::after { content: " "; position: absolute; top: 100%; /* At the bottom of the tooltip */ left: 50%; margin-left: -5px; border-width: 5px; border-style: solid; border-color: black transparent transparent transparent; } .live-deploys table { -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin: 1em 0 2em 0; border: 1px solid #98A0A6; display: inline-block; font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Tahoma, Arial, sans-serif; line-height: 160%; font-size: 100%; } .live-deploys table tbody th { text-align: left; vertical-align: top; } .live-deploys table tr { display: table-row; vertical-align: inherit; border-color: inherit; font-size: 100%; border-color: #fff; border-width: 1em; } .live-deploys table th { border-color: #fff; border-width: 0.2em; padding-left: 5px; background: #C7CBCE; color: #3A4956; font-weight: bold; display: table-cell; text-align: center; vertical-align: middle; font-size: 100%; } .live-deploys table td { width: 100%; border: 0; padding: 0.625em; min-height: 1.25em; vertical-align: center; font-size: 100%; display: table-cell; word-break: keep-all; position: relative; } .live-deploys table a { color: #2196f3; text-decoration: none; border-bottom: dotted 1px #2196f3; } .live-deploys table .profile-version { text-align: center; font-weight: bold; } .live-deploys table .deploy-name-column { padding-right: 0.9em; padding-top: 0.625em; padding-left: 0.625em; padding-bottom: 0.625em; } .live-deploys table .structured-data-column { word-break: break-word; width: 10em; min-width: 10em; } .live-deploys table .profile-row { text-align: center; font-weight: bold; background: #C7CBCE; font-size: 100%; } .live-deploys table .profile-row > td { border: 0.2em solid #fff; } .live-deploys table .plus-icon { -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; -ms-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; color: #2196f3; position: absolute; top: 0.6em; right: 1em; } .live-deploys table .repo-count { position: absolute; float: left; font-size: 85%; color: #2196f3; } .live-deploys table p { color: #666; font-size: 85%; font-weight: bold; } .live-deploys table .hidden-row { padding: 0 1em 0 1em; } .live-deploys blockquote { font-size: 14px; } .live-deploys .deployment-story { margin-top: 1em; border-radius: 5px; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); padding: 1em; } #logo-usage .recommendation { margin: 0 0 3em 0; } #logo-usage .recommendation .logo-container { border-radius: 10px; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); padding: 1em; min-width: 8em; min-height: 8em; } #logo-usage .recommendation .logo-container .logo { width: 100%; height: 100%; background-repeat: no-repeat; background-size: contain; background-position: center center; } #logo-usage .recommendation .logo-container.white { background-color: #2196f3; } #logo-usage .colors { margin: 1em 5em; } #logo-usage .colors .recommended-color .color-box { box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); padding: 0.5em; border-radius: 5px; text-align: center; margin: 0 0 1em 0; color: #ffffff; } #logo-usage .colors .recommended-color .description { text-align: center; } /******************************************************************************* Footer *******************************************************************************/ #footer_wrap { /*border-top-left-radius: 0.625em; border-top-right-radius: 0.625em;*/ background-color: #2196f3; text-align: center; margin-top: 1em; } #footer_wrap .acknowledge { position: absolute; } #footer_wrap .license { font-size: 0.7em; } #footer_wrap a:hover { color: #2BB673; } .p_bottom a:hover { color: #F2F2F2; text-decoration: underline; } .footer_buttons { width: auto; height: auto; position: relative; margin-bottom: -15px; } .footer_links { position: relative; display: inline; } .img_bottom { float: right; clear: both; width: 45px; margin-left: 0.625em; margin-top: -0.6em; background-color: #fff; border-radius: 1.875em; } #acknowledgments .funders .funder { margin: 0 0 3em 0; } #acknowledgments .funders .funder .logo-container { min-width: 8em; min-height: 8em; } #acknowledgments .funders .funder .logo-container .logo { width: 100%; height: 100%; background-repeat: no-repeat; background-size: contain; background-position: center center; } #landing .right-column section { margin: 0 0 2em 0; } #landing .right-column section.upcoming-events .event { background-color: #ffffff; margin: 0 0 1em 0; font-size: 0.80em; padding: 1em 0.5em 0.5em 0.5em; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); border-radius: 5px; } #landing .right-column section.upcoming-events .event .title { font-size: 1em; } @media screen and (max-width: 700px) { .right-column section.upcoming-events .event { font-size: 1em !important; } }
0.520496
0.077065
html { height: 100%; } body { background-color: #AAA; color: white; font-family: 'Roboto', sans-serif; height: 100%; } #wrapper { min-height: 100%; margin: 0 auto; /* background-color: #FFFFFF; */ background-color: #AAA; position: relative; display: flex; } /* Classes et généralités */ a { color : white; } a:visited { color : white; } /* Alerte */ form div.alert-error { color: #b30000; margin-top: 10px; margin-bottom: 10px; } /* Le header */ header { /* background-color: #E3E5E6; */ background-color: #333; min-height: 100%; /* max-width: 20%; */ width: 18%; padding: 10px; /* border-right: 4px solid #888888; */ position: fixed; left: 0; } #titreHeader { margin: 0 0 10%; height: 19%; } #titreHeader h1 { text-transform: uppercase; font-size: 1.5em; color: #ECECE7; font-weight: bold; } #titreHeader h1 a:hover { text-decoration: none; } #titreHeader h2 a { color: #53F9FF; } #titreHeader h2 a:hover { color: #07B5DA; } header nav { height: 80%; } header ul li a:hover { text-decoration: underline dotted; } header ul li a.active { color: #07B5DA; } #main_menu_nav { position: relative; width: 100%; } #main_menu_nav h3 { color: #FFF; padding: 8px; padding-left: 10px; cursor: pointer; position: relative; } #main_menu_nav h3 a:hover { text-decoration: underline dotted; } #main_menu_nav h3 a.active { color: #07B5DA; } #main_menu_nav h3:hover { text-decoration: underline dotted; } #main_menu_nav h3.active { color: #07B5DA; } #main_menu_nav ul { height: auto; display: none; width: 100%; } #main_menu_nav li { color: #D2D7D8; padding: 10px; padding-left: 30px; } #main_menu_nav li:hover { color: #FFF; } #main_menu_nav li:last-child { border-bottom: none; } /* Cachons la case à cocher */ #main_menu_nav [type="checkbox"]:not(:checked), [type="checkbox"]:checked { position: absolute; left: -9999px; } /* on prépare le label */ #main_menu_nav [type="checkbox"]:not(:checked) + label, [type="checkbox"]:checked + label { padding-left: 10px; padding-bottom: 36px; left: 0; top: 0; cursor: pointer; position: absolute; width: 100%; } /* Aspect général de la coche */ #main_menu_nav [type="checkbox"]:not(:checked) + label:after, [type="checkbox"]:checked + label:after { content: '\25bc'; position: absolute; top: 10px; right: 10px; font-size: 14px; transition: all .2s; } /* Aspect si "pas cochée" */ #main_menu_nav [type="checkbox"]:not(:checked) + label:after { opacity: 0; /* coche invisible */ transform: scale(0); /* mise à l'échelle à 0 */ -webkit-transform: scale(0); -moz-transform: scale(0); -o-transform: scale(0); -ms-transform: scale(0); } /* Aspect si "cochée" */ #main_menu_nav [type="checkbox"]:checked + label:after { opacity: 1; /* coche opaque */ transform: scale(1); /* mise à l'échelle 1:1 */ -webkit-transform: scale(1); -moz-transform: scale(1); -o-transform: scale(1); -ms-transform: scale(1); } #main_menu_nav label:before { opacity: 0; } #main_menu_nav label:hover:before { content: '\25bc'; position: absolute; top: 10px; right: 10px; font-size: 14px; transition: all .2s; opacity: 1; /* coche opaque */ } .main_menu_nav_part { border-top: 1px solid #AAAAAA; } #main_menu_nav_part1, #main_menu_nav_part2, #main_menu_nav_part3 { position: relative; } #main_menu_nav_part1 [type="checkbox"]:checked + label + ul, #main_menu_nav_part2 [type="checkbox"]:checked + label + ul, #main_menu_nav_part3 [type="checkbox"]:checked + label + ul { display: block; } #main_menu_nav_part2 h3.active + [type="checkbox"] + label + ul { display: block; } #main_menu_nav_part3 h3.active + [type="checkbox"] + label + ul { display: block; } /* CLASS */ .transition_css { transition: all .2s ease-out; -webkit-transition : all .2s ease-out; -moz-transition: all .2s ease-out; -o-transition: all .2s ease-out; -ms-transition: all .2s ease-out; } /* Le main et son contenu */ main { position: absolute; top: 0; right: 0; left: 19%; width: 78%; height: 96%; padding-top: 1%; } #stats { margin-left: 1%; background-color: #AAA; min-height: 100%; width: 100%; color: black; } #stats h1 { text-transform: uppercase; font-weight: bold; } #stats .stats-zone { background: white; padding: 10px; border-radius: 10px; margin: 10px auto; } #stats .stats-zone h2 { font-weight: bold; } #stats .stats-zone h2 b { color: #07B5DA; } #stats .stats-zone ul li b { color: #07B5DA; } /* Le nivigateur */ #nav-movies { background: #212529; padding: 5px; margin-bottom: 20px; } #nav-movies ul { display: flex; } #nav-movies ul li { margin-right: 10px; } .part { margin: 10px 2%; width: 96%; } .part label { display: block; float: left; width: 125px; } .part input { width: auto; } table { width: 100%; } thead { background: black; color: white; } tbody { color: black; } .part thead tr th { border-top: 1px solid black; } .partimdb [type=submit] { border-radius: 2%; min-width: 100px; padding: 2px; margin-bottom: 1px; } .part table .reason { width: 20%; } h1 { font-size: 2em; } .movieslist .btn-danger { margin-top: 5px; padding: 5px; } /* * La modale de suppression */ /* The Modal (background) */ .modal { display: none; /* Hidden by default */ position: fixed; /* Stay in place */ z-index: 1; /* Sit on top */ left: 0; top: 0; width: 100%; /* Full width */ height: 100%; overflow: auto; /* Enable scroll if needed */ background-color: rgb(0,0,0); /* Fallback color */ background-color: rgba(0,0,0,0.4); /* Black w/ opacity */ } /* Modal Content/Box */ .modal-content { margin: 20% auto; /* 15% from the top and centered */ padding: 20px; width: 40%; /* Could be more or less, depending on screen size */ min-width: 100px; position: relative; } .modal-content form { width: 100%; text-align: center; } .modal-content form span#question { color: black; width: 100%; } .modal-content form span#choices { color: black; text-align: center; width: 100%; display: flex; flex-direction: row; justify-content: space-between; } .modal-content form span#choices .choice { width: 45%; } .modal-content form span#choices #no-delete { font-size: 1em; color: white; } /* The Close Button */ .close { color: #aaa; /* float: right; */ position: absolute; top: 10px; right: 20px; font-size: 28px; font-weight: bold; } .close:hover, .close:focus { color: black; text-decoration: none; cursor: pointer; }
public/css/back-style.css
html { height: 100%; } body { background-color: #AAA; color: white; font-family: 'Roboto', sans-serif; height: 100%; } #wrapper { min-height: 100%; margin: 0 auto; /* background-color: #FFFFFF; */ background-color: #AAA; position: relative; display: flex; } /* Classes et généralités */ a { color : white; } a:visited { color : white; } /* Alerte */ form div.alert-error { color: #b30000; margin-top: 10px; margin-bottom: 10px; } /* Le header */ header { /* background-color: #E3E5E6; */ background-color: #333; min-height: 100%; /* max-width: 20%; */ width: 18%; padding: 10px; /* border-right: 4px solid #888888; */ position: fixed; left: 0; } #titreHeader { margin: 0 0 10%; height: 19%; } #titreHeader h1 { text-transform: uppercase; font-size: 1.5em; color: #ECECE7; font-weight: bold; } #titreHeader h1 a:hover { text-decoration: none; } #titreHeader h2 a { color: #53F9FF; } #titreHeader h2 a:hover { color: #07B5DA; } header nav { height: 80%; } header ul li a:hover { text-decoration: underline dotted; } header ul li a.active { color: #07B5DA; } #main_menu_nav { position: relative; width: 100%; } #main_menu_nav h3 { color: #FFF; padding: 8px; padding-left: 10px; cursor: pointer; position: relative; } #main_menu_nav h3 a:hover { text-decoration: underline dotted; } #main_menu_nav h3 a.active { color: #07B5DA; } #main_menu_nav h3:hover { text-decoration: underline dotted; } #main_menu_nav h3.active { color: #07B5DA; } #main_menu_nav ul { height: auto; display: none; width: 100%; } #main_menu_nav li { color: #D2D7D8; padding: 10px; padding-left: 30px; } #main_menu_nav li:hover { color: #FFF; } #main_menu_nav li:last-child { border-bottom: none; } /* Cachons la case à cocher */ #main_menu_nav [type="checkbox"]:not(:checked), [type="checkbox"]:checked { position: absolute; left: -9999px; } /* on prépare le label */ #main_menu_nav [type="checkbox"]:not(:checked) + label, [type="checkbox"]:checked + label { padding-left: 10px; padding-bottom: 36px; left: 0; top: 0; cursor: pointer; position: absolute; width: 100%; } /* Aspect général de la coche */ #main_menu_nav [type="checkbox"]:not(:checked) + label:after, [type="checkbox"]:checked + label:after { content: '\25bc'; position: absolute; top: 10px; right: 10px; font-size: 14px; transition: all .2s; } /* Aspect si "pas cochée" */ #main_menu_nav [type="checkbox"]:not(:checked) + label:after { opacity: 0; /* coche invisible */ transform: scale(0); /* mise à l'échelle à 0 */ -webkit-transform: scale(0); -moz-transform: scale(0); -o-transform: scale(0); -ms-transform: scale(0); } /* Aspect si "cochée" */ #main_menu_nav [type="checkbox"]:checked + label:after { opacity: 1; /* coche opaque */ transform: scale(1); /* mise à l'échelle 1:1 */ -webkit-transform: scale(1); -moz-transform: scale(1); -o-transform: scale(1); -ms-transform: scale(1); } #main_menu_nav label:before { opacity: 0; } #main_menu_nav label:hover:before { content: '\25bc'; position: absolute; top: 10px; right: 10px; font-size: 14px; transition: all .2s; opacity: 1; /* coche opaque */ } .main_menu_nav_part { border-top: 1px solid #AAAAAA; } #main_menu_nav_part1, #main_menu_nav_part2, #main_menu_nav_part3 { position: relative; } #main_menu_nav_part1 [type="checkbox"]:checked + label + ul, #main_menu_nav_part2 [type="checkbox"]:checked + label + ul, #main_menu_nav_part3 [type="checkbox"]:checked + label + ul { display: block; } #main_menu_nav_part2 h3.active + [type="checkbox"] + label + ul { display: block; } #main_menu_nav_part3 h3.active + [type="checkbox"] + label + ul { display: block; } /* CLASS */ .transition_css { transition: all .2s ease-out; -webkit-transition : all .2s ease-out; -moz-transition: all .2s ease-out; -o-transition: all .2s ease-out; -ms-transition: all .2s ease-out; } /* Le main et son contenu */ main { position: absolute; top: 0; right: 0; left: 19%; width: 78%; height: 96%; padding-top: 1%; } #stats { margin-left: 1%; background-color: #AAA; min-height: 100%; width: 100%; color: black; } #stats h1 { text-transform: uppercase; font-weight: bold; } #stats .stats-zone { background: white; padding: 10px; border-radius: 10px; margin: 10px auto; } #stats .stats-zone h2 { font-weight: bold; } #stats .stats-zone h2 b { color: #07B5DA; } #stats .stats-zone ul li b { color: #07B5DA; } /* Le nivigateur */ #nav-movies { background: #212529; padding: 5px; margin-bottom: 20px; } #nav-movies ul { display: flex; } #nav-movies ul li { margin-right: 10px; } .part { margin: 10px 2%; width: 96%; } .part label { display: block; float: left; width: 125px; } .part input { width: auto; } table { width: 100%; } thead { background: black; color: white; } tbody { color: black; } .part thead tr th { border-top: 1px solid black; } .partimdb [type=submit] { border-radius: 2%; min-width: 100px; padding: 2px; margin-bottom: 1px; } .part table .reason { width: 20%; } h1 { font-size: 2em; } .movieslist .btn-danger { margin-top: 5px; padding: 5px; } /* * La modale de suppression */ /* The Modal (background) */ .modal { display: none; /* Hidden by default */ position: fixed; /* Stay in place */ z-index: 1; /* Sit on top */ left: 0; top: 0; width: 100%; /* Full width */ height: 100%; overflow: auto; /* Enable scroll if needed */ background-color: rgb(0,0,0); /* Fallback color */ background-color: rgba(0,0,0,0.4); /* Black w/ opacity */ } /* Modal Content/Box */ .modal-content { margin: 20% auto; /* 15% from the top and centered */ padding: 20px; width: 40%; /* Could be more or less, depending on screen size */ min-width: 100px; position: relative; } .modal-content form { width: 100%; text-align: center; } .modal-content form span#question { color: black; width: 100%; } .modal-content form span#choices { color: black; text-align: center; width: 100%; display: flex; flex-direction: row; justify-content: space-between; } .modal-content form span#choices .choice { width: 45%; } .modal-content form span#choices #no-delete { font-size: 1em; color: white; } /* The Close Button */ .close { color: #aaa; /* float: right; */ position: absolute; top: 10px; right: 20px; font-size: 28px; font-weight: bold; } .close:hover, .close:focus { color: black; text-decoration: none; cursor: pointer; }
0.369088
0.056133
@font-face { font-family: 'Noto Sans Korean'; font-style: normal; font-weight: 100; src: local('Noto Sans KR Thin'), url('/font/NotoSansKR/NotoSans-Thin.eot'), url('/font/NotoSansKR/NotoSans-Thin.eot?#iefix') format('embedded-opentype'), url('/font/NotoSansKR/NotoSans-Thin.woff') format('woff'), url('/font/NotoSansKR/NotoSans-Thin.otf') format('opentype'); } @font-face { font-family: 'Noto Sans Korean'; font-style: normal; font-weight: 300; src: local('Noto Sans KR Light'), url('/font/NotoSansKR/NotoSans-Light.eot'), url('/font/NotoSansKR/NotoSans-Light.eot?#iefix') format('embedded-opentype'), url('/font/NotoSansKR/NotoSans-Light.woff') format('woff'), url('/font/NotoSansKR/NotoSans-Light.otf') format('opentype'); } @font-face { font-family: 'Noto Sans Korean'; font-style: normal; font-weight: 400; src: local('Noto Sans KR Regular'), url('/font/NotoSansKR/NotoSans-Regular.eot'), url('/font/NotoSansKR/NotoSans-Regular.eot?#iefix') format('embedded-opentype'), url('/font/NotoSansKR/NotoSans-Regular.woff') format('woff'), url('/font/NotoSansKR/NotoSans-Regular.otf') format('opentype'); } @font-face { font-family: 'Noto Sans Korean'; font-style: normal; font-weight: 500; src: local('Noto Sans KR Medium'), url('/font/NotoSansKR/NotoSans-Medium.eot'), url('/font/NotoSansKR/NotoSans-Medium.eot?#iefix') format('embedded-opentype'), url('/font/NotoSansKR/NotoSans-Medium.woff') format('woff'), url('/font/NotoSansKR/NotoSans-Medium.otf') format('opentype'); } @font-face { font-family: 'Noto Sans Korean'; font-style: normal; font-weight: 600; src: local('Noto Sans KR Bold'), url('/font/NotoSansKR/NotoSans-Bold.eot'), url('/font/NotoSansKR/NotoSans-Bold.eot?#iefix') format('embedded-opentype'), url('/font/NotoSansKR/NotoSans-Bold.woff') format('woff'), url('/font/NotoSansKR/NotoSans-Bold.otf') format('opentype'); }
publ_proto_191031/font/NotoSansKR/NotoSansKR.css
@font-face { font-family: 'Noto Sans Korean'; font-style: normal; font-weight: 100; src: local('Noto Sans KR Thin'), url('/font/NotoSansKR/NotoSans-Thin.eot'), url('/font/NotoSansKR/NotoSans-Thin.eot?#iefix') format('embedded-opentype'), url('/font/NotoSansKR/NotoSans-Thin.woff') format('woff'), url('/font/NotoSansKR/NotoSans-Thin.otf') format('opentype'); } @font-face { font-family: 'Noto Sans Korean'; font-style: normal; font-weight: 300; src: local('Noto Sans KR Light'), url('/font/NotoSansKR/NotoSans-Light.eot'), url('/font/NotoSansKR/NotoSans-Light.eot?#iefix') format('embedded-opentype'), url('/font/NotoSansKR/NotoSans-Light.woff') format('woff'), url('/font/NotoSansKR/NotoSans-Light.otf') format('opentype'); } @font-face { font-family: 'Noto Sans Korean'; font-style: normal; font-weight: 400; src: local('Noto Sans KR Regular'), url('/font/NotoSansKR/NotoSans-Regular.eot'), url('/font/NotoSansKR/NotoSans-Regular.eot?#iefix') format('embedded-opentype'), url('/font/NotoSansKR/NotoSans-Regular.woff') format('woff'), url('/font/NotoSansKR/NotoSans-Regular.otf') format('opentype'); } @font-face { font-family: 'Noto Sans Korean'; font-style: normal; font-weight: 500; src: local('Noto Sans KR Medium'), url('/font/NotoSansKR/NotoSans-Medium.eot'), url('/font/NotoSansKR/NotoSans-Medium.eot?#iefix') format('embedded-opentype'), url('/font/NotoSansKR/NotoSans-Medium.woff') format('woff'), url('/font/NotoSansKR/NotoSans-Medium.otf') format('opentype'); } @font-face { font-family: 'Noto Sans Korean'; font-style: normal; font-weight: 600; src: local('Noto Sans KR Bold'), url('/font/NotoSansKR/NotoSans-Bold.eot'), url('/font/NotoSansKR/NotoSans-Bold.eot?#iefix') format('embedded-opentype'), url('/font/NotoSansKR/NotoSans-Bold.woff') format('woff'), url('/font/NotoSansKR/NotoSans-Bold.otf') format('opentype'); }
0.341363
0.05113
/* 2 columns: 1 fixed (L), 1 liquid (R) */ div#wrapper{clear: both;} /*div#content{margin-left:270px} div#leftSideBar{float:left;width:230px;margin-left:-100%; border: 1px solid gray; padding: 10px;}*/ /* end of 2 columns style */ input#userInput { font-size: 10px; color: gray; } ul.ui-autocomplete { font-size: 12px; height: auto; max-height: 300px; width: auto; min-width: 250px; overflow: auto; padding: 10px 15px; margin-bottom: 0; z-index: 9999; } ul.ui-autocomplete li { border-bottom: 1px dashed #D1D1D1; display: block !important; } ul.ui-autocomplete li a { float: left !important; text-align: left !important; display: block !important; } div#userKeyword { margin-bottom: 15px; padding-left: 300px; color: #D57C24; } /* left panel */ div#leftSideBar { /*margin: 0 30px 0 0; */ border: 1px solid gray; padding: 10px; -moz-border-radius: 3px; border-radius: 3px; } div#leftSideBar div { margin-bottom: 5px; } div#leftSideBar a { text-decoration: none !important; color: #104E8B !important; } div.briefDocCap { padding: 1px; background-color: gray; text-align: center; margin-bottom:5px; color: white; font-weight: bold; } div#facetBrowser { margin: 5px; color: gray; font-size: 11px; font-weight: bold; border-bottom: 1px solid #DCDCDC; } div.facetCatList { display: none; padding: 5px 15px 0 20px; margin: 0; } div.facetCat { cursor: pointer; width: 70%; font-weight: bold; font-size: 12px; color: #333366; float: left; padding: 3px 0 3px 20px; background-image: url('../img/right.gif'); background-repeat: no-repeat; background-position: 2px 50%; /*x,y*/ } div.facetCatUp { background-image: url('../img/down.gif'); } span.facetCount { padding: 3px 15px 3px 0; float: right; font-weight: bold; font-size: 11px !important; cursor: pointer; } div#imageFacet span.facetCount a { color: black !important; } table.facetTable { width: 100%; border-collapse: collapse; margin: 0; } table.facetTable td { border-bottom: 1px solid #CDC8B1; font-size: 11px !important; text-align: left; padding: 0; } table.facetTable td:nth-child(3){ text-align: right !important; } table#geneGrid th:nth-child(1) { width: 35% !important; } table#geneGrid th:nth-child(2) { width: 25% !important; } div.geneCol { font-size: 12px; font-style:italic; color: gray !important; width: auto; } span.gSymbol { display: block; font-weight: bold; font-size: 14px; font-style: normal; } span.gNameSyn { font-weight: bold; } div#imgView { margin-bottom: 10px; } span#imgViewSubTitle { font-weight: bold; font-size: 12px; color: gray; } span#imgViewSwitcher { font-size: 10px; color: gray; float: right; margin-right: 10px; padding-right: 10px; cursor: pointer; } span.imgAnnots { display: block; } span.annotType { font-weight: bold; } table#diseaseGrid th:nth-child(1) { width: 35% !important; } /*table#geneFacetTbl td.geneSubtypeCount, table#geneFacetTbl td.geneStatusCount, table#geneFacetTbl td.geneSubfacetCount, table#pipelineFacetTbl td[class^=procedure], table#pipelineFacetTbl td a.paramCount, table#mpFacetTbl td.mpTopLevelCount, table#maFacetTbl td.maTopLevelCount, table#imagesFacetTbl td.imgSubfacetCount, table#diseaseFacetTbl td.diseaseSubfacetCount table#mpFacetTbl td.mpTopLevel table#maFacetTbl td.maTopLevelCount, table#maFacetTbl td.maTopLevel { cursor: pointer; }*/ tr.subFacet td:nth-child(1){ width: 20px !important; } table#geneFacetTbl tr.phenoCenterTrCap, table#geneFacetTbl tr.prodCenterTrCap, table#geneFacetTbl tr.geneSubTypeTrCap, table#geneFacetTbl tr.phenoStatusTrCap, table#geneFacetTbl tr.prodStatusTrCap, table#imagesFacetTbl tr.facetSubCat, table#pipelineFacetTbl tr.facetSubCat, table#diseaseFacetTbl tr.facetSubCat { cursor: pointer; } table#geneFacetTbl tr.prodCenterTrCap td, table#geneFacetTbl tr.phenoCenterTrCap td, table#geneFacetTbl tr.geneSubTypeTrCap td, table#geneFacetTbl tr.phenoStatusTrCap td, table#geneFacetTbl tr.prodStatusTrCap td, table#pipelineFacetTbl tr.facetSubCat td, table#imagesFacetTbl tr.facetSubCat td, table#diseaseFacetTbl tr.facetSubCat td { padding-left: 15px !important; background-image: url('../img/right.gif'); background-repeat: no-repeat; background-position: 2px 50%; /*x,y*/ } table#geneFacetTbl tr.prodCenterTrCap td.unCollapse, table#geneFacetTbl tr.phenoCenterTrCap td.unCollapse, table#geneFacetTbl tr.geneSubTypeTrCap td.unCollapse, table#geneFacetTbl tr.prodStatusTrCap td.unCollapse, table#geneFacetTbl tr.phenoStatusTrCap td.unCollapse, table#pipelineFacetTbl tr.facetSubCat td.unCollapse, table#imagesFacetTbl tr.facetSubCat td.unCollapse, table#diseaseFacetTbl tr.facetSubCat td.unCollapse { background-image: url('../img/down.gif'); } table#geneFacetTbl tr.phenoCenterTr, table#geneFacetTbl tr.prodCenterTr, table#geneFacetTbl tr.geneSubTypeTr, table#geneFacetTbl tr.prodStatusTr, table#geneFacetTbl tr.phenoStatusTr, table#diseaseFacetTbl tr.disease_classesTr, table#diseaseFacetTbl tr.disease_sourceTr, table#diseaseFacetTbl tr.curatedTr, table#diseaseFacetTbl tr.predictedTr, table#pipelineFacetTbl tr.subFacet, tr.trHidden { display: none; } table#pipelineFacetTbl td[class^=procedure]:nth-child(1) { padding-left: 5px; } table#pipelineFacetTbl tr[class$=_param] { display: none; font-size: 10px; color: gray; cursor: text !important; } table tr.facetSubCat td.grayout { color: gray; } img#maFacetInfo, img#mpFacetInfo { float: right; margin: 0px 80px 10px 10px; height: 10px; display: none; position: relative; } span#maMsg, span#mpMsg { position: absolute; margin-top: 13px; margin-left: 18px; width: 200px; border: 1px solid gray; display: none; z-index: 9999; background-color: #CCCCCC; padding: 20px; font-size: 11px; font-weight: normal; color: black; } span#maMsg { margin-left: 40px; } table#mpTable, table#maTable { float: left; margin: 0; } table[id$=FacetTbl] tr td input { margin: 0 !important; padding: 0 !important; } table[id$=FacetTbl] tr td { text-align:center; } table[id$=FacetTbl] tr td:nth-child(2), table[id$=FacetTbl] tr.facetSubCat td { text-align:left; } .highlight { color: #D17023; } div[id^=ui-tabs-] span { display: block; border-bottom: 1px solid #CDC8B1; padding: 1px 0; } div[id^=ui-tabs-] span:last-child { border-bottom: none; } div.ui-tabs-panel { padding: 2px 5px !important; } div[id^=mpTab_], div[id^=maTab_] { margin-top: 4px; } div[id^=mpTab_] ul.ui-tabs-nav, div[id^=maTab_] ul.ui-tabs-nav { background: none !important; border: none !important; } div[id^=mpTab_] ul.ui-tabs-nav li a, div[id^=maTab_] ul.ui-tabs-nav li a { padding: 0 6px; font-size: 8px !important; } /* image facet table */ tr.facetSubCat td { font-weight: bold; font-size: 12px; color: black; background-color: #F4F4F4; padding: 3px; } table#imagesGrid td img { width: 50px !important; margin-left: 3px; } /* end of image facet table */ /* table tool */ div#tableTool { font-size: 12px; position: absolute; top: -127px; right: 10px; } div#saveTable { position: relative; top: 100px; float: right; margin-right: 10px; cursor: pointer; padding: 1px 5px; z-index: 99; background-color: #F4F4F4; width: 85px; } div#toolBox { position: relative; top: -30px; right: 10px; height: 123px; width: 200px; display: none; padding: 15px; background-color: #F4F4F4; } div#toolBox span { display: block; } div#saveSep { margin: 10px; } div.dataName { font-weight: bold; height: auto; } div#exportSpinner { float: left; color: #CC6600; } /* end of table tool */ span.hiddenId { display: none; } div.gridSubTitle { display: inline; } div#resultMsg, strong.lead { color: gray !important; font-weight: bold !important; font-size: 13px !important; } div.dataTables_wrapper { margin-top: 30px; } /* ----- start of facet filter ----- */ div#filterToggle { display: block; } div#filterToggle span { border: 1px solid gray; padding: 2px 4px; font-size: 11px; cursor: pointer; } div#resetFilter { font-size: 11px; } ul#facetFilter { width: auto; margin: -23px 0 0 150px; padding: 3px 10px; background-color: #F4F4F4; border-radius: 1em; font: normal 1em Arial, Helvetica, sans-serif; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; display: block; } ul#facetFilter ul { /*z-index: 9999; display: none;*/ margin: 0 0 5px 20px; padding: 2px 5px; width: auto; /*position: absolute; top: 20px; left: 0;*/ /*background: #F4F4F4;*/ /*url(overlay.png) repeat-x 0 0;*/ /*border: solid 1px #b4b4b4; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px;*/ } #facetFilter li.has-sub { list-style: none; } ul#facetFilter li ul li { list-style: none; /*margin-left: 20px;*/ } ul#facetFilter li.has-sub { display: none; } ul#facetFilter li.none { display: block; } ul#facetFilter li.has-sub img { cursor: pointer; } ul#facetFilter li li a { font-size: 12px; } /* ----- end of facet filter ----- */ /* * Table */ table.dataTable { margin: 0 auto; clear: both; width: 100%; } table.dataTable thead th { padding: 3px 18px 3px 10px; border-bottom: 1px solid black; font-weight: bold; cursor: pointer; *cursor: hand; } table.dataTable tfoot th { padding: 3px 18px 3px 10px; border-top: 1px solid black; font-weight: bold; } table.dataTable td { padding: 3px 10px; } table.dataTable td.center, table.dataTable td.dataTables_empty { text-align: center; } table.dataTable tr.odd { background-color: #E2E4FF; } table.dataTable tr.even { background-color: white; } table.dataTable tr.odd td.sorting_1 { background-color: #D3D6FF; } table.dataTable tr.odd td.sorting_2 { background-color: #DADCFF; } table.dataTable tr.odd td.sorting_3 { background-color: #E0E2FF; } table.dataTable tr.even td.sorting_1 { background-color: #EAEBFF; } table.dataTable tr.even td.sorting_2 { background-color: #F2F3FF; } table.dataTable tr.even td.sorting_3 { background-color: #F9F9FF; } /* * Table wrapper */ .dataTables_wrapper { position: relative; clear: both; *zoom: 1; } /* * Page length menu */ .dataTables_length { float: left; } /* * Filter */ .dataTables_filter { float: right; text-align: right; } /* * Table information */ .dataTables_info { clear: both; float: left; } /* * Pagination */ .dataTables_paginate { float: right; text-align: right; } /* Two button pagination - previous / next */ .paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next { height: 19px; float: left; cursor: pointer; *cursor: hand; color: #111 !important; } .paginate_disabled_previous:hover, .paginate_enabled_previous:hover, .paginate_disabled_next:hover, .paginate_enabled_next:hover { text-decoration: none !important; } .paginate_disabled_previous:active, .paginate_enabled_previous:active, .paginate_disabled_next:active, .paginate_enabled_next:active { outline: none; } .paginate_disabled_previous, .paginate_disabled_next { color: #666 !important; } .paginate_disabled_previous, .paginate_enabled_previous { padding-left: 23px; } .paginate_disabled_next, .paginate_enabled_next { padding-right: 23px; margin-left: 10px; } .paginate_enabled_previous { background: url('../images/back_enabled.png') no-repeat top left; } .paginate_enabled_previous:hover { background: url('../images/back_enabled_hover.png') no-repeat top left; } .paginate_disabled_previous { background: url('../images/back_disabled.png') no-repeat top left; } .paginate_enabled_next { background: url('../images/forward_enabled.png') no-repeat top right; } .paginate_enabled_next:hover { background: url('../images/forward_enabled_hover.png') no-repeat top right; } .paginate_disabled_next { background: url('../images/forward_disabled.png') no-repeat top right; } /* Full number pagination */ .paging_full_numbers { height: 22px; line-height: 22px; } .paging_full_numbers a:active { outline: none } .paging_full_numbers a:hover { text-decoration: none; } .paging_full_numbers a.paginate_button, .paging_full_numbers a.paginate_active { border: 1px solid #aaa; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; padding: 2px 5px; margin: 0 3px; cursor: pointer; *cursor: hand; color: #333 !important; } .paging_full_numbers a.paginate_button { background-color: #ddd; } .paging_full_numbers a.paginate_button:hover { background-color: #ccc; text-decoration: none !important; } .paging_full_numbers a.paginate_active { background-color: #99B3FF; } /* * Processing indicator */ .dataTables_processing { position: absolute; top: 50%; left: 50%; width: 250px; height: 30px; margin-left: -125px; margin-top: -15px; padding: 14px 0 2px 0; border: 1px solid #ddd; text-align: center; color: #999; font-size: 14px; background-color: white; } /* * Sorting */ .sorting { background: url('../images/sort_both.png') no-repeat center right; } .sorting_asc { background: url('../images/sort_asc.png') no-repeat center right; } .sorting_desc { background: url('../images/sort_desc.png') no-repeat center right; } .sorting_asc_disabled { background: url('../images/sort_asc_disabled.png') no-repeat center right; } .sorting_desc_disabled { background: url('../images/sort_desc_disabled.png') no-repeat center right; } table.dataTable thead th:active, table.dataTable thead td:active { outline: none; } /* * Scrolling */ .dataTables_scroll { clear: both; } .dataTables_scrollBody { *margin-top: -1px; -webkit-overflow-scrolling: touch; } @CHARSET "UTF-8"; table.dataTable th { border-bottom: 3px solid #d57c24 !important; } table.dataTable td { background-color: white !important; } div.dataTables_info, div.dataTables_paginate { margin: 25px 0 0 10px !important; } div.dataTables_paginate { margin: 25px 10px 0 0; } span.hit { color: #d57c24; } div#tableShowAllLess span { cursor: pointer; padding: 3px 5px; border: 1px solid gray; font-size: 11px; background-color: #F4F4F4; border: 1px solid #CDC8B1; } div#foundEntries, div#tableShowAllLess { padding-left: 10px; } div.mpi2-search table.dataTable th { cursor: text !important; /* still need to do this even though dataTable is told not to sort by bSort: false */ } /* TableTools styles: posted as fix for bootstrap buttons from datatables.net https://github.com/DataTables/Plugins/commit/9556be3b19c5c46e393b7ebaae7f402c03d992cb See http://datatables.net/forums/discussion/11885/problem-with-the-tabletools-using-twitter-bootstrap/p1 */ .table tbody tr.active td, .table tbody tr.active th { background-color: #08C; color: white; } .table tbody tr.active:hover td, .table tbody tr.active:hover th { background-color: #0075b0 !important; } .table-striped tbody tr.active:nth-child(odd) td, .table-striped tbody tr.active:nth-child(odd) th { background-color: #017ebc; } table.DTTT_selectable tbody tr { cursor: pointer; *cursor: hand; } div.DTTT .btn { color: #333 !important; font-size: 12px; } div.DTTT .btn:hover { text-decoration: none !important; } ul.DTTT_dropdown.dropdown-menu a { color: #333 !important; /* needed only when demo_page.css is included */ } ul.DTTT_dropdown.dropdown-menu li { position: relative; } ul.DTTT_dropdown.dropdown-menu li:hover a { background-color: #0088cc; color: white !important; } /* TableTools information display */ div.DTTT_print_info.modal { height: 150px; margin-top: -75px; text-align: center; } div.DTTT_print_info h6 { font-weight: normal; font-size: 28px; line-height: 28px; margin: 1em; } div.DTTT_print_info p { font-size: 14px; line-height: 20px; } /* Add custom css overrides here This file gets included as the last CSS import, so anything defined here should override behavior defined previously */ // Scrollable divs for code example blocks. .highlight { background: #ffffff; } .highlight pre { background-color: #f8f8f8; border: 1px solid #ddd; font-size: 13px; line-height: 19px; overflow: auto; padding: 6px 10px; border-radius: 3px; } .highlight .se { color: #dd1144; } .highlight .s1 { color: #dd1144; }
web/src/main/webapp/resources/css/style.css
/* 2 columns: 1 fixed (L), 1 liquid (R) */ div#wrapper{clear: both;} /*div#content{margin-left:270px} div#leftSideBar{float:left;width:230px;margin-left:-100%; border: 1px solid gray; padding: 10px;}*/ /* end of 2 columns style */ input#userInput { font-size: 10px; color: gray; } ul.ui-autocomplete { font-size: 12px; height: auto; max-height: 300px; width: auto; min-width: 250px; overflow: auto; padding: 10px 15px; margin-bottom: 0; z-index: 9999; } ul.ui-autocomplete li { border-bottom: 1px dashed #D1D1D1; display: block !important; } ul.ui-autocomplete li a { float: left !important; text-align: left !important; display: block !important; } div#userKeyword { margin-bottom: 15px; padding-left: 300px; color: #D57C24; } /* left panel */ div#leftSideBar { /*margin: 0 30px 0 0; */ border: 1px solid gray; padding: 10px; -moz-border-radius: 3px; border-radius: 3px; } div#leftSideBar div { margin-bottom: 5px; } div#leftSideBar a { text-decoration: none !important; color: #104E8B !important; } div.briefDocCap { padding: 1px; background-color: gray; text-align: center; margin-bottom:5px; color: white; font-weight: bold; } div#facetBrowser { margin: 5px; color: gray; font-size: 11px; font-weight: bold; border-bottom: 1px solid #DCDCDC; } div.facetCatList { display: none; padding: 5px 15px 0 20px; margin: 0; } div.facetCat { cursor: pointer; width: 70%; font-weight: bold; font-size: 12px; color: #333366; float: left; padding: 3px 0 3px 20px; background-image: url('../img/right.gif'); background-repeat: no-repeat; background-position: 2px 50%; /*x,y*/ } div.facetCatUp { background-image: url('../img/down.gif'); } span.facetCount { padding: 3px 15px 3px 0; float: right; font-weight: bold; font-size: 11px !important; cursor: pointer; } div#imageFacet span.facetCount a { color: black !important; } table.facetTable { width: 100%; border-collapse: collapse; margin: 0; } table.facetTable td { border-bottom: 1px solid #CDC8B1; font-size: 11px !important; text-align: left; padding: 0; } table.facetTable td:nth-child(3){ text-align: right !important; } table#geneGrid th:nth-child(1) { width: 35% !important; } table#geneGrid th:nth-child(2) { width: 25% !important; } div.geneCol { font-size: 12px; font-style:italic; color: gray !important; width: auto; } span.gSymbol { display: block; font-weight: bold; font-size: 14px; font-style: normal; } span.gNameSyn { font-weight: bold; } div#imgView { margin-bottom: 10px; } span#imgViewSubTitle { font-weight: bold; font-size: 12px; color: gray; } span#imgViewSwitcher { font-size: 10px; color: gray; float: right; margin-right: 10px; padding-right: 10px; cursor: pointer; } span.imgAnnots { display: block; } span.annotType { font-weight: bold; } table#diseaseGrid th:nth-child(1) { width: 35% !important; } /*table#geneFacetTbl td.geneSubtypeCount, table#geneFacetTbl td.geneStatusCount, table#geneFacetTbl td.geneSubfacetCount, table#pipelineFacetTbl td[class^=procedure], table#pipelineFacetTbl td a.paramCount, table#mpFacetTbl td.mpTopLevelCount, table#maFacetTbl td.maTopLevelCount, table#imagesFacetTbl td.imgSubfacetCount, table#diseaseFacetTbl td.diseaseSubfacetCount table#mpFacetTbl td.mpTopLevel table#maFacetTbl td.maTopLevelCount, table#maFacetTbl td.maTopLevel { cursor: pointer; }*/ tr.subFacet td:nth-child(1){ width: 20px !important; } table#geneFacetTbl tr.phenoCenterTrCap, table#geneFacetTbl tr.prodCenterTrCap, table#geneFacetTbl tr.geneSubTypeTrCap, table#geneFacetTbl tr.phenoStatusTrCap, table#geneFacetTbl tr.prodStatusTrCap, table#imagesFacetTbl tr.facetSubCat, table#pipelineFacetTbl tr.facetSubCat, table#diseaseFacetTbl tr.facetSubCat { cursor: pointer; } table#geneFacetTbl tr.prodCenterTrCap td, table#geneFacetTbl tr.phenoCenterTrCap td, table#geneFacetTbl tr.geneSubTypeTrCap td, table#geneFacetTbl tr.phenoStatusTrCap td, table#geneFacetTbl tr.prodStatusTrCap td, table#pipelineFacetTbl tr.facetSubCat td, table#imagesFacetTbl tr.facetSubCat td, table#diseaseFacetTbl tr.facetSubCat td { padding-left: 15px !important; background-image: url('../img/right.gif'); background-repeat: no-repeat; background-position: 2px 50%; /*x,y*/ } table#geneFacetTbl tr.prodCenterTrCap td.unCollapse, table#geneFacetTbl tr.phenoCenterTrCap td.unCollapse, table#geneFacetTbl tr.geneSubTypeTrCap td.unCollapse, table#geneFacetTbl tr.prodStatusTrCap td.unCollapse, table#geneFacetTbl tr.phenoStatusTrCap td.unCollapse, table#pipelineFacetTbl tr.facetSubCat td.unCollapse, table#imagesFacetTbl tr.facetSubCat td.unCollapse, table#diseaseFacetTbl tr.facetSubCat td.unCollapse { background-image: url('../img/down.gif'); } table#geneFacetTbl tr.phenoCenterTr, table#geneFacetTbl tr.prodCenterTr, table#geneFacetTbl tr.geneSubTypeTr, table#geneFacetTbl tr.prodStatusTr, table#geneFacetTbl tr.phenoStatusTr, table#diseaseFacetTbl tr.disease_classesTr, table#diseaseFacetTbl tr.disease_sourceTr, table#diseaseFacetTbl tr.curatedTr, table#diseaseFacetTbl tr.predictedTr, table#pipelineFacetTbl tr.subFacet, tr.trHidden { display: none; } table#pipelineFacetTbl td[class^=procedure]:nth-child(1) { padding-left: 5px; } table#pipelineFacetTbl tr[class$=_param] { display: none; font-size: 10px; color: gray; cursor: text !important; } table tr.facetSubCat td.grayout { color: gray; } img#maFacetInfo, img#mpFacetInfo { float: right; margin: 0px 80px 10px 10px; height: 10px; display: none; position: relative; } span#maMsg, span#mpMsg { position: absolute; margin-top: 13px; margin-left: 18px; width: 200px; border: 1px solid gray; display: none; z-index: 9999; background-color: #CCCCCC; padding: 20px; font-size: 11px; font-weight: normal; color: black; } span#maMsg { margin-left: 40px; } table#mpTable, table#maTable { float: left; margin: 0; } table[id$=FacetTbl] tr td input { margin: 0 !important; padding: 0 !important; } table[id$=FacetTbl] tr td { text-align:center; } table[id$=FacetTbl] tr td:nth-child(2), table[id$=FacetTbl] tr.facetSubCat td { text-align:left; } .highlight { color: #D17023; } div[id^=ui-tabs-] span { display: block; border-bottom: 1px solid #CDC8B1; padding: 1px 0; } div[id^=ui-tabs-] span:last-child { border-bottom: none; } div.ui-tabs-panel { padding: 2px 5px !important; } div[id^=mpTab_], div[id^=maTab_] { margin-top: 4px; } div[id^=mpTab_] ul.ui-tabs-nav, div[id^=maTab_] ul.ui-tabs-nav { background: none !important; border: none !important; } div[id^=mpTab_] ul.ui-tabs-nav li a, div[id^=maTab_] ul.ui-tabs-nav li a { padding: 0 6px; font-size: 8px !important; } /* image facet table */ tr.facetSubCat td { font-weight: bold; font-size: 12px; color: black; background-color: #F4F4F4; padding: 3px; } table#imagesGrid td img { width: 50px !important; margin-left: 3px; } /* end of image facet table */ /* table tool */ div#tableTool { font-size: 12px; position: absolute; top: -127px; right: 10px; } div#saveTable { position: relative; top: 100px; float: right; margin-right: 10px; cursor: pointer; padding: 1px 5px; z-index: 99; background-color: #F4F4F4; width: 85px; } div#toolBox { position: relative; top: -30px; right: 10px; height: 123px; width: 200px; display: none; padding: 15px; background-color: #F4F4F4; } div#toolBox span { display: block; } div#saveSep { margin: 10px; } div.dataName { font-weight: bold; height: auto; } div#exportSpinner { float: left; color: #CC6600; } /* end of table tool */ span.hiddenId { display: none; } div.gridSubTitle { display: inline; } div#resultMsg, strong.lead { color: gray !important; font-weight: bold !important; font-size: 13px !important; } div.dataTables_wrapper { margin-top: 30px; } /* ----- start of facet filter ----- */ div#filterToggle { display: block; } div#filterToggle span { border: 1px solid gray; padding: 2px 4px; font-size: 11px; cursor: pointer; } div#resetFilter { font-size: 11px; } ul#facetFilter { width: auto; margin: -23px 0 0 150px; padding: 3px 10px; background-color: #F4F4F4; border-radius: 1em; font: normal 1em Arial, Helvetica, sans-serif; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; display: block; } ul#facetFilter ul { /*z-index: 9999; display: none;*/ margin: 0 0 5px 20px; padding: 2px 5px; width: auto; /*position: absolute; top: 20px; left: 0;*/ /*background: #F4F4F4;*/ /*url(overlay.png) repeat-x 0 0;*/ /*border: solid 1px #b4b4b4; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px;*/ } #facetFilter li.has-sub { list-style: none; } ul#facetFilter li ul li { list-style: none; /*margin-left: 20px;*/ } ul#facetFilter li.has-sub { display: none; } ul#facetFilter li.none { display: block; } ul#facetFilter li.has-sub img { cursor: pointer; } ul#facetFilter li li a { font-size: 12px; } /* ----- end of facet filter ----- */ /* * Table */ table.dataTable { margin: 0 auto; clear: both; width: 100%; } table.dataTable thead th { padding: 3px 18px 3px 10px; border-bottom: 1px solid black; font-weight: bold; cursor: pointer; *cursor: hand; } table.dataTable tfoot th { padding: 3px 18px 3px 10px; border-top: 1px solid black; font-weight: bold; } table.dataTable td { padding: 3px 10px; } table.dataTable td.center, table.dataTable td.dataTables_empty { text-align: center; } table.dataTable tr.odd { background-color: #E2E4FF; } table.dataTable tr.even { background-color: white; } table.dataTable tr.odd td.sorting_1 { background-color: #D3D6FF; } table.dataTable tr.odd td.sorting_2 { background-color: #DADCFF; } table.dataTable tr.odd td.sorting_3 { background-color: #E0E2FF; } table.dataTable tr.even td.sorting_1 { background-color: #EAEBFF; } table.dataTable tr.even td.sorting_2 { background-color: #F2F3FF; } table.dataTable tr.even td.sorting_3 { background-color: #F9F9FF; } /* * Table wrapper */ .dataTables_wrapper { position: relative; clear: both; *zoom: 1; } /* * Page length menu */ .dataTables_length { float: left; } /* * Filter */ .dataTables_filter { float: right; text-align: right; } /* * Table information */ .dataTables_info { clear: both; float: left; } /* * Pagination */ .dataTables_paginate { float: right; text-align: right; } /* Two button pagination - previous / next */ .paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next { height: 19px; float: left; cursor: pointer; *cursor: hand; color: #111 !important; } .paginate_disabled_previous:hover, .paginate_enabled_previous:hover, .paginate_disabled_next:hover, .paginate_enabled_next:hover { text-decoration: none !important; } .paginate_disabled_previous:active, .paginate_enabled_previous:active, .paginate_disabled_next:active, .paginate_enabled_next:active { outline: none; } .paginate_disabled_previous, .paginate_disabled_next { color: #666 !important; } .paginate_disabled_previous, .paginate_enabled_previous { padding-left: 23px; } .paginate_disabled_next, .paginate_enabled_next { padding-right: 23px; margin-left: 10px; } .paginate_enabled_previous { background: url('../images/back_enabled.png') no-repeat top left; } .paginate_enabled_previous:hover { background: url('../images/back_enabled_hover.png') no-repeat top left; } .paginate_disabled_previous { background: url('../images/back_disabled.png') no-repeat top left; } .paginate_enabled_next { background: url('../images/forward_enabled.png') no-repeat top right; } .paginate_enabled_next:hover { background: url('../images/forward_enabled_hover.png') no-repeat top right; } .paginate_disabled_next { background: url('../images/forward_disabled.png') no-repeat top right; } /* Full number pagination */ .paging_full_numbers { height: 22px; line-height: 22px; } .paging_full_numbers a:active { outline: none } .paging_full_numbers a:hover { text-decoration: none; } .paging_full_numbers a.paginate_button, .paging_full_numbers a.paginate_active { border: 1px solid #aaa; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; padding: 2px 5px; margin: 0 3px; cursor: pointer; *cursor: hand; color: #333 !important; } .paging_full_numbers a.paginate_button { background-color: #ddd; } .paging_full_numbers a.paginate_button:hover { background-color: #ccc; text-decoration: none !important; } .paging_full_numbers a.paginate_active { background-color: #99B3FF; } /* * Processing indicator */ .dataTables_processing { position: absolute; top: 50%; left: 50%; width: 250px; height: 30px; margin-left: -125px; margin-top: -15px; padding: 14px 0 2px 0; border: 1px solid #ddd; text-align: center; color: #999; font-size: 14px; background-color: white; } /* * Sorting */ .sorting { background: url('../images/sort_both.png') no-repeat center right; } .sorting_asc { background: url('../images/sort_asc.png') no-repeat center right; } .sorting_desc { background: url('../images/sort_desc.png') no-repeat center right; } .sorting_asc_disabled { background: url('../images/sort_asc_disabled.png') no-repeat center right; } .sorting_desc_disabled { background: url('../images/sort_desc_disabled.png') no-repeat center right; } table.dataTable thead th:active, table.dataTable thead td:active { outline: none; } /* * Scrolling */ .dataTables_scroll { clear: both; } .dataTables_scrollBody { *margin-top: -1px; -webkit-overflow-scrolling: touch; } @CHARSET "UTF-8"; table.dataTable th { border-bottom: 3px solid #d57c24 !important; } table.dataTable td { background-color: white !important; } div.dataTables_info, div.dataTables_paginate { margin: 25px 0 0 10px !important; } div.dataTables_paginate { margin: 25px 10px 0 0; } span.hit { color: #d57c24; } div#tableShowAllLess span { cursor: pointer; padding: 3px 5px; border: 1px solid gray; font-size: 11px; background-color: #F4F4F4; border: 1px solid #CDC8B1; } div#foundEntries, div#tableShowAllLess { padding-left: 10px; } div.mpi2-search table.dataTable th { cursor: text !important; /* still need to do this even though dataTable is told not to sort by bSort: false */ } /* TableTools styles: posted as fix for bootstrap buttons from datatables.net https://github.com/DataTables/Plugins/commit/9556be3b19c5c46e393b7ebaae7f402c03d992cb See http://datatables.net/forums/discussion/11885/problem-with-the-tabletools-using-twitter-bootstrap/p1 */ .table tbody tr.active td, .table tbody tr.active th { background-color: #08C; color: white; } .table tbody tr.active:hover td, .table tbody tr.active:hover th { background-color: #0075b0 !important; } .table-striped tbody tr.active:nth-child(odd) td, .table-striped tbody tr.active:nth-child(odd) th { background-color: #017ebc; } table.DTTT_selectable tbody tr { cursor: pointer; *cursor: hand; } div.DTTT .btn { color: #333 !important; font-size: 12px; } div.DTTT .btn:hover { text-decoration: none !important; } ul.DTTT_dropdown.dropdown-menu a { color: #333 !important; /* needed only when demo_page.css is included */ } ul.DTTT_dropdown.dropdown-menu li { position: relative; } ul.DTTT_dropdown.dropdown-menu li:hover a { background-color: #0088cc; color: white !important; } /* TableTools information display */ div.DTTT_print_info.modal { height: 150px; margin-top: -75px; text-align: center; } div.DTTT_print_info h6 { font-weight: normal; font-size: 28px; line-height: 28px; margin: 1em; } div.DTTT_print_info p { font-size: 14px; line-height: 20px; } /* Add custom css overrides here This file gets included as the last CSS import, so anything defined here should override behavior defined previously */ // Scrollable divs for code example blocks. .highlight { background: #ffffff; } .highlight pre { background-color: #f8f8f8; border: 1px solid #ddd; font-size: 13px; line-height: 19px; overflow: auto; padding: 6px 10px; border-radius: 3px; } .highlight .se { color: #dd1144; } .highlight .s1 { color: #dd1144; }
0.1495
0.210949
body { font: 16px "Lucida Grande", Helvetica, Arial, sans-serif; /*background-color: rgb(220, 245, 220);*/ background-image: url("https://wallpapercave.com/wp/wp1842221.jpg"); background-repeat: no-repeat; background-attachment: fixed; background-position: 28% 3% ; background-color: #B5C9F9; } a { /* color: #00B7FF; */ color: #000000; } .input-margin{ margin-top: 2%; margin-bottom: 3%; } .modal { text-align: center; padding: 0!important; } .modal:before { content: ''; display: inline-block; height: 100%; vertical-align: middle; margin-right: -4px; } .modal-dialog { display: inline-block; text-align: left; vertical-align: middle; } .panel-login { border-style: solid; border-color: coral; -webkit-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.2); -moz-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.2); box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.2); } .panel-login>.panel-heading { color: #00415d; background-color: #fff; border-color: #fff; text-align:center; } .panel-login>.panel-heading a{ text-decoration: none; color: #666; font-weight: bold; font-size: 15px; -webkit-transition: all 0.1s linear; -moz-transition: all 0.1s linear; transition: all 0.1s linear; } .panel-login>.panel-heading a.active{ color: #029f5b; font-size: 18px; } .panel-login>.panel-heading hr{ margin-top: 10px; margin-bottom: 0px; clear: both; border: 0; height: 1px; background-image: -webkit-linear-gradient(left,rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.15),rgba(0, 0, 0, 0)); background-image: -moz-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0)); background-image: -ms-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0)); background-image: -o-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0)); } .panel-login input[type="text"],.panel-login input[type="email"],.panel-login input[type="password"] { height: 45px; border: 1px solid #ddd; font-size: 16px; -webkit-transition: all 0.1s linear; -moz-transition: all 0.1s linear; transition: all 0.1s linear; } .panel-login input:hover, .panel-login input:focus { outline:none; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; border-color: #ccc; } .btn-login { background-color: #59B2E0; outline: none; color: #fff; font-size: 14px; height: auto; font-weight: normal; padding: 14px 0; text-transform: uppercase; border-color: #59B2E6; } .btn-login:hover, .btn-login:focus { color: #fff; background-color: #53A3CD; border-color: #53A3CD; } .forgot-password { text-decoration: underline; color: #888; } .forgot-password:hover, .forgot-password:focus { text-decoration: underline; color: #666; } .btn-register { background-color: #1CB94E; outline: none; color: #fff; font-size: 14px; height: auto; font-weight: normal; padding: 14px 0; text-transform: uppercase; border-color: #1CB94A; } .btn-register:hover, .btn-register:focus { color: #fff; background-color: #1CA347; border-color: #1CA347; }
public/stylesheets/style.css
body { font: 16px "Lucida Grande", Helvetica, Arial, sans-serif; /*background-color: rgb(220, 245, 220);*/ background-image: url("https://wallpapercave.com/wp/wp1842221.jpg"); background-repeat: no-repeat; background-attachment: fixed; background-position: 28% 3% ; background-color: #B5C9F9; } a { /* color: #00B7FF; */ color: #000000; } .input-margin{ margin-top: 2%; margin-bottom: 3%; } .modal { text-align: center; padding: 0!important; } .modal:before { content: ''; display: inline-block; height: 100%; vertical-align: middle; margin-right: -4px; } .modal-dialog { display: inline-block; text-align: left; vertical-align: middle; } .panel-login { border-style: solid; border-color: coral; -webkit-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.2); -moz-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.2); box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.2); } .panel-login>.panel-heading { color: #00415d; background-color: #fff; border-color: #fff; text-align:center; } .panel-login>.panel-heading a{ text-decoration: none; color: #666; font-weight: bold; font-size: 15px; -webkit-transition: all 0.1s linear; -moz-transition: all 0.1s linear; transition: all 0.1s linear; } .panel-login>.panel-heading a.active{ color: #029f5b; font-size: 18px; } .panel-login>.panel-heading hr{ margin-top: 10px; margin-bottom: 0px; clear: both; border: 0; height: 1px; background-image: -webkit-linear-gradient(left,rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.15),rgba(0, 0, 0, 0)); background-image: -moz-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0)); background-image: -ms-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0)); background-image: -o-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0)); } .panel-login input[type="text"],.panel-login input[type="email"],.panel-login input[type="password"] { height: 45px; border: 1px solid #ddd; font-size: 16px; -webkit-transition: all 0.1s linear; -moz-transition: all 0.1s linear; transition: all 0.1s linear; } .panel-login input:hover, .panel-login input:focus { outline:none; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; border-color: #ccc; } .btn-login { background-color: #59B2E0; outline: none; color: #fff; font-size: 14px; height: auto; font-weight: normal; padding: 14px 0; text-transform: uppercase; border-color: #59B2E6; } .btn-login:hover, .btn-login:focus { color: #fff; background-color: #53A3CD; border-color: #53A3CD; } .forgot-password { text-decoration: underline; color: #888; } .forgot-password:hover, .forgot-password:focus { text-decoration: underline; color: #666; } .btn-register { background-color: #1CB94E; outline: none; color: #fff; font-size: 14px; height: auto; font-weight: normal; padding: 14px 0; text-transform: uppercase; border-color: #1CB94A; } .btn-register:hover, .btn-register:focus { color: #fff; background-color: #1CA347; border-color: #1CA347; }
0.305386
0.082809
body { font-family: helvetica,sans-serif; font-size: 1em; color: #424242; background-color: #CCCCCC; overflow-x:hidden; } #wrapper { width: 80%; margin-left: auto; margin-right: auto; margin-top: 0; background-color: #FFFFFF; } #header_img_main { margin: auto; background-image: url("../imgs/seine_stones.jpg"); background-size: cover; min-height: 250px; } #header_img_sub { margin: auto; background-image: url("../imgs/seine_stones.jpg"); background-size: cover; min-height: 75px; } a:link { color: #B85C00; } a:visited { color: #B85C00; } a:hover { color: orange; } ul { list-style-type: none; padding: 0px; margin: 0px; } #header { position: fixed; font-size: 2em; width: 70%; padding-left: 5%; padding-right: 5%; padding-top: 1%; padding-bottom: 1%; color: #666666; background-color: #000000; font-family: Pompiere; } #top-nav { width: 50%; margin-top: 1%; font-size: .6em; font-weight: bold; float: right; } .nav ul { padding: 0; margin: 0; list-style-type: none; } .nav li { padding-left: 3%; display: inline; text-decoration: none; } .nav a { text-decoration: none; } #content { width: 90%; padding-left: 5%; padding-top: 1%; padding-right: 50%; padding-bottom: 5%; float: left; font-size: .75em; min-height: 300px; } #content h1,h2,h3 { font-family: Pompiere; font-weight: bold; } #content table { border-collapse: collapse; } .post_date { width: 5%; font-family: Pompiere; text-align: right; font-weight: bold; border-bottom: 0; border-top: 0; border-left: 0; border-right: 1px solid #CCCCCC; padding-right: 1%; } .post_title { font-family: Pompiere; font-weight: bolder; font-size: 1.5em; padding-left: 1%; } .post_content { font-size: 1em; padding: 1%; border-top: 1px solid #CCCCCC; } .post_footer { color: #B85C00; font-size: .8em; text-align: center; font-style: italic; } .post_snippet { font-size: 1em; padding: 1%; border-top: 1px solid #CCCCCC; } .post_snippet_more { color: #B85C00; font-size: .8em; text-align: center; font-style: italic; } #about_me_img { padding: 2% 2% 5% 2%; float: right; max-width: 80%; border: 1px solid #CCCCCC; } .post-date{ font-weight: bold; font-style: italic; font-size: .75em; } #footer{ width: 95%; clear: both; background-color: #E8E8E8; border-top: 1px solid #D8D8D8; border-bottom: 1px solid #D8D8D8; padding-left: 5%; padding-top: 1%; padding-bottom: 1%; font-family: pompiere; font-size: .75em; font-weight: bold } #footer img { vertical-align: bottom; padding: .2%; } .code { font-family: courier; background-color: #FFFFCC; padding: 1%; display: block; }
stylesheets/stylesheet.css
body { font-family: helvetica,sans-serif; font-size: 1em; color: #424242; background-color: #CCCCCC; overflow-x:hidden; } #wrapper { width: 80%; margin-left: auto; margin-right: auto; margin-top: 0; background-color: #FFFFFF; } #header_img_main { margin: auto; background-image: url("../imgs/seine_stones.jpg"); background-size: cover; min-height: 250px; } #header_img_sub { margin: auto; background-image: url("../imgs/seine_stones.jpg"); background-size: cover; min-height: 75px; } a:link { color: #B85C00; } a:visited { color: #B85C00; } a:hover { color: orange; } ul { list-style-type: none; padding: 0px; margin: 0px; } #header { position: fixed; font-size: 2em; width: 70%; padding-left: 5%; padding-right: 5%; padding-top: 1%; padding-bottom: 1%; color: #666666; background-color: #000000; font-family: Pompiere; } #top-nav { width: 50%; margin-top: 1%; font-size: .6em; font-weight: bold; float: right; } .nav ul { padding: 0; margin: 0; list-style-type: none; } .nav li { padding-left: 3%; display: inline; text-decoration: none; } .nav a { text-decoration: none; } #content { width: 90%; padding-left: 5%; padding-top: 1%; padding-right: 50%; padding-bottom: 5%; float: left; font-size: .75em; min-height: 300px; } #content h1,h2,h3 { font-family: Pompiere; font-weight: bold; } #content table { border-collapse: collapse; } .post_date { width: 5%; font-family: Pompiere; text-align: right; font-weight: bold; border-bottom: 0; border-top: 0; border-left: 0; border-right: 1px solid #CCCCCC; padding-right: 1%; } .post_title { font-family: Pompiere; font-weight: bolder; font-size: 1.5em; padding-left: 1%; } .post_content { font-size: 1em; padding: 1%; border-top: 1px solid #CCCCCC; } .post_footer { color: #B85C00; font-size: .8em; text-align: center; font-style: italic; } .post_snippet { font-size: 1em; padding: 1%; border-top: 1px solid #CCCCCC; } .post_snippet_more { color: #B85C00; font-size: .8em; text-align: center; font-style: italic; } #about_me_img { padding: 2% 2% 5% 2%; float: right; max-width: 80%; border: 1px solid #CCCCCC; } .post-date{ font-weight: bold; font-style: italic; font-size: .75em; } #footer{ width: 95%; clear: both; background-color: #E8E8E8; border-top: 1px solid #D8D8D8; border-bottom: 1px solid #D8D8D8; padding-left: 5%; padding-top: 1%; padding-bottom: 1%; font-family: pompiere; font-size: .75em; font-weight: bold } #footer img { vertical-align: bottom; padding: .2%; } .code { font-family: courier; background-color: #FFFFCC; padding: 1%; display: block; }
0.4436
0.08061